:root {
  --bg-dark: #0a0a0f;
  --bg-card: rgba(20, 20, 30, 0.8);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --primary: #25D366;
  --primary-light: #34eb7a;
  --primary-dark: #1da851;
  --accent: #ff69b4;
  --accent-2: #a855f7;
  --accent-3: #3b82f6;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dim: rgba(255, 255, 255, 0.4);
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --glow-primary: 0 0 60px rgba(37, 211, 102, 0.4);
  --glow-accent: 0 0 60px rgba(255, 105, 180, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

.gradient-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.3) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation-delay: -7s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 105, 180, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -30px) scale(1.1); }
  50% { transform: translate(-30px, 50px) scale(0.95); }
  75% { transform: translate(-50px, -20px) scale(1.05); }
}

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(37, 211, 102, 0.6);
  border-radius: 50%;
  animation: particleRise 15s linear infinite;
  box-shadow: 0 0 10px currentColor;
}

@keyframes particleRise {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% {
    transform: translateY(-100px) scale(1.5);
    opacity: 0;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

nav.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: var(--glow-primary);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); box-shadow: var(--glow-primary); }
  50% { transform: scale(1.05); box-shadow: 0 0 80px rgba(37, 211, 102, 0.6); }
}

.brand-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.brand-badge {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.live-stats {
  display: flex;
  gap: 12px;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.stat-pill.users {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 120px 24px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(37, 211, 102, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(168, 85, 247, 0.06) 0%, transparent 40%);
  z-index: 0;
}

.hero-content {
  flex: 1;
  max-width: 650px;
  position: relative;
  z-index: 1;
  margin-left: 5%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-badge i {
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-10deg) scale(1.2); }
  75% { transform: rotate(10deg) scale(1.1); }
}

.hero-title {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.title-line {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.title-gradient {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: var(--radius-lg);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.btn-content i {
  font-size: 1.4rem;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.btn-primary:hover .btn-shine {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: transparent;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(37, 211, 102, 0.1);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.device-carousel {
  position: relative;
  width: 320px;
  height: 650px;
  overflow: hidden;
}

.device-slides {
  display: flex;
  width: 300%;
  height: calc(100% - 100px);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.device-slide {
  width: 33.333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.device-slide.active {
  opacity: 1;
  transform: scale(1);
}

.device-label {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.device-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 12px;
}

.device-dot {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-muted);
}

.device-dot:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.device-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.carousel-progress {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--bg-glass);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--primary);
  width: 0%;
  animation: progressFill 6s linear infinite;
}

@keyframes progressFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes deviceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.android-frame {
  width: 270px;
  height: 560px;
  background: linear-gradient(145deg, #2d2d3a 0%, #1a1a24 100%);
  border-radius: 32px;
  padding: 8px;
  position: relative;
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.1);
  animation: deviceFloat 5s ease-in-out infinite;
}

.android-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.android-camera {
  position: absolute;
  top: 10px;
  right: 60px;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #1a1a2e 0%, #0a0a12 100%);
  border-radius: 50%;
  border: 1px solid #333;
}

.android-screen {
  background: #ECE5DD;
  border-radius: 26px;
  height: calc(100% - 50px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.android-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px;
  background: #075E54;
  color: white;
  font-size: 11px;
}

.android-status-bar .status-icons {
  display: flex;
  gap: 6px;
  font-size: 10px;
}

.android-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px !important;
  background: #075E54 !important;
}

.android-header .wa-avatar {
  width: 32px;
  height: 32px;
}

.android-header-icons {
  margin-left: auto;
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: white;
}

.android-nav-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 10px;
  background: #1a1a24;
  border-radius: 0 0 24px 24px;
}

.nav-btn {
  width: 14px;
  height: 14px;
  border: 2px solid #666;
}

.nav-btn.back {
  border-radius: 0;
  border-right: none;
  border-top: none;
  transform: rotate(45deg);
}

.nav-btn.home {
  border-radius: 50%;
}

.nav-btn.recent {
  border-radius: 2px;
}

.iphone-frame {
  width: 290px;
  height: 600px;
  background: linear-gradient(145deg, #2a2a3e 0%, #1a1a28 50%, #0f0f18 100%);
  border-radius: 50px;
  padding: 10px;
  position: relative;
  box-shadow: 
    0 60px 120px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 2px 0 rgba(255,255,255,0.15),
    inset 0 -2px 0 rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
}

.iphone-dynamic-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.island-camera {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, #1a1a2e 0%, #0a0a12 100%);
  border-radius: 50%;
  border: 1px solid #222;
}

.island-speaker {
  width: 40px;
  height: 4px;
  background: #1a1a2e;
  border-radius: 2px;
}

.iphone-screen {
  background: #ECE5DD;
  border-radius: 42px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.wa-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 12px 12px;
  background: linear-gradient(180deg, #075E54 0%, #128C7E 100%);
  color: white;
}

.wa-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-header-left > i {
  font-size: 14px;
  opacity: 0.9;
}

.wa-avatar {
  position: relative;
  width: 36px;
  height: 36px;
}

.wa-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #25D366;
  border: 2px solid #128C7E;
  border-radius: 50%;
}

.wa-contact {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.wa-name {
  font-weight: 600;
  font-size: 14px;
}

.wa-status {
  font-size: 11px;
  opacity: 0.85;
}

.wa-header-right {
  display: flex;
  gap: 16px;
}

.wa-header-right i {
  font-size: 16px;
  opacity: 0.9;
}

.chat-carousel {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.chat-slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-slide {
  min-width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s, transform 0.4s;
}

.chat-slide.active {
  opacity: 1;
  transform: scale(1);
}

.wa-chat-area {
  height: 100%;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), #ECE5DD;
}

.chat-date-badge {
  text-align: center;
  margin: 4px 0 8px;
}

.chat-date-badge {
  display: inline-block;
  background: rgba(225, 218, 208, 0.95);
  color: #54656f;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 11px;
  margin: 0 auto;
  width: fit-content;
  display: block;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-message {
  display: flex;
  max-width: 88%;
  animation: msgAppear 0.4s ease forwards;
  opacity: 0;
}

.wa-message.animate-in {
  opacity: 1;
}

.wa-message.delay-1 { animation-delay: 0.3s; }
.wa-message.delay-2 { animation-delay: 0.6s; }
.wa-message.delay-3 { animation-delay: 0.9s; }
.wa-message.delay-4 { animation-delay: 1.2s; }

@keyframes msgAppear {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-message.received {
  align-self: flex-start;
}

.wa-message.sent {
  align-self: flex-end;
}

.wa-message .msg-content {
  padding: 6px 8px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.wa-message.received .msg-content {
  background: white;
  border-top-left-radius: 0;
}

.wa-message.sent .msg-content {
  background: #DCF8C6;
  border-top-right-radius: 0;
}

.msg-header {
  margin-bottom: 2px;
}

.msg-sender {
  font-size: 11px;
  font-weight: 600;
  color: #25D366;
}

.msg-text {
  font-size: 12px;
  color: #1a1a2e;
  line-height: 1.4;
  word-wrap: break-word;
}

.msg-text code {
  background: rgba(37, 211, 102, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 11px;
  color: #075E54;
}

.msg-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
  margin-top: 2px;
}

.msg-time {
  font-size: 10px;
  color: #667781;
  display: block;
  text-align: right;
  margin-top: 2px;
}

.msg-meta .msg-time {
  margin-top: 0;
}

.msg-meta i.read {
  color: #53bdeb;
  font-size: 12px;
}

.crown-icon {
  font-size: 14px;
}

.menu-response {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, transparent 100%);
  border-radius: 6px;
  padding: 6px;
  margin-bottom: 4px;
}

.menu-header, .menu-footer {
  font-size: 10px;
  color: #25D366;
  font-weight: 600;
}

.menu-categories {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 6px 0;
}

.menu-cat {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 6px;
  background: rgba(37, 211, 102, 0.08);
  border-radius: 4px;
  color: #1a1a2e;
}

.menu-cat i {
  color: #25D366;
  font-size: 10px;
  width: 14px;
}

.ping-response, .speed-response {
  font-weight: 500;
}

.ping-icon, .speed-icon {
  font-size: 12px;
}

.alive-response {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, transparent 100%);
  border-radius: 6px;
  padding: 6px;
}

.alive-header {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #a855f7;
}

.alive-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 10px;
  color: #555;
}

.alive-status {
  margin-top: 4px;
  font-size: 10px;
  color: #25D366;
  font-weight: 500;
}

.download-response .dl-progress {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #a855f7;
  font-size: 11px;
}

.video-preview {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: #f0f0f0;
  border-radius: 6px;
  margin-bottom: 6px;
}

.video-thumb {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667 0%, #333 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-thumb i {
  color: white;
  font-size: 18px;
  opacity: 0.9;
}

.video-duration {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 8px;
  padding: 1px 4px;
  border-radius: 2px;
}

.video-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.video-title {
  font-size: 11px;
  font-weight: 600;
  color: #333;
}

.video-size {
  font-size: 10px;
  color: #666;
}

.dl-success {
  color: #25D366;
  font-size: 10px;
  font-weight: 500;
}

.dl-success i {
  margin-right: 4px;
}

.ai-response {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
  border-radius: 6px;
  padding: 6px;
}

.ai-header {
  font-size: 11px;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ai-text {
  font-size: 10px;
  color: #444;
  line-height: 1.4;
}

.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.carousel-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  width: 18px;
  border-radius: 4px;
  background: #25D366;
}

.wa-input-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 20px;
  background: #f0f0f0;
}

.input-left {
  color: #54656f;
  font-size: 18px;
}

.wa-input-field {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 8px 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.input-placeholder {
  font-size: 13px;
  color: #8696a0;
}

.input-right {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #54656f;
  font-size: 16px;
}

.mic-btn {
  width: 36px;
  height: 36px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
}

.iphone-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: rgba(0,0,0,0.3);
  border-radius: 2px;
}

.laptop-frame {
  width: 380px;
  height: 270px;
  animation: deviceFloat 5s ease-in-out infinite;
}

.laptop-screen {
  width: 100%;
  height: 220px;
  background: linear-gradient(145deg, #2a2a3e 0%, #1a1a28 100%);
  border-radius: 16px 16px 0 0;
  padding: 8px;
  position: relative;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.laptop-camera {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #1a1a2e 0%, #0a0a12 100%);
  border-radius: 50%;
  border: 1px solid #333;
}

.browser-chrome {
  background: #1e1e2e;
  border-radius: 10px 10px 0 0;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.browser-url {
  flex: 1;
  background: #2d2d3a;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
}

.browser-url i {
  color: var(--primary);
  font-size: 10px;
}

.browser-content {
  background: linear-gradient(180deg, #0a0f0d 0%, #0d1210 100%);
  border-radius: 0 0 8px 8px;
  padding: 12px;
  height: calc(100% - 60px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 12px;
}

.dashboard-header i {
  font-size: 16px;
}

.dashboard-stats {
  display: flex;
  gap: 8px;
}

.stat-card {
  flex: 1;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-card i {
  color: var(--primary);
  font-size: 14px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-num {
  color: white;
  font-weight: 700;
  font-size: 12px;
}

.stat-label {
  color: #888;
  font-size: 9px;
}

.pair-section {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.pair-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 11px;
  margin-bottom: 8px;
}

.pair-code-display {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.pair-code-display span {
  width: 22px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.pair-code-display span:nth-child(5) {
  background: transparent;
  width: 10px;
}

.pair-hint {
  color: #666;
  font-size: 9px;
  margin-top: 6px;
}

.laptop-base {
  width: 110%;
  height: 14px;
  background: linear-gradient(180deg, #3a3a4e 0%, #2a2a3a 100%);
  border-radius: 0 0 8px 8px;
  margin-left: -5%;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.laptop-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #1a1a24;
  border-radius: 0 0 4px 4px;
}

.samsung-frame {
  width: 270px;
  height: 560px;
  background: linear-gradient(145deg, #1a1a2e 0%, #0d0d18 100%);
  border-radius: 46px 46px 48px 48px;
  padding: 6px;
  position: relative;
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 2px #0a0a12;
  animation: deviceFloat 5s ease-in-out infinite;
  animation-delay: -2.5s;
}

.samsung-frame::before,
.samsung-frame::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(37, 211, 102, 0.3), transparent);
  top: 50%;
  transform: translateY(-50%);
}

.samsung-frame::before {
  left: 0;
  border-radius: 0 2px 2px 0;
}

.samsung-frame::after {
  right: 0;
  border-radius: 2px 0 0 2px;
}

.samsung-camera {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, #1a1a2e 0%, #000 100%);
  border-radius: 50%;
  border: 1px solid #222;
  z-index: 10;
}

.samsung-screen {
  background: #000;
  border-radius: 42px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.samsung-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  background: transparent;
  color: white;
  font-size: 11px;
  font-weight: 500;
}

.samsung-status-bar .status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
}

.samsung-status-bar .status-icons span {
  font-weight: 600;
  font-size: 9px;
}

.samsung-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px !important;
  background: #075E54 !important;
}

.samsung-header .wa-avatar {
  width: 34px;
  height: 34px;
}

.samsung-header > i:last-of-type,
.samsung-header > i:nth-last-of-type(2) {
  margin-left: auto;
  color: white;
  font-size: 16px;
}

.samsung-header > i:last-of-type {
  margin-left: 14px;
}

.samsung-chat {
  background: linear-gradient(180deg, #0a0f0d 0%, #070a08 100%) !important;
}

.samsung-chat .wa-message.received .msg-content {
  background: #1a2c25 !important;
}

.samsung-chat .wa-message.sent .msg-content {
  background: #005c4b !important;
}

.samsung-input {
  background: #1a1a24 !important;
  border-radius: 0 0 36px 36px;
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  animation: iconFloat 4s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.icon-1 { top: 10%; left: -30px; animation-delay: 0s; }
.icon-2 { top: 30%; right: -20px; animation-delay: -1s; color: var(--accent); }
.icon-3 { bottom: 30%; left: -40px; animation-delay: -2s; color: var(--accent-3); }
.icon-4 { bottom: 10%; right: -30px; animation-delay: -3s; color: var(--accent-2); }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--border-light);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-section {
  padding: 60px 0 100px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), var(--glow-primary);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card.featured {
  background: linear-gradient(145deg, rgba(37, 211, 102, 0.1) 0%, var(--bg-card) 100%);
  border-color: rgba(37, 211, 102, 0.3);
}

.feature-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-icon-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(37, 211, 102, 0.05) 100%);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--glow-primary);
}

.feature-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.4) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(20px);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover .feature-glow {
  opacity: 1;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.connect-section {
  padding: 40px 0 100px;
  position: relative;
  z-index: 1;
}

.connect-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.connect-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 20px 0 16px;
}

.connect-info > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  transition: var(--transition);
}

.step:hover .step-number {
  background: var(--primary);
  color: white;
  box-shadow: var(--glow-primary);
  transform: scale(1.1);
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.connect-form-wrapper {
  display: flex;
  justify-content: center;
}

.connect-form {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.form-header {
  text-align: center;
  padding: 40px 32px 24px;
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.1) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.whatsapp-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto 20px;
  box-shadow: var(--glow-primary);
  animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}

.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-body {
  padding: 32px;
}

.input-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  z-index: 1;
  transition: var(--transition);
}

.input-wrapper input {
  width: 100%;
  padding: 18px 20px 18px 56px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 500;
  transition: var(--transition);
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.4);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper input:focus ~ .input-icon {
  color: var(--primary);
}

.input-wrapper input::placeholder {
  color: var(--text-dim);
}

.input-focus-ring {
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-md) + 4px);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}

.input-wrapper input:focus ~ .input-focus-ring {
  opacity: 0.15;
}

.btn-connect {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: var(--radius-md);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-connect:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-connect:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-connect .btn-loader {
  display: none;
}

.btn-connect.loading .btn-text {
  display: none;
}

.btn-connect.loading .btn-loader {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-container {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--border);
  display: none;
  animation: fadeInUp 0.3s ease;
}

.status-container.visible {
  display: block;
}

.status-container.success {
  border-left-color: var(--primary);
  background: rgba(37, 211, 102, 0.1);
}

.status-container.error {
  border-left-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.status-container.warning {
  border-left-color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}

.status-container.loading {
  border-left-color: var(--accent-3);
  background: rgba(59, 130, 246, 0.1);
}

.pairing-code {
  font-family: 'Courier New', monospace;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 8px;
  text-align: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  margin: 16px 0;
}

.pairing-code:hover {
  background: rgba(37, 211, 102, 0.1);
  box-shadow: var(--glow-primary);
  transform: scale(1.02);
}

.form-footer {
  padding: 20px 32px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border);
  text-align: center;
}

.form-footer p {
  color: var(--text-dim);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-footer i {
  color: var(--primary);
}

.footer {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
}

.footer-brand span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.copyright {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.copyright i {
  color: var(--accent);
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: translateY(50px) scale(0.95);
  transition: var(--transition-bounce);
  backdrop-filter: blur(20px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.modal.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text);
  transform: rotate(90deg);
}

.modal-body {
  padding: 48px 32px;
  text-align: center;
}

.developer-profile {
  margin-bottom: 24px;
}

.profile-image-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  position: relative;
}

.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.profile-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--accent);
  animation: profileRing 3s linear infinite;
}

@keyframes profileRing {
  to { transform: rotate(360deg); }
}

.developer-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.developer-title {
  color: var(--primary);
  font-weight: 500;
}

.developer-bio {
  margin-bottom: 28px;
}

.developer-bio p {
  color: var(--text-muted);
  line-height: 1.7;
}

.developer-skills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.skill-item:hover {
  border-color: var(--primary);
  background: rgba(37, 211, 102, 0.1);
}

.skill-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
}

.skill-item span {
  font-size: 0.85rem;
  font-weight: 500;
}

.developer-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.contact-btn.whatsapp {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-btn.whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding: 120px 24px 60px;
    text-align: center;
  }

  .hero-content {
    margin-left: 0;
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .hero-stat-divider {
    height: 30px;
  }

  .hero-visual {
    margin-top: 60px;
  }

  .connect-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .connect-info {
    text-align: center;
  }

  .steps-list {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
  }

  .live-stats {
    display: flex;
    gap: 8px;
  }

  .live-stats .stat-pill:first-child {
    display: none;
  }

  .live-stats .stat-pill.users {
    display: flex;
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }

  /* Keep device mockups full size on tablets */
  .device-carousel {
    transform: none;
    margin-bottom: 0;
  }

  .android-frame,
  .iphone-frame,
  .samsung-frame {
    width: 270px;
    height: 560px;
  }

  .floating-icons {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .developer-skills {
    grid-template-columns: 1fr;
  }

  .scroll-indicator {
    display: none;
  }

  .modal {
    align-items: flex-end;
    padding: 0;
  }

  .modal-content {
    width: 100%;
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow-y: auto;
  }

  .modal-body {
    padding: 32px 20px 40px;
  }

  .profile-image-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 16px;
  }

  .developer-name {
    font-size: 1.4rem;
  }

  .developer-bio {
    margin-bottom: 20px;
  }

  .developer-bio p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .developer-skills {
    gap: 8px;
    margin-bottom: 24px;
  }

  .skill-item {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .skill-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .contact-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .hero-title .title-gradient {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 16px;
    padding: 0 10px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }

  .hero-stat-divider {
    height: 24px;
    margin: 0 4px;
  }

  /* Full size device mockups for small phones */
  .device-carousel {
    transform: none;
    margin-bottom: 0;
  }

  .android-frame,
  .iphone-frame,
  .samsung-frame {
    width: 260px;
    height: 520px;
  }

  .device-dots {
    transform: none;
  }

  .connect-form {
    border-radius: var(--radius-lg);
  }

  .form-header, .form-body, .form-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pairing-code {
    font-size: 1.5rem;
    letter-spacing: 6px;
  }
}

/* ===== App Download Section ===== */
.app-download-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(37, 211, 102, 0.03) 50%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.app-download-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.download-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  width: fit-content;
}

.download-badge i {
  font-size: 1rem;
}

.download-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 450px;
}

.download-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.download-feature:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.download-feature i {
  color: var(--primary);
  font-size: 0.85rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: var(--glow-primary);
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 16px;
}

.download-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

.download-btn-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.download-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-btn-main {
  font-size: 1.1rem;
  font-weight: 700;
}

.download-btn-sub {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 400;
}

.download-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.download-btn:hover .download-arrow {
  transform: translateX(5px);
}

/* Download Phone Visual */
.download-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-phone {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 40px;
  padding: 12px;
  position: relative;
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

.phone-notch::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #333;
  border-radius: 50%;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0d1117 0%, #161b22 100%);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
}

.app-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  box-shadow: var(--glow-primary);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); box-shadow: var(--glow-primary); }
  50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(37, 211, 102, 0.6); }
}

