/* =========================================================================
   Inov8 Business Advisory — Production stylesheet
   Dark, editorial, high-contrast marketing site.
   ========================================================================= */

/* ---- Design tokens ---- */
:root {
  --bg: #0E0E10;
  --bg-footer: #0B0B0D;
  --surface: #161619;
  --surface-hover: #1A1A1E;
  --accent: #FF5A36;
  --accent-light: #FF8A36;
  --accent-soft: #FF8A6E;
  --accent-tint: rgba(255, 90, 54, .12);
  --warm-panel: linear-gradient(165deg, #1E140F, #160F0C);
  --text: #EFEDE6;
  --text-2: #B9B7AE;
  --muted: #9A9AA2;
  --faint: #8A8A92;
  --label: #6E6E76;
  --hairline: rgba(255, 255, 255, .08);
  --hairline-2: rgba(255, 255, 255, .1);
  --hairline-3: rgba(255, 255, 255, .14);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius-sm: 9px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --maxw: 1240px;
  --pad-x: 44px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, p { margin: 0; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---- Layout helpers ---- */
.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.container--narrow { max-width: 1100px; }
.container--tight { max-width: 1000px; }
.section { padding-top: 90px; padding-bottom: 90px; }
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.label {
  color: var(--label);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.serif { font-family: var(--font-display); }
.accent-text { color: var(--accent); }

/* ---- Typography ---- */
.h1 { font-family: var(--font-display); font-weight: 700; font-size: 68px; line-height: 1.04; letter-spacing: -.01em; }
.h1--hero { font-size: 74px; line-height: 1.02; }
.h2 { font-family: var(--font-display); font-weight: 700; font-size: 48px; line-height: 1.05; letter-spacing: -.01em; }
.lead { font-size: 20px; line-height: 1.55; color: var(--text-2); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  padding: 13px 24px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, border-color .2s;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 90, 54, .4); }
.btn--lg { font-size: 17px; padding: 15px 30px; }
.btn--xl { font-size: 18px; padding: 17px 38px; border-radius: 10px; }
.btn--ghost { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .18); color: var(--text); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .32); }
.btn--outline { background: none; border: 1px solid rgba(255, 255, 255, .2); color: var(--text); font-size: 15px; padding: 12px 22px; }
.btn--outline:hover { background: rgba(255, 255, 255, .08); }
.btn--dark { background: var(--bg); color: #fff; }
.btn--dark:hover { transform: translateY(-3px); }

/* =======================================================================
   Scroll progress bar
   ======================================================================= */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  box-shadow: 0 0 12px rgba(255, 90, 54, .6);
  z-index: 200;
  transition: width .08s linear;
}

/* =======================================================================
   Navigation
   ======================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 22px var(--pad-x);
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: padding .4s ease, border-color .4s ease;
}
.nav.is-scrolled { padding-top: 13px; padding-bottom: 13px; border-bottom-color: var(--hairline); }
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .5px;
  color: var(--text);
}
.brand .accent-text { color: var(--accent); }
.nav__links { display: flex; gap: 6px; margin-left: 8px; }
.nav__link {
  position: relative;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 10px;
  transition: color .25s;
}
.nav__link:hover { color: var(--text); }
.nav__link.is-active { color: var(--text); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px; bottom: -1px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav__cta { margin-left: auto; }
.nav__toggle { display: none; }

/* mobile drawer */
.nav__drawer { display: none; }

/* =======================================================================
   Hero
   ======================================================================= */
.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  padding-top: 170px;
  padding-bottom: 90px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 7px 16px;
  color: var(--text-2);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero__title { margin-bottom: 26px; }
.hero__lead { max-width: 480px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero graphic */
.hero__graphic {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #18181C, #101012);
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridDrift 8s linear infinite;
}
.hero__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawLine 2.2s ease .4s forwards;
}
.hero__enddot { transform-origin: 380px 70px; animation: pulseDot 2s ease 2.4s infinite; }
.hero__caption {
  position: absolute; left: 24px; bottom: 22px;
  font-family: var(--font-display); font-size: 15px; color: var(--faint); letter-spacing: .05em;
}
.hero__ring {
  position: absolute; right: -30px; top: -30px;
  width: 160px; height: 160px;
  border: 1px solid rgba(255, 90, 54, .25);
  border-radius: 50%;
  animation: spinSlow 26s linear infinite;
}

@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes gridDrift { from { transform: translate(0, 0); } to { transform: translate(-40px, -40px); } }
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.5); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* =======================================================================
   Trust strip
   ======================================================================= */
