/* =========================================================
   Capitaloverture Agency — main stylesheet
   Palette: ink navy + electric lime, cream light sections
   ========================================================= */

:root {
  --ink:        #10162F;
  --ink-2:      #1B2347;
  --ink-3:      #2C3768;
  --cream:      #F6F4EE;
  --white:      #FFFFFF;
  --accent:     #C8FF4D;
  --accent-dim: #A9E05A;
  --peri:       #8B9AD6;

  --text-dark:  #10162F;
  --text-muted: #57608A;
  --text-light: rgba(255, 255, 255, .74);

  --line-dark:  rgba(16, 22, 47, .10);
  --line-light: rgba(255, 255, 255, .16);

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body:    "Inter", "Segoe UI", sans-serif;

  --container: 1140px;
  --radius:    18px;
  --radius-lg: 26px;

  --shadow-sm: 0 2px 10px rgba(16, 22, 47, .06);
  --shadow-md: 0 18px 40px -20px rgba(16, 22, 47, .28);
  --shadow-lg: 0 40px 80px -40px rgba(16, 22, 47, .45);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 2000;
  background: var(--accent);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.skip-link:focus { left: 20px; }

/* ---------- typography ---------- */
.h1, .h2, .h3, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0;
}

.h1 { font-size: clamp(2.4rem, 5vw, 3.85rem); }
.h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
.h3 { font-size: 1.28rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 56ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent-dim);
  border-radius: 2px;
}
.eyebrow--light { color: rgba(255, 255, 255, .68); }
.eyebrow--light::before { background: var(--accent); }

.hl {
  position: relative;
  white-space: nowrap;
  color: var(--accent);
}
.hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .06em;
  height: .1em;
  background: rgba(200, 255, 77, .3);
  border-radius: 2px;
}

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: clamp(70px, 9vw, 120px) 0; }

/* Grid children default to min-width:auto, which lets a wide SVG push the
   track past the viewport. Reset it on every two-column grid. */
.hero__inner > *,
.about__inner > *,
.why__inner > *,
.contact__inner > *,
.cards > *,
.steps > *,
.results__grid > * { min-width: 0; }

.section__head { max-width: 660px; margin-bottom: 54px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__sub {
  margin-top: 18px;
  color: rgba(255, 255, 255, .62);
  font-size: 1rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  padding: 15px 26px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  transition: transform .2s var(--ease), background-color .2s var(--ease),
              color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--accent {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn--accent:hover { background: #d6ff70; border-color: #d6ff70; }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--sm { padding: 11px 20px; font-size: .88rem; }
.btn--block { width: 100%; padding: 17px 26px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease),
              backdrop-filter .3s var(--ease);
}
.nav--scrolled {
  background: rgba(16, 22, 47, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand__mark { color: var(--accent); display: flex; }
.brand__text em { font-style: normal; color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: .93rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
}
.nav__links a { transition: color .2s var(--ease); }
.nav__links a:not(.btn):hover,
.nav__links a.is-active:not(.btn) { color: var(--accent); }
.nav__links a:not(.btn) { position: relative; }
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__links a.is-active:not(.btn)::after { transform: scaleX(1); }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  z-index: 1200;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  visibility: hidden;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }

.drawer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
}
.drawer__links .btn { font-family: var(--font-body); font-size: 1rem; margin-top: 10px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: calc(var(--nav-h) + 62px) 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 40%, transparent 100%);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 77, .16), transparent 62%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
}

.hero__copy .lead { color: var(--text-light); margin-top: 22px; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--line-light);
}
.stats__item span {
  display: block;
  font-size: .84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .55);
  margin-top: 6px;
}
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -.02em;
}

.hero__art { min-width: 0; }
.hero__art img { width: 100%; height: auto; }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--accent);
  color: var(--ink);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  font-family: var(--font-display);
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: marquee 42s linear infinite;
}
.marquee__track i { font-style: normal; font-size: .6rem; opacity: .5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--white); }
.about__inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
}
.about__head { margin-bottom: 0; }
.about__body p { color: var(--text-muted); }
.about__body strong { color: var(--text-dark); font-weight: 600; }

.about__ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.about__ticks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  font-weight: 500;
  padding: 8px 16px 8px 12px;
  border: 1.5px solid var(--line-dark);
  border-radius: 999px;
  background: var(--cream);
}
.about__ticks li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-dim);
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  background: var(--ink);
  color: var(--white);
}
.services .h2 { color: var(--white); }

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  position: relative;
  padding: 38px 34px 34px;
  border: 1.5px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .035);
  transition: transform .3s var(--ease), border-color .3s var(--ease),
              background-color .3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 255, 77, .5);
  background: rgba(255, 255, 255, .06);
}

