/* =========================================================
   AI Efficiency Playbook — Design System
   Deep navy + gold premium digital-product theme
   ========================================================= */

:root {
  --navy-950: #050b18;
  --navy-900: #0a1428;
  --navy-800: #0e1c38;
  --navy-700: #142a52;
  --navy-600: #1c3a6e;
  --gold: #d4af37;
  --gold-light: #f0cf6c;
  --gold-dark: #a9822a;
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #edf0f5;
  --gray-200: #dde2ea;
  --gray-400: #8992a3;
  --gray-600: #545c6e;
  --gray-900: #171b26;

  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;

  --shadow-sm: 0 2px 10px rgba(10, 20, 40, 0.07);
  --shadow-md: 0 10px 30px rgba(10, 20, 40, 0.10);
  --shadow-lg: 0 24px 60px rgba(6, 14, 30, 0.20);

  --container-w: 1220px;
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; color: var(--navy-900); line-height: 1.2; }
p { margin: 0; line-height: 1.6; color: var(--gray-600); }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--navy-950);
  padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: 820px; }

.section { padding: 64px 0; }
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto 36px;
}
.center { text-align: center; }
.section-title.center { text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px;
  padding: 0 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-950);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: transparent;
  border-color: var(--navy-700);
  color: var(--navy-800);
}
.btn-ghost:hover { background: var(--navy-800); color: var(--white); }
.btn-lg { height: 58px; padding: 0 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-nav { display: none; }

@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-lg {
    display: flex;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 100;
  background: rgba(6, 14, 30, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.2px;
  flex-shrink: 0;
}
.logo-dot { color: var(--gold); }
.main-nav { display: none; }
.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--gold-light); }

.hamburger {
  background: none; border: none; padding: 8px;
  display: flex; flex-direction: column; gap: 5px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  max-height: 0; overflow: hidden;
  background: var(--navy-900);
  transition: max-height .3s ease;
  border-top: 1px solid rgba(212,175,55,0.12);
}
.mobile-menu.is-open { max-height: 560px; }
.mobile-menu ul { padding: 10px 20px; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu a {
  display: block; padding: 14px 4px; color: rgba(255,255,255,0.88); font-weight: 500;
}
.mobile-menu .btn { margin: 16px 20px 22px; }

@media (min-width: 900px) {
  .main-nav { display: block; }
  .btn-nav { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(1200px 600px at 80% -10%, rgba(212,175,55,0.12), transparent 60%),
              linear-gradient(180deg, var(--navy-950), var(--navy-900) 60%, var(--navy-800));
  padding: 56px 0 48px;
  color: var(--white);
}
.hero-inner {
  display: flex; flex-direction: column; gap: 42px;
}
.badge {
  display: inline-block; padding: 8px 16px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-gold {
  background: rgba(212,175,55,0.14);
  color: var(--gold-light);
  border: 1px solid rgba(212,175,55,0.4);
}
.hero-title {
  color: var(--white);
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 800;
  margin: 18px 0 16px;
  letter-spacing: -0.01em;
}
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 26px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn-ghost { border-color: rgba(255,255,255,0.35); color: var(--white); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.1); }

.hero-copy { max-width: 760px; }

.hero-price-line {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px;
  margin-bottom: 22px;
}
.hero-price-line .price-value { font-size: clamp(1.8rem, 5vw, 2.3rem); }
.price-note { font-size: 0.92rem; color: rgba(255,255,255,0.65); }

.hero-quick-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-quick-badges span {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(212,175,55,0.28);
  color: rgba(255,255,255,0.85); font-size: 0.78rem; font-weight: 600;
  padding: 7px 14px; border-radius: 100px;
}

/* ---------- Limited launch price banner ---------- */
.launch-banner {
  background: var(--navy-950);
  border-top: 1px solid rgba(212,175,55,0.25);
  border-bottom: 1px solid rgba(212,175,55,0.25);
  padding: 16px 0;
}
.launch-banner-inner {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 10px;
}
.launch-banner-label {
  color: rgba(255,255,255,0.7); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.launch-banner-price { color: var(--gold-light); font-size: 1.4rem; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.grid-6 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 560px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 680px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(6, 1fr); }
}

/* ---------- Problem cards ---------- */
.problem-section { background: var(--gray-50); }
.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.problem-icon { font-size: 1.8rem; display: block; margin-bottom: 14px; }
.problem-card p { color: var(--navy-900); font-weight: 500; font-size: 1rem; }
.transition-line {
  text-align: center; margin-top: 40px;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.15rem;
  color: var(--navy-800);
}

/* ---------- Solution cards ---------- */
.solution-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.solution-icon { font-size: 1.8rem; display: block; margin-bottom: 14px; }
.solution-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.solution-card p { font-size: 0.95rem; }

/* ---------- Book cards ---------- */
.books-section { background: var(--white); }
.book-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.book-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.book-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, var(--navy-700), var(--navy-950) 75%);
  border-bottom: 3px solid var(--gold);
}
.book-cover::after {
  content: attr(data-num);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800;
  font-size: 3rem; color: rgba(240,207,108,0.5);
}
.book-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.book-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.book-number {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 8px;
}
.book-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.book-desc { font-size: 0.92rem; margin-bottom: 14px; flex: 1; }
.included-tag {
  align-self: flex-start;
  background: rgba(212,175,55,0.12); color: var(--gold-dark);
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 12px; border-radius: 100px;
}

