/* ============================================================
   Amethyst AI Care — styles (light theme)
   Brand: amethyst / violet accents on a clean, warm-white canvas
   ============================================================ */

:root {
  --bg:            #ffffff;
  --bg-soft:       #f7f5fc;   /* very light lavender */
  --bg-tint:       #f3effb;
  --bg-card:       #ffffff;
  --ink:           #1c1330;   /* near-black with a violet undertone */
  --ink-soft:      #4a4360;
  --ink-mute:      #7a7290;
  --violet:        #7c3aed;
  --violet-bright: #8b5cf6;
  --violet-deep:   #6d28d9;
  --amethyst:      #7c3aed;
  --autumn:        #ef6c34;
  --autumn-soft:   #f59e4b;
  --line:          rgba(124, 58, 237, 0.14);
  --line-soft:     rgba(28, 19, 48, 0.08);
  --radius:        22px;
  --radius-sm:     14px;
  --shadow:        0 24px 60px -28px rgba(76, 29, 149, 0.32);
  --shadow-sm:     0 8px 24px -12px rgba(76, 29, 149, 0.22);
  --maxw:          1180px;
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
  --sans:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display:       'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- shared ---------- */
.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--violet);
  margin-bottom: 18px;
}
.eyebrow--center { text-align: center; }

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 116px 24px;
}
.section__head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.section__sub {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: linear-gradient(135deg, var(--violet-bright), var(--violet-deep));
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(124, 58, 237, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(124,58,237,0.7); }
.btn--ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--violet-deep);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { background: var(--bg-tint); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px -16px rgba(76,29,149,0.5);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: 13px; }
.nav__logo { width: 50px; height: 50px; border-radius: 12px; }
.nav__name { font-weight: 700; font-size: 1.18rem; letter-spacing: -0.01em; color: var(--ink); }
.nav__name span { color: var(--violet); font-weight: 500; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 0.96rem; color: var(--ink-soft); transition: color .25s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  padding: 9px 20px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--violet-bright), var(--violet-deep));
  color: #fff !important;
  box-shadow: 0 10px 22px -12px rgba(124,58,237,0.7);
}
.nav__cta:hover { transform: translateY(-1px); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 158px 24px 84px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 50% at 82% 8%, rgba(139,92,246,0.16), transparent 70%),
    radial-gradient(45% 45% at 6% 28%, rgba(244,119,62,0.10), transparent 70%),
    linear-gradient(180deg, #faf8ff 0%, #ffffff 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--ink);
}
.hero__title em { font-style: normal; color: var(--violet); }
.hero__lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 22px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero__stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--violet-deep);
}
.hero__stats span { font-size: 0.9rem; color: var(--ink-mute); display: block; }

.hero__copy { min-width: 0; }
.hero__art { position: relative; min-width: 0; }
.hero__art picture { display: block; }
.hero__art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;   /* photo is square — lock it so it never stretches */
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  animation: floaty 7s ease-in-out infinite;
}
.hero__badge {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 15px;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 600; color: var(--ink);
  max-width: calc(100% - 20px);
}
.hero__badge--primary { left: -10px; bottom: 18px; }
.hero__badge--secondary { right: -10px; top: 18px; }
.hero__badge i {
  width: 10px; height: 10px; border-radius: 50%; flex: 0 0 10px;
  background: var(--dot, #25c685);
  box-shadow: 0 0 0 4px var(--dot-glow, rgba(37,198,133,0.18));
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.hero__badge span { white-space: nowrap; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.hero__badge.is-swapping span { opacity: 0; transform: translateY(4px); }
.hero__badge[data-tone="ok"]    { --dot: #25c685; --dot-glow: rgba(37,198,133,0.18); }
.hero__badge[data-tone="watch"] { --dot: #f5a623; --dot-glow: rgba(245,166,35,0.22); }
.hero__badge[data-tone="alert"] { --dot: #ef4444; --dot-glow: rgba(239,68,68,0.20); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- trust strip ---------- */
/* Desktop: clean single centered row */
.trust {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft);
}
.trust__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 36px;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: var(--ink-soft);
}
.trust__item svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--violet); }

/* Tablet & mobile: tidy 2x2 grid of restrained amethyst chips */
@media (max-width: 960px) {
  .trust__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 20px 16px;
    align-items: stretch;
  }
  .trust__item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 16px 10px;
    background: var(--bg-tint);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-size: 0.84rem;
    line-height: 1.25;
    overflow-wrap: break-word;
    hyphens: none;
  }
  .trust__item svg { width: 20px; height: 20px; }
}
/* Very narrow: tighten gutters so nothing overflows */
@media (max-width: 380px) {
  .trust__inner { gap: 8px; padding: 18px 12px; }
  .trust__item { padding: 14px 8px; font-size: 0.8rem; }
}

