/* ============================================
   CAPTORA LITE — Global Styles
   Forest Green + Gold Brand Identity
   ============================================ */

:root {
  /* Brand Colors — from logo */
  --primary: #1B6B3A;           /* Deep forest green */
  --primary-light: #2E8B50;     /* Mid green */
  --primary-bright: #3AAD65;    /* Bright green */
  --primary-dark: #124D28;      /* Dark green */
  --gold: #D4AF37;              /* Rich gold */
  --gold-light: #F0D060;        /* Light gold */
  --gold-dark: #A8892A;         /* Deep gold */
  --cream: #F5F0E8;             /* Logo cream/ivory */

  /* Dark Theme Backgrounds */
  --bg-dark: #070D0A;           /* Near-black with green tint */
  --bg-card: #0D1610;           /* Dark green-black card */
  --bg-card2: #121E15;          /* Slightly lighter card */
  --border: rgba(45, 139, 80, 0.25);
  --border-light: rgba(255,255,255,0.07);
  --border-gold: rgba(212, 175, 55, 0.25);

  /* Text */
  --text-primary: #F5F0E8;      /* Cream from logo */
  --text-secondary: #A8B8A0;    /* Muted green-grey */
  --text-muted: #4A6050;        /* Dark muted */

  /* Gradients */
  --gradient-main: linear-gradient(135deg, #1B6B3A 0%, #D4AF37 100%);
  --gradient-green: linear-gradient(135deg, #1B6B3A 0%, #3AAD65 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F0D060 100%);
  --gradient-dark: linear-gradient(135deg, #0D1610 0%, #1B2E1F 100%);

  /* Shadows */
  --shadow-green: 0 0 40px rgba(27, 107, 58, 0.35);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.25);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);

  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   BACKGROUND ATMOSPHERE
   ============================================ */
body::before {
  content: '';
  position: fixed;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(27,107,58,0.12) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* ============================================
   PARTICLES
   ============================================ */
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0;
}
@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  background: rgba(7, 13, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  transition: var(--transition);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}
.nav-logo-img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212,175,55,0.4);
  box-shadow: 0 0 12px rgba(212,175,55,0.2);
}
.nav-logo-text {
  display: flex;
  align-items: center;
  gap: 7px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-lite-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}

/* Logo icon (fallback) */
.logo-icon {
  width: 36px; height: 36px;
  background: var(--gradient-main);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  box-shadow: var(--shadow-green);
}
.logo-icon.small { width: 28px; height: 28px; font-size: 13px; border-radius: 6px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-link:hover { color: var(--gold-light); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-nav {
  background: rgba(212,175,55,0.12);
  color: var(--gold-light);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 9px 18px;
  font-size: 13px;
}
.btn-nav:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.btn-hero {
  background: var(--gradient-green);
  color: white;
  padding: 15px 34px;
  font-size: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(27,107,58,0.5);
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(27,107,58,0.65);
}
.btn-hero-outline {
  background: rgba(212,175,55,0.1);
  color: var(--gold-light);
  border: 1.5px solid rgba(212,175,55,0.45);
  padding: 15px 28px;
  font-size: 16px;
  border-radius: 12px;
}
.btn-hero-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn-gate {
  width: 100%;
  justify-content: center;
  background: var(--gradient-green);
  color: white;
  padding: 15px;
  font-size: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(27,107,58,0.4);
  margin-top: 8px;
}
.btn-gate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(27,107,58,0.6);
}
.btn-pro-upgrade {
  width: 100%;
  justify-content: center;
  background: var(--gradient-gold);
  color: var(--bg-dark);
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  transition: var(--transition);
}
.btn-pro-upgrade:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-funnel-link {
  background: rgba(212,175,55,0.1);
  color: var(--gold-light);
  border: 1.5px solid rgba(212,175,55,0.35);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 8px;
}
.btn-funnel-link:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 140px 24px 80px;
  text-align: center;
}
.hero-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(27,107,58,0.15);
  border: 1px solid rgba(27,107,58,0.4);
  border-radius: 50px;
  font-size: 13px;
  color: var(--primary-bright);
  font-weight: 500;
  animation: fadeInDown 0.6s ease both;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.3px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subhead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.78;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-br { display: none; }