/* Mobile: keep covers large but comfortably sized (220-280px), centered */
@media (max-width: 679px) {
  .book-card .book-cover { max-width: 280px; width: 100%; margin: 0 auto; border-radius: var(--radius-sm); }
  .book-card { overflow: visible; }
  .book-card-body { text-align: center; align-items: center; }
}

/* ---------- Bonus section ---------- */
.bonus-section {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}
.bonus-section .section-title,
.bonus-section .section-sub { color: var(--white); }
.bonus-section .section-sub { color: rgba(255,255,255,0.72); }
.bonus-card {
  background: var(--navy-950);
  border: 1px solid rgba(212,175,55,0.25);
}
.bonus-card .book-card-body h3 { color: var(--white); }
.bonus-card .book-desc { color: rgba(255,255,255,0.68); }
.bonus-cover { border-bottom-color: var(--gold-light); }
.bonus-ribbon {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--navy-950);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.03em;
  padding: 6px 10px; border-radius: 100px; z-index: 2;
}
.bundle-statement { text-align: center; margin-top: 44px; }
.bundle-line-1 {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  color: rgba(255,255,255,0.75); letter-spacing: 0.04em;
}
.bundle-line-2 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  color: var(--gold-light); margin-top: 6px; letter-spacing: 0.02em;
}

/* ---------- AI tools (detailed cards) ---------- */
.ai-tools-section { background: var(--gray-50); }
.ai-tool-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ai-tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ai-tool-icon { display: block; font-size: 1.7rem; margin-bottom: 10px; }
.ai-tool-name { font-size: 1.1rem; margin-bottom: 12px; }
.ai-tool-card p { font-size: 0.88rem; margin-bottom: 10px; }
.ai-tool-card p strong { color: var(--navy-900); }
.ai-tool-example {
  background: rgba(212,175,55,0.08);
  border-left: 2px solid var(--gold);
  padding: 8px 12px;
  font-style: italic;
  margin-bottom: 0 !important;
}
.disclaimer-text {
  text-align: center; font-size: 0.82rem; color: var(--gray-400);
  max-width: 640px; margin: 30px auto 0;
}

/* ---------- Stats (What You Get) ---------- */
.stats-section { background: var(--white); }
.stat-card {
  text-align: center; padding: 26px 10px;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.stat-num {
  display: block; font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2.1rem); color: var(--navy-800);
}
.stat-label { font-size: 0.82rem; color: var(--gray-600); }