.app-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.app-installing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 80%;
}

.install-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.install-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  animation: installProgress 3s ease-in-out infinite;
}

@keyframes installProgress {
  0% { width: 0%; }
  50% { width: 100%; }
  100% { width: 0%; }
}

.app-installing span {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive for Download Section */
@media (max-width: 900px) {
  .download-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .download-info {
    align-items: center;
  }

  .download-badge {
    margin: 0 auto;
  }

  .download-description {
    max-width: 100%;
  }

  .download-features {
    justify-content: center;
  }

  .download-btn {
    margin: 16px auto 0;
  }

  .download-visual {
    order: -1;
  }

  .download-phone {
    width: 240px;
    height: 480px;
  }

  .app-icon-large {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .app-download-section {
    padding: 60px 0;
  }

  .download-title {
    font-size: 1.8rem;
  }

  .download-description {
    font-size: 1rem;
  }

  .download-features {
    flex-direction: column;
    align-items: center;
  }

  .download-btn {
    padding: 14px 24px;
    gap: 12px;
  }

  .download-btn-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .download-phone {
    width: 200px;
    height: 400px;
    border-radius: 30px;
  }

  .phone-screen {
    border-radius: 24px;
  }

  .phone-notch {
    width: 90px;
    height: 22px;
  }

  .app-icon-large {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    border-radius: 16px;
  }

  .app-name {
    font-size: 1.2rem;
  }
}

/* ========================================
   CHANGELOG SECTION
======================================== */
.changelog-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(37, 211, 102, 0.02) 50%, transparent 100%);
}

