/* =====================================================================
   CREDIT BUSTERS — site.css  (ONE stylesheet controls the whole site)
   ---------------------------------------------------------------------
   Aesthetic: modern-clean, brand-as-hero. Warm paper + ink + one sharp
   brand-red accent. Display = Anton (punchy), Body = Hanken Grotesk.
   Signature device: the red circle-slash "no" motif (.bust / .no-list),
   echoing the Ghostbusters-parody logo and the no-win-no-fee promise.

   Brand-separation (CHARTER.md §2): visual identity is deliberately CB's
   own — no MyCRA/ML colours, fonts, or assets are referenced here.
   ===================================================================== */

/* ---- Design tokens --------------------------------------------------- */
:root {
  /* Brand palette: red / black / white, warmed so it reads "designed" not "AI default" */
  --red:        #E0231A;   /* brand red (from the logo) */
  --red-dark:   #B3160F;   /* hover/pressed */
  --red-tint:   #FBE3E0;   /* soft red wash for highlights */
  --ink:        #17130F;   /* warm near-black — body text & dark sections */
  --ink-soft:   #423B33;   /* secondary text */
  --muted:      #6B6157;   /* tertiary text */
  --paper:      #FBF8F4;   /* warm off-white page background */
  --paper-2:    #F3EDE4;   /* slightly deeper card/section background */
  --line:       #E5DCCF;   /* hairline borders on paper */
  --line-ink:   #2E2820;   /* hairline borders on ink sections */
  --white:      #FFFFFF;

  /* Type */
  --display: 'Anton', 'Arial Narrow', system-ui, sans-serif;
  --body: 'Hanken Grotesk', system-ui, -apple-system, Segoe UI, sans-serif;

  /* Fluid type scale (clamp = responsive without breakpoints) */
  --fs-hero: clamp(2.8rem, 7.5vw, 6.5rem);
  --fs-h1:   clamp(2.2rem, 5vw, 4rem);
  --fs-h2:   clamp(1.7rem, 3.4vw, 2.9rem);
  --fs-h3:   clamp(1.2rem, 2vw, 1.5rem);
  --fs-lead: clamp(1.05rem, 1.6vw, 1.35rem);
  --fs-body: 1.0625rem;
  --fs-sm:   0.875rem;

  /* Spacing / shape */
  --wrap: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-sm: 11px;
  --shadow: 0 1px 2px rgba(23,19,15,.06), 0 12px 34px -12px rgba(23,19,15,.16);
  --shadow-lg: 0 30px 70px -28px rgba(23,19,15,.4);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset / base ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* subtle paper grain for atmosphere (not flat AI white) */
  background-image:
    radial-gradient(circle at 18% -10%, rgba(224,35,26,.05), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(224,35,26,.04), transparent 38%);
  background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* ---- Typography ------------------------------------------------------ */
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: .98;
  letter-spacing: .01em; text-transform: uppercase; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: .02em; }
p { color: var(--ink-soft); }
.lead { font-size: var(--fs-lead); color: var(--ink-soft); line-height: 1.5; }
.eyebrow {
  font-family: var(--body); font-weight: 800; text-transform: uppercase;
  letter-spacing: .18em; font-size: .76rem; color: var(--red);
}
.eyebrow--paper { color: var(--paper); opacity: .8; }

/* ---- Layout ---------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--paper2 { background: var(--paper-2); }
.section--ink {
  background: var(--ink); color: var(--paper);
  background-image: radial-gradient(circle at 85% 0%, rgba(224,35,26,.22), transparent 45%);
}
.section--ink p { color: #D8D0C5; }
.section--ink h2, .section--ink h3 { color: var(--paper); }
.section__head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head .lead { margin-top: 1rem; }
.center { text-align: center; margin-inline: auto; }

/* Skip link (a11y) */
.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--paper);
  padding: .7rem 1.1rem; border-radius: 0 0 10px 0; z-index: 200; }
.skip:focus { left: 0; }

