/* ==========================================================================
   Speaking & Listening — Speech and Language Therapy
   speakingandlistening.co.uk
   ========================================================================== */

:root {
  color-scheme: light;

  /* Brand palette — sampled directly from the logo.
     --sage-500 (#9fb698) and --taupe (#8a786f) are the exact logo colours. */
  --sage-950: #24311f;
  --sage-900: #2f4030;
  --sage-800: #3e5240;
  --sage-700: #5a7355;
  --sage-500: #9fb698;
  --sage-300: #c2d2bc;
  --sage-100: #e5ede2;
  --sage-050: #f3f7f1;
  --taupe: #8a786f;
  --taupe-dark: #6d5e56;

  /* Secondary — soft petrol blue for trust / clinical credibility */
  --blue-700: #2f5a6b;
  --blue-500: #4e8ba3;
  --blue-100: #dcebf1;

  /* Accent — warm apricot for calls to action */
  --accent-600: #c9743f;
  --accent-500: #e0894f;
  --accent-100: #fbe9dc;

  /* Neutrals */
  --ink: #26302a;
  --ink-muted: #5b6660;
  --ink-soft: #7e8a84;
  --cream: #fbf9f5;
  --cream-alt: #f5f1ea;
  --white: #ffffff;
  --line: #e3e0d8;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(38, 48, 42, .08), 0 0 2px rgba(38, 48, 42, .1);
  --shadow: 0 10px 30px rgba(38, 48, 42, .09);
  --shadow-lg: 0 24px 60px rgba(38, 48, 42, .14);

  --maxw: 1180px;
  --font: "Segoe UI", Aptos, Calibri, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Segoe UI Semibold", "Segoe UI", Aptos, Calibri, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-700); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; margin: 0 0 .6em; color: var(--sage-900); font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--sage-900); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus { left: 0; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--sage-950);
  color: #e8efe6;
  font-size: .875rem;
  border-bottom: 3px solid var(--sage-500);
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: center; justify-content: flex-start; min-height: 42px; }
.topbar a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { text-decoration: underline; }
.topbar .sep { opacity: .45; }
.topbar .creds { margin-left: auto; opacity: .9; letter-spacing: .06em; text-transform: uppercase; font-size: .74rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 249, 245, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 24px; min-height: 88px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 54px; width: auto; }
.brand:hover { text-decoration: none; }

