/* =================================================================
   Brandywine Blinds — "The Lead Machine"
   Conversion-focused landing page styles (vanilla CSS)
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  --blue:        #1463ff;   /* confident, trustworthy accent */
  --blue-dark:   #0b46c0;
  --blue-darker: #0a2a66;
  --ink:         #0e1726;   /* near-black text */
  --ink-soft:    #41506a;
  --line:        #e3e8f0;
  --bg:          #ffffff;
  --bg-soft:     #f4f7fc;
  --bg-tint:     #eef3fd;
  --green:       #16a34a;
  --amber:       #d97706;
  --red:         #dc2626;
  --gold:        #f5a524;
  --white:       #ffffff;

  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 2px 8px rgba(14, 23, 38, .06);
  --shadow:      0 12px 34px rgba(14, 23, 38, .12);
  --shadow-lg:   0 26px 60px rgba(10, 42, 102, .22);

  --maxw:        1160px;
  --topbar-h:    44px;
  --nav-h:       70px;

  --font:        'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  /* offset for sticky header when jumping to anchors */
  scroll-padding-top: calc(var(--topbar-h) + var(--nav-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .4em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.visually-hidden,
.section.proof .visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Accessible focus ring */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  --bgc: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(20, 99, 255, .35);
}
.btn--primary:hover { background: var(--blue-dark); }

.btn--ghost {
  background: #fff;
  color: var(--blue);
  border-color: #cfdcff;
}
.btn--ghost:hover { background: var(--bg-tint); }

.btn--ghost-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--ghost-on-dark:hover { background: rgba(255,255,255,.12); }

.btn--lg { padding: 17px 30px; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* ---------- Eyebrows / section heads ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 .6rem;
}
.eyebrow--center { text-align: center; }

.section { padding: 84px 0; }
.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; }
.section__lead { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

/* ---------- Stars ---------- */
.stars { color: var(--gold); letter-spacing: 2px; }
.stars--xl { font-size: 2rem; display: block; margin-bottom: .4rem; }

/* =================================================================
   STICKY TOP BAR
   ================================================================= */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: linear-gradient(90deg, var(--blue-darker), var(--blue-dark));
  color: #fff;
  min-height: var(--topbar-h);
  font-size: .92rem;
}
.topbar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 7px 22px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
}
.topbar__offer { margin: 0; text-align: center; }
.topbar__offer strong { color: #ffe27a; }
.topbar__spark { color: var(--gold); margin-right: 4px; }
.topbar__phone {
  color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.topbar__phone:hover { text-decoration: underline; }

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: sticky; top: var(--topbar-h); z-index: 55;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 22px;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand__mark {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--blue); color: #fff; font-weight: 800; font-size: .92rem;
  letter-spacing: .02em;
}
.brand__name { font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; }

.nav__links { display: flex; gap: 22px; margin-left: 12px; }
.nav__links a { color: var(--ink-soft); font-weight: 600; font-size: .96rem; }
.nav__links a:hover { color: var(--blue); text-decoration: none; }

.nav__actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav__call { display: none; }

.nav__toggle {
  margin-left: auto; display: none;
  width: 46px; height: 42px; padding: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  cursor: pointer; flex-direction: column; justify-content: space-between;
}
.nav__toggle span {
  display: block; height: 3px; width: 100%; border-radius: 2px; background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* =================================================================
   HERO
   ================================================================= */
.hero { position: relative; overflow: hidden; background: var(--blue-darker); }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(8, 26, 64, .94) 0%, rgba(8, 26, 64, .82) 42%, rgba(8, 26, 64, .45) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 64px 22px 72px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.hero__copy { color: #fff; }
.hero__copy .eyebrow { color: #bcd2ff; }
.hero__title {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 800; margin-bottom: .35em;
}
.hero__title span { color: #ffe27a; }
.hero__sub { font-size: 1.14rem; color: #dce6fb; max-width: 38ch; margin: 0 0 1.4rem; }
.hero__sub strong { color: #fff; }

.hero__ticks { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: 9px; }
.hero__ticks li {
  position: relative; padding-left: 30px; color: #eaf1ff; font-weight: 600;
}
.hero__ticks li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: inline-grid; place-items: center; font-size: .8rem; font-weight: 800;
}

.hero__rating {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  padding: 8px 14px; border-radius: 999px; color: #fff; font-size: .95rem;
}
.hero__rating .stars { font-size: 1.05rem; }

/* Lead capture card */
.leadcard {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px; position: relative;
}
.leadcard__head { text-align: center; margin-bottom: 16px; }
.leadcard__head h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: .2em; }
.leadcard__head p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.leadform { display: grid; gap: 13px; }
.field { display: grid; gap: 5px; }
.field label { font-weight: 700; font-size: .86rem; color: var(--ink); }
.field input, .field select {
  font-family: var(--font); font-size: 1rem;
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 11px;
  background: #fff; color: var(--ink); width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 99, 255, .14);
}
.field input::placeholder { color: #9aa6bb; }
.field--invalid input, .field--invalid select { border-color: var(--red); }
.field__error { color: var(--red); font-size: .8rem; font-weight: 600; min-height: 0; }
.field--invalid .field__error { min-height: 1em; }

.leadform__fine { font-size: .76rem; color: #8893a8; text-align: center; margin: 4px 0 0; }

/* Success state */
.leadsuccess { text-align: center; padding: 18px 6px; }
.leadsuccess__check {
  width: 64px; height: 64px; margin: 4px auto 14px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: 2rem; font-weight: 800;
  display: grid; place-items: center;
  animation: pop .4s ease;
}
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.leadsuccess h3 { font-size: 1.5rem; }
.leadsuccess p { color: var(--ink-soft); margin: .4em 0; }
.leadsuccess__call { font-weight: 600; }

/* =================================================================
   TRUST BAR
   ================================================================= */
.trustbar { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.trustbar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 22px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.badge {
  text-align: center; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 12px; box-shadow: var(--shadow-sm);
}
.badge__big {
  display: block; font-weight: 800; font-size: 1.3rem; color: var(--blue);
  letter-spacing: -.01em;
}
.badge__small { display: block; font-size: .82rem; color: var(--ink-soft); margin-top: 4px; }

/* =================================================================
   CARDS (why)
   ================================================================= */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 22px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--bg-tint); font-size: 1.5rem; margin-bottom: 14px;
}
.card h3 { font-size: 1.18rem; font-weight: 800; }
.card p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* =================================================================
   COMPARISON TABLE
   ================================================================= */
.compare { background: var(--bg-soft); }
.compare__scroll { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.comptable {
  width: 100%; min-width: 640px; border-collapse: collapse; background: #fff;
  overflow: hidden;
}
.comptable th, .comptable td {
  padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--line);
  font-size: .96rem;
}
.comptable thead th { background: var(--ink); color: #fff; font-weight: 700; font-size: .98rem; }
.comptable thead th.comptable__us { background: var(--blue); }
.comptable tbody th[scope="row"] {
  text-align: left; font-weight: 700; color: var(--ink); background: var(--bg-soft);
}
.comptable td.comptable__us, .comptable thead th.comptable__us { position: relative; }
.comptable td.comptable__us {
  background: var(--bg-tint); font-weight: 700;
  box-shadow: inset 3px 0 0 var(--blue), inset -3px 0 0 var(--blue);
}
.comptable tbody tr:last-child th,
.comptable tbody tr:last-child td { border-bottom: none; }

.yes, .no, .maybe {
  display: inline-block; font-weight: 700; font-size: .9rem;
  padding: 3px 10px; border-radius: 999px;
}
.yes { color: var(--green); background: rgba(22,163,74,.12); }
.no { color: var(--red); background: rgba(220,38,38,.10); }
.maybe { color: var(--amber); background: rgba(217,119,6,.12); }

.compare__cta, .how__cta, .financing .btn { display: flex; }
.compare__cta {
  margin-top: 30px; justify-content: center; gap: 12px; flex-wrap: wrap;
}

/* =================================================================
   HOW IT WORKS
   ================================================================= */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  counter-reset: step;
}
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 22px 24px; position: relative; box-shadow: var(--shadow-sm);
}
.step__num {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); color: #fff; font-weight: 800; font-size: 1.3rem;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.12rem; font-weight: 800; }
.step p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.how__cta { margin-top: 34px; justify-content: center; }

/* =================================================================
   PRODUCTS
   ================================================================= */
.prodgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prod {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.prod:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prod img { width: 100%; height: 210px; object-fit: cover; }
.prod__body { padding: 20px 20px 24px; }
.prod__body h3 { font-size: 1.2rem; font-weight: 800; }
.prod__body p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.brands { margin-top: 44px; text-align: center; }
.brands__label {
  text-transform: uppercase; letter-spacing: .12em; font-size: .78rem;
  font-weight: 700; color: var(--ink-soft); margin: 0 0 14px;
}
.brands__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px;
}
.brands__list li {
  font-weight: 800; font-size: 1.1rem; color: var(--ink); opacity: .8;
  letter-spacing: -.01em;
}

/* =================================================================
   FINANCING
   ================================================================= */
.financing { background: linear-gradient(160deg, var(--bg-tint), #fff); }
.financing__inner {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
}
.financing__copy p { color: var(--ink-soft); font-size: 1.06rem; }
.financing__copy .section__title { text-align: left; }
.financing__list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 10px; }
.financing__list li { position: relative; padding-left: 30px; font-weight: 600; }
.financing__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 21px; height: 21px; border-radius: 50%; background: var(--green); color: #fff;
  display: inline-grid; place-items: center; font-size: .78rem; font-weight: 800;
}
.financing__card {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-lg); text-align: center;
}
.financing__big { font-size: 2.8rem; font-weight: 800; color: #ffe27a; margin: 0; line-height: 1; }
.financing__small { color: #c8d3ea; margin: 6px 0 0; font-size: .95rem; }
.financing__card hr { border: none; border-top: 1px solid rgba(255,255,255,.18); margin: 22px 0; }
.financing__row {
  display: flex; justify-content: space-between; align-items: center;
  margin: 10px 0; color: #dce6fb; font-size: 1rem;
}
.financing__row strong { color: #fff; }
.financing__card .btn { margin-top: 22px; }
.financing__card .btn--ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.4); }
.financing__card .btn--ghost:hover { background: rgba(255,255,255,.16); }

/* =================================================================
   PROOF
   ================================================================= */
.proof { background: var(--bg-soft); }
.proof__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.proof__title { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; }
.proof__lead { color: var(--ink-soft); font-size: 1.1rem; margin: 0 0 22px; }
.proof__lead strong { color: var(--ink); }

/* =================================================================
   FAQ ACCORDION
   ================================================================= */
.accordion { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.acc {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; overflow: hidden; box-shadow: var(--shadow-sm);
}
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; background: #fff; border: none; cursor: pointer;
  font-family: var(--font); font-weight: 700; font-size: 1.05rem; color: var(--ink);
  text-align: left;
}
.acc__btn:hover { background: var(--bg-soft); }
.acc__icon {
  position: relative; flex: 0 0 auto; width: 18px; height: 18px;
}
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; background: var(--blue); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.acc__icon::before { top: 8px; left: 0; width: 18px; height: 2.5px; }       /* horizontal */
.acc__icon::after  { left: 8px; top: 0; width: 2.5px; height: 18px; }       /* vertical */
.acc__btn[aria-expanded="true"] .acc__icon::after { transform: scaleY(0); opacity: 0; }

.acc__panel {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.acc__panel p { margin: 0; padding: 0 20px 20px; color: var(--ink-soft); }

/* =================================================================
   FINAL CTA
   ================================================================= */
.finalcta {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue-darker));
  color: #fff; text-align: center;
  padding: 78px 0;
}
.finalcta__inner { max-width: 740px; margin: 0 auto; }
.finalcta h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 800; }
.finalcta p { color: #dce6fb; font-size: 1.12rem; margin: 0 0 26px; }
.finalcta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.finalcta__hours { margin-top: 22px !important; font-size: .92rem; color: #aebfe4; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: var(--ink); color: #c4cfe2; padding: 56px 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px;
  padding-bottom: 40px;
}
.footer__col h3 { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 14px; }
.footer__col p { margin: 0 0 10px; font-size: .95rem; }
.footer__brand .brand__name { color: #fff; font-size: 1.3rem; display: block; margin-bottom: 12px; }
.footer__mission { color: #93a2c0; }
.footer a { color: #cfe0ff; }
.footer__col .btn { margin-top: 6px; }
.footer__social { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 22px; display: flex; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; max-width: var(--maxw); margin: 0 auto;
  font-size: .85rem; color: #8a99b8;
}
.footer__bar p { margin: 0; }

/* =================================================================
   STICKY MOBILE CTA
   ================================================================= */
.mobilecta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(14,23,38,.12);
}
.mobilecta__btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 15px 10px; border-radius: 12px; font-weight: 800; font-size: 1rem;
}
.mobilecta__btn:hover { text-decoration: none; }
.mobilecta__call { background: #fff; color: var(--blue); border: 2px solid #cfdcff; }
.mobilecta__book { background: var(--blue); color: #fff; }

/* =================================================================
   SCROLL REVEAL
   ================================================================= */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
  .hero__copy { max-width: 620px; }
  .hero__sub { max-width: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .prodgrid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__inner { grid-template-columns: repeat(3, 1fr); }
  .financing__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 60px 0; }

  /* Mobile nav */
  .nav__links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 8px 12px 14px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 8px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__links a:last-child { border-bottom: none; }
  .nav__actions { display: none; }
  .nav__toggle { display: flex; }

  .topbar__inner { gap: 4px 14px; }
  .topbar { font-size: .82rem; }

  /* Stack mobile CTA — add breathing room so it doesn't cover content */
  .mobilecta { display: flex; }
  body { padding-bottom: 78px; }
}

@media (max-width: 560px) {
  .cards, .steps, .prodgrid, .trustbar__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__inner { padding: 40px 18px 56px; }
  .leadcard { padding: 20px; }
  .compare__cta, .finalcta__btns { flex-direction: column; }
  .compare__cta .btn, .finalcta__btns .btn { width: 100%; }
  .footer__bar { justify-content: center; text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .prod { transition: none; }
  * { animation: none !important; }
}