/* ---------- Use cases ---------- */
.usecase-section { background: var(--gray-50); }
.usecase-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200); padding: 24px; box-shadow: var(--shadow-sm);
}
.usecase-label {
  display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em;
  color: var(--gold-dark); margin-bottom: 12px;
}
.usecase-flow { font-size: 0.94rem; color: var(--navy-900); line-height: 1.7; }
.usecase-flow .arrow { color: var(--gold-dark); font-weight: 700; margin: 0 2px; }

/* ---------- Comparison table ---------- */
.comparison-section { background: var(--white); }
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.comparison-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.comparison-table thead th {
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 16px 14px;
  text-align: center;
  line-height: 1.3;
}
.comparison-table thead th:first-child { text-align: left; color: var(--gold-light); }
.comparison-table tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--navy-900);
  padding: 14px;
  background: var(--gray-50);
  white-space: nowrap;
}
.comparison-table tbody td {
  text-align: center;
  padding: 14px;
  border-top: 1px solid var(--gray-200);
  font-weight: 700;
}
.comparison-table tbody tr:nth-child(even) th { background: var(--white); }
.comparison-table td.yes { color: var(--gold-dark); }
.comparison-table td.no { color: var(--gray-400); font-weight: 400; }

/* ---------- Product preview strip ---------- */
.preview-strip { margin-bottom: 40px; }
.preview-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.preview-item .book-cover { max-width: 140px; margin: 0 auto 12px; }
.preview-label {
  display: block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px;
}
.preview-item p { font-size: 0.86rem; color: var(--navy-900); }
.preview-subhead {
  font-size: 1.1rem; margin-bottom: 24px; color: var(--navy-900);
}

/* ---------- Prompt preview ---------- */
.prompt-card {
  background: var(--navy-950); color: var(--white);
  border-radius: var(--radius); padding: 26px;
  border: 1px solid rgba(212,175,55,0.25);
}
.prompt-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em;
  color: var(--gold-light); margin-bottom: 12px;
}
.prompt-card p { color: rgba(255,255,255,0.82); font-size: 0.92rem; font-style: italic; }
.more-prompts { font-weight: 600; color: var(--navy-800); margin: 34px 0 18px; }

/* ---------- How it works ---------- */
.workflow-section { background: var(--gray-50); }
.workflow-steps {
  max-width: 480px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.workflow-steps li {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  font-weight: 600; color: var(--navy-900);
  border-left: 2px dashed var(--gold);
  padding-left: 24px; margin-left: 18px;
  position: relative;
}
.workflow-steps li:last-child { border-left-color: transparent; }
.step-num {
  position: absolute; left: -19px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy-900); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
  flex-shrink: 0;
}

/* ---------- Lessons ---------- */
.category-pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px;
}
.category-pills span {
  background: var(--gray-100); color: var(--navy-800);
  font-size: 0.82rem; font-weight: 600;
  padding: 8px 16px; border-radius: 100px;
}
.lesson-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.lesson-num {
  display: inline-block; font-size: 0.72rem; font-weight: 800; color: var(--gold-dark);
  letter-spacing: 0.05em; margin-bottom: 8px;
}
.lesson-card h3 { font-size: 1.05rem; }

/* ---------- Challenge weeks ---------- */
.challenge-section { background: var(--navy-900); color: var(--white); }
.challenge-section .section-title, .challenge-section .section-sub { color: var(--white); }
.challenge-section .section-sub { color: rgba(255,255,255,0.72); }
.week-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.week-tag {
  display: block; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em;
  color: var(--gold-light); margin-bottom: 10px;
}
.week-card h3 { color: var(--white); font-size: 1.05rem; }

