/* =========================================
   LoanFlow CRM — Landing Page Styles
   Dark Navy + Gold | Inter Font
   ========================================= */

:root {
  --navy-950: #050d1a;
  --navy-900: #080f1f;
  --navy-800: #0d1a30;
  --navy-700: #122240;
  --navy-600: #1a3055;
  --gold-500: #c9a227;
  --gold-400: #d4af37;
  --gold-300: #e8c84a;
  --gold-200: #f5e08a;
  --white: #ffffff;
  --text-primary: #f0f4ff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(201, 162, 39, 0.2);
  --card-bg: rgba(13, 26, 48, 0.8);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-gold: 0 0 40px rgba(201, 162, 39, 0.15);
  --transition: 0.3s ease;
  --font: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: var(--navy-950);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================
   UTILITIES
   ========================================= */

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

.section {
  padding: 100px 0;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-link {
  color: var(--gold-400);
  transition: color var(--transition);
}
.gold-link:hover { color: var(--gold-200); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 12px 0 16px;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.section-tag {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-400);
  border: 1px solid rgba(201, 162, 39, 0.3);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-950);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: 14px;
}

.btn-full {
  width: 100%;
  padding: 14px 24px;
}

/* =========================================
   NAVBAR
   ========================================= */

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

.navbar.scrolled {
  background: rgba(5, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; }
.logo-text {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta { margin-left: 16px; padding: 10px 22px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =========================================
   HERO
   ========================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold-400);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

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

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 26, 48, 0.8);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
}
.badge-icon { font-size: 1rem; }

/* =========================================
   SOCIAL PROOF
   ========================================= */

.social-proof {
  background: var(--navy-800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sp-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sp-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sp-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 180px;
  line-height: 1.4;
}
.sp-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.sp-stars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.stars {
  color: var(--gold-400);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.sp-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sp-logo-pill {
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.25);
  color: var(--gold-400);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* =========================================
   FEATURES
   ========================================= */

.features {
  background: var(--navy-900);
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--shadow-gold);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ── Features "and more" teaser ─────────── */

.features-more {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.features-more-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.more-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.features-more-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 400;
  margin: 0;
}

.gold-em {
  font-style: normal;
  color: var(--gold-400, #f5c842);
  font-weight: 600;
}

/* =========================================
   HOW IT WORKS
   ========================================= */

.how-it-works {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-800) 50%, var(--navy-950) 100%);
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 40px 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.step:hover {
  border-color: rgba(201, 162, 39, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.4), rgba(201, 162, 39, 0.8), rgba(201, 162, 39, 0.4));
  position: relative;
}
.step-connector::after {
  content: '▶';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-400);
  font-size: 0.7rem;
}

/* =========================================
   PRICING
   ========================================= */

.pricing {
  background: var(--navy-900);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.pricing-card.popular {
  border-color: var(--gold-500);
  background: linear-gradient(135deg, rgba(13, 26, 48, 0.95), rgba(201, 162, 39, 0.05));
  box-shadow: 0 0 60px rgba(201, 162, 39, 0.15);
  transform: scale(1.03);
}
.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 16px;
  line-height: 1;
}
.currency {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 6px;
}
.amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
}
.period {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.plan-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.plan-features li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */

.testimonials {
  background: var(--navy-950);
}

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

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin: 16px 0 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-950);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}


/* =========================================
   FAQ SECTION
   ========================================= */

.faq-section { background: var(--bg); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #1a2235;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(201,162,39,0.35); }
.faq-item[open] { border-color: rgba(201,162,39,0.5); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  color: #f5a623;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}
.faq-item[open] .faq-question::after {
  content: '\00d7';
}

.faq-answer {
  padding: 0 24px 20px;
}
.faq-answer p {
  color: rgba(255,255,255,0.7);
  font-size: 0.93rem;
  line-height: 1.75;
  margin: 0;
}

/* =========================================
   WAITLIST / LEAD CAPTURE
   ========================================= */

.waitlist {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-950) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.waitlist-text .section-tag { margin-bottom: 20px; }
.waitlist-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.waitlist-text > p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.waitlist-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.waitlist-perks li {
  font-size: 0.93rem;
  color: var(--text-secondary);
}

.waitlist-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  backdrop-filter: blur(10px);
}

#selected-plan-banner {
  background: linear-gradient(135deg, #f5a623 0%, #e8941a 100%);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 24px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  opacity: 1 !important;
}

#no-plan-banner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 24px;
  opacity: 1 !important;
}

/* Leads tooltip */
.wl-info-icon {
  position: relative;
  display: inline-block;
  cursor: help;
  font-size: 0.8rem;
  vertical-align: middle;
  margin-left: 4px;
}
.wl-info-icon .wl-info-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  padding: 7px 10px;
  border-radius: 6px;
  width: 210px;
  text-align: center;
  white-space: normal;
  z-index: 200;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}
.wl-info-icon:hover .wl-info-tooltip,
.wl-info-icon:focus .wl-info-tooltip { display: block; }

/* Plan recommendation box */
.plan-recommendation {
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(245,166,35,0.07);
  border-left: 3px solid #f5a623;
  border-radius: 0 6px 6px 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
  animation: fadeInRec 0.25s ease;
}
.plan-recommendation .rec-plan {
  color: #f5a623;
  font-weight: 700;
}
@keyframes fadeInRec {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.waitlist-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group select option { background: var(--navy-800); color: var(--text-primary); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.casl-consent {
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--gold-400);
  margin-top: 2px;
  cursor: pointer;
}
.consent-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: -8px;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.form-success p { color: var(--text-secondary); line-height: 1.7; }


/* =========================================
   FOOTER
   ========================================= */

.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo { margin-bottom: 16px; }
.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 10px;
  max-width: 260px;
}
.footer-location {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: contents;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-400);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-bottom p {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.features-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.features-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.features-grid .reveal:nth-child(5) { transition-delay: 0.25s; }
.features-grid .reveal:nth-child(6) { transition-delay: 0.3s; }

.pricing-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.pricing-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.pricing-grid .reveal:nth-child(3) { transition-delay: 0.25s; }

.testimonials-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.25s; }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
  .waitlist-inner { gap: 48px; }
  .steps-grid { flex-direction: column; }
  .step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.4), rgba(201, 162, 39, 0.8), rgba(201, 162, 39, 0.4));
  }
  .step-connector::after {
    content: '▼';
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    top: auto;
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links, .nav-cta {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(5, 13, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .hamburger { display: flex; }

  .hero { padding: 120px 0 60px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .trust-badges { gap: 12px; }

  .social-proof-inner { flex-direction: column; gap: 24px; }
  .sp-divider { width: 60px; height: 1px; }

  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-6px); }

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

  .waitlist-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row { grid-template-columns: 1fr; }

  .waitlist-form-wrap { padding: 32px 24px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-links { display: flex; flex-direction: column; gap: 32px; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.9rem; }
  .badge { font-size: 0.8rem; padding: 8px 14px; }
  .step { padding: 28px 20px; }
  .faq-question { padding: 16px 18px; font-size: 0.92rem; }
}