/* ============================================================
   MISSION
   ============================================================ */
.mission { background: var(--bg); }
.mission__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 96px 24px;
  text-align: center;
}
/* eyebrow — mirrors the site's shared .eyebrow recipe for cohesion */
.mission__eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  margin: 0 0 22px;
}
/* problem statement — dark, the dominant display line */
.mission__problem {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.25rem);
  line-height: 1.28;
  letter-spacing: -0.018em;
  color: var(--ink);
  text-wrap: balance;
}
/* warm autumn keyline separating the two beats */
.mission__rule {
  width: 48px;
  height: 3px;
  margin: 28px auto;
  border: 0;
  border-radius: 999px;
  background: var(--autumn);
}
/* mission statement — violet-deep, lighter, clearly secondary */
.mission__statement {
  margin: 0 auto;
  max-width: 680px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.18rem, 2.4vw, 1.6rem);
  line-height: 1.42;
  letter-spacing: -0.012em;
  color: var(--violet-deep);
  text-wrap: balance;
}
@media (max-width: 640px) {
  .mission__inner { padding: 64px 22px; }
  .mission__eyebrow { margin-bottom: 16px; }
  .mission__rule { margin: 22px auto; }
}
@media (max-width: 380px) {
  .mission__inner { padding: 56px 18px; }
}

/* ============================================================
   CHALLENGE (stat band)
   ============================================================ */
.section--tint { background: var(--bg-soft); max-width: none; }
.section--tint > .section__head,
.section--tint > .stats-grid { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 24px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--violet-deep);
  line-height: 1;
  margin-bottom: 10px;
}
.stat span { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   PRODUCT / CAPABILITY CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card:hover { transform: translateY(-6px); border-color: rgba(124,58,237,0.35); box-shadow: var(--shadow); }
.card--feature {
  grid-column: span 2;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(139,92,246,0.10), transparent 55%),
    linear-gradient(180deg, #fbf9ff, #ffffff);
  border-color: rgba(124,58,237,0.28);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.card--feature .card__body { min-width: 0; }
.card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--bg-tint);
  color: var(--violet);
  margin-bottom: 22px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.38rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; color: var(--ink); }
.card p { color: var(--ink-soft); }
.card__list { list-style: none; margin-top: 16px; display: grid; gap: 8px; }
.card__list li { display: flex; align-items: flex-start; gap: 9px; color: var(--ink-soft); font-size: 0.96rem; }
.card__list svg { width: 18px; height: 18px; color: var(--violet); flex: 0 0 18px; margin-top: 3px; }
.card__tag {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--autumn);
  background: rgba(239,108,52,0.10);
  border: 1px solid rgba(239,108,52,0.26);
  padding: 5px 12px;
  border-radius: 100px;
}
.card__art {
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, #2a1a4d, #160a2b);
  padding: 22px;
  color: #fff;
}