.card__idx {
  position: absolute;
  top: 30px;
  right: 32px;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .28);
  letter-spacing: .06em;
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(200, 255, 77, .12);
  color: var(--accent);
  margin-bottom: 24px;
}
.card__icon svg { width: 30px; height: 30px; }

.card__title {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 700;
  margin: 0 0 12px;
}
.card__desc {
  color: rgba(255, 255, 255, .66);
  font-size: .95rem;
  margin-bottom: 22px;
}
.card__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .88rem;
  color: rgba(255, 255, 255, .78);
}
.card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.card__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* =========================================================
   PROCESS
   ========================================================= */
.process { background: var(--cream); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 26px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.step p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================================
   WHY US
   ========================================================= */
.why { background: var(--white); }

.why__inner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 60px;
}
.why__art img { width: 100%; }

.why__list { display: flex; flex-direction: column; gap: 18px; }

.feature {
  display: flex;
  gap: 22px;
  padding: 28px;
  border: 1.5px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease),
              transform .3s var(--ease);
}
.feature:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.feature__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature__title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  margin: 2px 0 8px;
}
.feature p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================================
   RESULTS
   ========================================================= */
.results {
  background: var(--ink-2);
  color: var(--white);
}
.results .h2 { color: var(--white); }

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.result {
  padding: 34px 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid var(--line-light);
  text-align: center;
}
.result__metric {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.4vw, 3.1rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 14px;
}
.result__label {
  font-size: .98rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.result__meta {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  margin: 0;
}

.quote {
  max-width: 800px;
  margin: 0 auto;
  padding: 44px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-lg);
}
.quote blockquote {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -.01em;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}
.quote__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
}
.quote figcaption strong { display: block; font-size: .96rem; }
.quote figcaption em {
  font-style: normal;
  font-size: .85rem;
  color: var(--text-muted);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--ink);
  color: var(--white);
}
.contact .h2 { color: var(--white); }
.contact .lead { color: var(--text-light); margin-top: 18px; }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  font-size: .94rem;
  color: rgba(255, 255, 255, .8);
}
.contact__meta li { display: flex; align-items: center; gap: 13px; }
.contact__meta span[aria-hidden] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: rgba(255, 255, 255, .06);
  color: var(--accent);
}
.contact__meta a { border-bottom: 1px solid rgba(200, 255, 77, .4); }
.contact__meta a:hover { color: var(--accent); }

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid var(--line-light);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .7);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: .94rem;
  color: var(--white);
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 108px; }
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--ink-2); color: var(--white); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, .32); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, .08);
}
.field.has-error input,
.field.has-error textarea { border-color: #FF7A6B; }

.form__note {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  text-align: center;
  margin: 0;
}
.form__note.is-ok { color: var(--accent); }
.form__note.is-error { color: #FF9E92; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #0A0F22;
  color: rgba(255, 255, 255, .62);
  padding: 64px 0 30px;
  font-size: .92rem;
}
.footer__top {
  display: flex;
  align-items: baseline;
  gap: 22px;
  flex-wrap: wrap;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer__tag {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255, 255, 255, .45);
  margin: 0;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  padding: 40px 0;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 6px;
}
.footer__col a { transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__addr { line-height: 1.7; color: rgba(255, 255, 255, .45); }

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .85rem;
  color: rgba(255, 255, 255, .42);
}

/* =========================================================
   LEGAL PAGE
   ========================================================= */
.legal {
  background: var(--ink);
  color: var(--white);
  padding: calc(var(--nav-h) + 70px) 0 90px;
}
.legal .h1 { margin-bottom: 14px; }
.legal__updated { color: rgba(255, 255, 255, .5); font-size: .9rem; }
.legal__body { max-width: 760px; padding: 70px 0 100px; }
.legal__body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 44px 0 12px;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body p, .legal__body li { color: var(--text-muted); }
.legal__body ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 1.1em;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.legal__body a { color: var(--ink); border-bottom: 2px solid var(--accent); }

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

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__art { max-width: 520px; width: 100%; }
  .about__inner { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why__inner { grid-template-columns: 1fr; gap: 44px; }
  .why__art { max-width: 500px; width: 100%; margin: 0 auto; }
  .contact__inner { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .burger { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .results__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 70px; }
  .stats { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
  .steps { grid-template-columns: 1fr; }
  .card { padding: 32px 24px 28px; }
  .feature { flex-direction: column; gap: 16px; padding: 26px 22px; }
  .feature:hover { transform: none; }
  .quote { padding: 30px 24px; }
  .form { padding: 26px 22px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .footer__bar { justify-content: flex-start; }
  .drawer__links { font-size: 1.4rem; gap: 22px; }
}

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