@media (min-width: 769px) { .hero-br { display: block; } }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  background: rgba(27,107,58,0.08);
  border: 1px solid rgba(27,107,58,0.25);
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}
.tag i { color: var(--primary-bright); font-size: 11px; }

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-micro {
  font-size: 13px;
  color: var(--text-muted);
  animation: fadeInUp 0.7s ease 0.5s both;
}
.hero-micro i { margin-right: 4px; color: var(--primary-bright); }

/* HERO MOCKUP */
.hero-mockup {
  margin-top: 48px;
  width: 100%;
  max-width: 600px;
  animation: fadeInUp 0.9s ease 0.6s both;
}
.mockup-window {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.2);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 60px rgba(27,107,58,0.12);
}
.mockup-bar {
  background: var(--bg-card2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-light);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #EF4444; }
.dot.yellow { background: var(--gold); }
.dot.green { background: var(--primary-bright); }
.mockup-title {
  font-size: 12px; color: var(--text-muted);
  margin-left: 8px; font-weight: 500; letter-spacing: 0.5px;
}
.mockup-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.chat-bubble { display: flex; gap: 12px; align-items: flex-start; }
.chat-bubble.user { flex-direction: row-reverse; }
.bubble-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(212,175,55,0.3);
}
.bubble-logo { width: 100%; height: 100%; object-fit: cover; }
.bubble-text {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 85%;
}
.chat-bubble.ai .bubble-text {
  background: rgba(27,107,58,0.12);
  border: 1px solid rgba(27,107,58,0.25);
  color: var(--text-primary);
  border-radius: 4px 12px 12px 12px;
}
.chat-bubble.user .bubble-text {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--text-primary);
  border-radius: 12px 4px 12px 12px;
  text-align: right;
}
.typing-dots { display: inline-flex; gap: 4px; margin-right: 8px; vertical-align: middle; }
.typing-dots span {
  width: 6px; height: 6px;
  background: var(--primary-bright);
  border-radius: 50%;
  animation: typingBounce 1.2s infinite ease-in-out;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-5px); opacity: 1; }
}

/* VERSION NOTE */
.hero-version-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  margin-top: 12px;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  font-size: 13px;
  flex-wrap: wrap;
}
.version-free { color: var(--primary-bright); font-weight: 500; }
.version-free i { margin-right: 4px; }
.version-divider { color: var(--text-muted); }
.version-pro { color: var(--gold-light); font-weight: 600; }
.version-pro i { margin-right: 4px; }

/* ============================================
   SOCIAL PROOF STRIP
   ============================================ */
.social-proof-strip {
  position: relative;
  z-index: 1;
  background: rgba(27,107,58,0.07);
  border-top: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  padding: 14px 24px;
}
.proof-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}
.proof-container i { color: var(--gold); margin-right: 5px; }
.divider { color: var(--text-muted); }
.proof-link { color: var(--gold-light); text-decoration: none; font-weight: 600; }
.proof-link:hover { color: var(--gold); }

/* ============================================
   SECTIONS SHARED
   ============================================ */
section { position: relative; z-index: 1; }
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
  text-align: center;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.75;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features {
  background: linear-gradient(180deg, transparent 0%, rgba(27,107,58,0.04) 50%, transparent 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(27,107,58,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(27,107,58,0.1);
}
.feature-card:hover::before { opacity: 1; }
.feature-card.featured {
  border-color: rgba(212,175,55,0.35);
  background: linear-gradient(145deg, var(--bg-card), rgba(212,175,55,0.05));
}
.feature-card.featured::before { opacity: 1; background: var(--gradient-gold); }
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.feature-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.green-icon {
  background: rgba(27,107,58,0.15);
  color: var(--primary-bright);
  border: 1px solid rgba(27,107,58,0.3);
}
.gold-icon {
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
}
.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.feature-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); }
.feature-list li i { color: var(--primary-bright); font-size: 11px; flex-shrink: 0; }

