/* ============================================================
   Prime Profits — landing page (clean rebuild of primeprofitsbook.com)
   ============================================================ */

:root {
  --orange: #ff7a1b;
  --orange-hi: #ffa624;      /* highlight word color */
  --orange-yel: #f8a624;
  --btn-grad: radial-gradient(circle, #f2a600 0%, #ff7a02 100%);
  --green: #05b505;          /* fills, and green text on DARK backgrounds */
  --green-ink: #0b7a1e;      /* green text on LIGHT backgrounds (WCAG-safe) */
  --red: #e62626;
  --ink: #0f0f0f;
  --ink-soft: #2c3345;
  --paper: #ffffff;
  --cream: #fdf1d3;
  --dark: #222D3D;           /* brand primary (matches checkout + funnel) */
  --dark-2: #2b3749;         /* slightly lighter brand surface */
  --dark-3: #2f3c50;         /* raised cards on dark */
  --dark-line: #3b4861;      /* borders on dark surfaces */
  --white-soft: #fafafa;
  --line: #e3e3e3;
  --content: 1120px;     /* two-column sections */
  --narrow: 720px;       /* single-column letter width */
}

* , *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.3;
  font-size: 18px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---------- keyboard focus (accessibility) ---------- */
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 3px; }
/* orange buttons need a high-contrast ring that reads on both light and dark sections */
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--orange); }
.modal-close:focus-visible, .video .sound:focus-visible { outline: 3px solid #fff; outline-offset: 1px; }

/* ---------- hover / interaction feedback ---------- */
.faq-q:hover { background: #fafafa; }
.footer .links a:hover, .legal a:hover, .topbar .help a:hover, .legal .back:hover { text-decoration: underline; }
.modal-close:hover { opacity: .7; }

/* ---------- layout helpers ---------- */
.section { padding: 48px 20px; }
.section--dark { background: var(--dark); color: var(--white-soft); }
.section--paper { background: #fff; color: var(--ink); }
.container { max-width: var(--content); margin: 0 auto; }
.narrow { max-width: var(--narrow); margin: 0 auto; }
.center { text-align: center; }
.two-col {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ---------- type ---------- */
.pre-pill {
  display: inline-block;
  background: var(--cream);
  color: #111;
  font-size: 16px; font-weight: 600;
  padding: 7px 22px;
  border-radius: 25px;
  margin: 0 auto 22px;
}
.h-hero { font-size: 45px; font-weight: 800; line-height: 1.1; margin: 0 0 18px; }
.h-xl   { font-size: 40px; font-weight: 900; line-height: 1.3; margin: 0 0 16px; }
.h-lg   { font-size: 36px; font-weight: 800; line-height: 1.2; margin: 0 0 14px; }
.h-md   { font-size: 30px; font-weight: 700; line-height: 1.3; margin: 0 0 12px; }
.h-sm   { font-size: 28px; font-weight: 700; line-height: 1.2; margin: 0 0 12px; }
.sub    { font-size: 20px; font-weight: 400; line-height: 1.3; margin: 0 0 16px; }
.o  { color: var(--orange); }
.oh { color: var(--orange-hi); }
.r  { color: var(--red); }
.g  { color: var(--green); }
.b  { font-weight: 700; }
.i  { font-style: italic; }
p { margin: 0 0 16px; }
.letter p { font-size: 18px; line-height: 1.45; }
.red-head { color: var(--red); font-weight: 700; text-align: center; font-size: 30px; line-height: 1.3; margin: 32px 0 18px; }

/* ---------- buttons ---------- */
.btn {
  display: block;
  width: 100%;
  border: 0;
  cursor: pointer;
  background: var(--btn-grad);
  color: #fff;
  border-radius: 5px;
  padding: 18px 25px;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.15;
  box-shadow: 0 4px 0 rgba(0,0,0,.12);
  transition: transform .08s ease, filter .15s ease;
}
.btn:hover { filter: brightness(1.05); }
.btn:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(0,0,0,.12); }
.btn small { display: block; font-size: 13px; font-weight: 600; opacity: .92; margin-top: 4px; letter-spacing: .3px; }
.btn .arrow { margin-right: 8px; }

/* ---------- hero ---------- */
.hero {
  background: var(--dark) center/cover no-repeat;
  color: #fff;
  padding: 22px 20px 60px;
}
.topbar {
  max-width: var(--content); margin: 0 auto 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar .logo { height: 34px; width: auto; }
.topbar .help { font-size: 15px; font-weight: 700; }
.topbar .help a { color: var(--orange-hi); text-decoration: none; font-weight: 700; }
.hero-head { text-align: center; max-width: 820px; margin: 0 auto; }
.hero-grid {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 34px;
  max-width: var(--content); margin: 30px auto 0; align-items: start;
}
.video-label { background: #296CE3; color: #fff; text-align: center; font-size: 14px; font-weight: 800; letter-spacing: .5px; padding: 10px; border-radius: 8px 8px 0 0; margin: 0; }
.video-label .pi { display: inline-block; margin-right: 7px; }
.video-label .nb { white-space: nowrap; }

/* hero "what you'll learn" list (fills the space beside the order box) */
.hero-learn-title { font-weight: 800; font-size: 18px; margin: 26px 0 12px; }
.hero-learn { list-style: none; margin: 0; padding: 0; }
.hero-learn li { position: relative; padding: 10px 0 10px 30px; font-size: 16px; line-height: 1.4; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero-learn li:last-child { border-bottom: 0; }
.hero-learn li::before { content: "✓"; position: absolute; left: 0; top: 10px; color: #2ee06a; font-weight: 900; }
.hero-learn-note { font-size: 14px; color: #aeb4c0; margin: 14px 0 0; }
@media (max-width: 900px) { .hero-learn-title { margin-top: 22px; } }

/* ---------- video player ---------- */
.video {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #000; border-radius: 8px; overflow: hidden; cursor: pointer;
}
/* hero video: square top so it sits flush under the attached blue label bar (no side frame) */
.video[data-pip] { border-radius: 0 0 8px 8px; }
.video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video .play {
  position: absolute; inset: 0; margin: auto; width: 78px; height: 78px;
  background: rgba(0,0,0,.55); border-radius: 50%;
  display: grid; place-items: center; pointer-events: none;
  transition: opacity .2s ease;
}
.video .play::after { content: ""; border-left: 24px solid #fff; border-top: 15px solid transparent; border-bottom: 15px solid transparent; margin-left: 6px; }
.video.playing .play { opacity: 0; }
.video .sound {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.7); color: #fff; border: 0;
  font: 700 14px/1 Inter, sans-serif; letter-spacing: .5px;
  padding: 12px 10px; min-height: 44px; cursor: pointer; width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.video.unmuted .sound { display: none; }
/* floating mini-player on scroll */
.video.pip {
  position: fixed; bottom: 18px; right: 18px; width: 320px; max-width: 46vw;
  z-index: 60; box-shadow: 0 10px 30px rgba(0,0,0,.4); border-radius: 10px;
}
.video.pip .pip-close {
  display: flex; position: absolute; top: 6px; right: 6px; z-index: 2;
  width: 28px; height: 28px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(0,0,0,.6); color: #fff; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1;
}
.video.pip .pip-close:hover { background: rgba(0,0,0,.85); }
.pip-close { display: none; }

/* ---------- order / opt-in box ---------- */
.order-box {
  background: #fff; color: var(--ink);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
  border: 2px solid #296CE3;
}
.order-box__head {
  background: #296CE3; color: #fff; text-align: center;
  font-size: 15px; font-weight: 800; letter-spacing: .6px; padding: 12px 10px;
}
.order-box__body { padding: 20px; }
.price-line { text-align: center; }
.price-reg { color: var(--red); font-weight: 700; text-decoration: line-through; }
.price-now { color: var(--green-ink); font-weight: 800; font-size: 24px; margin: 2px 0 6px; }
.field {
  display: block;
  width: 100%; background: #fff; color: var(--ink-soft);
  border: 1px solid #acacac; border-radius: 5px; padding: 14px 16px;
  font: 15px/1.4 Inter, sans-serif; margin-bottom: 12px;
  box-shadow: rgba(87,100,126,.21) 0 0 5px 2px;
}
.field::placeholder { color: #667085; opacity: 1; }
.field:focus { border-color: var(--orange); }
.trust { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12.5px; color: #333; margin-top: 12px; text-align: center; }
.pay-badge { margin: 12px auto 0; max-width: 280px; }
.guarantee-pill { display:block; margin: 10px auto 0; max-width: 320px; }

/* ---------- "available for instant download" bar ---------- */
.avail-bar { text-align: center; font-size: 16px; font-weight: 700; color: var(--green-ink); margin: 10px 0; }
.avail-bar--light { color: #fafafa; }

/* ---------- offer block (full-width orange-bordered) ---------- */
.offer {
  max-width: 620px; margin: 30px auto; border: 3px solid var(--orange);
  border-radius: 10px; overflow: hidden; background: #fff; text-align: center;
}
.offer__head { background: var(--orange); color: #fff; font-weight: 800; font-size: 13px; letter-spacing: .6px; padding: 9px; }
.offer__body { padding: 22px 22px 26px; }
.offer .gift { font-weight: 700; color: var(--ink); margin: 6px 0 14px; }

/* ---------- bonus cards (dark grid) ---------- */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 26px 0; }
.bonus-card {
  position: relative; background: #0A0B13; border-radius: 10px; padding: 22px;
  text-align: center; color: var(--white-soft); border: 1px solid #20283a;
}
.bonus-card .tag {
  position: absolute; top: 14px; right: 0; background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 4px 0 0 4px;
}
.bonus-card img { margin: 0 auto 14px; max-height: 150px; width: auto; }
.bonus-card h3 { font-size: 18px; margin: 0 0 8px; }
.bonus-card p { font-size: 14px; color: #c8ccd6; margin: 0; }

/* ---------- offer sidebar bonus list (light) ---------- */
.incl-card { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.incl-row { display: grid; grid-template-columns: 90px 1fr; gap: 14px; padding: 16px; border-bottom: 1px dashed var(--line); align-items: center; }
.incl-row:last-child { border-bottom: 0; }
.incl-row img { border-radius: 6px; }
.incl-row h4 { font-size: 15px; margin: 0 0 4px; }
.incl-row p { font-size: 13px; margin: 0; color: #444; }
.incl-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 16px; background: #f6f6f6; font-size: 12px; font-weight: 700; }
.incl-foot .free { background: var(--green); color: #fff; padding: 2px 8px; border-radius: 3px; }
.incl-foot .val { color: #888; text-decoration: line-through; }

/* ---------- checklists ---------- */
.checklist { list-style: none; margin: 0 0 18px; padding: 0; }
.checklist li { position: relative; padding: 12px 14px 12px 44px; border: 1px solid var(--line); border-radius: 6px; margin-bottom: 8px; font-size: 15px; }
.checklist li::before { content: ""; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; border-radius: 50%; background: var(--green); }
.checklist li::after { content: "✓"; position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #fff; font-size: 12px; font-weight: 800; }
.xlist { list-style: none; margin: 0 0 18px; padding: 0; }
.xlist li { position: relative; padding: 12px 14px 12px 44px; border: 1px solid var(--line); border-radius: 6px; margin-bottom: 8px; font-size: 15px; }
.xlist li::before { content: "✕"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; border-radius: 50%; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.steplist { list-style: none; margin: 0 0 18px; padding: 0; }
.steplist li { position: relative; padding: 13px 14px 13px 44px; border: 1px solid var(--line); border-radius: 6px; margin-bottom: 8px; font-size: 15px; }
.steplist li::before { content: "✕"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; border-radius: 50%; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.steplist .s { color: var(--red); font-weight: 700; }

/* discover list (page numbers) */
.discover { margin: 0; padding: 0; list-style: none; }
.discover li { border-bottom: 1px dashed var(--line); padding: 12px 0 12px 30px; position: relative; font-size: 15px; }
.discover li::before { content: "✅"; position: absolute; left: 0; top: 12px; font-size: 14px; }
.discover .page { display: block; color: var(--orange); font-style: italic; font-weight: 600; font-size: 14px; margin-top: 4px; }

/* sidebar discover box header */
.disc-box { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.disc-box__head { background: var(--dark); color: #fff; text-align: center; font-weight: 800; font-size: 14px; padding: 10px; }
.disc-box__body { padding: 8px 16px 16px; }

/* ---------- lifestyle gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 22px 0; }
.gallery img { border-radius: 10px; width: 100%; }

/* ---------- testimonial videos in sidebar ---------- */
.testi { margin-bottom: 22px; }
.testi .cap { text-align: center; font-size: 13px; font-style: italic; color: #555; margin-top: 8px; }
/* testimonial video grid: 3-across on desktop, full-width single column on mobile */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 26px; }
.testi-grid .testi { margin-bottom: 0; }
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; gap: 20px; max-width: 460px; } }

/* ---------- about the author ---------- */
.author-grid { display: grid; grid-template-columns: 400px 1fr; column-gap: 44px; align-items: start; max-width: var(--content); margin: 0 auto; }
.author-photo { width: 100%; max-width: 400px; border-radius: 12px; display: block; grid-column: 1; grid-row: 1 / span 2; align-self: start; }
.author-head { grid-column: 2; grid-row: 1; text-align: left; }
.author-bio { grid-column: 2; grid-row: 2; text-align: left; }
.author-head .kicker { text-align: inherit; margin: 0 0 4px; }
.author-head .h-md { margin: 0 0 10px; }
.author-bio p:first-child { margin-top: 0; }
/* mobile: heading first, then photo, then bio (natural DOM order), all centered */
@media (max-width: 900px) {
  .author-grid { grid-template-columns: 1fr; column-gap: 0; row-gap: 16px; justify-items: center; }
  .author-photo, .author-head, .author-bio { grid-column: 1; grid-row: auto; }
  .author-photo { max-width: 400px; }
  .author-head, .author-bio { text-align: center; }
}

/* ---------- guarantee ---------- */
.guarantee { background: #fff; border: 2px dashed var(--orange); border-radius: 12px; padding: 30px; max-width: 820px; margin: 30px auto; }
.guarantee img { float: right; max-width: 160px; margin: 0 0 12px 18px; }
.guarantee h2 { color: var(--red); font-size: 26px; margin-top: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__title { text-align: center; font-size: 28px; font-weight: 800; margin-bottom: 22px; }
.faq-item { border: 1px solid var(--line); border-radius: 8px; margin-bottom: 12px; overflow: hidden; background: #fff; }
.faq-q { width: 100%; text-align: left; background: #fff; border: 0; cursor: pointer; padding: 18px 50px 18px 48px; font: 700 16px/1.4 Inter, sans-serif; color: var(--ink); position: relative; }
.faq-q::before { content: "?"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; background: var(--red); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 13px; }
.faq-q::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--orange); }
.faq-item.open .faq-q::after { content: "–"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 20px; }
.faq-item.open .faq-a { max-height: 600px; padding: 0 20px 18px; }
.faq-a p { font-size: 15px; color: #444; margin: 0; }

/* ---------- footer ---------- */
.footer { background: var(--dark); color: #aeb4c0; font-size: 13px; padding: 40px 20px; }
.footer .container { text-align: center; }
.footer .links { margin: 12px 0; }
.footer .links a { color: var(--orange-hi); text-decoration: none; margin: 0 8px; }
.footer p { color: #a8aeba; line-height: 1.6; }
.footer .brand { color: #fff; font-weight: 800; font-size: 16px; margin-bottom: 6px; }

/* ---------- proof stat ledger ---------- */
.stats { display: flex; margin: 40px 0 0; text-align: center; }
.stat { flex: 1; padding: 4px 34px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 1px; background: var(--dark-line); }
.stat .num { font-size: clamp(28px, 3.2vw, 42px); font-weight: 800; letter-spacing: -.025em; line-height: 1; color: #fff; white-space: nowrap; }
.stat .num .ar { color: var(--orange); font-weight: 700; margin: 0 5px; }
.stat .rule { display: block; width: 34px; height: 3px; border-radius: 2px; background: var(--orange); margin: 16px auto 14px; }
.stat .lab { font-size: 14.5px; line-height: 1.45; color: #aeb4c0; max-width: 26ch; margin: 0 auto; }
@media (max-width: 900px){
  .stats { flex-direction: column; }
  .stat { padding: 22px 0; }
  .stat .num { font-size: clamp(30px, 7vw, 42px); }
  .stat + .stat::before { left: 0; right: 0; top: 0; bottom: auto; width: auto; height: 1px; }
}

/* proof screenshot: white frame + restrained highlight on key tiles */
.ps-frame { border-radius: 10px; background: #fff; padding: 10px; box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.ps-shot { position: relative; line-height: 0; }
.ps-shot img { width: 100%; display: block; border-radius: 4px; }
.ps-hl { position: absolute; border: 3px solid var(--orange); border-radius: 10px; box-shadow: 0 0 0 4px rgba(255,122,27,.20); pointer-events: none; }

/* v2: what-it-is feature row */
.feat { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 22px auto; }
.feat .f { text-align: center; padding: 6px; }
.feat .f .ic { font-size: 26px; }
.feat .f h4 { font-size: 16px; margin: 8px 0 4px; }
.feat .f p { font-size: 14px; color: #555; margin: 0; }
@media (max-width: 700px){ .feat { grid-template-columns: 1fr; } }
[data-hook][hidden] { display: none !important; }

/* ---------- divider headline on dark ---------- */
.kicker { text-align: center; font-size: 16px; font-weight: 700; letter-spacing: 1px; color: var(--green); margin: 0 0 8px; }
.kicker--light { color: #fafafa; }

/* signature */
.sig { max-width: 220px; margin: 18px 0 4px; }

/* legal pages (privacy / terms / refund) */
.legal-bar { background: var(--dark); padding: 16px 20px; }
.legal-bar .logo { height: 30px; }
.legal { max-width: 800px; margin: 0 auto; padding: 44px 20px 60px; }
.legal .back { display: inline-block; margin-bottom: 22px; font-weight: 700; text-decoration: none; color: var(--orange); }
.legal h1 { font-size: 32px; margin: 0 0 6px; }
.legal .updated { color: #888; font-size: 14px; margin: 0 0 26px; }
.legal h2 { font-size: 20px; margin: 28px 0 10px; }
.legal p, .legal li { font-size: 15px; line-height: 1.65; color: #333; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--orange); }

/* two-step opt-in modal */
.modal-overlay { position: fixed; inset: 0; z-index: 80; background: rgba(8,10,16,.72); display: flex; align-items: center; justify-content: center; padding: 20px; overflow-y: auto; }
.modal-overlay[hidden] { display: none; }
.modal-box { position: relative; background: #fff; color: var(--ink); width: 100%; max-width: 460px; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 70px rgba(0,0,0,.45); animation: pp-popin .18s ease; }
@keyframes pp-popin { from { transform: translateY(14px); opacity: .5; } to { transform: none; opacity: 1; } }
.modal-box .order-box__head { font-size: 13px; }
.modal-body { padding: 22px; }
.modal-close { position: absolute; top: 6px; right: 10px; z-index: 2; border: 0; background: transparent; color: #fff; font-size: 26px; line-height: 1; cursor: pointer; padding: 4px 8px; }
body.modal-open { overflow: hidden; }

/* sticky bottom CTA bar (mobile) */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: rgba(34,45,61,.96); padding: 10px 14px; transform: translateY(110%);
  transition: transform .25s ease; box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
@media (max-width: 900px) { .sticky-cta { display: block; } }
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { max-width: 520px; margin: 0 auto; padding: 14px; font-size: 17px; }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  body { font-size: 17px; }
  .section { padding: 36px 16px; }
  .two-col, .hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .h-hero { font-size: 34px; line-height: 1.12; }
  .h-xl { font-size: 28px; }
  .h-lg { font-size: 26px; }
  .h-md { font-size: 23px; }
  .red-head { font-size: 23px; }
  .sub { font-size: 18px; }
  .gallery { grid-template-columns: 1fr; }
  .guarantee img { float: none; display: block; margin: 0 auto 16px; }
  .video.pip { width: 200px; max-width: 58vw; bottom: 12px; right: 12px; }
  /* lift the floating mini-player above the sticky CTA bar when it's visible */
  body:has(.sticky-cta.show) .video.pip { bottom: 88px; }
}
@media (max-width: 560px) {
  .topbar { flex-direction: column; align-items: center; text-align: center; gap: 8px; margin-bottom: 24px; }
  .topbar .help { font-size: 13px; }
  .topbar .help a { overflow-wrap: anywhere; }
  .pre-pill { font-size: 14px; padding: 7px 18px; }
  .video-label { font-size: 13px; letter-spacing: .3px; line-height: 1.35; }
}
@media (max-width: 480px) {
  .topbar .logo { height: 30px; }
  .h-hero { font-size: 31px; }
  .sub { font-size: 17px; }
  .incl-row { grid-template-columns: 70px 1fr; }
  /* keep long CTA labels (e.g. "Continue to checkout") on one line on narrow phones */
  .btn { font-size: 17px; padding: 16px 16px; }
}