.changelog-container {
  max-width: 800px;
  margin: 0 auto;
}

.changelog-timeline {
  position: relative;
  padding-left: 30px;
}

.changelog-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark), transparent);
}

.changelog-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 40px;
  color: var(--text-muted);
  font-size: 1rem;
}

.changelog-loading i {
  color: var(--primary);
  font-size: 1.5rem;
}

.changelog-item {
  position: relative;
  padding: 20px 24px;
  margin-bottom: 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: var(--transition);
}

.changelog-item:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}

.changelog-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 28px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3);
}

.changelog-item.updated::before {
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

.changelog-item.fixed::before {
  background: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.changelog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.changelog-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.changelog-type {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.changelog-type.added {
  background: rgba(37, 211, 102, 0.2);
  color: var(--primary);
}

.changelog-type.updated {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.changelog-type.fixed {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.changelog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.changelog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.changelog-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.changelog-commands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.changelog-cmd {
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--primary);
}

/* ========================================
   COMMUNITY SECTION
======================================== */
.community-section {
  padding: 80px 0;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.community-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.community-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.community-card:hover::before {
  transform: scaleX(1);
}

.community-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.community-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
}

.whatsapp-channel .community-icon {
  background: linear-gradient(135deg, #128C7E, #075E54);
}

.community-info {
  flex: 1;
}

.community-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.community-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.community-stats {
  display: flex;
  gap: 16px;
}

.community-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--primary);
}

.community-arrow {
  width: 40px;
  height: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.community-card:hover .community-arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateX(5px);
}

/* ========================================
   COMPARISON SECTION
======================================== */
.comparison-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.02) 0%, transparent 100%);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-glass);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
  background: var(--bg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.comparison-table thead th.highlight {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  border-top: 2px solid var(--primary);
}

.comparison-table tbody td.highlight {
  background: rgba(37, 211, 102, 0.05);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

.comparison-table tbody tr:last-child td.highlight {
  border-bottom: 2px solid var(--primary);
}

.bot-header {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.bot-header i {
  color: #fbbf24;
}

.comparison-table tbody td {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.comparison-table tbody td i:first-child {
  margin-right: 10px;
  color: var(--text-muted);
  opacity: 0.7;
}

.comparison-table tbody td i.yes {
  color: var(--primary);
  font-size: 1.1rem;
  margin-right: 8px;
}

.comparison-table tbody td i.no {
  color: #ef4444;
  font-size: 1.1rem;
  margin-right: 8px;
}

.comparison-table tbody td i.partial {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-right: 8px;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* ========================================
   SECURITY SECTION
======================================== */
.security-section {
  padding: 80px 0;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.security-card {
  padding: 30px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
}

.security-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.security-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
}

.security-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.security-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.security-footer {
  text-align: center;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-badge i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* ========================================
   RESPONSIVE - NEW SECTIONS
======================================== */
@media (max-width: 768px) {
  .changelog-section,
  .community-section,
  .comparison-section,
  .security-section {
    padding: 60px 0;
  }

  .changelog-timeline {
    padding-left: 20px;
  }

  .changelog-item {
    padding: 16px 18px;
  }

  .changelog-item::before {
    left: -24px;
    width: 10px;
    height: 10px;
  }

  .changelog-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .community-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .community-stats {
    justify-content: center;
  }

  .community-arrow {
    display: none;
  }

  .comparison-table-wrapper {
    margin: 0 -20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 16px;
    font-size: 0.85rem;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-card {
    padding: 24px;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .trust-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ========================================
   FEATURE ACTION BUTTONS
======================================== */
.features-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.feature-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 40px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition);
  min-width: 200px;
}

.feature-action-btn:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-action-btn i {
  font-size: 2rem;
  color: var(--primary);
}

.feature-action-btn span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.feature-action-btn small {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.feature-action-btn {
  position: relative;
}

.read-me-pulse {
  position: absolute;
  top: -8px;
  right: -8px;
  pointer-events: none;
}

.pulse-text {
  display: inline-block;
  padding: 2px 6px;
  background: linear-gradient(135deg, #a855f7, #d946ef);
  color: #fff;
  font-size: 0.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-radius: 8px;
  animation: pulseReadMe 2.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.5), 0 0 16px rgba(217, 70, 239, 0.2);
  position: relative;
}

@keyframes pulseReadMe {
  0%, 100% {
    opacity: 0;
    transform: scale(0.7) translateY(6px);
  }
  12%, 88% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) translateY(-2px);
  }
}

/* ========================================
   LARGE MODALS (Comparison & Security)
======================================== */
.modal-large .modal-content {
  max-width: 700px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header-info {
  text-align: center;
  margin-bottom: 30px;
}

.modal-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
}

.modal-header-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.modal-header-info p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Modal Comparison Table */
.modal-large .comparison-table-wrapper {
  margin: 0 -20px;
  border-radius: 12px;
  overflow-x: auto;
}

.modal-large .comparison-table {
  min-width: 500px;
}

.modal-large .comparison-table th,
.modal-large .comparison-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
}

/* Security Modal Grid */
.security-grid-modal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.security-card-modal {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}

.security-card-modal:hover {
  border-color: rgba(37, 211, 102, 0.5);
}

.security-icon-sm {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}

.security-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.security-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.trust-badges-modal {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-badge-modal {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--text);
}

.trust-badge-modal i {
  color: var(--primary);
}

@media (max-width: 768px) {
  .features-actions {
    flex-direction: column;
    align-items: center;
  }

  .feature-action-btn {
    width: 100%;
    max-width: 300px;
    padding: 20px 30px;
  }

  .modal-large .modal-content {
    max-height: 85vh;
    margin: 20px;
  }

  .modal-header-info h2 {
    font-size: 1.5rem;
  }

  .security-grid-modal {
    gap: 12px;
  }

  .security-card-modal {
    padding: 14px;
  }

  .trust-badges-modal {
    flex-direction: column;
    align-items: center;
  }
}

/* ========================================
   STATS DASHBOARD
======================================== */
.hero-stats-dashboard {
  margin-top: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.05);
  transform: translateY(-2px);
}

.stat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
  border-radius: 12px;
  color: var(--primary);
  font-size: 1.2rem;
}

.stat-icon.online {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
}

.stat-icon.online i {
  color: #22c55e;
  animation: pulse 1.5s ease-in-out infinite;
}

.stat-data {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.stat-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.quick-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.quick-action-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
}

.quick-action-btn i {
  font-size: 1rem;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .stat-card {
    padding: 12px 14px;
  }
  
  .stat-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .stat-value {
    font-size: 1.1rem;
  }
  
  .stat-title {
    font-size: 0.7rem;
  }
  
  .quick-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .quick-action-btn {
    justify-content: center;
    padding: 14px 20px;
  }
}

/* ========================================
   COMMANDS MODAL
======================================== */
.commands-search {
  position: relative;
  margin-bottom: 20px;
}

.commands-search i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.commands-search input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
}

.commands-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.commands-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.category-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.category-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.category-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
}

.commands-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
}

