
:root {
  /* ===== BRAND PALETTE: swap this entire block per product (see system/06-branding/) ===== */
  --primary: #3D5A80;        /* main brand color: CTA buttons, key headlines */
  --primary-dark: #2C4360;   /* hover states, darker accents */
  --primary-light: #E1E9F2;  /* light tint backgrounds, highlight boxes */
  --accent: #E8A33D;         /* secondary highlight (badges, underlines) */
  --success: #1E7A45;        /* guarantees, checkmarks, positive elements (WCAG-AA safe for white button text) */
  --urgent: #C44536;         /* scarcity, warnings, countdown timers */
  --dark: #1B2733;           /* dark sections, footer */
  --bg-page: #FFFFFF;        /* page background */
  --bg-section: #F3F6F9;     /* alternating section background */
  --text-main: #1F2933;      /* body text */
  --text-muted: #5F6B76;     /* secondary text */
  --white: #FFFFFF;
  --font-display: 'Libre Baskerville', Georgia, serif;  /* headlines + CTAs */
  --font-body: system-ui, -apple-system, 'Segoe UI', sans-serif;  /* body text */
}

/* ===== HERO BACKDROP (front-end only) =====
   A fixed, cover background image sits behind the hero zone (header down to the
   stats strip) and recedes behind a white veil so it never competes with the copy.
   The backdrop asset is IMG-FE-BG; the assembler points --hero-bg-image at it when
   the asset exists (otherwise the page is plain white). Tune intensity with the one
   token below: --hero-bg-overlay 1 = solid white (off), lower = more image shows.
   These vars live OUTSIDE the brand palette block so a per-product branding swap keeps them. */
:root {
  --hero-bg-overlay: 0.85;
  --hero-bg-image: none;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-main);
  /* Hero backdrop: the IMG-FE-BG image behind a white veil, fixed so it stays put while
     scrolling. It shows only through the transparent hero sections; every section from the
     stats strip down is opaque, so the backdrop never appears below the strip. With
     --hero-bg-image: none the page is plain white (graceful fallback when no asset). */
  background-color: var(--bg-page);
  background-image:
    linear-gradient(rgba(255, 255, 255, var(--hero-bg-overlay)), rgba(255, 255, 255, var(--hero-bg-overlay))),
    var(--hero-bg-image);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  line-height: 1.6;
  /* keep content clear of the fixed bottom CTA bar */
  padding-bottom: 120px;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); }

.container { max-width: 1170px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }

/* ===== UNBACKED-PROOF KILL SWITCH (honest launch) =====
   Add class "no-proof" to the page body element to hide every unbacked social-proof block
   (testimonials, star rows, review counts, stat strips) in one rule.
   Each proof wrapper also carries the shared .social-proof hook class. */
body.no-proof .social-proof { display: none !important; }

/* ===== COUNTDOWN DISABLE FLAG (honest launch) =====
   Add class "no-countdown" to the page body element to hide the countdown + its lead line. */
body.no-countdown .countdown, body.no-countdown .timer-lead { display: none; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; color: var(--text-main); }

.body-copy { font-size: 16px; color: var(--text-muted); margin-bottom: 16px; }
.body-copy:last-of-type { margin-bottom: 0; }

/* ===== IMAGE SLOT PLACEHOLDERS ===== */
.img-slot {
  background: #F0F2F5;
  border: 2px dashed #C3CAD3;
  border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; text-align: center; padding: 10px;
  color: #75808C; font-family: var(--font-body); font-size: 12px; line-height: 1.35;
  width: 100%;
}
.img-slot strong { font-size: 13px; color: #4A5560; letter-spacing: .5px; }
.img-slot em { font-style: normal; font-size: 11px; opacity: .8; }

/* video slot (16:9 with play button) */
.video-slot { position: relative; background: #E6E9EE; }
.play-btn {
  width: 76px; height: 52px; border-radius: 12px;
  background: color-mix(in srgb, var(--dark) 78%, transparent);
  position: relative; margin-bottom: 6px;
}
.play-btn::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-46%, -50%);
  border-style: solid; border-width: 11px 0 11px 18px;
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) var(--white);
}

