/* =============================================================
   AI Skills Bundle — money landing
   Palette: black, yellow (#ffb800), orange (#ff6a1a)
   Typography: Inter (system) + Space Grotesk for numerals
   Mobile-first, no framework, ~14KB gzipped
   ============================================================= */

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

:root {
  --bg:            #0a0a0a;
  --bg-elev:       #141414;
  --bg-elev-2:     #1c1c1c;
  --bg-cream:      #f5efe0;
  --border:        rgba(255,255,255,0.08);
  --text:          #ffffff;
  --text-mute:     #b3b3b3;
  --text-dim:      #8a8a8a;
  --yellow:        #ffb800;
  --yellow-soft:   #f5c945;
  --orange:        #ff6a1a;
  --orange-soft:   #ff8f2e;
  --red:           #ef4444;
  --green:         #22c55e;

  --radius:        14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --shadow-glow:   0 0 40px rgba(255,106,26,0.28);
  --shadow-card:   0 20px 60px rgba(0,0,0,0.45);

  --container:     1120px;
  --gutter:        clamp(20px, 4vw, 40px);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Top banner ---------- */

.topbar {
  background: linear-gradient(180deg, #f5c945, #ffb800);
  color: #111;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 10px 12px;
  position: sticky;
  top: 0;
  z-index: 60;
}
.topbar a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.01em;
  border: none;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
  text-align: center;
  line-height: 1.1;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--orange-soft), var(--orange));
  color: #ffffff;
  box-shadow: 0 12px 40px rgba(255,106,26,0.42), 0 0 0 1px rgba(255,255,255,0.12) inset;
}
.btn-primary:hover { box-shadow: 0 16px 46px rgba(255,106,26,0.6), 0 0 0 1px rgba(255,255,255,0.16) inset; }
.btn-yellow {
  background: linear-gradient(180deg, var(--yellow-soft), var(--yellow));
  color: #1a1200;
  box-shadow: 0 12px 40px rgba(255,184,0,0.35), 0 0 0 1px rgba(0,0,0,0.08) inset;
}
.btn-lg { padding: 20px 42px; font-size: 19px; border-radius: 14px; }
.btn-block { width: 100%; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--yellow-soft), var(--yellow));
  color: #1a1200;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pill-dark {
  background: #1a1a1a;
  color: #ffb800;
  border: 1px solid rgba(255,184,0,0.35);
}
.pill-green {
  background: #082d1c;
  color: #34d399;
  border: 1px solid rgba(52,211,153,0.35);
  text-transform: none;
  padding: 10px 20px;
  font-size: 13px;
}

/* ---------- Hero ---------- */

.hero {
  padding: clamp(48px, 8vw, 100px) 0 clamp(60px, 10vw, 120px);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,106,26,0.14) 0%, transparent 60%),
    var(--bg);
}
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(30px, 5.4vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 26px auto 20px;
  max-width: 900px;
}
.hero h1 .yellow-line { color: var(--yellow); }
.hero .sub {
  color: var(--text-mute);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 640px;
  margin: 0 auto 22px;
  line-height: 1.55;
}
.hero .sub strong { color: #fff; font-weight: 800; }
.hero .sub .yellow-strong { color: var(--yellow); font-weight: 800; }

.hero-hero {
  margin: clamp(30px, 5vw, 56px) auto 0;
  max-width: 900px;
  padding: 0 var(--gutter);
}
.hero-hero img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card), 0 0 60px rgba(255,106,26,0.15);
  display: block;
}
.disclaimer-below {
  color: var(--text-mute);
  margin: 20px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  text-align: center;
}
.disclaimer-below em { color: var(--orange); font-style: normal; font-weight: 800; }