.nav-toggle {
  margin-left: auto; display: none; border: 1px solid var(--line); background: var(--white);
  border-radius: var(--radius-sm); padding: 10px 12px; cursor: pointer; color: var(--sage-900);
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 4px 0; border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--ink); font-size: .97rem; padding: 10px 14px; border-radius: var(--radius-sm);
  position: relative; transition: color .2s, background .2s;
}
.nav a:hover { background: var(--sage-050); color: var(--sage-900); text-decoration: none; }
.nav a.active { color: var(--sage-700); font-weight: 600; }
.nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--sage-500); border-radius: 2px;
}
.nav .btn { margin-left: 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s, box-shadow .18s, background .18s, color .18s;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent-600); color: #fff; box-shadow: 0 8px 20px rgba(201, 116, 63, .28); }
.btn-primary:hover { background: #b56534; }
.btn-secondary { background: var(--sage-800); color: #fff; box-shadow: 0 8px 20px rgba(62, 82, 64, .28); }
.btn-secondary:hover { background: var(--sage-900); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .7); }
.btn-ghost:hover { background: rgba(255, 255, 255, .16); }
.btn-outline { background: transparent; color: var(--sage-700); border-color: var(--sage-300); }
.btn-outline:hover { background: var(--sage-050); border-color: var(--sage-500); }
.btn-sm { padding: 9px 20px; font-size: .92rem; }

/* ---------- Hero carousel ---------- */
.hero { position: relative; overflow: hidden; background: var(--sage-900); }
.hero-slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0; opacity: 0; transform: scale(1.06);
  transition: opacity 1.2s ease, transform 7s ease-out;
  background-size: cover; background-position: center;
}
.slide.is-active { opacity: 1; transform: scale(1); }
.slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(102deg, rgba(30, 41, 26, .93) 0%, rgba(36, 49, 31, .82) 38%, rgba(47, 64, 48, .45) 66%, rgba(90, 115, 85, .22) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  min-height: min(76vh, 640px);
  display: flex; align-items: center;
  padding: 90px 0;
}
.hero-copy { max-width: 660px; color: #fff; }.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; font-weight: 700;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .28);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 em { font-style: normal; color: #cfe0c9; text-shadow: 0 2px 18px rgba(36, 49, 31, .5); }
.hero-copy { text-shadow: 0 1px 20px rgba(36, 49, 31, .35); }
.hero-copy p.lead { font-size: 1.18rem; color: rgba(255, 255, 255, .9); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-dots { position: absolute; z-index: 3; bottom: 26px; left: 0; right: 0; display: flex; gap: 10px; justify-content: center; }
.hero-dots button {
  width: 34px; height: 5px; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .38); transition: background .3s, width .3s; padding: 0;
}
.hero-dots button[aria-selected="true"] { background: #fff; width: 54px; }

/* ---------- Trust strip ---------- */
.trust { background: var(--white); border-bottom: 1px solid var(--line); }
.trust .wrap { display: flex; flex-wrap: wrap; gap: 18px 40px; justify-content: space-between; align-items: center; padding-top: 22px; padding-bottom: 22px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: .95rem; color: var(--ink-muted); }
.trust-item strong { color: var(--sage-900); display: block; font-family: var(--font-display); font-size: 1rem; }
.trust-item .ico { width: 38px; height: 38px; flex: 0 0 38px; border-radius: 50%; background: var(--sage-100); display: grid; place-items: center; color: var(--sage-700); }

/* ---------- Sections ---------- */
section { padding: 86px 0; }
.sec-alt { background: var(--cream-alt); }
.sec-white { background: var(--white); }
.sec-sage { background: var(--sage-050); }
.sec-head { max-width: 720px; margin-bottom: 48px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .kicker,
.kicker {
  text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 700;
  color: var(--accent-600); margin-bottom: 12px; display: block;
}
.sec-head p { color: var(--ink-muted); font-size: 1.08rem; margin-bottom: 0; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--sage-300); }
.card h3 { margin-bottom: .5em; }
.card p:last-child { margin-bottom: 0; }
.card .ico-lg,
.ico-lg {
  width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center;
  background: var(--sage-100); color: var(--sage-800); margin-bottom: 20px;
}
.card.tint-blue .ico-lg { background: var(--blue-100); color: var(--blue-700); }
.card.tint-accent .ico-lg { background: var(--accent-100); color: var(--accent-600); }
.ico-lg.blue { background: var(--blue-100); color: var(--blue-700); }
.ico-lg.accent { background: var(--accent-100); color: var(--accent-600); }
.ico-sm {
  width: 44px; height: 44px; border-radius: 14px; display: inline-grid; place-items: center;
  background: var(--sage-100); color: var(--sage-800); flex: 0 0 44px;
}
.ico-sm.blue { background: var(--blue-100); color: var(--blue-700); }
.card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 6px; font-weight: 600; color: var(--sage-700); }
.card-link:hover { gap: 12px; text-decoration: none; }

/* Feature card with big number */
.numbered { counter-reset: step; }
.step { position: relative; padding-left: 74px; margin-bottom: 34px; }
.step:last-child { margin-bottom: 0; }
.step .n {
  position: absolute; left: 0; top: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--sage-800); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
}
.step h3 { margin-bottom: .3em; }
.step p { margin-bottom: 0; color: var(--ink-muted); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 56px; align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-media img, .split-media svg { width: 100%; height: 100%; object-fit: cover; display: block; }

.quote {
  border-left: 4px solid var(--sage-500); padding: 6px 0 6px 26px;
  font-size: 1.22rem; line-height: 1.6; color: var(--sage-900); font-style: italic;
  margin: 30px 0;
}
.quote cite { display: block; font-style: normal; font-size: .92rem; color: var(--taupe); margin-top: 12px; letter-spacing: .04em; font-weight: 600; }

/* ---------- Stat bubbles (from brand artwork) ---------- */
.stats { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); align-items: start; justify-items: center; }
.stats img { max-width: 300px; width: 100%; height: auto; filter: drop-shadow(0 10px 26px rgba(47, 64, 48, .16)); }
.stats figure { margin: 0; text-align: center; }
.stats figcaption { font-size: .88rem; color: var(--ink-soft); margin-top: 10px; }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding-left: 34px; margin-bottom: 14px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235d7b5f' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.panel {
  background: var(--sage-050); border: 1px solid var(--sage-100); border-radius: var(--radius);
  padding: 34px 32px;
}
.panel h3 { margin-top: 0; }
.panel.accent { background: var(--accent-100); border-color: #f4d8c4; }
.panel.accent h3 { color: var(--accent-600); }

/* ---------- Accordion (FAQs) ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 46px 22px 0; position: relative;
  font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--sage-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 13px; height: 13px;
  border-right: 2.5px solid var(--sage-700); border-bottom: 2.5px solid var(--sage-700);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s;
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq summary:hover { color: var(--accent-600); }
.faq .answer { padding: 0 40px 26px 0; color: var(--ink-muted); }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- Price table ---------- */
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 32px; box-shadow: var(--shadow-sm);
}
.price-card > h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }.price-row {
  display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: space-between; align-items: baseline;
  padding: 15px 0; border-bottom: 1px dashed var(--line);
}
.price-row:last-of-type { border-bottom: 0; }
.price-row:has(+ .note) { border-bottom: 0; }
.price-row .label { font-weight: 600; color: var(--ink); }
.price-row .label small { display: block; font-weight: 400; color: var(--ink-soft); font-size: .86rem; }
.price-row .amount { font-family: var(--font-display); font-size: 1.5rem; color: var(--accent-600); font-weight: 700; white-space: nowrap; }
.note { font-size: .94rem; color: var(--ink-muted); background: var(--cream-alt); border-radius: var(--radius-sm); padding: 16px 18px; margin-top: 22px; }
.note p:last-child { margin-bottom: 0; }

