/* ============================================
   LIPIC — Global Styles & Variables
   ============================================ */

:root {
  /* Colors */
  --primary: #1E3A5F;
  --primary-dark: #152D4A;
  --primary-light: #2E5C8A;
  --primary-bg: #EEF4FA;
  --accent: #10B981;
  --accent-light: #D1FAE5;

  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  --white: #FFFFFF;
  --black: #000000;

  --gradient-primary: linear-gradient(135deg, #1E3A5F 0%, #2E5C8A 50%, #3B7DBA 100%);
  --gradient-hero: linear-gradient(160deg, #0A1628 0%, #112240 40%, #1E3A5F 100%);
  --gradient-card: linear-gradient(135deg, rgba(30, 58, 95, 0.04) 0%, rgba(46, 92, 138, 0.02) 100%);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-hindi: 'Noto Sans Devanagari', sans-serif;

  /* Spacing */
  --section-padding: 80px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 40px rgba(30, 58, 95, 0.3);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s var(--ease);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary-bg);
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s var(--ease);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: var(--white);
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.navbar.scrolled .logo-text {
  color: var(--gray-900);
}

.logo-hindi {
  font-family: var(--font-hindi);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.navbar.scrolled .logo-hindi {
  color: var(--gray-400);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s var(--ease);
}

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

.navbar.scrolled .nav-links a {
  color: var(--gray-500);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--gray-900);
}

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

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

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.navbar.scrolled .mobile-toggle span {
  background: var(--gray-700);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  background: var(--gradient-hero);
  min-height: 100vh;
  padding: 120px 0 60px;
  overflow: hidden;
}

.hero-bg-animation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.15), transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -50px;
  background: radial-gradient(circle, rgba(46, 92, 138, 0.1), transparent 70%);
  animation-delay: -5s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  top: 30%;
  left: 20%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent 70%);
  animation-delay: -10s;
}

.shape-4 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 30%;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.12), transparent 70%);
  animation-delay: -15s;
}

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

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.825rem;
  font-weight: 500;
  margin-bottom: 24px;
}

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin-bottom: 28px;
}

.hindi-inline {
  font-family: var(--font-hindi);
  color: inherit;
  opacity: 0.5;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Dashboard Mockup */

.hero-visual {
  position: relative;
}

.dashboard-mockup {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(30, 58, 95, 0.15);
  animation: mockup-float 6s ease-in-out infinite;
}

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

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FEBC2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }

.mockup-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.mockup-body {
  display: flex;
  min-height: 340px;
}

.mockup-sidebar {
  width: 160px;
  padding: 16px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.2s var(--ease);
}

.sidebar-item.active {
  background: rgba(30, 58, 95, 0.3);
  color: var(--white);
}

.sidebar-item svg {
  opacity: 0.6;
  flex-shrink: 0;
}

.sidebar-item.active svg {
  opacity: 1;
}

.mockup-content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: card-slide 0.6s var(--ease) backwards;
}

.mockup-card:nth-child(1) { animation-delay: 0.3s; }
.mockup-card:nth-child(2) { animation-delay: 0.5s; }
.mockup-card:nth-child(3) { animation-delay: 0.7s; }