/* circular avatar slot inside testimonial pills */
.avatar-slot {
  width: 52px; height: 52px; flex: 0 0 52px;
  border-radius: 50%; padding: 2px; gap: 0;
}
.avatar-slot strong { font-size: 8px; letter-spacing: 0; }

/* ===== CTA BUTTON (green pill + pulse glow) ===== */
.cta-btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  background: var(--success); color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: 20px; line-height: 1.2;
  text-decoration: none; text-align: center;
  /* the main line never wraps: a lone ">>" dropping to line two reads broken.
     Rail-scoped sizing below keeps the nowrap line inside the narrow column. */
  white-space: nowrap;
  border: none; cursor: pointer;
  border-radius: 50px; padding: 15px 44px;
  animation: pulseGlow 2s infinite;
}
/* narrow rail: wide display fonts (serif presets) need a smaller size to hold one line */
.col-rail .cta-btn { font-size: 17px; padding: 14px 26px; }
.cta-btn .cta-sub { font-size: 12px; font-weight: 600; opacity: .95; }
.cta-btn:hover { filter: brightness(1.06); }
@keyframes pulseGlow {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--success) 45%, rgba(0,0,0,0)); }
  70%  { box-shadow: 0 0 0 16px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}
.cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }

/* ===== TRUST CLUSTER (secure checkout + card icons, pure CSS, no assets needed) ===== */
.trust-cluster { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.secure-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--text-main);
}
.secure-badge .stripe-chip {
  background: var(--dark); color: var(--white);
  font-size: 10px; padding: 3px 9px; border-radius: 4px; letter-spacing: .3px;
}
.lock-mark { display: inline-block; width: 9px; height: 7px; border: 1.5px solid currentColor; border-radius: 2px; position: relative; margin-right: 3px; vertical-align: -1px; }
.lock-mark::before { content: ""; position: absolute; left: 50%; top: -5px; width: 6px; height: 6px; transform: translateX(-50%); border: 1.5px solid currentColor; border-bottom: none; border-radius: 5px 5px 0 0; }
.card-icons { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; align-items: center; }
.card-badge {
  width: 40px; height: 26px; border-radius: 4px; border: 1px solid #E3E6EB; background: #FFFFFF;
  display: inline-flex; align-items: center; justify-content: center; gap: 0;
  font-family: Arial, system-ui, sans-serif; font-weight: 800; letter-spacing: .3px;
  font-size: 10px; line-height: 1; overflow: hidden; position: relative;
}
.card-badge.visa { color: #1A1F71; font-style: italic; font-size: 12px; }
.card-badge.amex { background: #1F72CD; color: #FFFFFF; font-size: 8px; }
.card-badge.disc { color: #4D4D4F; font-size: 8.5px; padding-right: 9px; }
.card-badge.disc::after { content: ""; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; background: #F26E21; }
.card-badge.mc { background: #FFFFFF; }
.card-badge.mc .mc-c { width: 16px; height: 16px; border-radius: 50%; }
.card-badge.mc .mc-r { background: #EB001B; }
.card-badge.mc .mc-y { background: #F79E1B; margin-left: -7px; mix-blend-mode: multiply; }

/* ===== GUARANTEE BOX (highlight box + seal, pure CSS) ===== */
.guarantee-box {
  display: flex; align-items: center; gap: 14px;
  background: var(--primary-light); border-radius: 12px; padding: 16px;
}
.gb-seal {
  flex: 0 0 70px; width: 70px; height: 70px; border-radius: 50%;
  background: var(--accent);
  border: 3px double rgba(0, 0, 0, .35);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; color: var(--text-main);
  font-size: 8px; line-height: 1.1; text-align: center; letter-spacing: .3px;
  padding: 6px; overflow: hidden;
}
.gb-seal span { font-size: 14px; }
.guarantee-box p { font-size: 13px; color: var(--text-main); line-height: 1.45; }

/* ===== STARS ===== */
.stars { font-size: 20px; letter-spacing: 4px; color: var(--accent); text-align: center; }
.proof-tagline {
  text-align: center; font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: var(--text-main);
}

/* ===== TESTIMONIAL CARD (rebuilt in HTML, original used pre-rendered images) ===== */
.t-card {
  position: relative;
  background: var(--white); border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
  padding: 56px 28px 28px;
  margin-top: 10px;
}
.t-card::before {
  content: "\201C";
  position: absolute; top: 2px; left: 18px;
  font-family: Georgia, serif; font-size: 84px; line-height: 1;
  color: var(--primary);
}
.t-card::after {
  content: "\201D";
  position: absolute; bottom: -22px; right: 18px;
  font-family: Georgia, serif; font-size: 84px; line-height: 1;
  color: var(--primary);
}
.t-pill {
  position: absolute; top: -10px; right: 18px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); border-radius: 50px;
  padding: 6px 20px 6px 7px; color: var(--white);
}
.t-pill .t-name { font-family: var(--font-display); font-weight: 800; font-size: 14px; line-height: 1.2; }
.t-pill .t-detail { font-size: 11px; opacity: .85; line-height: 1.2; }
.t-quote { font-size: 15px; color: var(--text-muted); margin-bottom: 18px; }
.t-stars { color: var(--primary); font-size: 16px; letter-spacing: 4px; border-top: 1px solid #ECEEF1; padding-top: 14px; }
.t-col { display: flex; flex-direction: column; gap: 34px; }

/* ===== VALUE LINE (used in stack items + offer cards) ===== */
.value-line { font-size: 12px; font-style: italic; font-weight: 800; font-family: var(--font-body); }
.value-line .va { color: var(--success); }
.value-line b { color: var(--text-main); }

/* ===== PRICE BLOCK ===== */
.price-line {
  font-family: var(--font-display); font-weight: 900; font-size: 30px;
  color: var(--primary); text-align: center; line-height: 1.2;
}
/* Optional real-rate comparison line (a believable market rate the buyer already trusts, e.g.
   "About what one hour with a bookkeeper costs"). NOT a struck fantasy anchor. Leave the token
   empty to hide it: an empty line collapses so a plain price renders by default. */
.price-compare { text-align: center; font-size: 14px; font-style: italic; color: var(--text-muted); }
.price-compare:empty { display: none; }
.order-desc { text-align: center; font-size: 13.5px; color: var(--text-muted); }
.avail-line { text-align: center; font-size: 13.5px; font-weight: 700; font-style: italic; color: var(--text-main); }

.soft-divider { border: none; border-top: 1px solid #ECEEF1; margin: 6px 0; }

/* ============================================================
   SECTION 1: TOP HEADER BAR
============================================================ */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--primary);
  padding: 10px 0;
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.logo-slot { width: 220px; min-height: 44px; padding: 6px; }
.top-bar img.logo-slot { height: 50px; width: auto; max-width: 240px; background: transparent; border: none; padding: 0; object-fit: contain; }
.help-line { font-size: 14px; color: var(--text-main); }
.help-line a { text-decoration: none; font-weight: 600; }

/* ============================================================
   SECTION 2: HERO HEADLINE
============================================================ */
.hero-head { padding: 48px 0 26px; text-align: center; }
.eyebrow {
  color: var(--primary); font-weight: 700; font-size: 15px;
  margin-bottom: 14px;
}
.main-headline {
  font-size: clamp(28px, 4vw, 42px); font-weight: 900;
  max-width: 980px; margin: 0 auto 16px;
}
.hero-subhead {
  color: var(--text-muted); font-size: clamp(15px, 1.6vw, 18px);
  max-width: 880px; margin: 0 auto;
}

/* ============================================================
   SECTION 3 + 4: TWO-COLUMN LETTER + ORDER RAIL LAYOUT
============================================================ */
.two-col-row { display: flex; gap: 30px; align-items: flex-start; margin-bottom: 44px; }
.col-main { width: 63%; }
.col-rail { width: 37%; }
.col-main .h-lg {
  font-size: clamp(24px, 2.6vw, 32px); font-weight: 900; text-align: center;
  margin: 26px 0 18px;
}
.video-caption {
  text-align: center; font-weight: 800; font-family: var(--font-display);
  font-size: 16px; margin-top: 12px;
}
.inline-figure { max-width: 460px; margin: 26px auto; }
.inline-figure-wide { max-width: 560px; margin: 26px auto; }
.gift-lead {
  text-align: center; font-weight: 800; font-family: var(--font-display);
  font-size: 17px; margin: 22px 0 10px;
}
/* honest gating: the bonus-included line ships only when the offer really bundles a
   free gift. Leave Your 3 Fast-Action Bonuses Are Included Today blank and the line collapses so no unbacked
   "free gift" claim renders. */
.gift-lead:empty { display: none; margin: 0; }

/* countdown */
.timer-lead { text-align: center; font-size: 14px; color: var(--text-main); margin-top: 26px; }
.countdown { display: flex; justify-content: center; gap: 36px; margin-top: 6px; }
.cd-unit { text-align: center; }
.cd-num { font-family: var(--font-display); font-weight: 900; font-size: 38px; color: var(--text-main); line-height: 1.1; }
.cd-label { font-size: 15px; color: var(--text-muted); }

/* order box (right rail, section 3) */
.order-box {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 15px; overflow: hidden;
}
.order-box-header {
  background: var(--primary); color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  text-align: center; padding: 14px 18px;
}
.order-box-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; }

/* GHL form placeholder */
.ghl-embed {
  border: 2px dashed var(--primary);
  background: color-mix(in srgb, var(--primary) 5%, var(--white));
  border-radius: 10px; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.ghl-embed .ghl-label {
  text-align: center; font-size: 11px; font-weight: 800; letter-spacing: 1px;
  color: var(--primary); text-transform: uppercase;
}
.ghl-embed .field label { font-size: 12px; font-weight: 600; display: block; margin-bottom: 3px; }
.ghl-embed .field input {
  width: 100%; padding: 9px 12px; font-size: 13px; font-family: var(--font-body);
  border: 1px solid #ACACAC; border-radius: 5px; background: var(--white); color: var(--text-muted);
}
.form-btn {
  width: 100%; border: none; cursor: pointer;
  background: var(--success); color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  padding: 13px; border-radius: 5px;
  animation: pulseGlow 2s infinite;
}

/* value stack box (right rail, section 4) */
.stack-box {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 15px; padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.stack-box .stack-heading { font-size: 20px; font-weight: 900; text-align: center; }
.stack-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid #ECEEF1; }
.stack-thumb { width: 30%; flex-shrink: 0; }
.stack-info h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; margin-bottom: 5px; }
.stack-info p { font-size: 12.5px; color: var(--text-muted); margin-bottom: 7px; }
.urgency-line {
  text-align: center; color: var(--urgent);
  font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 16px;
  margin-top: 10px;
}

/* story column extras */
.meaning-headline {
  font-size: clamp(22px, 2.4vw, 28px); font-weight: 900; font-style: italic;
  text-align: center; margin: 30px 0 18px;
}

/* ============================================================
   SECTION 5: STATS STRIP
============================================================ */
/* the last hero row's 44px bottom margin would escape the transparent section and let the
   fixed backdrop show as a gap right above the cutoff; zero it so the opaque cutoff sits flush
   (the section below supplies its own top padding for spacing). The -1px pulls the first opaque
   section up to cover the sub-pixel seam where the fixed backdrop meets opaque content. */
.story-cols .two-col-row:last-child { margin-bottom: 0; }
/* breathing room: the hero backdrop extends a beat past the last rail box instead of
   the next opaque section starting flush against its border */
.story-cols { padding-bottom: 44px; }
.stats-strip, .reveal { margin-top: -1px; }
.stats-strip { background: var(--bg-section); padding: 26px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.stat { font-size: 15px; font-weight: 600; }
.stat .stat-num { color: var(--primary); font-family: var(--font-display); font-weight: 900; margin-right: 5px; }

/* ============================================================
   SECTION 6: PRODUCT REVEAL
============================================================ */
.reveal { background: var(--bg-page); padding: 56px 0 48px; } /* opaque: confines the hero backdrop above the stats strip */
.reveal-headline {
  font-size: clamp(24px, 3vw, 34px); font-weight: 900; font-style: italic;
  text-align: center; max-width: 900px; margin: 0 auto 14px;
}
.reveal-subhead { text-align: center; color: var(--text-muted); font-size: 16px; max-width: 860px; margin: 0 auto 30px; }
.reveal-mockup { max-width: 760px; margin: 0 auto 34px; }
.feature-row { display: flex; gap: 20px; margin-bottom: 36px; }
.feature-card {
  flex: 1; background: var(--white);
  border: 1px solid var(--primary); border-radius: 20px;
  padding: 26px 20px; text-align: center;
}
.feature-card h3 { color: var(--primary); font-size: 20px; font-weight: 900; margin-bottom: 8px; }
.feature-card p { font-size: 14px; font-style: italic; color: var(--text-muted); }

/* ============================================================
   SECTION 7: BENEFITS CHECKLIST
============================================================ */
.benefits { background: var(--bg-section); padding: 52px 0; }
.benefits-headline {
  font-size: clamp(24px, 2.8vw, 32px); font-weight: 900; font-style: italic;
  text-align: center; margin-bottom: 32px;
}
.benefit-cols { display: flex; gap: 40px; }
.benefit-list { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.benefit-list li { font-size: 15px; padding-left: 30px; position: relative; }
.benefit-list li::before { content: "\2713"; color: var(--success); font-weight: 900; position: absolute; left: 0; top: 1px; font-size: 15px; }

/* ============================================================
   SECTION 8: SOCIAL PROOF SPOTLIGHT
============================================================ */
.proof { background: var(--bg-page); padding: 56px 0; } /* opaque: confines the hero backdrop above the stats strip */
.proof .testimonials-headline {
  font-size: clamp(24px, 2.8vw, 32px); font-weight: 900; font-style: italic;
  text-align: center; margin: 14px 0 40px;
}
.dual-cards { display: flex; gap: 34px; align-items: flex-start; }
.dual-cards .t-card { flex: 1; }

/* ============================================================
   SECTION 9: FULL-WIDTH OFFER STACK
============================================================ */
.offer-stack { background: var(--bg-section); padding: 56px 0; }
.offer-headline {
  font-size: clamp(24px, 2.8vw, 32px); font-weight: 900;
  text-align: center; margin-bottom: 30px;
}
.offer-mockup { max-width: 720px; margin: 0 auto 36px; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 38px; }
.offer-card {
  background: var(--white); border: 1px solid var(--primary); border-radius: 20px;
  padding: 22px; text-align: center;
  display: flex; flex-direction: column; gap: 10px;
}
.offer-card h4 { font-size: 16px; font-weight: 800; font-style: italic; }
.offer-card .oc-paren { font-size: 13px; font-style: italic; color: var(--text-muted); }
.offer-card .oc-desc { font-size: 13.5px; color: var(--text-muted); }
.offer-card .value-line { margin-top: auto; }

/* ============================================================
   SECTION 10: GUARANTEE
============================================================ */
.guarantee-zone { background: var(--bg-section); padding: 56px 0; }
.guarantee-card {
  background: var(--white); border: 1px solid var(--primary); border-radius: 25px;
  padding: clamp(28px, 5vw, 60px); text-align: center;
  max-width: 980px; margin: 0 auto;
}
.guarantee-card .seal-slot { max-width: 140px; margin: 0 auto 22px; }
.guarantee-headline { font-size: clamp(24px, 2.8vw, 32px); font-weight: 900; margin-bottom: 24px; }
.guarantee-card .body-copy { text-align: center; }

/* ============================================================
   SECTION 11: FAQ
============================================================ */
.faq { background: var(--bg-page); padding: 56px 0; } /* opaque: confines the hero backdrop above the stats strip */
.faq-headline {
  font-size: clamp(26px, 3vw, 34px); font-weight: 900; font-style: italic;
  text-align: center; margin-bottom: 8px;
}
.faq-support { text-align: center; font-size: 14px; color: var(--text-muted); margin-bottom: 34px; }
.faq-cols { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 44px; }
.faq-col { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.faq-item { }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--primary); color: var(--white);
  border: none; cursor: pointer; border-radius: 10px;
  padding: 14px 18px; text-align: left;
  font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 15px;
}
.faq-q:hover { background: var(--primary-dark); }
.faq-q .chev { transition: transform .25s ease; font-size: 12px; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 14px 6px 4px; font-size: 15px; color: var(--text-muted); }
.faq-item.open .faq-a { max-height: 600px; }
.faq-close-mockup { max-width: 420px; margin: 0 auto 28px; }

/* ============================================================
   SECTION 12: STICKY BOTTOM CTA BAR
============================================================ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--primary);
  border-radius: 25px 25px 0 0;
  padding: 10px 26px;
}
.sticky-bar .sb-inner {
  max-width: 1170px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.sb-img { width: 150px; flex-shrink: 0; }
.sb-img .img-slot { padding: 6px; font-size: 9px; gap: 1px; background: transparent; }
.sb-img .img-slot strong { font-size: 10px; }
.sb-img .img-slot em { font-size: 9px; }
.sb-img img { margin-top: -44px; filter: drop-shadow(0 10px 14px rgba(0,0,0,.45)); }
.sticky-bar .cta-btn { font-size: 17px; padding: 11px 38px; }
.sb-price { color: var(--white); text-align: left; }
.sb-price .sb-price-line { font-family: var(--font-display); font-weight: 800; font-size: 21px; line-height: 1.2; }
.sb-price p { font-size: 11px; line-height: 1.45; opacity: .95; }

/* ============================================================
   SECTION 13: FOOTER
============================================================ */
.footer { background: var(--primary); color: var(--white); padding: 30px 0 36px; text-align: center; }
.footer .f-line1 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.footer a { color: var(--white); }
.footer .f-small { font-size: 11px; opacity: .9; max-width: 920px; margin: 0 auto 10px; line-height: 1.55; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  body { padding-bottom: 96px; }
  .top-bar .container { flex-direction: column; gap: 6px; }
  .two-col-row { flex-direction: column; }
  /* nowrap CTA main line must fit small phones */
  .cta-btn, .col-rail .cta-btn { font-size: 16px; padding: 13px 20px; }
  .col-main, .col-rail { width: 100%; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .feature-row { flex-direction: column; }
  .benefit-cols { flex-direction: column; gap: 16px; }
  .dual-cards { flex-direction: column; gap: 34px; }
  .offer-grid { grid-template-columns: 1fr; }
  .faq-cols { flex-direction: column; }
  .countdown { gap: 24px; }
  /* mobile sticky bar = button only */
  .sb-img, .sb-price { display: none; }
  .sticky-bar .sb-inner { justify-content: center; }
}
  .dpm-root{width:100vw;max-width:100vw;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);}
.dpm-root{background-image:linear-gradient(rgba(255,255,255,var(--hero-bg-overlay)),rgba(255,255,255,var(--hero-bg-overlay))),var(--hero-bg-image);background-position:center top;background-size:cover;background-repeat:no-repeat;background-attachment:fixed;}