.commands-loading {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.commands-loading i {
  margin-right: 8px;
  color: var(--primary);
}

.commands-list::-webkit-scrollbar {
  width: 6px;
}

.commands-list::-webkit-scrollbar-track {
  background: var(--bg);
  border-radius: 3px;
}

.commands-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.command-item {
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}

.command-item:hover {
  border-color: rgba(37, 211, 102, 0.4);
}

.command-item.hidden {
  display: none;
}

.command-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.command-name {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.command-tag {
  padding: 3px 10px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
}

.command-plugin {
  padding: 3px 10px;
  background: rgba(147, 51, 234, 0.15);
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #a855f7;
  text-transform: capitalize;
  margin-left: auto;
}

.command-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.command-example {
  display: block;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.8rem;
  color: var(--text);
}

.commands-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.commands-footer code {
  padding: 2px 8px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 4px;
  color: var(--primary);
  font-weight: 600;
}

/* ========================================
   FAQ MODAL
======================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(37, 211, 102, 0.3);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--bg);
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(37, 211, 102, 0.05);
}

.faq-question i {
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-answer code {
  padding: 2px 6px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 4px;
  color: var(--primary);
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .commands-categories {
    gap: 6px;
  }
  
  .category-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .commands-list {
    max-height: 350px;
  }
  
  .command-item {
    padding: 14px;
  }
  
  .faq-question {
    padding: 16px;
    font-size: 0.9rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 16px 16px;
  }
}

.security-blocker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.security-blocker.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.security-blocker-content {
  text-align: center;
  padding: 40px;
  max-width: 500px;
}

.security-blocker-icon {
  font-size: 80px;
  color: var(--primary);
  margin-bottom: 20px;
  animation: pulse-shield 2s ease-in-out infinite;
}

.security-blocker-icon.error {
  color: #ef4444;
  animation: shake-icon 0.5s ease;
}

.security-blocker-icon.warning {
  color: #f59e0b;
}

.security-blocker-spinner {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 30px;
}

.security-blocker-spinner.hidden {
  display: none;
}

.security-blocker h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text);
  font-family: var(--font-display);
}

.security-blocker p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  white-space: pre-line;
}

.security-retry-btn {
  margin-top: 30px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: var(--radius-md);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.security-retry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-shield {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes shake-icon {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-10px); }
  40% { transform: translateX(10px); }
  60% { transform: translateX(-10px); }
  80% { transform: translateX(10px); }
}

/* ========================================
   TELEGRAM APPEAL BUTTON
======================================== */
.telegram-appeal-btn {
  margin-top: 25px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
  border: none;
  border-radius: var(--radius-md);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  animation: telegram-float 3s ease-in-out infinite, telegram-glow 2s ease-in-out infinite;
  box-shadow: 0 8px 30px rgba(0, 136, 204, 0.4);
  position: relative;
  overflow: hidden;
}

.telegram-appeal-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.telegram-appeal-btn:hover::before {
  left: 100%;
}

.telegram-appeal-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 136, 204, 0.5);
  background: linear-gradient(135deg, #00a0e4 0%, #0088cc 100%);
}

.telegram-appeal-btn i {
  font-size: 1.4rem;
  animation: telegram-icon-pulse 2s ease-in-out infinite;
}

.telegram-appeal-btn span {
  position: relative;
  z-index: 1;
}

@keyframes telegram-float {
  0%, 100% { 
    transform: translateY(0); 
  }
  50% { 
    transform: translateY(-5px); 
  }
}

@keyframes telegram-glow {
  0%, 100% { 
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.4);
  }
  50% { 
    box-shadow: 0 12px 40px rgba(0, 136, 204, 0.6), 0 0 20px rgba(0, 136, 204, 0.3);
  }
}

@keyframes telegram-icon-pulse {
  0%, 100% { 
    transform: scale(1); 
  }
  50% { 
    transform: scale(1.1); 
  }
}