.hero-mockup {
  margin: clamp(30px, 5vw, 56px) auto 0;
  max-width: 720px;
  background: var(--bg-cream);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-card);
}
.hero-mockup .box-and-copy {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 24px;
  align-items: center;
}
.hero-mockup .huge-number {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(56px, 12vw, 130px);
  font-weight: 900;
  color: var(--orange);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 6px 0;
}
.hero-mockup .huge-label {
  font-weight: 900;
  font-size: clamp(26px, 4vw, 44px);
  color: #111;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-mockup .pillbar {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 8px;
  background: #ff6a1a;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-mockup .subtitle {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
  max-width: 260px;
}
.hero-mockup .subtitle b { font-weight: 800; color: #111; }
.hero-mockup .pill-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.hero-mockup .mini-pill {
  background: #fff;
  border: 1px solid #e6e0cc;
  border-radius: 8px;
  padding: 10px 8px;
  min-width: 96px;
  font-size: 11px;
  font-weight: 700;
  color: #111;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.hero-mockup .mini-pill span { font-size: 20px; }

.hero-mockup .cta-strip {
  margin-top: 18px;
  background: #0a0a0a;
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 15px;
}
.hero-mockup .cta-strip .badge {
  background: var(--orange);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
}

.hero-mockup .disclaimer {
  color: #555;
  margin-top: 20px;
  font-size: 14px;
}
.hero-mockup .disclaimer em { color: #ff6a1a; font-style: normal; font-weight: 700; }

/* Stats row */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 700px;
  margin: 40px auto 26px;
  text-align: center;
}
.stat-num {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--orange);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.stat-lbl { color: var(--text-mute); font-size: 14px; font-weight: 500; }

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 24px 0 0;
}
.cta-meta {
  display: flex;
  gap: 22px;
  color: var(--text-mute);
  font-size: 14px;
}
.cta-meta span::before {
  content: '✓';
  color: var(--green);
  margin-right: 6px;
  font-weight: 900;
}

/* ---------- Section frame ---------- */
.section {
  padding: clamp(56px, 8vw, 110px) 0;
}
.section.dark2 { background: #050505; }
.section.cream {
  background: var(--bg-cream);
  color: #1a1a1a;
  border-top: 4px solid var(--yellow);
}
.section.cream .section-head h2, .section.cream h3 { color: #111; }
.section.cream .lead { color: #333; }

.section-head { text-align: center; margin-bottom: clamp(28px, 5vw, 56px); }
.section-head h2 {
  font-size: clamp(30px, 4.6vw, 46px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 16px auto 14px;
  max-width: 820px;
}
.section-head .yellow-line { color: var(--yellow); }
.section-head .red-line { color: var(--red); }
.section-head .lead {
  color: var(--text-mute);
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
}
.section-head .lead b { color: var(--yellow); }
.section-head .lead .green { color: var(--green); }

.section-tag {
  color: #1a1200;
  background: var(--yellow);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-block;
}

/* ---------- Whats inside carousel ---------- */
.dept-inside {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  color: #111;
}
.dept-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.dept-columns h4 {
  background: #ffe57a;
  color: #111;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 15px;
  margin: 0 0 14px;
}
.dept-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  font-size: 12.5px;
  color: #333;
}
.dept-list li { list-style: none; padding-left: 18px; position: relative; }
.dept-list li::before {
  content: '';
  position: absolute; left: 0; top: 5px;
  width: 12px; height: 10px;
  background: #ffb800;
  border-radius: 2px;
  clip-path: polygon(0 0, 70% 0, 70% 30%, 100% 30%, 100% 100%, 0 100%);
}
.dept-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.dept-nav button {
  width: 40px; height: 40px; border-radius: 999px;
  background: #fff; border: 1.5px solid #ccc; color: #111;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.14s ease;
}
.dept-nav button:hover { background: #f5efe0; }
.dept-nav .dots { display: flex; gap: 6px; }
.dept-nav .dot { width: 8px; height: 8px; border-radius: 999px; background: #ccc; transition: background 0.14s ease; }
.dept-nav .dot.active { background: var(--yellow); }

/* ---------- 3-column feature cards ---------- */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-elev);
  border: 1px solid rgba(255,184,0,0.15);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.feature-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.feature-card li { color: var(--text-mute); font-size: 14px; line-height: 1.55; padding-left: 26px; position: relative; }
.feature-card li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--orange);
  font-weight: 900;
  font-size: 16px;
}
.feature-card li b { color: #fff; font-weight: 800; }

.center-caption {
  text-align: center;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: #fff;
  margin: 40px auto 20px;
  max-width: 720px;
}
.center-caption .red { color: var(--red); }

/* ---------- Bonuses (2-huge) ---------- */
.bonuses-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.bonuses-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}
.bonus-card.featured {
  background: linear-gradient(180deg, #1a1409, #0d0803);
  border-color: var(--orange);
}
.bonus-card.featured .bonus-icon { color: var(--orange); }
.bonus-card.featured .badge-top  { background: var(--orange); color: #0a0a0a; }
.bonus-card {
  background: var(--bg-elev);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1px solid var(--border);
  position: relative;
  min-height: 320px;
  display: flex; flex-direction: column;
}
.bonus-card .bonus-icon {
  width: 46px; height: 46px; border-radius: 8px;
  background: rgba(255,184,0,0.15);
  color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.bonus-card .badge-top {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--yellow);
  color: #1a1200;
  font-weight: 900;
  font-size: 11px; padding: 4px 10px; border-radius: 6px;
  letter-spacing: 0.05em;
}
.bonus-card .badge-top.orange { background: var(--orange); color: #fff; }
.bonus-card h4 { font-size: 22px; font-weight: 900; margin: 0 0 12px; color: #fff; letter-spacing: -0.01em; }
.bonus-card p { color: var(--text-mute); font-size: 14px; margin: 0 0 16px; line-height: 1.55; }
.bonus-card ul { list-style: none; padding: 0; margin: auto 0 0; display: flex; flex-direction: column; gap: 8px; }
.bonus-card li { color: var(--text-mute); font-size: 13px; padding-left: 22px; position: relative; }
.bonus-card li::before { content:'✓'; color: var(--green); position: absolute; left: 0; font-weight: 900; }

/* ---------- Compare table (Same Claude turned into…) ---------- */
.compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.compare-col {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #333;
}
.compare-col h4 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 20px;
  color: #111;
  display: flex; align-items: center; gap: 10px;
}
.compare-col ul { padding: 0; list-style: none; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.compare-col li {
  padding: 14px 0;
  border-bottom: 1px solid #eae4d0;
  font-size: 15px;
}
.compare-col li:last-child { border-bottom: none; }
.compare-col.bad h4::before { content: '×'; color: var(--red); font-size: 22px; font-weight: 900; }
.compare-col.good h4::before { content: '✓'; color: var(--green); font-size: 22px; font-weight: 900; }
.compare-col.bad { background: #fdf7ec; }
.compare-col.good { background: #fff; }

/* ---------- Department grid (Every Department. Every Use Case.) ---------- */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.dept-tile {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 12px;
  text-align: center;
  color: #111;
  border: 1px solid #eae4d0;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.dept-tile:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.06); }
.dept-tile .icon { font-size: 32px; margin-bottom: 10px; }
.dept-tile h5 { margin: 0; font-weight: 800; font-size: 14px; color: #111; }
.dept-tile .count { color: var(--orange); font-weight: 800; font-size: 15px; margin-top: 4px; }

/* ---------- Personas ---------- */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.persona-card {
  background: #ffffff;
  color: #111;
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--border);
  text-align: center;
}
.persona-card img {
  border-radius: 14px;
  background: linear-gradient(180deg, #f5f5f4, #eae4d0);
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center bottom;
  margin-bottom: 18px;
  padding-top: 20px;
}
.persona-card h5 { color: #111; font-size: 20px; font-weight: 900; margin: 0 0 10px; }
.persona-card p  { color: #444;  font-size: 14px; margin: 0; line-height: 1.55; }

/* ---------- Premium bonuses grid (4) ---------- */
.premium-bonuses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pb-card {
  background: var(--bg-elev);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  border: 1px solid var(--border);
  position: relative;
  min-height: 320px;
  display: flex; flex-direction: column;
}
.pb-card .tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.03em;
}
.pb-card .cover {
  height: 130px;
  background: linear-gradient(180deg, #222, #050505);
  border-radius: 10px;
  margin: 36px 0 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 32px;
  font-weight: 900;
}
.pb-card .cover-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 0 18px;
  display: block;
  background: #0a0a0a;
}
.pb-card:has(.cover-img) { padding-top: 20px; }
.pb-card:has(.cover-img) .tag { display: none; }
.pb-card h5 { color: #fff; font-size: 16px; font-weight: 800; margin: 0 0 8px; line-height: 1.25; }
.pb-card p { color: var(--text-mute); font-size: 13px; margin: 0; line-height: 1.5; flex: 1; }
.pb-card .prices {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 800;
}
.pb-card .prices .old { color: #666; text-decoration: line-through; font-weight: 500; }
.pb-card .prices .new { color: var(--orange); }

/* ---------- Reviews carousel ---------- */
.reviews-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.reviews-track {
  display: block;
  max-width: 720px;
  margin: 0 auto;
}
.review-figure {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  animation: reviewFade 0.4s ease;
}
.review-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
@keyframes reviewFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.review-card {
  background: var(--bg-elev);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--border);
  position: relative;
}
.review-card .head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-card .head img {
  width: 46px; height: 46px; border-radius: 999px;
}
.review-card .who { font-weight: 800; color: #fff; }
.review-card .stars { color: var(--yellow); font-size: 15px; margin-top: 2px; letter-spacing: 1px; }
.review-card blockquote {
  margin: 0; color: var(--text-mute); font-size: 14.5px; line-height: 1.6;
}
.review-card .quote-mark {
  position: absolute; right: 20px; bottom: 12px;
  color: #ffffff; opacity: 0.1;
  font-size: 60px; font-weight: 900; font-family: serif;
  line-height: 1;
}
.reviews-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 4;
  transition: background 0.14s ease;
}
.reviews-arrow:hover { background: rgba(255,255,255,0.15); }
.reviews-arrow.prev { left: -60px; }
.reviews-arrow.next { right: -60px; }
.reviews-dots { display: flex; justify-content: center; gap: 6px; margin-top: 26px; }
.reviews-dots .dot { width: 8px; height: 8px; border-radius: 999px; background: #333; }
.reviews-dots .dot.active { background: var(--yellow); }

/* ---------- Pricing box (final) ---------- */
.price-panel {
  background: var(--bg-elev);
  border: 1px solid var(--yellow);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 24px 60px rgba(255,184,0,0.08), 0 0 0 1px rgba(255,184,0,0.4) inset;
}
.price-panel .mock-thumb { max-width: 260px; margin: 0 auto 20px; }
.price-panel .pill-off {
  background: var(--red); color: #fff; padding: 5px 14px; border-radius: 999px;
  font-weight: 800; font-size: 13px; display: inline-block; margin-bottom: 14px;
}
.price-panel h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 900;
  margin: 0 0 14px;
  color: #fff;
  line-height: 1.3;
}
.price-line {
  display: flex; align-items: baseline; justify-content: center; gap: 14px;
  margin: 8px 0 22px;
}
.price-line .old {
  color: #6a6a6a; text-decoration: line-through; font-size: clamp(22px, 3vw, 30px); font-weight: 700;
}
.price-line .new {
  color: var(--yellow);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 6vw, 60px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.price-list {
  list-style: none; padding: 0; margin: 0 0 22px; text-align: left;
  display: flex; flex-direction: column; gap: 10px;
}
.price-list li {
  padding-left: 26px; position: relative;
  color: var(--text-mute); font-size: 14.5px;
}
.price-list li::before {
  content: '✓'; color: var(--green);
  font-weight: 900;
  position: absolute; left: 0; top: 0;
}

/* ---------- Countdown ---------- */
.countdown {
  display: flex; justify-content: center; gap: 14px; margin: 40px auto;
}
.count-box {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  min-width: 96px;
  text-align: center;
}
.count-box .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.count-box .lbl {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-top: 8px;
  text-transform: uppercase;
}
.countdown-wrap {
  background: linear-gradient(180deg, #101010, #050505);
  border: 1px solid rgba(255,184,0,0.35);
  border-radius: var(--radius-xl);
  padding: 30px 20px;
  max-width: 620px;
  margin: 40px auto 0;
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eae4d0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 15px;
  color: #111;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '▾';
  color: #999;
  transition: transform 0.2s ease;
  font-size: 12px;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .answer {
  padding: 0 24px 22px;
  color: #444;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.footer {
  background: #050505;
  color: var(--text-dim);
  padding: 44px 0 32px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}
.footer .disclaimer {
  max-width: 780px;
  margin: 0 auto 20px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-mute);
}
.footer nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; margin-bottom: 14px; }
.footer nav a { color: var(--text-mute); transition: color 0.14s ease; }
.footer nav a:hover { color: var(--yellow); }
.footer .brand { color: #fff; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; }

/* ---------- Checkout ---------- */
.checkout-wrap {
  padding: clamp(48px, 8vw, 96px) 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255,106,26,0.10) 0%, transparent 55%),
    var(--bg);
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: start;
}
.checkout-details {
  background: var(--bg-elev);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border: 1px solid var(--border);
}
.checkout-details h3 {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 20px;
  color: #fff;
}
.checkout-details .why {
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.checkout-details ul.plain { list-style: none; padding: 0; margin: 0 0 20px; }
.checkout-details ul.plain li {
  padding: 8px 0 8px 26px; position: relative;
  color: var(--text-mute); font-size: 14px;
}
.checkout-details ul.plain li::before {
  content: '✓'; color: var(--green); font-weight: 900;
  position: absolute; left: 0; top: 8px;
}
.checkout-details .bullets-green {
  display: flex; flex-direction: column; gap: 6px; margin: 20px 0 24px;
}
.checkout-details .bullets-green li { color: var(--green); font-size: 14px; }
.checkout-details .mockup-inline { max-width: 220px; margin: 12px 0 0; }

.checkout-form {
  background: var(--bg-elev);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  position: sticky; top: 68px;
}
.checkout-form .form-note {
  color: var(--text-mute);
  font-size: 13px;
  margin: 0 0 14px;
}
.field {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  color: #fff;
  font-size: 15px;
  transition: border-color 0.14s ease, box-shadow 0.14s ease;
  margin-bottom: 12px;
}
.field::placeholder { color: #6a6a6a; }
.field:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,184,0,0.15); }
.field.err { border-color: var(--red); }
.field-inline { display: grid; grid-template-columns: 90px 1fr; gap: 12px; }
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; color: var(--text-mute); font-size: 14px;
}
.summary-row.total {
  padding: 14px 0 20px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}
.summary-row .old { color: #6a6a6a; text-decoration: line-through; margin-left: 10px; font-weight: 500; }
.summary-row .money { font-weight: 800; color: #fff; }
.pay-tip {
  color: var(--text-dim);
  font-size: 12px;
  text-align: center;
  margin: 14px 0 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pay-badges { display: flex; justify-content: center; gap: 14px; align-items: center; margin: 12px 0 0; color: var(--text-dim); font-size: 12px; }
.pay-badges .badge {
  padding: 5px 10px; border-radius: 6px; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); font-weight: 700; color: #ccc;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-mockup .box-and-copy { grid-template-columns: 1fr; }
  .dept-columns { grid-template-columns: 1fr; }
  .dept-list { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .bonuses-2 { grid-template-columns: 1fr; }
  .bonuses-3 { grid-template-columns: 1fr; }
  .compare-wrap { grid-template-columns: 1fr; }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .persona-grid { grid-template-columns: 1fr; }
  .premium-bonuses { grid-template-columns: 1fr 1fr; }
  .reviews-track { grid-template-columns: 1fr; }
  .reviews-arrow { display: none; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-form { position: static; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .count-box { padding: 16px 12px; min-width: 76px; }
  .count-box .num { font-size: 26px; }
}
@media (max-width: 560px) {
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-bonuses { grid-template-columns: 1fr; }
}