.trust {
  display: flex;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 26px 0;
}
.trust__name { color: #9A9AA2; font-family: var(--font-display); font-size: 22px; }

/* =======================================================================
   Intro statement
   ======================================================================= */
.statement {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 38px;
  line-height: 1.34;
  letter-spacing: -.01em;
}
.statement em { color: var(--accent); font-style: italic; }

/* =======================================================================
   Stats
   ======================================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--hairline-2);
  border-radius: 16px;
  overflow: hidden;
}
.stat { padding: 44px 36px; }
.stat + .stat { border-left: 1px solid var(--hairline-2); }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: 62px; line-height: 1; color: var(--accent); }
.stat__label { color: var(--muted); font-size: 17px; margin-top: 10px; }

/* =======================================================================
   Section headers
   ======================================================================= */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

/* =======================================================================
   Cards (services / values)
   ======================================================================= */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.card--lift:hover { transform: translateY(-6px); border-color: rgba(255, 90, 54, .5); background: var(--surface-hover); }
.icon-chip {
  width: 50px; height: 50px;
  border-radius: 11px;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.icon-chip svg { width: 26px; height: 26px; }
.card__title { font-family: var(--font-display); font-weight: 600; font-size: 23px; margin-bottom: 10px; }
.card__body { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* =======================================================================
   Why / split sections
   ======================================================================= */
.split { display: grid; gap: 56px; }
.split--why { grid-template-columns: .95fr 1.05fr; align-items: start; }
.split--story { grid-template-columns: 1fr 1.05fr; align-items: center; }
.sticky { position: sticky; top: 120px; }

.media {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline-2);
  background: var(--surface);
}
.media--45 { aspect-ratio: 4 / 5; }
.media--54 { aspect-ratio: 5 / 4; }
.media--11 { aspect-ratio: 1 / 1; }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media__empty {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--label); font-size: 13px; text-align: center; padding: 16px;
  background:
    repeating-linear-gradient(45deg, #161619, #161619 11px, #131316 11px, #131316 22px);
}

.reasons { display: flex; flex-direction: column; }
.reason { display: flex; gap: 18px; padding: 22px 0; border-top: 1px solid var(--hairline-2); }
.reason__num { font-family: var(--font-display); font-size: 20px; color: var(--accent); flex: none; width: 34px; }
.reason__title { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.reason__body { color: var(--muted); font-size: 16px; line-height: 1.55; }

/* =======================================================================
   Results band
   ======================================================================= */
.band {
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.results { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: stretch; }
.result-card { border-radius: 16px; padding: 34px; }
.result-card--before { background: var(--bg); border: 1px solid var(--hairline-2); }
.result-card--after { background: var(--warm-panel); border: 1px solid rgba(255, 90, 54, .4); }
.result-line { color: var(--muted); font-size: 16px; line-height: 1.5; }
.result-line + .result-line { margin-top: 14px; }
.result__arrow { display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 40px; }
.result__stat { font-family: var(--font-display); font-weight: 700; font-size: 56px; line-height: 1; color: #fff; }
.pullquote {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--text);
  max-width: 760px;
  margin: 48px auto 0;
}

/* =======================================================================
   CTA blocks
   ======================================================================= */
.cta {
  position: relative;
  background: var(--accent);
  border-radius: var(--radius-xl);
  padding: 80px 56px;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .18), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(0, 0, 0, .18), transparent 45%);
}
.cta > * { position: relative; }
.cta__title { font-family: var(--font-display); font-weight: 700; font-size: 56px; line-height: 1.04; margin-bottom: 16px; }
.cta__sub { font-size: 20px; color: rgba(255, 255, 255, .92); margin-bottom: 36px; }
.cta--dark { background: var(--surface); border: 1px solid var(--hairline-2); color: var(--text); padding: 64px 48px; }
.cta--dark::before { display: none; }
.cta--dark .cta__title { font-size: 44px; }
.cta--dark .cta__sub { color: var(--text-2); font-size: 19px; }

/* =======================================================================
   Team
   ======================================================================= */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.member {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 24px;
  transition: border-color .3s;
}
.member:hover { border-color: rgba(255, 90, 54, .4); }
.member .media { border-radius: 12px; margin-bottom: 18px; }
.member__name { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.member__role { color: var(--accent); font-size: 15px; margin-bottom: 12px; }
.member__bio { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* =======================================================================
   Services page
   ======================================================================= */
.services-layout { display: grid; grid-template-columns: 230px 1fr; gap: 48px; align-items: start; }
.svc-index { position: sticky; top: 120px; }
.svc-index__list { display: flex; flex-direction: column; gap: 4px; margin-top: 18px; }
.svc-index__link {
  display: flex; gap: 12px; align-items: baseline;
  background: none; border: none; text-align: left;
  padding: 8px 0; color: var(--muted); font-size: 16px;
  transition: color .25s;
}
.svc-index__link:hover, .svc-index__link.is-active { color: var(--text); }
.svc-index__num { font-family: var(--font-display); font-size: 13px; color: #5E5E66; }

.svc-list { display: flex; flex-direction: column; gap: 18px; }
.svc-block {
  scroll-margin-top: 110px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 38px;
}
.svc-block__head { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.svc-block__head .icon-chip { width: 54px; height: 54px; margin-bottom: 0; flex: none; }
.svc-block__num { font-family: var(--font-display); font-size: 14px; color: var(--accent); }
.svc-block__title { font-family: var(--font-display); font-weight: 700; font-size: 30px; line-height: 1.1; }
.svc-block__desc { color: var(--text-2); font-size: 18px; line-height: 1.6; margin-bottom: 26px; max-width: 680px; }
.svc-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  overflow: hidden;
}
.svc-meta__cell { background: var(--surface); padding: 18px 20px; }
.svc-meta__label { color: var(--label); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.svc-meta__val { font-size: 15px; color: var(--text); line-height: 1.45; }
.svc-meta__val--out { color: var(--accent-soft); }

/* =======================================================================
   Contact page
   ======================================================================= */
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--hairline-2); border-radius: var(--radius-lg); padding: 38px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: block; }
.field--full { grid-column: 1 / -1; }
.field__label { display: block; font-size: 14px; color: var(--text-2); margin-bottom: 7px; }
.field__label span { color: var(--label); }
.input, .select, .textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--hairline-3);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color .2s;
}
.input::placeholder, .textarea::placeholder { color: #5c5c64; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--accent); }
.textarea { resize: vertical; min-height: 110px; }
.mt-18 { margin-top: 18px; }
.form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.form-note { color: var(--muted); font-size: 15px; }
.field-error { color: var(--accent); font-size: 13px; margin-top: 6px; display: none; }
.field.has-error .input,
.field.has-error .textarea { border-color: var(--accent); }
.field.has-error .field-error { display: block; }

.form-success { padding: 40px 10px; text-align: center; display: none; }
.form-success.is-visible { display: block; }
.form-success__icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent-tint);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success__title { font-family: var(--font-display); font-weight: 700; font-size: 28px; margin-bottom: 10px; }
.form-success__body { color: var(--muted); font-size: 17px; }

.contact-side { display: flex; flex-direction: column; gap: 18px; }
.side-card { background: var(--surface); border: 1px solid var(--hairline-2); border-radius: 16px; padding: 28px; }
.side-card--warm { background: var(--warm-panel); border-color: rgba(255, 90, 54, .35); }
.side-card--center { text-align: center; background: none; }
.contact-row { display: flex; gap: 14px; align-items: center; }
.contact-row + .contact-row { margin-top: 18px; }
.contact-row__icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.contact-row__icon svg { width: 18px; height: 18px; }
.side-card__title { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin-bottom: 10px; }
.side-card__body { color: #C9C7BE; font-size: 16px; line-height: 1.55; }
.side-stat { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--accent); }
.side-stat__label { color: var(--muted); font-size: 15px; margin-top: 4px; }

/* =======================================================================
   Footer
   ======================================================================= */
.footer { border-top: 1px solid var(--hairline); background: var(--bg-footer); }
.footer__main { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-top: 56px; padding-bottom: 56px; }
.footer__brand { font-family: var(--font-display); font-weight: 800; font-size: 28px; margin-bottom: 14px; }
.footer__tag { color: var(--faint); font-size: 16px; line-height: 1.55; max-width: 320px; }
.footer__heading { color: var(--label); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.footer__col-links a, .footer__contact span { color: var(--text-2); font-size: 16px; transition: color .2s; }
.footer__col-links a:hover { color: var(--accent); }
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .06); }
.footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; padding-bottom: 22px; color: var(--label); font-size: 14px; }