/* ---- The signature "bust" / "no" motif ------------------------------- */
/* Inline word struck through with a red slash — used in headlines. */
.bust { position: relative; white-space: nowrap; color: var(--red); }
.bust::after {
  content: ""; position: absolute; left: -7%; right: -7%; top: 52%;
  height: max(4px, .1em); background: var(--red); border-radius: 99px;
  transform: translateY(-50%) rotate(-7deg);
  transform-origin: left center;
}
/* Crossed-out negatives list: each item bulleted with a red circle-slash. */
.no-list { display: grid; gap: .85rem; }
.no-list li { position: relative; padding-left: 2.6rem; font-weight: 600; color: var(--ink); }
.no-list li::before {
  content: ""; position: absolute; left: 0; top: 50%; translate: 0 -50%;
  width: 1.7rem; height: 1.7rem; border: 3px solid var(--red); border-radius: 50%;
  background: linear-gradient(to bottom right,
    transparent calc(50% - 2px), var(--red) calc(50% - 2px),
    var(--red) calc(50% + 2px), transparent calc(50% + 2px));
}
.section--ink .no-list li { color: var(--paper); }

/* Ticked positives list */
.yes-list { display: grid; gap: .85rem; }
.yes-list li { position: relative; padding-left: 2.4rem; font-weight: 600; }
.yes-list li::before {
  content: ""; position: absolute; left: .15rem; top: .15em;
  width: 1.35rem; height: .75rem; border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red); transform: rotate(-45deg);
}

/* ---- Buttons --------------------------------------------------------- */
.btn {
  --b: var(--ink);
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--body); font-weight: 800; letter-spacing: .01em;
  padding: .9rem 1.5rem; border-radius: 99px; border: 2px solid var(--b);
  background: transparent; color: var(--b);
  transition: transform .18s var(--ease), background .18s var(--ease),
    color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { --b: var(--red); background: var(--red); color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(224,35,26,.7); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark);
  box-shadow: 0 16px 30px -12px rgba(224,35,26,.8); }
.btn--ink { background: var(--ink); color: var(--paper); --b: var(--ink); }
.btn--ink:hover { background: #000; }
.btn--ghost { background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--paper { background: var(--paper); color: var(--ink); --b: var(--paper); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.0625rem; }
.btn__arrow { transition: transform .18s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,248,244,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 76px; }
.nav__logo img { width: clamp(74px, 8vw, 96px); height: auto; }
.nav__menu { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav__links { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 1.8rem); }
.nav__links a { font-weight: 600; font-size: .98rem; color: var(--ink-soft);
  padding: .4rem 0; position: relative; transition: color .15s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px;
  background: var(--red); border-radius: 99px;
}
.nav__cta { padding: .7rem 1.3rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 46px; height: 42px;
  align-items: center; justify-content: center; background: transparent; border: 0; }
.nav__toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 9px;
  transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 6rem); }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; }
.hero__title { font-size: var(--fs-hero); color: var(--ink); }
.hero__title .line { display: block; }
.hero__title .red { color: var(--red); }
/* The headline selling feature — big, bold, impossible to miss. */
.hero__usp { font-family: var(--display); text-transform: uppercase; line-height: .95;
  font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: .01em; margin: .6rem 0 .2rem; color: var(--ink); }