/* mini "risk panel" inside feature card */
.panel { color: #fff; }
.panel__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.panel__label { font-size: 0.78rem; letter-spacing: .1em; text-transform: uppercase; color: #c9bfe6; }
.panel__score { text-align: right; }
.panel__score b { font-family: var(--display); font-size: 2rem; font-weight: 600; display: block; line-height: 1; }
.panel__score span { font-size: 0.72rem; color: #9ff0c4; }
.panel__rows { display: grid; gap: 10px; }
.panel__row { display: flex; justify-content: space-between; font-size: 0.86rem; }
.panel__row span:first-child { color: #c9bfe6; }
.panel__row span:last-child { color: #fff; font-weight: 600; }
.panel__bar { height: 38px; margin: 4px 0 14px; border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, transparent 0 6px, rgba(255,255,255,0.05) 6px 7px),
    linear-gradient(90deg, rgba(139,92,246,0.5), rgba(167,139,250,0.2));
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.section--soft { max-width: none; background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section--soft > .section__head,
.section--soft > .steps,
.section--soft > .cards { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  list-style: none;
  padding: 0 24px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.step__num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--violet), var(--autumn));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--ink); }
.step p { color: var(--ink-soft); }

/* ============================================================
   OUTCOMES
   ============================================================ */
.outcomes { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.outcome {
  text-align: center;
  padding: 30px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fbf9ff, #fff);
}
.outcome strong {
  display: block; font-family: var(--display); font-weight: 800;
  font-size: 2.3rem; color: var(--violet-deep); line-height: 1; margin-bottom: 8px;
}
.outcome span { color: var(--ink-soft); font-size: 0.95rem; }
.outcomes__note { text-align: center; color: var(--ink-mute); font-size: 0.84rem; margin-top: 22px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about__copy p { color: var(--ink-soft); margin-top: 18px; font-size: 1.08rem; }
.about__values { display: grid; gap: 18px; margin-top: 36px; }
.about__values div { padding-left: 18px; border-left: 2px solid var(--violet); }
.about__values strong { display: block; font-size: 1.05rem; color: var(--ink); }
.about__values span { color: var(--ink-mute); font-size: 0.96rem; }
.about__mark { display: grid; place-items: center; }
.about__mark img {
  width: 80%; max-width: 340px;
  filter: drop-shadow(0 30px 50px rgba(124,58,237,0.28));
  animation: floaty 8s ease-in-out infinite;
}

/* ============================================================
   CONTACT
   ============================================================ */
.section--contact { max-width: none; background: var(--bg-soft); border-top: 1px solid var(--line-soft); }
.contact__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 0 24px;
}
.contact__intro p { color: var(--ink-soft); margin-top: 18px; font-size: 1.08rem; }
.contact__list { list-style: none; margin-top: 28px; display: grid; gap: 14px; }
.contact__list li { display: flex; align-items: center; gap: 12px; color: var(--ink-soft); }
.contact__list svg { width: 20px; height: 20px; color: var(--violet); }
.contact__list a { color: var(--violet-deep); font-weight: 600; }
.contact__list a:hover { text-decoration: underline; }

.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.field label span { color: var(--ink-mute); font-weight: 400; }
.field input,
.field textarea,
.field select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--violet-bright);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.18);
}
.field textarea { resize: vertical; }
.form__status { margin-top: 14px; font-size: 0.92rem; text-align: center; min-height: 1.2em; }
.form__status.is-error { color: #c0392b; }
.form__status.is-ok { color: #1f8a5b; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: #fff; }
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 24px 30px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__brand { max-width: 300px; }
.footer__brand img { width: 44px; border-radius: 10px; margin-bottom: 16px; }
.footer__brand p { color: var(--ink-mute); }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.footer__links a { color: var(--ink-soft); transition: color .25s; }
.footer__links a:hover { color: var(--violet); }
.footer__base {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-mute);
  font-size: 0.86rem;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__art img, .about__mark img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes { grid-template-columns: repeat(2, 1fr); }
}
/* Tablet & below: collapse nav to hamburger, stack the split hero,
   and let the hero copy + stats use the full available width. */
@media (max-width: 960px) {
  .nav__links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    transform: translateY(-100%);
    /* fully hide when closed so no white sliver peeks above the nav */
    opacity: 0;
    visibility: hidden;
    transition: transform .4s var(--ease), opacity .3s var(--ease), visibility .4s var(--ease);
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__links a { padding: 14px 24px; width: 100%; }
  .nav__cta { border-radius: 0; background: none; color: var(--violet-deep) !important; box-shadow: none; }
  .nav__toggle { display: flex; }

  .hero { padding: 96px 24px 64px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__art { order: -1; max-width: 460px; margin: 0 auto; }
  .hero__copy { width: 100%; }
  .hero__lead { max-width: none; }   /* stretch full width on tablet */

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__mark { order: -1; }
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr; }
  .card--feature { grid-template-columns: 1fr; }
}
/* Tablet: swap to the full-width cinematic image to fill the extra side space */
@media (min-width: 601px) and (max-width: 960px) {
  .hero__art { max-width: none; margin: 0; }
  .hero__art img { aspect-ratio: 1774 / 887; }
}
@media (max-width: 720px) {
  .section { padding: 78px 24px; }
  .cards { grid-template-columns: 1fr; }
  .card--feature { grid-column: span 1; }
  .stats-grid, .outcomes { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; }
}
/* Phones: stats one per line, centered */
@media (max-width: 600px) {
  .hero__stats { grid-template-columns: 1fr; gap: 22px; text-align: center; }
}