@keyframes card-slide {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.card-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.card-icon.email-icon {
  background: rgba(251, 191, 36, 0.15);
  color: #FCD34D;
}

.card-icon.cat-icon {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
}

.card-icon.rec-icon {
  background: rgba(46, 92, 138, 0.15);
  color: #5B9BD5;
}

.card-info {
  flex: 1;
  min-width: 0;
}

.card-label {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card-value {
  display: block;
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-badge {
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.badge-new {
  background: rgba(251, 191, 36, 0.15);
  color: #FCD34D;
}

.badge-done {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
}

.badge-matched {
  background: rgba(30, 58, 95, 0.2);
  color: #5B9BD5;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  height: 80px;
}

.chart-bar {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: rgba(30, 58, 95, 0.3);
  transition: background 0.3s var(--ease);
}

.chart-bar.highlight {
  background: var(--primary-light);
}

/* ============================================
   Section Commons
   ============================================ */

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 44px;
}

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   Features Section
   ============================================ */

.features {
  padding: var(--section-padding) 0;
  background: var(--white);
}

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

.feature-card {
  padding: 28px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.feature-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-email { background: #EEF4FA; color: #1E3A5F; }
.icon-ai { background: #DBEAFE; color: #3B82F6; }
.icon-cat { background: #FEF3C7; color: #D97706; }
.icon-ledger { background: #D1FAE5; color: #059669; }
.icon-bank { background: #FCE7F3; color: #DB2777; }
.icon-report { background: #E0E7FF; color: #2E5C8A; }

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.925rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   How It Works Section
   ============================================ */

.how-it-works {
  padding: var(--section-padding) 0;
  background: var(--gray-50);
}

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

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

.step-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-top: 4px;
  flex-shrink: 0;
}

.step-visual {
  flex-shrink: 0;
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.step:hover .step-icon-wrap {
  border-color: var(--primary);
  background: var(--primary-bg);
  box-shadow: var(--shadow-glow);
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  justify-content: center;
  padding: 12px 0 12px 36px;
  color: var(--gray-300);
}

/* ============================================
   Benefits Section
   ============================================ */

.benefits {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 28px 28px;
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  border: 1px solid var(--gray-100);
  transition: all 0.35s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.benefit-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-bg);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.925rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing {
  padding: var(--section-padding) 0;
  background: var(--gray-50);
}

.early-bird-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 500px;
  margin: -20px auto 24px;
  padding: 12px 24px;
  border-radius: 100px;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 1px solid #F59E0B;
  color: #92400E;
  font-size: 0.9rem;
  font-weight: 500;
}

.early-bird-icon {
  font-size: 1rem;
  color: #D97706;
}

.early-bird-banner strong {
  font-weight: 700;
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.toggle-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-400);
  cursor: pointer;
  transition: color 0.2s var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-label.active {
  color: var(--gray-900);
  font-weight: 600;
}

.toggle-save {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--accent-light);
  color: #059669;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  border-radius: 100px;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s var(--ease);
}

.toggle-switch.yearly {
  background: var(--primary);
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease);
}

.toggle-switch.yearly .toggle-knob {
  transform: translateX(24px);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all 0.35s var(--ease);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(30, 58, 95, 0.1);
  transform: scale(1.02);
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 100px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-top: 4px;
}

.pricing-price {
  margin: 24px 0 16px;
}

.original-price {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.discounted-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1;
}

.amount.custom {
  font-size: 2.25rem;
}

.period {
  font-size: 0.95rem;
  color: var(--gray-400);
  margin-left: 4px;
}

/* Trial Badge */
.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: #ECFDF5;
  color: #047857;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.trial-badge-muted {
  background: var(--gray-100);
  color: var(--gray-500);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.925rem;
  color: var(--gray-600);
}

.pricing-features svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   CTA Section
   ============================================ */

.cta {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.cta-card {
  position: relative;
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  background: var(--gradient-hero);
  overflow: hidden;
  text-align: center;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(30, 58, 95, 0.2) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Unified CTA Form */
.cta-unified-form {
  max-width: 580px;
  margin: 0 auto;
}

.cta-step {
  animation: fadeSlideUp 0.35s ease;
}

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

/* Intent Pills */
.cta-intent-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.intent-pill {
  cursor: pointer;
  position: relative;
  display: inline-flex;
}

.intent-pill input[type="radio"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  margin: 0;
  padding: 0;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.intent-pill span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  user-select: none;
  -webkit-user-select: none;
}

.intent-pill span i {
  font-size: 0.8rem;
}

.intent-pill:hover span {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
}

.intent-pill input[type="radio"]:checked + span {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
}

/* Email Row */
.cta-email-row {
  display: flex;
  gap: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}

.cta-email-row:focus-within {
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-email-row input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.cta-email-row input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.cta-email-row .btn {
  border-radius: 0;
  padding: 16px 28px;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Step 2 */
.cta-step2-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.cta-back-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8rem;
  font-family: var(--font-body);
  transition: all 0.2s var(--ease);
}

.cta-back-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cta-step2-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.cta-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.cta-fields-grid input,
.cta-unified-form textarea {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s var(--ease);
  width: 100%;
  box-sizing: border-box;
}

.cta-fields-grid input::placeholder,
.cta-unified-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cta-fields-grid input:focus,
.cta-unified-form textarea:focus {
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.15);
}

.cta-unified-form textarea {
  resize: vertical;
  margin-bottom: 12px;
  min-height: 80px;
}

.cta-form-error {
  color: #FCA5A5;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 10px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Success State */
.cta-success {
  text-align: center;
  padding: 20px 0;
}

.cta-success-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.cta-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cta-success p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.form-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

/* ============================================
   About Section
   ============================================ */

.about {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.about-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.about-content p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--gray-800);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: 48px 0 24px;
  background: var(--gray-900);
  color: var(--gray-400);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-hindi {
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-500);
  max-width: 320px;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--gray-500);
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--gray-500);
  transition: color 0.2s var(--ease);
}

.footer-social a:hover {
  color: var(--white);
}

/* ============================================
   Scroll Animations
   ============================================ */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .features-grid,
  .benefits-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 56px;
  }

  .early-bird-banner {
    font-size: 0.8rem;
    padding: 10px 18px;
    margin: -24px auto 28px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: var(--gray-700) !important;
    font-size: 1rem;
  }

  .mobile-toggle {
    display: flex;
  }

  .navbar .btn-sm {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }

  .mockup-sidebar {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-card {
    padding: 36px 20px;
  }

  .cta-email-row {
    flex-direction: column;
    background: none;
    border: none;
    gap: 12px;
    border-radius: 0;
  }

  .cta-email-row input {
    background: rgba(0, 0, 0, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
  }

  .cta-email-row .btn {
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .cta-intent-pills {
    gap: 8px;
  }

  .intent-pill span {
    font-size: 0.78rem;
    padding: 9px 14px;
    gap: 6px;
  }

  .cta-fields-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-group {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 48px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 20px;
  }

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

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-connector {
    padding-left: 0;
  }

  .footer-links-group {
    grid-template-columns: 1fr;
  }
}