.hero__usp .red { color: var(--red); }
.hero__usp .dot { color: var(--red); }
.hero__lead { margin: 1.1rem 0 2rem; max-width: 36ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero__note { margin-top: 1.2rem; font-size: var(--fs-sm); color: var(--muted); font-weight: 600; }
/* Stack logo + badge in a column so the badge sits BELOW the logo, never over it. */
.hero__art { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.hero__art img { width: min(420px, 90%); filter: drop-shadow(0 30px 50px rgba(23,19,15,.22)); }
.hero__badge {
  background: var(--ink); color: var(--paper);
  font-family: var(--display); text-transform: uppercase; letter-spacing: .03em;
  padding: .9rem 1.7rem; border-radius: 16px; font-size: 1.7rem; line-height: 1.02;
  text-align: center; box-shadow: var(--shadow-lg); rotate: -3deg;
}
.hero__badge b { color: var(--red); }

/* ---- Logo-strip / trust bar ----------------------------------------- */
.trust { border-block: 1px solid var(--line); background: var(--paper-2); }
.trust__row { display: flex; flex-wrap: wrap; gap: clamp(1rem,4vw,3rem); justify-content: center;
  align-items: center; padding-block: 1.4rem; }
.trust__item { display: flex; align-items: center; gap: .6rem; font-weight: 700; font-size: .95rem;
  color: var(--ink-soft); }
.trust__item svg { width: 22px; height: 22px; flex: none; color: var(--red); }

/* ---- Steps (how it works) ------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem);
  counter-reset: step; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.7rem; position: relative; box-shadow: var(--shadow);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step__num { font-family: var(--display); font-size: 2.4rem; color: var(--red); line-height: 1;
  display: block; margin-bottom: .7rem; }
.step h3 { font-size: 1.15rem; margin-bottom: .4rem; color: var(--ink); }
.step p { font-size: .98rem; }

/* ---- Cards ----------------------------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,2vw,1.6rem); }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow); }
.section--ink .card { background: #1F1A14; border-color: var(--line-ink); }
.card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.card .big { font-family: var(--display); font-size: 2.6rem; color: var(--red); line-height: 1; }

/* "No win, no fee" pill tag */
.nwnf-tag { display: inline-block; background: var(--red); color: #fff; font-weight: 800;
  font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; padding: .32rem .7rem;
  border-radius: 99px; margin-bottom: .8rem; }

/* Long-form prose (cornerstone / content pages) */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: var(--fs-h2); margin: 2.4rem 0 .8rem; }
.prose h3 { font-size: 1.3rem; margin: 1.8rem 0 .5rem; letter-spacing: .01em; }
.prose p { margin: .8rem 0; font-size: 1.08rem; line-height: 1.7; }
.prose ul { margin: .8rem 0; display: grid; gap: .55rem; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: .6rem; height: .6rem;
  background: var(--red); border-radius: 50%; }
.prose a { color: var(--red-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.prose .lede { font-size: var(--fs-lead); color: var(--ink-soft); line-height: 1.55; }
.toc { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.4rem; margin: 1.6rem 0; }
.toc h2 { font-size: .8rem !important; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 .6rem !important; color: var(--muted); font-family: var(--body); }
.toc ul { display: grid; gap: .4rem; margin: 0; }
.toc ul li::before { display: none; }
.toc ul li { padding-left: 0; }

/* Two-column feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem);
  align-items: center; }
.split--reverse > :first-child { order: 2; }

/* Panel (rounded highlighted block) */
.panel { background: var(--ink); color: var(--paper); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 3rem); box-shadow: var(--shadow-lg);
  background-image: radial-gradient(circle at 90% 10%, rgba(224,35,26,.3), transparent 50%); }
.panel h2, .panel h3 { color: var(--paper); }
/* Panel body text must be light — a direct `p{}` colour otherwise beats the
   inherited light colour and renders dark-grey-on-near-black (unreadable). */
.panel p { color: #E8E1D6; }
.panel .eyebrow { color: var(--paper); opacity: .75; }

/* =====================================================================
   FAQ accordion
   ===================================================================== */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper);
  overflow: hidden; }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; padding: 1.15rem 1.3rem; font-weight: 700; font-size: 1.05rem;
  color: var(--ink); background: transparent; }
.faq__q .ic { flex: none; width: 26px; height: 26px; position: relative; }
.faq__q .ic::before, .faq__q .ic::after { content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--red); border-radius: 9px; }
.faq__q .ic::before { width: 16px; height: 3px; }
.faq__q .ic::after { width: 3px; height: 16px; transition: transform .25s var(--ease); }
.faq__item.is-open .faq__q .ic::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a-inner { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }

/* =====================================================================
   FORMS / multi-step application
   ===================================================================== */
.apply { max-width: 680px; margin-inline: auto; }
.stepper { display: flex; gap: .5rem; margin-bottom: 2rem; }
.stepper__dot { flex: 1; height: 6px; border-radius: 99px; background: var(--line); transition: background .3s; }
.stepper__dot.is-done, .stepper__dot.is-current { background: var(--red); }
.form-step { display: none; animation: rise .4s var(--ease) both; }
.form-step.is-active { display: block; }
.field { margin-bottom: 1.15rem; }
.field > label { display: block; font-weight: 700; margin-bottom: .4rem; font-size: .95rem; }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: .35rem; }
.input, select, textarea {
  width: 100%; padding: .85rem 1rem; font: inherit; color: var(--ink);
  background: var(--white); border: 2px solid var(--line); border-radius: 12px;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-tint); }