.feature-platform-row { display: flex; flex-wrap: wrap; gap: 6px; }
.fp-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}
.pro-tag {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.25);
  color: var(--gold);
}
.pro-tag i { font-size: 9px; }

/* ============================================
   LITE VS PRO COMPARISON
   ============================================ */
.lite-vs-pro {
  margin-top: 64px;
  background: var(--bg-card);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  overflow: hidden;
}
.lvp-header {
  padding: 32px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(135deg, rgba(27,107,58,0.08), rgba(212,175,55,0.05));
}
.lvp-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.lvp-header h3 i { color: var(--gold); margin-right: 8px; }
.lvp-header p { font-size: 14px; color: var(--text-secondary); }
.lvp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.lvp-col {
  padding: 32px;
}
.lvp-col:first-child { border-right: 1px solid var(--border-light); }
.lvp-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.free-badge {
  color: var(--primary-bright);
  background: rgba(27,107,58,0.12);
  border: 1px solid rgba(27,107,58,0.3);
}
.pro-badge {
  color: var(--gold);
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
}
.lvp-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lvp-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.lvp-col ul li i.fa-check { color: var(--primary-bright); font-size: 11px; }
.lvp-col ul li i.fa-times { color: var(--text-muted); font-size: 11px; }
.lvp-col ul li.muted { opacity: 0.45; }
.lvp-col ul li strong { color: var(--text-primary); }
.lvp-pro { background: rgba(212,175,55,0.03); }

/* ============================================
   AUDIENCE SECTION
   ============================================ */
.audience {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  text-align: left;
}
.audience-card {
  padding: 26px 18px;
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
}
.audience-card:hover {
  border-color: rgba(27,107,58,0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.audience-icon {
  width: 42px; height: 42px;
  background: rgba(27,107,58,0.12);
  border: 1px solid rgba(27,107,58,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-bright);
  margin-bottom: 14px;
}
.audience-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 7px; color: var(--text-primary); line-height: 1.3; }
.audience-card p { font-size: 12px; color: var(--text-secondary); line-height: 1.65; }

/* ============================================
   LEAD GATE SECTION
   ============================================ */
.gate-section { padding: 100px 24px; }
.gate-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-bright);
  background: rgba(27,107,58,0.1);
  border: 1px solid rgba(27,107,58,0.3);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.gate-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.gate-left p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 26px; }
.gate-benefits { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.gate-benefits li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-secondary); }
.gate-benefits li i {
  width: 22px; height: 22px;
  background: rgba(27,107,58,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-bright);
  font-size: 11px;
  flex-shrink: 0;
}
.gate-funnel-link p { font-size: 13px; color: var(--text-muted); margin-bottom: 0; }

/* GATE FORM */
.gate-form-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--shadow-card), 0 0 50px rgba(27,107,58,0.08);
}
.gate-form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
}
.gate-logo {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(212,175,55,0.35);
}
.gate-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.3px; }
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-light);
  background: rgba(27,107,58,0.06);
  box-shadow: 0 0 0 3px rgba(27,107,58,0.15);
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--bg-card2); color: var(--text-primary); }
.optional { color: var(--text-muted); font-weight: 400; font-size: 12px; }
.gate-disclaimer { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.gate-disclaimer i { margin-right: 4px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(212,175,55,0.3);
}
.footer-tagline { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: var(--transition); display: flex; align-items: center; gap: 5px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-copy a { color: var(--gold); text-decoration: none; }
.footer-copy a:hover { color: var(--gold-light); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid > *:last-child { grid-column: 1 / -1; max-width: 300px; margin: 0 auto; width: 100%; }
  .lvp-grid { grid-template-columns: 1fr; }
  .lvp-col:first-child { border-right: none; border-bottom: 1px solid var(--border-light); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 120px 16px 60px; }
  .hero-mockup { display: none; }
  .section-container { padding: 70px 16px; }
  .gate-container { grid-template-columns: 1fr; gap: 40px; }
  .gate-left { text-align: center; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid > *:last-child { max-width: 100%; }
  .proof-container { flex-direction: column; gap: 8px; text-align: center; }
  .divider { display: none; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 1.85rem; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .gate-form-card { padding: 22px 18px; }
}
