/* ============================================================
   Sanders Nutrition & Fitness Company — Design System
   Palette: Black · White · Sky Blue · Steel
   Type: Sora (display) + Inter (body)
   ============================================================ */

:root {
  /* Brand palette */
  --ink: #0b0f14;
  --ink-2: #131a22;
  --ink-soft: #1d2733;
  --steel: #5b6b7b;
  --steel-soft: #8896a4;
  --sky: #18a8e6;
  --sky-bright: #38c0f5;
  --sky-deep: #0c7fb4;
  --mist: #eef7fc;
  --mist-2: #dceefb;
  --paper: #ffffff;
  --line: #e4ebf1;
  --line-strong: #cdd8e2;

  /* Semantic */
  --bg: var(--paper);
  --text: #16202b;
  --text-soft: #51606e;
  --heading: var(--ink);

  /* Effects */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(11, 15, 20, .06), 0 2px 8px rgba(11, 15, 20, .04);
  --shadow: 0 6px 18px rgba(11, 15, 20, .08), 0 18px 48px rgba(11, 15, 20, .06);
  --shadow-lg: 0 20px 60px rgba(12, 127, 180, .18);
  --grad-sky: linear-gradient(135deg, var(--sky-bright) 0%, var(--sky) 45%, var(--sky-deep) 100%);
  --grad-ink: linear-gradient(160deg, #0e151d 0%, #0b0f14 60%, #060a0e 100%);

  --container: 1180px;
  --gutter: clamp(18px, 4vw, 44px);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--sky-deep); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--sky); }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--heading); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--ink { background: var(--grad-ink); color: #cdd9e4; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--mist { background: linear-gradient(180deg, var(--mist) 0%, #fff 100%); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sky-deep);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-sky); border-radius: 2px; }
.section--ink .eyebrow { color: var(--sky-bright); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-soft); max-width: 62ch; }
.section--ink .lead { color: #aebccb; }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.center .eyebrow { display: inline-flex; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  background: var(--bg); color: var(--fg); cursor: pointer;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--grad-sky); color: #fff; box-shadow: 0 10px 24px rgba(12,127,180,.28); }
.btn--primary:hover { color: #fff; box-shadow: 0 14px 30px rgba(12,127,180,.4); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { color: #fff; background: #000; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--sky); color: var(--sky-deep); }
.section--ink .btn--ghost,
.hero .btn--ghost,
.page-hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.32); }
.section--ink .btn--ghost:hover,
.hero .btn--ghost:hover,
.page-hero .btn--ghost:hover { border-color: var(--sky-bright); color: var(--sky-bright); }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.brand img { height: 34px; width: auto; }
.brandname { display: flex; flex-direction: column; line-height: 1.05; }
.brandname b { font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; color: var(--ink); font-style: normal; }
.brandname i { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--steel); font-weight: 600; font-style: normal; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: .95rem; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 999px; transition: background .18s, color .18s;
}
.nav-links a:hover { background: var(--mist); color: var(--sky-deep); }
.nav-links a.active { color: var(--sky-deep); background: var(--mist); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle span + span { margin-top: 6px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad-ink); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(56,192,245,.22), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(12,127,180,.25), transparent 60%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding: clamp(56px, 9vw, 110px) 0; }
.hero h1 { color: #fff; }
.hero h1 .accent { background: var(--grad-sky); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { color: #b9c7d6; font-size: clamp(1.05rem, 1.7vw, 1.3rem); margin: 22px 0 30px; max-width: 54ch; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 34px; }
.hero__badge { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #cdd9e4; font-family: var(--font-display); font-weight: 500; }
.hero__badge svg { color: var(--sky-bright); flex: none; }
.hero__media { position: relative; }
.hero__card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 22px; backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.hero__card img { border-radius: var(--radius); width: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hero__pill {
  position: absolute; left: -14px; bottom: 26px; background: #fff; color: var(--ink);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
}
.hero__pill b { font-family: var(--font-display); font-size: 1.4rem; color: var(--sky-deep); }
.hero__pill small { display: block; font-size: .72rem; color: var(--steel); letter-spacing: .04em; }

/* ---------- Logo strip ---------- */
.trust { border-bottom: 1px solid var(--line); }
.trust__row { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 6vw, 70px); flex-wrap: wrap; padding: 26px 0; }
.trust__row img { height: 30px; opacity: .8; filter: grayscale(.2); }
.trust__row span { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); font-weight: 600; }

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--mist-2); }
.card__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--mist); color: var(--sky-deep); margin-bottom: 16px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-soft); font-size: .98rem; }