/* ---------- Testimonials slider ---------- */
.tsl { position: relative; max-width: 860px; margin: 0 auto; text-align: center; }
.tsl-track { position: relative; min-height: 210px; }
.tsl-item {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .6s ease, transform .6s ease; transform: translateY(12px);
}
.tsl-item.is-active { opacity: 1; visibility: visible; transform: none; position: relative; }
.tsl blockquote { margin: 0; font-size: clamp(1.1rem, 2.2vw, 1.42rem); line-height: 1.6; color: var(--sage-900); font-style: italic; }
.tsl .who { margin-top: 18px; font-style: normal; font-size: .95rem; color: var(--ink-soft); letter-spacing: .04em; }
.tsl-dots { display: flex; gap: 9px; justify-content: center; margin-top: 26px; }
.tsl-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: var(--sage-300); cursor: pointer; padding: 0; transition: .25s; }
.tsl-dots button[aria-selected="true"] { background: var(--sage-700); width: 28px; border-radius: 999px; }
.tsl .mark { font-size: 4rem; line-height: .6; color: var(--sage-300); font-family: Georgia, serif; }

/* ---------- Page banner (inner pages) ---------- */
.page-banner { position: relative; background: var(--sage-900); overflow: hidden; padding: 0; }
.page-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 420px at 88% -10%, rgba(159, 182, 152, .5), transparent 62%),
              radial-gradient(700px 380px at 6% 110%, rgba(78, 139, 163, .34), transparent 60%);
}
.page-banner { border-bottom: 3px solid var(--sage-500); }
.page-banner .wrap { position: relative; z-index: 2; padding-top: 70px; padding-bottom: 70px; }
.page-banner h1 { color: #fff; margin-bottom: .25em; }
.page-banner p { color: rgba(255, 255, 255, .86); max-width: 62ch; font-size: 1.1rem; margin-bottom: 0; }
.crumbs { font-size: .84rem; color: rgba(255, 255, 255, .7); margin-bottom: 16px; letter-spacing: .04em; }
.crumbs a { color: rgba(255, 255, 255, .9); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--sage-800), var(--blue-700)); color: #fff; padding: 0; }
.cta-band .wrap { padding-top: 68px; padding-bottom: 68px; display: flex; flex-wrap: wrap; gap: 30px; align-items: center; justify-content: space-between; }
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: rgba(255, 255, 255, .88); margin-bottom: 0; max-width: 52ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-band .btn-primary { background: #fff; color: var(--sage-900); box-shadow: 0 10px 26px rgba(0, 0, 0, .18); }
.cta-band .btn-primary:hover { background: var(--sage-100); }

/* ---------- Contact cards ---------- */
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-card .ico-lg { margin: 0 auto 20px; }
.contact-card .big { font-family: var(--font-display); font-size: 1.28rem; color: var(--sage-900); word-break: break-word; }
.contact-card .big a { color: inherit; }
.contact-card p { color: var(--ink-muted); }
.contact-card .ccard-h {
  font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: .5em;
}

/* ---------- Pill list (areas served) ---------- */
.pill-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.pill-list li {
  margin: 0; background: var(--sage-050); border: 1px solid var(--sage-100);
  color: var(--sage-900); border-radius: 999px; padding: 9px 20px; font-size: .95rem;
}

/* ---------- Inline social links ---------- */
.foot-social, .inline-social {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 600;
}
.inline-social { color: var(--sage-800); }
.inline-social:hover { color: var(--accent-600); }

/* ---------- Footer ---------- */
.site-footer { background: var(--sage-900); color: #cfdacd; padding: 70px 0 0; }
.site-footer h4 { color: #fff; font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #cfdacd; }
.site-footer a:hover { color: #fff; }
.foot-grid { display: grid; gap: 40px; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 10px; }
.foot-logo { background: #fff; border-radius: var(--radius-sm); padding: 12px 16px; display: inline-block; margin-bottom: 18px; }
.foot-logo img { height: 44px; width: auto; }
.site-footer .small { font-size: .92rem; line-height: 1.7; }
.foot-bottom {
  margin-top: 56px; border-top: 1px solid rgba(255, 255, 255, .14); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .85rem; color: #a9b8a7;
}
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.badge {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  border: 1px solid rgba(255, 255, 255, .28); border-radius: 999px; padding: 6px 13px; color: #e2ebe1;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* No-JS fallback: never hide content if scripts are blocked */
.no-js .reveal { opacity: 1; transform: none; }
.no-js .slide, .no-js .tsl-item { opacity: 1; visibility: visible; position: relative; transform: none; }
.no-js .hero-slides { position: relative; }
.no-js .slide + .slide { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 12px; gap: 2px; display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; }
  .nav a.active::after { display: none; }
  .nav .btn { margin: 8px 0 4px; }
  .foot-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  section { padding: 64px 0; }
  .split { gap: 36px; }
  .topbar .creds { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .topbar .sep { display: none; }
  .topbar .wrap { gap: 2px 18px; padding-top: 8px; padding-bottom: 8px; }
  .hero-inner { min-height: 0; padding: 64px 0 78px; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: auto; flex: 1 1 200px; }
  .card, .price-card, .panel { padding: 26px 22px; }
  .step { padding-left: 62px; }
  .step .n { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .topbar, .hero-dots, .cta-band, .nav-toggle { display: none !important; }
  body { background: #fff; }
}