/* ---------- Before / After ---------- */
.ba-grid { max-width: 760px; margin: 0 auto; }
.ba-card { border-radius: var(--radius); padding: 28px; }
.ba-before { background: var(--gray-100); }
.ba-after { background: rgba(212,175,55,0.10); border: 1px solid rgba(212,175,55,0.35); }
.ba-card h3 { margin-bottom: 16px; letter-spacing: 0.04em; font-size: 1rem; }
.ba-list li {
  padding: 8px 0 8px 26px; position: relative; font-size: 0.94rem; color: var(--navy-900);
  border-bottom: 1px dashed var(--gray-200);
}
.ba-list li:last-child { border-bottom: none; }
.ba-before .ba-list li::before { content: "✕"; position: absolute; left: 0; color: var(--gray-400); }
.ba-after .ba-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700; }

/* ---------- Audience ---------- */
.audience-section { background: var(--gray-50); }
.audience-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 20px; text-align: center; font-weight: 600; color: var(--navy-900); box-shadow: var(--shadow-sm);
}

/* ---------- Not for ---------- */
.not-for-card {
  background: var(--white); border: 1px dashed var(--gray-400); border-radius: var(--radius);
  padding: 22px; color: var(--gray-600); font-size: 0.94rem;
}

/* ---------- What Buyers Say (honest placeholder) ---------- */
.reviews-section { background: var(--gray-50); }
.reviews-placeholder {
  color: var(--gray-600); font-size: 1rem; font-style: italic;
  max-width: 480px; margin: 0 auto;
}

/* ---------- Value stack + price ---------- */
.value-section { background: linear-gradient(180deg, var(--gray-50), var(--white)); }
.value-stack {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center;
  margin-bottom: 44px;
}
.value-item {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 100px;
  padding: 12px 20px; font-weight: 600; font-size: 0.92rem; color: var(--navy-900);
  display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-sm);
}
.value-plus { color: var(--gold-dark); font-weight: 700; font-size: 1.1rem; }

.price-box {
  max-width: 460px; margin: 0 auto; text-align: center;
  background: var(--navy-950); color: var(--white);
  border-radius: var(--radius-lg); padding: 40px 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212,175,55,0.3);
}
.price-label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.price-value-wrap {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 10px;
  margin-bottom: 24px;
}
.price-value {
  font-family: var(--font-heading); font-weight: 800; color: var(--gold-light);
  font-size: clamp(2rem, 6vw, 2.8rem);
}
.price-microcopy { display: block; margin-top: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.checkout-trust { display: block; margin-top: 14px; font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ---------- Trust ---------- */
.trust-card {
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 20px; text-align: center; font-weight: 600; color: var(--navy-800);
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--white); }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 4px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  color: var(--navy-900); display: flex; justify-content: space-between; align-items: center; gap: 16px;
  min-height: 48px;
}
.faq-icon {
  flex-shrink: 0; font-size: 1.3rem; color: var(--gold-dark); transition: transform .25s ease;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-answer p { padding: 0 4px 20px; font-size: 0.95rem; }

/* ---------- Final CTA ---------- */
.final-cta-section {
  background: radial-gradient(900px 500px at 50% 0%, rgba(212,175,55,0.14), transparent 60%),
              linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white); text-align: center;
}
.final-cta-title {
  color: var(--white); font-size: clamp(1.6rem, 5vw, 2.6rem); font-weight: 800; margin-bottom: 16px;
}
.final-cta-sub {
  color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 28px; font-size: 1.02rem;
}
.final-cta-price {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 14px;
  margin-bottom: 28px;
}
.final-cta-micro { margin-top: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.7); padding: 48px 0 20px; }
.footer-inner {
  display: flex; flex-direction: column; gap: 24px; margin-bottom: 30px;
}
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-top: 6px; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 4px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 22px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.68); }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy {
  text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; margin: 0 20px;
}
@media (min-width: 700px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

/* ---------- Misc responsive polish ---------- */
@media (max-width: 359px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 1.75rem; }
}
