/* ============================================================
   LeaseMate Landing Page – Style System
   Brand Colors: Navy (#1a2332) · Cream (#f8f4ed) · Gold (#c9a84c)
   ============================================================ */

/* ─── Design Tokens ─── */
:root {
  /* Brand Colors */
  --navy:        #1a2332;
  --navy-light:  #243447;
  --navy-dark:   #0f1620;
  --navy-muted:  rgba(26, 35, 50, 0.08);
  --cream:       #f8f4ed;
  --cream-dark:  #ede8e0;
  --cream-mid:   #f2ede5;
  --gold:        #c9a84c;
  --gold-light:  #e2c06e;
  --gold-dark:   #a8892f;
  --gold-bg:     rgba(201, 168, 76, 0.10);
  --white:       #ffffff;

  /* Semantic */
  --text-primary:   #1a2332;
  --text-secondary: #4b5563;
  --text-muted:     #9ca3af;
  --border:         rgba(26, 35, 50, 0.10);
  --border-light:   rgba(26, 35, 50, 0.06);

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.12);
  --shadow-navy: 0 8px 32px rgba(26,35,50,0.20);

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill: 100px;

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

/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

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

/* ─── Typography helpers ─── */
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-badge {
  display: inline-block;
  background: var(--gold-bg);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(201,168,76,0.25);
}

.badge-light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.2);
}

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

/* ─── Buttons ─── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-cream {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  transition: background var(--transition), transform var(--transition);
}
.btn-cream:hover { background: white; transform: translateY(-2px); }

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline-navy:hover { background: var(--navy); color: white; }

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

/* ─── Store Buttons ─── */
.store-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.store-btn {
  display: flex;
  align-items: center;
  transition: transform var(--transition), opacity var(--transition);
}
.store-btn img { 
  height: 40px;
  width: auto; 
  display: block;
  border-radius: var(--r-sm); 
}
.store-btn:hover { transform: translateY(-3px); opacity: 0.9; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
  padding: 0 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--navy);
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.logo:hover { opacity: 0.75; }

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.btn-nav-cta {
  background: var(--navy);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--navy-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 28px 20px;
  border-top: 1px solid var(--border-light);
  gap: 4px;
  background: white;
}
.mobile-menu a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--navy); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta {
  margin-top: 8px;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 13px;
  border-radius: var(--r-pill);
  border-bottom: none;
}
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Background decorative shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.shape-1 { width: 700px; height: 700px; top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%); }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 30%; background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%); }

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

.hero-left { display: flex; flex-direction: column; gap: 24px; }

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(201,168,76,0.25);
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  max-width: 500px;
}

.hero-actions { display: flex; flex-direction: column; gap: 16px; }

.btn-lead-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  width: fit-content;
  transition: color var(--transition), gap var(--transition);
}
.btn-lead-link:hover { color: white; gap: 12px; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
}
.proof-avatars { display: flex; }
.proof-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  object-fit: cover;
  margin-left: -8px;
}
.proof-av:first-child { margin-left: 0; }
.proof-text { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.proof-text strong { color: rgba(255,255,255,0.9); }

/* Hero Right */
.hero-right { display: flex; justify-content: flex-end; }
.hero-mockup-wrap { position: relative; }
.hero-mockup {
  max-height: 780px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.4));
  animation: float 6s ease-in-out infinite;
}

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

/* Float cards */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatCard 5s ease-in-out infinite;
}
.hero-float-card .float-icon { font-size: 1.4rem; }
.hero-float-card strong { display: block; font-size: 0.8rem; font-weight: 700; color: white; }
.hero-float-card span { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.hero-float-card--1 { bottom: 100px; left: -100px; animation-delay: 0s; }
.hero-float-card--2 { top: 60px; right: -90px; animation-delay: 1.5s; }

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

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.who-we-serve {
  padding: 100px 0;
  background: var(--cream);
}

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

.serve-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}


.serve-icon { font-size: 2rem; }
.serve-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.serve-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   THE PROBLEM
   ============================================================ */
.the-problem {
  padding: 100px 0;
  background: white;
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}

.problem-left { display: flex; flex-direction: column; gap: 16px; }
.problem-left .section-sub { max-width: 100%; }

.pain-list { display: flex; flex-direction: column; gap: 20px; }

.pain-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--r-md);
  border: 1px solid var(--border-light);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pain-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.pain-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.pain-text { display: flex; flex-direction: column; gap: 4px; }
.pain-text strong { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.pain-text span { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   THE SOLUTION
   ============================================================ */
.the-solution {
  padding: 100px 0;
  background: var(--cream);
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.solution-visual { position: relative; display: flex; justify-content: center; }
.solution-mock {
  max-height: 620px;
  width: auto;
  filter: drop-shadow(0 20px 48px rgba(26,35,50,0.16));
  border-radius: var(--r-xl);
}

.solution-badge-float {
  position: absolute;
  bottom: 32px;
  left: -16px;
  background: var(--navy);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-navy);
}

.solution-content { display: flex; flex-direction: column; gap: 24px; }
.solution-content .section-sub { max-width: 100%; }

.solution-points { display: flex; flex-direction: column; gap: 12px; }
.solution-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--text-secondary);
}
.point-check {
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.solution-store { margin-top: 8px; }

/* ============================================================
   CORE FEATURES
   ============================================================ */
.features {
  padding: 100px 0;
  background: var(--navy);
}

.features .section-title { color: white; }
.features .section-badge { background: rgba(201,168,76,0.15); color: var(--gold-light); border-color: rgba(201,168,76,0.25); }
.features .section-sub { color: rgba(255,255,255,0.6); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  overflow: hidden;
}
.feature-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.feature-card h3 { font-size: 1.2rem; font-weight: 700; color: white; }
.feature-card p  { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* Large feature card (Script Generator) */
.feature-card--lg {
  grid-column: span 2;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.2);
  padding: 36px 40px;
}
.feature-card--lg:hover { border-color: rgba(201,168,76,0.5); }

.feature-card-inner { flex: 1; display: flex; flex-direction: column; gap: 16px; }

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--icon-color, var(--gold));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0.9;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  padding-left: 16px;
  position: relative;
}
.feature-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.feature-mockup {
  width: 250px;
  flex-shrink: 0;
}
.feature-mockup img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 36px rgba(0,0,0,0.35));
  border-radius: var(--r-xl);
}