.input-wrap { position: relative; }
.input-wrap .input { padding-right: 3rem; }
.pw-toggle { position: absolute; right: .6rem; top: 50%; translate: 0 -50%; border: 0;
  background: transparent; padding: .4rem; color: var(--muted); display: grid; place-items: center; }
.pw-toggle:hover { color: var(--ink); }
.pw-toggle svg { width: 22px; height: 22px; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span { display: block; padding: .95rem 1rem; border: 2px solid var(--line); border-radius: 12px;
  font-weight: 700; text-align: center; transition: all .15s var(--ease); background: var(--white); }
.choice input:checked + span { border-color: var(--red); background: var(--red-tint); color: var(--red-dark); }
.choice input:focus-visible + span { box-shadow: 0 0 0 4px var(--red-tint); }
.form-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.6rem; }
.note-box { background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 1rem 1.1rem; font-size: .9rem; color: var(--ink-soft); }
.note-box strong { color: var(--ink); }

/* =====================================================================
   CTA band + FOOTER
   ===================================================================== */
.cta { background: var(--red);
  background-image: linear-gradient(135deg, var(--red), var(--red-dark)); color: var(--white); }
.cta__inner { text-align: center; padding-block: clamp(3rem, 7vw, 5.5rem); }
.cta__title { font-size: var(--fs-h1); color: var(--white); }
.cta__title .bust { color: var(--white); }
.cta__title .bust::after { background: var(--white); }
.cta__lead { color: rgba(255,255,255,.92); font-size: var(--fs-lead); margin: 1rem auto 2rem; max-width: 52ch; }
.cta .btn--primary { background: var(--white); color: var(--red-dark); border-color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.5); }
.cta .btn--primary:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.foot { background: var(--ink); color: #CFC7BB; padding-top: clamp(2.5rem,5vw,4rem); }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-ink); }
.foot__brand img { width: 110px; margin-bottom: 1rem; }
.foot__tag { color: #CFC7BB; max-width: 26ch; }
/* Footer body text must be light — the element-level p{} colour otherwise wins
   over the inherited light colour and renders dark-on-dark (unreadable). */
.foot p { color: #CFC7BB; }
.foot a { color: #CFC7BB; }
.foot__contact a { color: var(--red); }
.foot__col h3 { font-family: var(--body); font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; font-size: .8rem; color: var(--paper); margin-bottom: 1rem; }
.foot__col ul { display: grid; gap: .6rem; }
.foot__col a { color: #CFC7BB; transition: color .15s var(--ease); }
.foot__col a:hover { color: var(--white); }
.foot__contact a { color: var(--red); font-weight: 700; }
.foot__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-block: 1.6rem; font-size: var(--fs-sm); color: #978D80; }
.foot__legal .licence { max-width: 70ch; }

/* =====================================================================
   MOTION — staggered page-load reveal (high-impact, tasteful)
   ===================================================================== */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; animation: rise .7s var(--ease) forwards; }
.reveal.d1 { animation-delay: .08s; }
.reveal.d2 { animation-delay: .18s; }
.reveal.d3 { animation-delay: .28s; }
.reveal.d4 { animation-delay: .38s; }
.reveal.d5 { animation-delay: .5s; }

/* Scroll-reveal hook (JS adds .in-view) */
.on-scroll { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.on-scroll.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal, .on-scroll { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 360px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  /* Mobile nav: slide-down menu */
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.3rem; box-shadow: var(--shadow-lg);
    clip-path: inset(0 0 100% 0); transition: clip-path .3s var(--ease); pointer-events: none;
  }
  .nav.is-open .nav__menu { clip-path: inset(0 0 0 0); pointer-events: auto; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__links a { padding: .9rem .2rem; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav__links a.is-active::after { display: none; }
  .nav__cta { margin-top: 1rem; justify-content: center; }
}
@media (max-width: 560px) {
  .steps, .card-grid, .choice-grid { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