/* =======================================================================
   Scroll reveal
   ======================================================================= */
/* Only hide pre-reveal when JS is present to animate them in. */
.js .reveal { opacity: 0; transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal[data-reveal="up"] { transform: translateY(34px); }
.reveal[data-reveal="left"] { transform: translateX(-28px); }
.reveal[data-reveal="right"] { transform: translateX(28px); }
.reveal[data-reveal="scale"] { transform: scale(.95); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__grid, .hero__line, .hero__enddot, .hero__ring { animation: none; }
  .hero__line { stroke-dashoffset: 0; }
  html { scroll-behavior: auto; }
}

/* =======================================================================
   Responsive
   ======================================================================= */
@media (max-width: 1080px) {
  .h1, .h1--hero { font-size: 56px; }
  .h2 { font-size: 40px; }
  .cta__title { font-size: 44px; }
}

@media (max-width: 900px) {
  :root { --pad-x: 24px; }
  .section { padding-top: 64px; padding-bottom: 64px; }

  .nav__links, .nav__cta { display: none; }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: auto; width: 44px; height: 44px;
    background: none; border: 1px solid var(--hairline-3); border-radius: 9px; color: var(--text);
  }
  .nav__drawer {
    display: block;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(82vw, 320px);
    background: var(--surface);
    border-left: 1px solid var(--hairline-2);
    padding: 90px 28px 28px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 160;
  }
  .nav__drawer.is-open { transform: translateX(0); }
  .nav__drawer a {
    display: block; font-size: 20px; padding: 14px 0;
    border-bottom: 1px solid var(--hairline); color: var(--text);
  }
  .nav__drawer .btn { margin-top: 22px; width: 100%; }
  .nav-scrim {
    position: fixed; inset: 0; background: rgba(0, 0, 0, .5);
    opacity: 0; pointer-events: none; transition: opacity .35s; z-index: 155;
  }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }

  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 130px; }
  .hero__graphic { max-width: 440px; }
  .h1--hero { font-size: 46px; }
  .h1 { font-size: 44px; }
  .h2 { font-size: 34px; }
  .statement { font-size: 28px; }
  .cta__title { font-size: 36px; }
  .cta { padding: 56px 28px; }

  .stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--hairline-2); }
  .card-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .split--why, .split--story { grid-template-columns: 1fr; gap: 32px; }
  .sticky { position: static; }
  .split--why .media, .media--45 { max-width: 460px; }

  .results { grid-template-columns: 1fr; }
  .result__arrow { transform: rotate(90deg); padding: 8px 0; }

  .services-layout { grid-template-columns: 1fr; gap: 28px; }
  .svc-index { position: static; }
  .svc-index__list { flex-direction: row; flex-wrap: wrap; gap: 8px 18px; }
  .svc-block { padding: 26px; }
  .svc-block__title { font-size: 24px; }
  .svc-meta { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand-col { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .card-grid, .team-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }
  .h1--hero { font-size: 40px; }
  .hero__actions .btn { width: 100%; }
}