/* ---------- Product cards ---------- */
.product {
  position: relative; display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--mist-2); }
.product__media { aspect-ratio: 1/1; background: linear-gradient(180deg,#fff,var(--mist)); display: grid; place-items: center; padding: 22px; }
.product__media img { max-height: 100%; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.product__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product__tag { font-family: var(--font-display); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sky-deep); font-weight: 600; }
.product h3 { font-size: 1.12rem; }
.product p { font-size: .92rem; color: var(--text-soft); flex: 1; }
.product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.product__link { font-family: var(--font-display); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.product__link svg { transition: transform .18s; }
.product:hover .product__link svg { transform: translateX(3px); }
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; font-family: var(--font-display); padding: 4px 10px; border-radius: 999px; background: var(--mist); color: var(--sky-deep); }

/* ---------- Feature / split image ---------- */
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.media-frame img { width: 100%; object-fit: cover; }
.stat-row { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 26px; }
.stat b { font-family: var(--font-display); font-size: 2rem; color: var(--sky-deep); display: block; line-height: 1; }
.stat small { color: var(--text-soft); font-size: .86rem; }
.section--ink .stat small { color: #9fb0c0; }

/* ---------- Perks list ---------- */
.perks { display: grid; gap: 14px; }
.perk { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; border-radius: var(--radius-sm); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.section:not(.section--ink) .perk { background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm); }
.perk__check { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--grad-sky); color: #fff; display: grid; place-items: center; }
.perk b { font-family: var(--font-display); font-weight: 600; display: block; color: var(--heading); }
.section--ink .perk b { color: #fff; }
.perk span { font-size: .9rem; color: var(--text-soft); }
.section--ink .perk span { color: #9fb0c0; }

/* ---------- Apparel ---------- */
.tees { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.tee { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s; }
.tee:hover { transform: translateY(-4px); }
.tee img { border-radius: var(--radius-sm); aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.tee span { display: block; margin-top: 10px; font-family: var(--font-display); font-weight: 500; font-size: .85rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--grad-sky); color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 64px); overflow: hidden; text-align: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 80% -10%, rgba(255,255,255,.25), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 56ch; margin: 14px auto 26px; }

/* ---------- FAQ / accordion ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 20px; box-shadow: var(--shadow-sm); }
.faq summary { font-family: var(--font-display); font-weight: 600; cursor: pointer; list-style: none; padding: 16px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--heading); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--sky-deep); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 0 18px; color: var(--text-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--grad-ink); color: #97a8b8; padding: clamp(54px,7vw,86px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-display); }
.site-footer a { color: #97a8b8; display: block; padding: 5px 0; font-size: .95rem; }
.site-footer a:hover { color: var(--sky-bright); }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: .92rem; max-width: 34ch; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 20px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-legal a { font-family: var(--font-display); font-size: .85rem; padding: 2px 0; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; }
.footer-legal + .footer-bottom { border-top: 0; padding-top: 0; margin-top: 16px; }
.footer-disclaimer { font-size: .78rem; color: #6c7d8d; margin-top: 18px; line-height: 1.6; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--grad-ink); color: #fff; padding: clamp(56px,8vw,96px) 0 clamp(40px,6vw,64px); position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 70% at 90% 0%, rgba(56,192,245,.2), transparent 60%); }
.page-hero__inner { position: relative; max-width: 760px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #b9c7d6; margin-top: 16px; font-size: 1.15rem; }
.crumbs { display: flex; gap: 8px; font-size: .85rem; color: #7e90a1; margin-bottom: 18px; font-family: var(--font-display); }
.crumbs a { color: #9fb0c0; }
.crumbs a:hover { color: var(--sky-bright); }

/* ---------- Chatbot widget ---------- */
.chat-launch {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad-sky); color: #fff; border: 0; cursor: pointer;
  padding: 14px 20px; border-radius: 999px; font-family: var(--font-display); font-weight: 600;
  box-shadow: 0 12px 30px rgba(12,127,180,.42); transition: transform .18s, box-shadow .2s;
}
.chat-launch:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(12,127,180,.55); }
.chat-panel {
  position: fixed; right: 22px; bottom: 86px; z-index: 81; width: min(380px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 120px)); background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line); display: none; flex-direction: column;
}
.chat-panel.open { display: flex; animation: chatIn .22s ease; }
@keyframes chatIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.chat-head { background: var(--grad-ink); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.chat-head img { height: 26px; }
.chat-head b { font-family: var(--font-display); font-size: .98rem; }
.chat-head small { color: #9fb0c0; font-size: .74rem; display: block; }
.chat-head .chat-close { margin-left: auto; background: rgba(255,255,255,.12); border: 0; color: #fff; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; }
.chat-body { flex: 1; overflow-y: auto; padding: 16px; background: var(--mist); display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: .92rem; line-height: 1.5; }
.chat-msg.bot { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-msg.user { background: var(--grad-sky); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-msg a { color: var(--sky-deep); font-weight: 600; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 10px; background: var(--mist); }
.chat-chip { background: #fff; border: 1px solid var(--line-strong); color: var(--ink-soft); border-radius: 999px; padding: 7px 12px; font-size: .8rem; cursor: pointer; font-family: var(--font-display); transition: .15s; }
.chat-chip:hover { border-color: var(--sky); color: var(--sky-deep); }
.chat-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: #fff; }
.chat-form input { flex: 1; border: 1px solid var(--line-strong); border-radius: 999px; padding: 11px 16px; font: inherit; font-size: .92rem; }
.chat-form input:focus { outline: none; border-color: var(--sky); }
.chat-form button { background: var(--ink); color: #fff; border: 0; border-radius: 50%; width: 42px; height: 42px; cursor: pointer; flex: none; }

/* ---------- Update page ---------- */
.rec { border-left: 3px solid var(--sky); background: #fff; border: 1px solid var(--line); border-left-width: 4px; border-radius: var(--radius-sm); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.rec h3 { display: flex; align-items: center; gap: 10px; }
.rec .pri { font-size: .68rem; font-family: var(--font-display); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; }
.pri--high { background: #ffe5e5; color: #c0392b; }
.pri--med { background: #fff3d6; color: #b8860b; }
.pri--low { background: var(--mist); color: var(--sky-deep); }
.rec ul { margin-top: 10px; display: grid; gap: 6px; }
.rec li { position: relative; padding-left: 22px; color: var(--text-soft); font-size: .95rem; }
.rec li::before { content: "→"; position: absolute; left: 0; color: var(--sky); }
.toc { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.toc a { background: #fff; border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; font-size: .85rem; font-family: var(--font-display); }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.prose h3 { font-size: 1.15rem; margin: 24px 0 8px; }
.prose p, .prose li { color: var(--text-soft); margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 6px; }
.prose a { font-weight: 600; }
.prose .updated { font-size: .85rem; color: var(--steel); font-family: var(--font-display); }
.legal-note { background: #fff8e6; border: 1px solid #f0dca0; border-radius: var(--radius-sm); padding: 14px 18px; font-size: .88rem; color: #8a6d1f; margin-bottom: 24px; }

/* ---------- Forms (newsletter / contact) ---------- */
.field { display: grid; gap: 6px; margin-bottom: 16px; text-align: left; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--heading); }
.field input, .field textarea, .field select {
  font: inherit; font-size: .95rem; padding: 12px 14px; border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); background: #fff; color: var(--text); width: 100%;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(24,168,230,.15); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px,3vw,34px); box-shadow: var(--shadow-sm); max-width: 560px; margin-inline: auto; }
.form-msg { font-size: .9rem; margin-top: 10px; font-family: var(--font-display); font-weight: 600; }
.form-msg.ok { color: #1c7a3e; }
.form-msg.err { color: #c0392b; }
.newsletter-inline { display: flex; gap: 10px; flex-wrap: wrap; max-width: 480px; margin: 22px auto 0; }
.newsletter-inline input { flex: 1; min-width: 200px; }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; }
.quote-card .stars { color: #f5a623; letter-spacing: 2px; font-size: 1rem; }
.quote-card blockquote { font-size: 1.02rem; color: var(--text); line-height: 1.6; }
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-card .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-sky); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.quote-card .who b { font-family: var(--font-display); font-size: .92rem; display: block; }
.quote-card .who span { font-size: .8rem; color: var(--steel); }

/* ---------- Video facade ---------- */
.video-facade { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; aspect-ratio: 16/9; box-shadow: var(--shadow); border: 1px solid var(--line); background: #000; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: opacity .2s, transform .3s; }
.video-facade:hover img { opacity: .7; transform: scale(1.03); }
.video-facade .play { position: absolute; inset: 0; display: grid; place-items: center; }
.video-facade .play span { width: 74px; height: 74px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .2s; }
.video-facade:hover .play span { transform: scale(1.08); }
.video-facade .play svg { color: var(--sky-deep); margin-left: 4px; }
.video-facade iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Cookie consent ---------- */
.consent { position: fixed; left: 16px; right: auto; bottom: 16px; z-index: 90; max-width: min(460px, calc(100vw - 32px)); background: var(--ink); color: #cdd9e4; border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-lg); display: none; gap: 14px; align-items: center; flex-wrap: wrap; }
.consent.show { display: flex; }
.consent p { font-size: .88rem; flex: 1; min-width: 240px; }
.consent a { color: var(--sky-bright); }
.consent .consent-btns { display: flex; gap: 8px; }

/* ---------- Exit-intent modal ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 95; background: rgba(11,15,20,.6); backdrop-filter: blur(3px); display: none; place-items: center; padding: 20px; }
.modal-overlay.show { display: grid; animation: chatIn .25s ease; }
.modal { background: #fff; border-radius: var(--radius-lg); max-width: 440px; width: 100%; padding: clamp(26px,4vw,40px); text-align: center; position: relative; box-shadow: var(--shadow-lg); }
.modal .modal-close { position: absolute; top: 14px; right: 14px; background: var(--mist); border: 0; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; color: var(--ink); }
.modal h3 { margin-bottom: 8px; }
.modal p { color: var(--text-soft); margin-bottom: 18px; }

/* ---------- Utilities ---------- */
.mt-0{margin-top:0}.mt-1{margin-top:14px}.mt-2{margin-top:26px}.mt-3{margin-top:40px}
.mb-2{margin-bottom:26px}
.note { background: var(--mist); border: 1px dashed var(--line-strong); border-radius: var(--radius-sm); padding: 16px 20px; font-size: .92rem; color: var(--text-soft); }
.disclaimer-strip { background: var(--ink); color: #8896a4; font-size: .78rem; text-align: center; padding: 10px var(--gutter); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 420px; }
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .grid--3 { grid-template-columns: repeat(2,1fr); }
  .tees { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .site-header.nav-open .nav-links {
    display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 20px; gap: 4px; box-shadow: var(--shadow);
  }
  .site-header.nav-open .nav-links a { padding: 12px 14px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .tees { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
