/* ===================================
   Adarsh Digital — Premium Figma CSS
   =================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0e1a;
  color: #c8d0e0;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; color: #f0f4ff; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* ---------- UTILITIES ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gradient {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; border-radius: 12px;
  cursor: pointer; transition: all 0.3s ease;
  border: none; white-space: nowrap;
  text-align: center; justify-content: center;
}
.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff; box-shadow: 0 4px 20px rgba(59,130,246,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,130,246,0.5); }
.btn-glass {
  background: rgba(255,255,255,0.06);
  color: #c8d0e0; border: 1px solid rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; border-radius: 10px; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-xl { padding: 18px 40px; font-size: 1.1rem; border-radius: 14px; }
.btn-block { width: 100%; }
.btn-glow { animation: btnGlow 2.5s ease-in-out infinite; }
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(59,130,246,0.35); }
  50% { box-shadow: 0 4px 40px rgba(59,130,246,0.6), 0 0 60px rgba(59,130,246,0.2); }
}

/* ---------- PARTICLE CANVAS ---------- */
#particleCanvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.4;
}

/* ---------- STICKY CTA BAR ---------- */
.sticky-cta-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  background: linear-gradient(90deg, rgba(59,130,246,0.15), rgba(139,92,246,0.15));
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(59,130,246,0.2);
  transform: translateY(-100%); transition: transform 0.4s ease;
  padding: 10px 0;
}
.sticky-cta-bar.visible { transform: translateY(0); }
.sticky-cta-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sticky-cta-left { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; }
.sticky-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ef4444; animation: pulse 1.5s infinite;
}
.sticky-cta-right { display: flex; align-items: center; gap: 14px; }
.sticky-timer {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  color: #f59e0b; font-size: 0.9rem;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,14,26,0.85);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif; font-size: 1.35rem; font-weight: 700; color: #f0f4ff; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; color: #94a3b8; transition: color 0.3s; font-weight: 500; }
.nav-links a:hover { color: #f0f4ff; }
.nav-cta.btn { color: #fff !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: #c8d0e0;
  margin: 5px 0; transition: all 0.3s; border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- SECTION COMMON ---------- */
.section-header { text-align: center; margin-bottom: 40px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: #3b82f6;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.section-desc { color: #7c8aaa; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 110px 0 60px; overflow: hidden;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.25; pointer-events: none;
}
.hero-glow-1 { width: 600px; height: 600px; background: #3b82f6; top: -200px; left: -200px; }
.hero-glow-2 { width: 500px; height: 500px; background: #8b5cf6; bottom: -200px; right: -100px; }
.hero-grid-bg {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-text { position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
  border-radius: 100px; padding: 8px 20px; margin-bottom: 28px;
  font-size: 0.82rem; color: #93b4f8;
}
.badge-dot, .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hero-h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero-h1-accent {
  display: block;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 1.1rem; color: #7c8aaa; margin-bottom: 28px; max-width: 520px; }
.hero-price-block {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 20px 24px; margin-bottom: 28px; max-width: 420px;
}
.hero-price-inner { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.hero-price-label { font-size: 0.85rem; color: #7c8aaa; }
.hero-price-amount { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: #f0f4ff; }
.hero-price-old { font-size: 0.95rem; color: #64748b; text-decoration: line-through; }
.hero-price-save {
  background: rgba(34,197,94,0.15); color: #22c55e;
  font-size: 0.75rem; font-weight: 700; padding: 4px 10px;
  border-radius: 6px;
}
.hero-price-timer { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #f59e0b; }
.hero-ctas { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-social-proof { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-avatars { display: flex; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: #fff;
  border: 2px solid #0a0e1a; margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.avatar-1 { background: linear-gradient(135deg,#3b82f6,#8b5cf6); }
.avatar-2 { background: linear-gradient(135deg,#22c55e,#14b8a6); }
.avatar-3 { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.avatar-4 { background: linear-gradient(135deg,#ec4899,#8b5cf6); }
.avatar-more { background: #1e293b; font-size: 0.65rem; color: #94a3b8; }
.hero-rating { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #94a3b8; }
.stars { display: flex; gap: 2px; }

/* ---------- HERO VISUAL / MOCKUP ---------- */
.hero-visual { position: relative; }
.mockup-wrapper { position: relative; }
.mockup-glow {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%; pointer-events: none;
}
.mockup-laptop {
  background: #141b2d; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 40px rgba(59,130,246,0.08);
  position: relative;
}
.laptop-notch {
  height: 28px; background: #0f1525;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.laptop-notch::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #1e293b; border: 1px solid rgba(255,255,255,0.1);
}
.laptop-screen { padding: 0; background: #0a0e1a; }
.laptop-base {
  height: 14px; background: linear-gradient(180deg, #141b2d, #0f1525);
  border-radius: 0 0 16px 16px;
}

/* Dashboard Mock */
.dashboard-mock { font-size: 0.55rem; color: #94a3b8; }
.dash-topbar {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}
.dash-dots { display: flex; gap: 4px; }
.dash-dots span { width: 6px; height: 6px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #f59e0b; }
.dash-dots span:nth-child(3) { background: #22c55e; }
.dash-url-bar {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.04); border-radius: 6px;
  padding: 4px 10px; flex: 1; font-size: 0.55rem; color: #64748b;
}
.dash-body { display: flex; min-height: 200px; }
.dash-sidebar {
  width: 48px; background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 12px 8px; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.dash-logo-sm {
  width: 20px; height: 20px; border-radius: 6px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  margin-bottom: 8px;
}
.dash-nav-item {
  width: 20px; height: 20px; border-radius: 6px;
  background: rgba(255,255,255,0.04);
}
.dash-nav-item.active { background: rgba(59,130,246,0.2); }
.dash-main { flex: 1; padding: 14px; }
.dash-greeting {
  font-size: 0.7rem; font-weight: 600; color: #f0f4ff; margin-bottom: 12px;
}
.dash-stats { display: flex; gap: 8px; margin-bottom: 14px; }
.dash-stat-card {
  flex: 1; padding: 10px; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
}
.stat-value { font-size: 0.85rem; font-weight: 700; color: #f0f4ff; display: block; }
.stat-label { font-size: 0.5rem; color: #64748b; display: block; }
.stat-trend { font-size: 0.48rem; font-weight: 600; margin-top: 4px; display: block; }
.stat-trend.up { color: #22c55e; }
.s-blue .stat-value { color: #3b82f6; }
.s-green .stat-value { color: #22c55e; }
.s-purple .stat-value { color: #8b5cf6; }
.dash-chart-area {
  background: rgba(255,255,255,0.02); border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 12px; height: 80px;
}
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 100%; }
.bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #3b82f6, rgba(59,130,246,0.3));
  animation: barPulse 3s ease-in-out infinite;
}
.bar:nth-child(even) { animation-delay: 0.5s; background: linear-gradient(180deg, #8b5cf6, rgba(139,92,246,0.3)); }
.bar:nth-child(1) { height: 40%; }
.bar:nth-child(2) { height: 65%; }
.bar:nth-child(3) { height: 45%; }
.bar:nth-child(4) { height: 80%; }
.bar:nth-child(5) { height: 55%; }
.bar:nth-child(6) { height: 90%; }
.bar:nth-child(7) { height: 70%; }
@keyframes barPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Phone Mockup */
.mockup-phone {
  position: absolute; bottom: -20px; right: -30px;
  width: 130px; background: #141b2d; border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  overflow: hidden; z-index: 2;
}
.phone-notch {
  width: 50px; height: 5px; background: #0f1525;
  border-radius: 0 0 8px 8px; margin: 8px auto 0;
}
.phone-screen { padding: 10px; }
.phone-status-bar { height: 4px; background: rgba(255,255,255,0.03); border-radius: 2px; margin-bottom: 8px; }
.phone-hero-img { height: 50px; background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.15)); border-radius: 8px; margin-bottom: 8px; }
.phone-card-row { display: flex; gap: 6px; margin-bottom: 8px; }
.phone-mini-card { flex: 1; height: 28px; background: rgba(255,255,255,0.04); border-radius: 6px; }
.phone-list-item { height: 10px; background: rgba(255,255,255,0.04); border-radius: 4px; margin-bottom: 6px; }
.phone-list-item.short { width: 60%; }
.phone-cta-btn { height: 22px; background: linear-gradient(135deg, #3b82f6, #2563eb); border-radius: 6px; margin-top: 8px; }

/* Floating Badges */
.floating-badge {
  position: absolute; display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 10px;
  background: rgba(10,14,26,0.85);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem; font-weight: 600; color: #f0f4ff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  animation: badgeFloat 4s ease-in-out infinite;
  z-index: 3;
}
.fb-1 { top: 20px; right: -10px; }
.fb-2 { bottom: 40px; left: -10px; animation-delay: 2s; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); display: flex; flex-direction: column;
  align-items: center; gap: 8px; color: #475569; font-size: 0.78rem;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: opacity 0.4s;
}
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  position: relative; z-index: 1;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.015);
}
.trust-items { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(59,130,246,0.1); color: #3b82f6;
}
.trust-icon-wrap.star-icon { background: rgba(245,158,11,0.1); }
.trust-number, .trust-number-static {
  font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: #f0f4ff;
  display: block; line-height: 1;
}
.trust-plus { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; color: #3b82f6; }
.trust-label { font-size: 0.82rem; color: #7c8aaa; display: block; }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.06); }

/* ---------- PROBLEM → SOLUTION ---------- */
.problem-solution { position: relative; z-index: 1; padding: 70px 0; }
.ps-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; }
.ps-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 36px; position: relative; overflow: hidden;
}
.ps-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.03), transparent 60%);
}
.problem-card { border-color: rgba(239,68,68,0.15); }
.solution-card { border-color: rgba(34,197,94,0.15); }
.ps-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.ps-icon-circle {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.ps-icon-circle.danger { background: rgba(239,68,68,0.1); }
.ps-icon-circle.success { background: rgba(34,197,94,0.1); }
.ps-card-header h3 { font-size: 1.2rem; font-weight: 700; }
.ps-desc { color: #7c8aaa; margin-bottom: 18px; font-size: 0.92rem; }
.ps-list { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.ps-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }

/* Arrow column */
.ps-arrow-col { display: flex; flex-direction: column; align-items: center; gap: 0; }
.ps-arrow-line { width: 2px; height: 40px; background: linear-gradient(180deg, transparent, rgba(59,130,246,0.3), transparent); }
.ps-arrow-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(59,130,246,0.3);
}

/* ---------- SERVICES ---------- */
.services { position: relative; z-index: 1; padding: 70px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 32px;
  transition: all 0.4s ease; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(30px);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(59,130,246,0.05), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { border-color: rgba(59,130,246,0.2); transform: translateY(-4px) !important; }
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(59,130,246,0.1); color: #3b82f6;
  margin-bottom: 20px; transition: all 0.3s;
}
.service-card:hover .service-icon-wrap { background: rgba(59,130,246,0.15); transform: scale(1.05); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: #7c8aaa; line-height: 1.6; }

/* ---------- TIMELINE ---------- */
.timeline-section { position: relative; z-index: 1; padding: 70px 0; }
.timeline { position: relative; max-width: 600px; margin: 0 auto; }
.timeline-track {
  position: absolute; left: 24px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, rgba(59,130,246,0.3), rgba(139,92,246,0.3), rgba(59,130,246,0.1));
}
.timeline-item {
  position: relative; padding-left: 72px; margin-bottom: 48px;
  opacity: 0; transform: translateX(-20px);
}
.timeline-item.visible { opacity: 1; transform: translateX(0); transition: all 0.5s ease; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-node {
  position: absolute; left: 8px; top: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(59,130,246,0.3);
}
.timeline-node-inner {
  font-family: 'Poppins', sans-serif; font-size: 0.8rem;
  font-weight: 700; color: #fff;
}
.timeline-day {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; color: #3b82f6;
  text-transform: uppercase; letter-spacing: 1px;
  background: rgba(59,130,246,0.1); padding: 4px 12px;
  border-radius: 6px; margin-bottom: 12px;
}
.timeline-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 24px;
}
.timeline-card-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(59,130,246,0.1); color: #3b82f6;
}
.timeline-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.timeline-card p { font-size: 0.88rem; color: #7c8aaa; }

/* ---------- PRICING ---------- */
.pricing { position: relative; z-index: 1; padding: 70px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 800px; margin: 0 auto; }
.pricing-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px; padding: 40px; position: relative; overflow: hidden;
  transition: all 0.4s;
}
.pricing-card:hover { border-color: rgba(59,130,246,0.2); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: rgba(59,130,246,0.3);
  background: linear-gradient(145deg, rgba(59,130,246,0.08), rgba(139,92,246,0.05));
  box-shadow: 0 20px 60px rgba(59,130,246,0.1);
}
.pricing-badge {
  position: absolute; top: 0; right: 30px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 6px 16px; border-radius: 0 0 10px 10px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.pricing-header { margin-bottom: 28px; }
.pricing-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(59,130,246,0.1); color: #3b82f6; margin-bottom: 16px;
}
.featured-icon { background: rgba(245,158,11,0.1); color: #f59e0b; }
.pricing-header h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.pricing-amount { display: flex; align-items: baseline; gap: 2px; }
.pricing-currency { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; color: #94a3b8; }
.pricing-value { font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 900; color: #f0f4ff; }
.pricing-period { color: #64748b; font-size: 0.85rem; margin-top: 4px; }
.pricing-note {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 32px; font-size: 0.85rem; color: #64748b; text-align: center;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.pricing-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }

/* ---------- WHY US ---------- */
.why-us { position: relative; z-index: 1; padding: 70px 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 32px; text-align: center;
  transition: all 0.4s; opacity: 0; transform: translateY(30px);
}
.why-card.visible { opacity: 1; transform: translateY(0); }
.why-card:hover { border-color: rgba(59,130,246,0.2); transform: translateY(-4px) !important; }
.why-icon-wrap {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(59,130,246,0.1); color: #3b82f6;
  margin: 0 auto 20px;
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: #7c8aaa; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { position: relative; z-index: 1; padding: 70px 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 32px; position: relative;
  transition: all 0.4s; opacity: 0; transform: translateY(30px);
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-card:hover { border-color: rgba(59,130,246,0.15); }
.testimonial-quote { margin-bottom: 12px; color: #3b82f6; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-text { font-size: 0.95rem; color: #c8d0e0; margin-bottom: 24px; line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff;
}
.author-avatar-1 { background: linear-gradient(135deg,#3b82f6,#8b5cf6); }
.author-avatar-2 { background: linear-gradient(135deg,#22c55e,#14b8a6); }
.author-avatar-3 { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.testimonial-author strong { display: block; font-size: 0.9rem; color: #f0f4ff; }
.testimonial-author span { font-size: 0.78rem; color: #64748b; }

/* ---------- LEAD FORM ---------- */
.lead-form-section {
  position: relative; z-index: 1; padding: 70px 0; overflow: hidden;
}
.lead-form-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.08), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.lead-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lead-form-text h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.lead-form-text p { color: #7c8aaa; margin-bottom: 24px; font-size: 1rem; }
.urgency-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2);
  border-radius: 10px; padding: 10px 18px; margin-bottom: 24px;
  font-size: 0.85rem; color: #fca5a5;
}
.form-benefits { display: flex; flex-direction: column; gap: 12px; }
.form-benefits li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }

/* Form Card */
.lead-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 36px;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.form-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.form-header h3 { font-size: 1.3rem; font-weight: 700; }
.form-timer {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Poppins', sans-serif; font-weight: 700;
  color: #f59e0b; font-size: 0.85rem;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #94a3b8; margin-bottom: 8px; }
.input-wrap {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 0 14px; color: #64748b;
  transition: border-color 0.3s;
}
.input-wrap:focus-within { border-color: #3b82f6; }
.textarea-wrap { align-items: flex-start; padding-top: 12px; }
.input-wrap input, .input-wrap select, .input-wrap textarea {
  flex: 1; background: none; border: none; outline: none;
  color: #f0f4ff; padding: 12px 0; font-size: 0.92rem;
}
.input-wrap select { cursor: pointer; }
.input-wrap select option { background: #141b2d; color: #f0f4ff; }
.input-wrap textarea { resize: vertical; min-height: 80px; }
.btn-submit { margin-top: 6px; }

.form-note {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 14px; font-size: 0.78rem; color: #64748b; text-align: center;
}

/* ---------- TRUST SECTION ---------- */
.trust-section { position: relative; z-index: 1; padding: 56px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-block {
  text-align: center; padding: 36px; border-radius: 20px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  opacity: 0; transform: translateY(20px); transition: all 0.5s;
}
.trust-block.visible { opacity: 1; transform: translateY(0); }
.trust-block-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(59,130,246,0.1); color: #3b82f6;
  margin: 0 auto 18px;
}
.trust-block h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.trust-block p { font-size: 0.88rem; color: #7c8aaa; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative; z-index: 1; padding: 70px 0;
  text-align: center; overflow: hidden;
}
.final-cta-glow {
  position: absolute; width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.08), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.final-cta-content { position: relative; }
.final-cta h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; }
.final-cta p { color: #7c8aaa; font-size: 1.05rem; margin-bottom: 24px; }
.final-cta-urgency {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
  border-radius: 10px; padding: 12px 24px; margin-bottom: 32px;
  font-size: 0.9rem; color: #93b4f8;
}

/* ---------- FOOTER ---------- */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 44px 0 24px; background: rgba(0,0,0,0.2);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: #7c8aaa; font-size: 0.9rem; margin-top: 16px; max-width: 300px; }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  color: #7c8aaa; transition: all 0.3s;
}
.footer-socials a:hover { color: #3b82f6; border-color: rgba(59,130,246,0.3); background: rgba(59,130,246,0.1); }
.footer-links h4, .footer-contact h4 {
  font-size: 0.9rem; font-weight: 700; margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: #7c8aaa; transition: color 0.3s; }
.footer-links a:hover { color: #3b82f6; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; color: #7c8aaa; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: #475569; }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.wa-ripple {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waRipple 2s ease-out infinite;
}
@keyframes waRipple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: #1e293b; color: #f0f4ff; padding: 8px 14px;
  border-radius: 8px; font-size: 0.8rem; font-weight: 600;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.wa-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: #1e293b;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ---------- EXIT POPUP ---------- */
.exit-popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.7);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.4s;
  padding: 20px;
}
.exit-popup-overlay.active { opacity: 1; visibility: visible; }
.exit-popup {
  background: linear-gradient(145deg, #141b2d, #0f1525);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 44px; max-width: 440px; width: 100%;
  position: relative; text-align: center;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  transform: scale(0.9); transition: transform 0.4s;
}
.exit-popup-overlay.active .exit-popup { transform: scale(1); }
.exit-popup-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.06); border: none; border-radius: 10px;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  color: #64748b; cursor: pointer; transition: all 0.3s;
}
.exit-popup-close:hover { background: rgba(239,68,68,0.1); color: #ef4444; }
.exit-popup-icon { margin-bottom: 20px; }
.exit-popup-content h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.exit-popup-content p { font-size: 0.92rem; color: #7c8aaa; margin-bottom: 20px; }
.exit-popup-timer {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 700;
  color: #f59e0b; font-size: 1.1rem; margin-bottom: 24px;
}
.exit-popup-dismiss {
  display: block; margin: 16px auto 0; background: none; border: none;
  color: #475569; font-size: 0.82rem; cursor: pointer;
  text-decoration: underline; transition: color 0.3s;
}
.exit-popup-dismiss:hover { color: #94a3b8; }

/* ---------- ANIMATIONS ---------- */
[data-aos] { transition: all 0.6s ease; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { max-width: 100%; }
  .hero-price-block { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-form-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .lead-form-text { display: flex; flex-direction: column; align-items: center; }
  .form-benefits { align-items: center; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: rgba(10,14,26,0.98);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 24px;
    padding: 40px; transition: right 0.4s;
    border-left: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: block; z-index: 1001; }
  .hero { min-height: 0; padding: 100px 0 60px; }
  .trust-items { flex-direction: column; align-items: flex-start; gap: 24px; }
  .trust-divider { display: none; }
  .ps-grid { grid-template-columns: 1fr; }
  .ps-arrow-col { flex-direction: row; padding: 10px 0; }
  .ps-arrow-line { width: 40px; height: 2px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .floating-badge { display: none; }
  .mockup-phone { width: 100px; right: -15px; bottom: -10px; }
  .sticky-cta-inner { flex-direction: column; text-align: center; gap: 10px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-h1 { font-size: 1.8rem; }
  .pricing-card { padding: 28px; }
  .exit-popup { padding: 32px 24px; }
  .lead-form-card { padding: 24px; }
}
