/* =========================================================
   DATA ANALYST CAREER MASTER BUNDLE — DESIGN SYSTEM
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --color-bg: #f6f8fb;
  --color-surface: #ffffff;
  --color-navy: #0b1324;
  --color-navy-2: #121c34;
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #dbeafe;
  --color-accent: #f59e0b;
  --color-accent-dark: #d97706;
  --color-success: #16a34a;
  --color-success-light: #dcfce7;
  --color-text: #0f172a;
  --color-text-light: #475569;
  --color-text-faint: #94a3b8;
  --color-border: #e2e8f0;
  --color-white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.16);

  --gradient-hero: linear-gradient(160deg, #0b1324 0%, #16213f 55%, #1b2a52 100%);
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);

  --container: 1180px;
  --gutter: 20px;

  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --header-height: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section {
  padding: 88px 0;
}
.section--tight { padding: 64px 0; }
.section--dark {
  background: var(--gradient-hero);
  color: #fff;
}
.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}
.section-heading p {
  color: var(--color-text-light);
  font-size: 17px;
}
.section--dark .section-heading p { color: #b7c2dd; }

/* Hidden state is applied by JS (reveal-init) so content stays visible if JS fails to load. */
.reveal.reveal-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.reveal-init.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--gradient-accent);
  color: #1a1200;
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(217, 119, 6, 0.42); }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); }
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary-light); }
.btn-block { width: 100%; }
.btn-lg { padding: 20px 36px; font-size: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 19, 36, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
.brand-name { line-height: 1.1; }
.brand-name small { display: block; font-weight: 500; font-size: 11px; color: #9fb0d6; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: #dbe3f5;
  font-size: 14.5px;
  font-weight: 600;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: #fff; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn-primary { padding: 12px 22px; font-size: 14.5px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span { margin: 5px 0; }
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  display: none;
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: var(--color-navy);
  z-index: 99;
  padding: 24px var(--gutter) 100px;
  overflow-y: auto;
}
.mobile-panel.is-open { display: block; }
.mobile-panel a {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-panel .btn { margin-top: 24px; }

/* ---------- Hero ---------- */
.hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 64px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.35), transparent 70%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.18);
  border: 1px solid rgba(96,140,255,0.35);
  color: #a9c2ff;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17.5px;
  color: #c3cee6;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-value-line {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  color: #a9c2ff;
  background: rgba(37,99,235,0.16);
  border: 1px solid rgba(96,140,255,0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.price-block {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.hero-price-note {
  font-size: 13.5px;
  color: #93a1c2;
  margin-bottom: 26px;
}
.price-was { color: #93a1c2; }
.price-was .label { font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.price-was .amount { font-size: 22px; text-decoration: line-through; text-decoration-color: #ef4444; font-weight: 700; color: #cbd5e1; }
.price-today .label { font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 4px; color: #9fe6c0; }
.price-today .amount { font-size: 44px; font-weight: 800; color: #fff; }
.price-tag {
  align-self: center;
  background: var(--color-success-light);
  color: #14532d;
  font-size: 12.5px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 26px;
}
.trust-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: #dbe3f5;
}
.trust-points li::before {
  content: "✓";
  color: #4ade80;
  font-weight: 800;
}

/* ---------- Book Stack Visual ---------- */
.book-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  min-height: 380px;
  perspective: 1200px;
}
.book-stack .book-cover {
  width: 128px;
  height: 178px;
  margin-left: -30px;
  border-radius: 6px 10px 10px 6px;
  box-shadow: var(--shadow-lg);
  transform: rotateY(18deg) rotateZ(-2deg);
  transition: transform 0.25s ease;
  border: 1px solid rgba(255,255,255,0.15);
}
.book-stack .book-cover:first-child { margin-left: 0; }
.book-stack .book-cover:hover { transform: rotateY(0deg) rotateZ(0deg) translateY(-10px); z-index: 5; }
.book-stack .book-cover:nth-child(odd) { transform: rotateY(18deg) rotateZ(-2deg) translateY(10px); }
.book-stack .book-cover:nth-child(odd):hover { transform: rotateY(0) rotateZ(0) translateY(0); }

/* ---------- Hero Visual (bundle cover + book fan + bonus chips) ---------- */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.bundle-cover-main {
  width: 100%;
  max-width: 340px;
  min-height: 190px;
  padding: 22px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(245, 158, 11, 0.4);
}
.cover-main {
  background: linear-gradient(145deg, #1d2b52, #0b1324);
}
.cover-main .cover-no {
  color: var(--color-accent);
}
.cover-main .cover-title {
  font-size: 20px;
}
.cover-main .cover-brand {
  border-top-color: rgba(245, 158, 11, 0.35);
  color: var(--color-accent);
  opacity: 1;
}
.hero-book-fan {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-book-fan .book-cover {
  width: 84px;
  height: 118px;
  padding: 10px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}
.hero-book-fan .book-cover:hover { transform: translateY(-6px); }
.hero-book-fan .cover-no { font-size: 8px; }
.hero-book-fan .cover-title { font-size: 10.5px; margin: 4px 0 2px; }
.hero-book-fan .cover-brand { display: none; }
.hero-bonus-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.hero-bonus-chips span {
  font-size: 11.5px;
  font-weight: 700;
  color: #dbe3f5;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.bundle-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #1a1200;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

/* Generic cover styling (shared by hero stack + book section + previews) */
.cover {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  color: #fff;
  isolation: isolate;
}
.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 14px 14px;
  z-index: -1;
  opacity: 0.5;
}
.cover-no {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.cover-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  margin: 6px 0 4px;
}
.cover-sub {
  font-size: 10.5px;
  line-height: 1.3;
  opacity: 0.9;
}
.cover-brand {
  font-size: 8.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 6px;
  margin-top: 8px;
}
.cover-1 { background: linear-gradient(145deg, #1d4ed8, #0b1324); }
.cover-2 { background: linear-gradient(145deg, #0f766e, #0b1324); }
.cover-3 { background: linear-gradient(145deg, #7c3aed, #0b1324); }
.cover-4 { background: linear-gradient(145deg, #d97706, #0b1324); }
.cover-5 { background: linear-gradient(145deg, #db2777, #0b1324); }

/* ---------- Value Statement (Learn / Build / Prepare) ---------- */
.flow-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.flow-col {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.flow-col h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
}
.flow-col ul { display: flex; flex-direction: column; gap: 10px; }
.flow-col li { font-size: 15px; font-weight: 600; color: var(--color-text); }

/* ---------- Before / After ---------- */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.ba-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}
.ba-before { background: #fef2f2; border: 1px solid #fecaca; }
.ba-after { background: var(--color-success-light); border: 1px solid #bbf7d0; }
.ba-card h3 { font-size: 15px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.ba-before h3 { color: #b91c1c; }
.ba-after h3 { color: #14532d; }
.ba-card li { font-size: 14.5px; padding: 7px 0; }
.ba-before li { color: #7f1d1d; }
.ba-after li { color: #14532d; }

/* ---------- Books Section ---------- */
.book-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.book-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  align-items: center;
}
.book-card .cover {
  width: 200px;
  height: 270px;
  justify-self: center;
}
.book-card .cover-no { font-size: 12px; }
.book-card .cover-title { font-size: 20px; }
.book-card .cover-sub { font-size: 12.5px; }
.book-meta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.book-index {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.book-card h3 { font-size: 24px; margin-bottom: 6px; }
.book-card .subtitle { color: var(--color-primary-dark); font-weight: 700; font-size: 15px; margin-bottom: 10px; }
.book-card .desc { color: var(--color-text-light); font-size: 15px; margin-bottom: 16px; }
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.topic-tags span {
  font-size: 12.5px;
  font-weight: 600;
  background: #f1f5f9;
  color: var(--color-text-light);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}
.included-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-success);
}
.included-tag::before { content: "✓"; }
.bullet-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bullet-list li {
  font-size: 14.5px;
  color: var(--color-text-light);
  padding-left: 20px;
  position: relative;
}
.bullet-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 800;
}

/* ---------- Bonus Section ---------- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bonus-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bonus-no {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-accent-dark);
  margin-bottom: 10px;
}
.bonus-card h4 { font-size: 15.5px; margin-bottom: 8px; }
.bonus-card p { font-size: 13.5px; color: var(--color-text-light); flex: 1; margin-bottom: 14px; }
.bonus-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--color-border);
}
.bonus-value { font-size: 13px; color: var(--color-text-faint); text-decoration: line-through; }
.bonus-free {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--color-success);
  background: var(--color-success-light);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}

/* ---------- Value Stack ---------- */
.value-stack {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 44px;
  max-width: 720px;
  margin: 0 auto;
}
.value-stack--wide { max-width: 820px; }
.value-plus-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}
.value-plus-stack span:not(.plus) {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
}
.value-plus-stack .plus {
  color: var(--color-text-faint);
  font-weight: 800;
  font-size: 14px;
}
.value-group { margin-bottom: 30px; }
.value-group-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
}
.value-rows { margin-bottom: 28px; }
.value-rows--compact .value-row { padding: 10px 0; font-size: 14.5px; }
.value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15.5px;
  font-weight: 600;
}
.value-row:last-child { border-bottom: none; }
.value-row .check { color: var(--color-success); font-weight: 800; margin-right: 10px; }
.value-stack-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--color-text-faint);
  margin-top: 14px;
}
.value-stack--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
}
.value-stack--dark .value-group-title { color: var(--color-accent); }
.value-stack--dark .value-row { color: #dbe3f5; border-bottom-color: rgba(255,255,255,0.1); }
.value-plus-stack--dark {
  border-bottom-color: rgba(255,255,255,0.14);
}
.value-plus-stack--dark span:not(.plus) {
  background: rgba(245, 158, 11, 0.14);
  color: var(--color-accent);
}
.value-plus-stack--dark .plus { color: #93a1c2; }
.value-all-for {
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 4px 0 22px;
}
.value-all-for strong { color: var(--color-accent); font-size: 30px; }
.value-group--dark { margin-bottom: 30px; }
.value-stack-note--dark { color: #93a1c2; }
.value-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 14px;
}
.value-total .label { font-weight: 700; font-size: 14px; color: var(--color-text-light); }
.value-total .amount { font-weight: 800; font-size: 22px; }
.value-arrow { text-align: center; font-size: 22px; color: var(--color-text-faint); margin: 6px 0; }
.value-today {
  background: var(--gradient-primary);
  color: #fff;
}
.value-today .label { color: #dbe8ff; }
.value-today .amount { font-size: 30px; }

/* ---------- Learn Grid ---------- */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.learn-chip {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  text-align: center;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Projects ---------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.project-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.project-card h3 { font-size: 18px; margin-bottom: 14px; }
.project-fields {
  display: grid;
  gap: 8px;
}
.project-fields div {
  display: flex;
  gap: 8px;
  font-size: 13.5px;
}
.project-fields .k {
  flex: 0 0 100px;
  font-weight: 700;
  color: var(--color-text-faint);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding-top: 2px;
}
.project-fields .v { color: var(--color-text-light); }

/* ---------- Timeline (Job-Ready) ---------- */
.timeline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.timeline-item {
  display: flex;
  align-items: center;
}
.timeline-node {
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
}
.timeline-sep {
  width: 26px;
  text-align: center;
  color: var(--color-text-faint);
  font-weight: 800;
}

/* ---------- Who-For ---------- */
.who-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.who-for-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.who-for-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.who-for-card h4 { font-size: 16px; }

/* ---------- How it works ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.how-card {
  text-align: center;
  padding: 28px 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.how-card .circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.how-card h4 { font-size: 15.5px; margin-bottom: 6px; }
.how-card p { font-size: 13.5px; color: var(--color-text-light); }

/* ---------- Session Offer Timer ---------- */
.offer-timer-section {
  padding: 50px 20px;
}
.offer-timer-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 24px;
  border-radius: 24px;
  background: var(--gradient-hero);
  box-shadow: var(--shadow-lg);
}
.offer-timer-label {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.offer-timer-card h2 {
  color: #fff;
  font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 8px;
}
.offer-timer-note {
  color: #c3cee6;
  font-size: 14px;
  margin-bottom: 4px;
}
.offer-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 18px 0 4px;
  font-size: clamp(48px, 8vw, 82px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.offer-timer.timer-ended {
  font-size: clamp(20px, 4vw, 28px);
  letter-spacing: 1px;
  color: var(--color-accent);
  font-weight: 800;
  padding: 10px 0;
}
.timer-separator {
  opacity: 0.7;
  color: var(--color-accent);
}
.timer-labels {
  display: flex;
  justify-content: center;
  gap: 55px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #93a1c2;
}

@media (max-width: 640px) {
  .offer-timer-section {
    padding: 32px 14px;
  }
  .offer-timer-card {
    padding: 28px 16px;
    border-radius: 18px;
  }
  .offer-timer {
    font-size: clamp(42px, 15vw, 64px);
    gap: 5px;
  }
  .timer-labels {
    gap: 38px;
  }
  .offer-timer-card .btn {
    width: 100%;
  }
}

/* ---------- Pricing Card ---------- */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  text-align: center;
  position: relative;
}
.pricing-card::before {
  content: "MOST COMPLETE OPTION";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #1a1200;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}
.pricing-card h3 { font-size: 20px; margin-bottom: 6px; }
.pricing-subtitle { color: var(--color-text-light); font-size: 14px; font-weight: 600; margin-bottom: 22px; }
.pricing-includes { text-align: left; margin-bottom: 26px; }
.pricing-includes li { display: flex; gap: 10px; padding: 8px 0; font-size: 15px; }
.pricing-includes .check { color: var(--color-success); font-weight: 800; }
.pricing-value-label { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-text-faint); margin-bottom: 2px; }
.pricing-value { color: var(--color-text-faint); text-decoration: line-through; font-size: 16px; }
.pricing-today-label { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-primary-dark); margin-top: 10px; }
.pricing-today { font-size: 40px; font-weight: 800; margin: 4px 0 22px; }
.pricing-note { font-size: 13px; color: var(--color-text-faint); margin-top: 10px; }

/* ---------- Urgency ---------- */
.urgency-box {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.urgency-box h2 { font-size: 26px; margin-bottom: 12px; }
.urgency-box p { color: var(--color-text-light); font-size: 15.5px; margin-bottom: 6px; }

/* ---------- Buy With Confidence ---------- */
.confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.confidence-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.confidence-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.confidence-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  margin-bottom: 16px;
}
.confidence-icon svg { width: 22px; height: 22px; }
.confidence-card h4 { font-size: 16px; margin-bottom: 8px; }
.confidence-card p { font-size: 14px; color: var(--color-text-light); }
.confidence-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--color-text-faint);
  margin: 28px 0 20px;
}

/* ---------- Testimonials (sample placeholders) ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  background: var(--color-bg);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.testimonial-card .stars {
  color: var(--color-accent);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.testimonial-text {
  font-size: 14px;
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 16px;
}
.testimonial-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--color-border);
}
.testimonial-name { font-weight: 700; font-size: 13.5px; }
.testimonial-badge {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  background: #f1f5f9;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}

/* ---------- Refund Policy box ---------- */
.refund-box {
  max-width: 680px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 36px;
}
.refund-box p { color: var(--color-text-light); font-size: 15px; margin-bottom: 14px; }
.refund-contact {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 14px 0;
}
.refund-contact div { display: flex; gap: 10px; padding: 6px 0; font-size: 14.5px; }
.refund-contact .k { font-weight: 700; flex: 0 0 60px; color: var(--color-text); }
.refund-contact a { color: var(--color-primary-dark); font-weight: 600; }
.refund-important {
  background: var(--color-primary-light);
  color: #1e3a8a;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13.5px;
  margin-top: 16px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}
.faq-question .icon {
  flex: none;
  font-size: 20px;
  color: var(--color-primary);
  transition: transform 0.2s ease;
}
.faq-item.is-open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer-inner {
  padding: 0 22px 20px;
  color: var(--color-text-light);
  font-size: 14.5px;
}

/* ---------- Trust / What's Inside ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 14.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.trust-card::before { content: "✓"; color: var(--color-success); font-weight: 800; }

/* ---------- Preview Cards ---------- */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.preview-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}
.preview-thumb {
  height: 150px;
  background: linear-gradient(145deg, #eef2ff, #e0e7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  padding: 12px;
  position: relative;
  background-image:
    linear-gradient(rgba(37,99,235,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.08) 1px, transparent 1px);
  background-size: 16px 16px;
}
.preview-thumb-1 { background-color: #eef2ff; }
.preview-thumb-2 { background-color: #ecfdf5; color: #065f46; }
.preview-thumb-3 { background-color: #fff7ed; color: #9a3412; }
.preview-thumb-4 { background-color: #f5f3ff; color: #5b21b6; }
.preview-thumb-5 { background-color: #fdf2f8; color: #9d174d; }
.preview-thumb .placeholder-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 9.5px;
  background: rgba(255,255,255,0.85);
  color: var(--color-text-light);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.preview-card .cap { padding: 14px 16px; font-size: 14px; font-weight: 700; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--gradient-hero);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 14px; }
.final-cta p { color: #c3cee6; max-width: 560px; margin: 0 auto 32px; font-size: 16px; }
.final-stack {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 22px;
}
.final-stack span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
}
.final-price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.final-price-row .was { text-decoration: line-through; color: #93a1c2; font-size: 18px; }
.final-price-row .now { font-size: 36px; font-weight: 800; color: #9fe6c0; }
.final-cta-subnote { color: #93a1c2; font-size: 13px; margin-top: 16px; }

/* ---------- Disclaimer ---------- */
.disclaimer {
  max-width: 640px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--color-text-faint);
  line-height: 1.6;
}
.section--dark .disclaimer { color: #8592b4; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy);
  color: #b7c2dd;
  padding: 56px 0 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-grid--wide { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; }
.footer-brand h3 { color: #fff; font-size: 18px; margin-bottom: 6px; }
.footer-brand p { font-size: 14px; color: #93a1c2; max-width: 320px; }
.footer-business { margin-top: 14px; line-height: 1.7; }
.footer-business strong { color: #dbe3f5; }
.site-footer h4 { color: #fff; font-size: 14px; margin-bottom: 14px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { font-size: 14px; color: #b7c2dd; transition: color 0.15s ease; }
.site-footer a:hover { color: #fff; }
.footer-contact li { font-size: 13.5px; line-height: 1.6; color: #93a1c2; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 12.5px;
  color: #7c88a8;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(15,23,42,0.12);
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta .price {
  font-weight: 800;
  font-size: 15px;
}
.sticky-cta .price small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-faint);
  text-decoration: line-through;
}
.sticky-cta .btn { flex: 1; padding: 13px 18px; font-size: 14.5px; }
.sticky-cta-close {
  flex: none;
  width: 32px;
  height: 32px;
  border: none;
  background: #f1f5f9;
  color: var(--color-text-faint);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.sticky-cta.is-hidden { display: none !important; }

/* ---------- Simple pages (about/contact/legal) ---------- */
.simple-page {
  padding: 64px 0 100px;
  max-width: 760px;
  margin: 0 auto;
}
.simple-page h1 { font-size: 32px; margin-bottom: 18px; }
.simple-page h2 { font-size: 20px; margin: 32px 0 12px; }
.simple-page p, .simple-page li { color: var(--color-text-light); font-size: 15.5px; margin-bottom: 12px; }
.simple-page ul { padding-left: 20px; list-style: disc; }
.simple-page .updated { color: var(--color-text-faint); font-size: 13.5px; margin-bottom: 30px; }
.simple-page .callout {
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 14.5px;
  color: #1e3a8a;
  margin: 20px 0;
}
.contact-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 20px;
}
.contact-row { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--color-border); font-size: 15px; }
.contact-row:last-child { border-bottom: none; }
.contact-row .k { font-weight: 700; flex: 0 0 100px; }

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

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .book-stack { min-height: 320px; margin-top: 40px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .learn-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .confidence-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid,
  .footer-grid--wide { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .book-card { grid-template-columns: 1fr; text-align: center; }
  .book-card .cover { justify-self: center; }
  .topic-tags { justify-content: center; }
  .who-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr 1fr; }
  .learn-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .confidence-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid,
  .footer-grid--wide { grid-template-columns: 1fr; gap: 28px; }
  .value-stack { padding: 26px; }
  .refund-box { padding: 24px; }
  .value-plus-stack span:not(.plus) { font-size: 12.5px; padding: 6px 11px; }
  .pricing-card { padding: 28px; }
  .sticky-cta { display: block; }
  .book-stack { flex-wrap: wrap; }
  .book-stack .book-cover { width: 96px; height: 134px; margin-left: -18px; }
  .price-block { gap: 14px; }
  .price-today .amount { font-size: 36px; }
  body { padding-bottom: 76px; }
  .timeline-sep { display: none; }
  .timeline { gap: 10px; }
}

@media (max-width: 380px) {
  .bonus-grid { grid-template-columns: 1fr; }
}