.feature-card-mock {
  width: 100%;
  max-width: 180px;
  align-self: flex-end;
  margin-top: auto;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 16px 36px rgba(0,0,0,0.35));
  border-radius: var(--r-xl);
}

/* ============================================================
   ACADEMY BANNER
   ============================================================ */
.academy {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
}

.academy-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,22,32,0.88) 0%, rgba(26,35,50,0.82) 100%);
}

.academy-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.academy-content .section-title { color: white; max-width: 640px; }

.academy-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.75;
}

.academy-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

/* ============================================================
   LATEST ARTICLES
   ============================================================ */
.latest-articles {
  padding: 100px 0;
  background: var(--cream);
}

.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  margin-bottom: 48px;
  flex-direction: row;
}
.articles-header > div { display: flex; flex-direction: column; gap: 8px; }

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

.article-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.article-img-wrap {
  aspect-ratio: 16/9;
  background: var(--navy-muted);
  overflow: hidden;
  position: relative;
}
.article-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.article-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream-mid));
}

.article-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.article-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
}

.article-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.article-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.article-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: color var(--transition), gap var(--transition);
}
.article-link:hover { color: var(--gold-dark); gap: 8px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: white;
}

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

.review-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.review-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.03);
}
.review-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.review-card--featured .review-text { color: rgba(255,255,255,0.85); }
.review-card--featured .review-author { color: white; }
.review-card--featured .review-role { color: rgba(255,255,255,0.5); }
.review-card--featured .review-stars { color: var(--gold-light); }

.review-stars {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-author { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.review-role   { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   LEAD MAGNET
   ============================================================ */
.lead-magnet {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}

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

.lead-content { display: flex; flex-direction: column; gap: 20px; }
.lead-content .section-title { color: white; }

.lead-desc { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.75; }

.lead-bullets { display: flex; flex-direction: column; gap: 10px; }
.lead-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.lead-bullets li span {
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Form Card */
.lead-form-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-navy);
}
.lead-form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.lead-form-card > p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 24px; }

.lead-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: white;
}
.form-group input::placeholder { color: var(--text-muted); }

.form-disclaimer { font-size: 0.78rem; color: var(--text-muted); text-align: center; }

/* Success State */
.lead-success {
  text-align: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.success-icon { font-size: 2.5rem; }
.lead-success strong { font-size: 1.1rem; color: var(--navy); }
.lead-success p { font-size: 0.9rem; color: var(--text-secondary); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 100px 0;
  background: var(--cream);
}

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

.faq-item {
  background: white;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item.faq-item--open { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201,168,76,0.15); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--cream); }

.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: transform var(--transition);
}

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.25s var(--ease);
}
.faq-a--open {
  max-height: 600px;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-a a { color: var(--gold-dark); text-decoration: underline; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 100px 0;
  background: white;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 60px 72px;
  overflow: hidden;
  position: relative;
}
.final-cta-inner::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.final-cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
}
.final-cta-content p { color: rgba(255,255,255,0.65); line-height: 1.7; }

.cta-price { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

.final-cta-mockup {
  width: 270px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.final-cta-mockup img { filter: drop-shadow(0 16px 48px rgba(0,0,0,0.4)); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding: 48px 0;
}

.footer-inner { display: flex; flex-direction: column; gap: 32px; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  transition: opacity var(--transition);
}
.footer-logo:hover { opacity: 0.7; }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-copy a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-copy a:hover { color: white; }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: white; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

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

/* Large tablets */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-right { justify-content: center; }
  .hero-sub, .hero-badge, .btn-lead-link { margin: 0 auto; }
  .hero-actions, .hero-proof { align-items: center; justify-content: center; }
  .hero-float-card--1 { bottom: 80px; left: -60px; }
  .hero-float-card--2 { top: 40px; right: -55px; }
  .hero-mockup { max-height: 600px; }

  .solution-inner { grid-template-columns: 1fr; }
  .solution-visual { display: none; }

  .feature-card--lg { flex-direction: column; }
  .feature-mockup {
    display: block;
    width: 100%;
    max-width: 180px;
    margin: 20px auto 0 auto;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .navbar .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  .serve-grid    { grid-template-columns: 1fr; }
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--lg { grid-column: span 1; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .review-card--featured { transform: none; }
  .review-card--featured:hover { transform: translateY(-4px); }
  .articles-grid { grid-template-columns: 1fr; }
  .articles-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .lead-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .final-cta-inner {
    flex-direction: column;
    padding: 40px 32px;
    gap: 40px;
  }
  .final-cta-mockup {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  .final-cta-content { align-items: center; text-align: center; }
}

/* Mobile */
@media (max-width: 480px) {
  .hero { padding: 90px 0 48px; }
  .hero-title { font-size: 2.2rem; }
  .hero-mockup { max-height: 470px; }
  .hero-float-card { display: none; }

  .section-header { margin-bottom: 40px; }
  .who-we-serve, .the-problem, .the-solution, .features,
  .academy, .latest-articles, .testimonials, .lead-magnet,
  .faq-section, .final-cta { padding: 72px 0; }

  .lead-form-card { padding: 28px 24px; }

  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}
