/* ==========================================================================
   SPACENET CONSULTANTS LIMITED — Corporate Website  (v2)
   Design system + layout.  Built by Nexovatech Solutions.

   Brand blue #87CDE9 is sampled directly from the approved logo artwork.
   Because that value only reaches 1.7:1 on white, the text-bearing steps
   (--brand-600 / --brand-700) are darker tones of the SAME hue (197deg),
   so the logo colour is never replaced — only extended for WCAG AA.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand ramp — hue 197, anchored on the approved logo blue */
  --brand-050: #F3FAFD;
  --brand-100: #DFF1F9;
  --brand-200: #B9E2F3;
  --brand-300: #87CDE9;   /* EXACT approved logo blue — do not alter */
  --brand-400: #4FB3DC;
  --brand-500: #1D8FBF;
  --brand-600: #0E7098;   /* AA on white (5.54:1) */
  --brand-700: #0A5878;   /* AA on white (7.84:1) */

  /* Neutrals */
  --navy-900: #061726;
  --navy-850: #08202F;
  --navy-800: #0A2337;
  --navy-700: #123449;

  --ink:      #101D2A;   /* headings */
  --ink-2:    #263746;   /* descriptive body text — 11.9:1 on white */
  --muted:    #5A7285;   /* metadata / labels only — 4.9:1 on white */
  --on-dark:  rgba(255, 255, 255, .84);   /* descriptive text on navy */
  --line:     #E0E7EE;
  --line-2:   #EDF2F6;
  --tint:     #F4F8FB;
  --tint-2:   #F9FBFD;
  --white:    #FFFFFF;

  /* Type — Plus Jakarta Sans with a full offline fallback stack */
  --ff: "Plus Jakarta Sans", "Inter Tight", "Inter", -apple-system,
        BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --fs-hero:  clamp(2.625rem, 1.85rem + 1.85vw, 3.625rem); /* 42 → 58 */
  --fs-h2:    clamp(2rem, 1.45rem + 1.35vw, 2.875rem);     /* 32 → 46 */
  --fs-h3:    clamp(1.3125rem, 1.15rem + 0.45vw, 1.5rem);  /* 21 → 24 */
  --fs-h4:    clamp(1.0625rem, 1.0rem + 0.28vw, 1.1875rem);
  --fs-lead:  clamp(1.0625rem, 0.99rem + 0.36vw, 1.125rem);
  --fs-body:  1rem;
  --fs-sm:    0.9375rem;
  --fs-xs:    0.8125rem;
  --fs-label: 0.6875rem;

  /* Layout — content column resolves to 1320px on large screens */
  --wrap: 1400px;
  --gut:  clamp(20px, 3vw, 40px);
  --sec:  clamp(56px, 6.4vw, 104px);   /* 80–110 desktop, 55–75 mobile */
  --band: clamp(34px, 3.2vw, 52px);    /* compact information bands */
  --hdr:  76px;                        /* sticky main navigation */
  --topbar: 36px;

  --r:  3px;
  --r-lg: 4px;

  --sh-1: 0 1px 2px rgba(6, 23, 38, .05);
  --sh-2: 0 2px 12px rgba(6, 23, 38, .06);
  --sh-3: 0 14px 44px rgba(6, 23, 38, .11);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.14;
  letter-spacing: -0.024em;
  color: var(--ink);
}
h1 { font-size: var(--fs-hero); font-weight: 800; letter-spacing: -0.032em; }
h2 { font-size: var(--fs-h2);   font-weight: 700; letter-spacing: -0.028em; }
h3 { font-size: var(--fs-h3);   font-weight: 700; letter-spacing: -0.018em; }
h4 { font-size: var(--fs-h4);   font-weight: 700; letter-spacing: -0.012em; }

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

a { color: var(--brand-700); text-decoration: none; }
a:hover { color: var(--brand-600); }

ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-dark :focus-visible, .topbar :focus-visible, .footer :focus-visible {
  outline-color: var(--brand-300);
}

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 300;
  background: var(--navy-900); color: #fff;
  padding: 12px 20px; border-radius: var(--r);
  font-weight: 700; font-size: var(--fs-sm);
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 16px; color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: var(--sec); }
.section--tint { background: var(--tint); }

section[id] { scroll-margin-top: calc(var(--hdr) + 20px); }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: var(--fs-label); font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand-700);
  margin-bottom: 16px;
}
.eyebrow::after { content: ""; flex: 0 0 32px; height: 1px; background: var(--brand-300); }
.on-dark .eyebrow { color: var(--brand-300); }
.on-dark .eyebrow::after { background: rgba(135, 205, 233, .4); }

.section-head { max-width: 800px; margin-bottom: clamp(38px, 4.4vw, 60px); }
.section-head p {
  font-size: var(--fs-lead); color: var(--ink-2);
  margin-top: 18px; max-width: 68ch;
}
.on-dark .section-head p { color: var(--on-dark); }
.on-dark, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font: inherit; font-size: var(--fs-sm); font-weight: 700;
  letter-spacing: -0.004em;
  border: 1px solid transparent; border-radius: var(--r);
  cursor: pointer; text-align: center;
  transition: background-color .2s var(--ease), border-color .2s var(--ease),
              color .2s var(--ease), transform .2s var(--ease);
}
.btn svg { flex: none; }
.btn--primary { background: var(--brand-600); color: #fff; }
.btn--primary:hover { background: var(--brand-700); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10, 88, 120, .28); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand-500); color: var(--brand-700); }
.on-dark .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .34); }
.on-dark .btn--ghost:hover { border-color: var(--brand-300); color: var(--brand-300); }
.btn--sm { padding: 11px 20px; font-size: var(--fs-xs); }

/* --------------------------------------------------------------------------
   5. TOP INFORMATION BAR
   Scrolls away; only the main navigation below it is sticky.
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .8);
  font-size: var(--fs-xs);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: var(--topbar);
}
.topbar__contact { display: flex; align-items: center; gap: 22px; }
.topbar__contact a {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, .82);
  font-weight: 500; letter-spacing: .002em;
  transition: color .18s var(--ease);
}
.topbar__contact a:hover { color: var(--brand-300); }
.topbar__contact a svg { transition: transform .25s var(--ease); }
.topbar__contact a:hover svg { transform: translateY(-1px); }
.topbar__contact svg { width: 14px; height: 14px; color: var(--brand-300); flex: none; }

.social { display: flex; align-items: center; gap: 6px; }
.social a {
  display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 2px;
  color: rgba(255, 255, 255, .72);
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.social a:hover { color: var(--navy-900); background: var(--brand-300); }
.social svg { width: 14px; height: 14px; }

/* --------------------------------------------------------------------------
   6. MAIN NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .97);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .25s var(--ease);
}
.header.is-scrolled { box-shadow: 0 1px 18px rgba(6, 23, 38, .08); }
.header__inner { display: flex; align-items: center; gap: 18px; min-height: var(--hdr); }

/* Approved brand lockup: SC mark + company name + official tagline */
.brand {
  display: flex; align-items: center; gap: 13px;
  flex: none; margin-right: auto;
  color: var(--ink); padding: 4px 2px;
}
.brand:hover { color: var(--ink); }
.brand__mark { width: auto; height: 42px; }
.brand__text { display: flex; flex-direction: column; gap: 2px; line-height: 1.15; }
.brand__name {
  font-size: 1rem; font-weight: 800;
  letter-spacing: -0.018em; white-space: nowrap;
}
.brand__tag {
  font-size: 0.625rem; font-weight: 600;
  letter-spacing: 0.012em; color: var(--muted);
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav [data-mobile-cta] { display: none; }
.nav a {
  position: relative; display: block;
  padding: 10px 12px; white-space: nowrap;
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--ink-2); border-radius: var(--r);
  transition: color .18s var(--ease);
}
.nav a:hover { color: var(--brand-700); }
.nav a::after {
  content: ""; position: absolute;
  left: 12px; right: 12px; bottom: 3px; height: 2px;
  background: var(--brand-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav a.is-active { color: var(--brand-700); }
.nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.burger {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line);
  border-radius: var(--r); cursor: pointer; color: var(--ink);
}
.burger span { position: relative; display: block; width: 18px; height: 1.5px; background: currentColor;
               transition: transform .22s var(--ease), background-color .1s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: currentColor;
  transition: transform .22s var(--ease), top .22s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. HERO  — concise, horizontal composition
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media picture, .why__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 74% 50%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,23,38,.97) 0%, rgba(6,23,38,.92) 34%,
                           rgba(6,23,38,.66) 56%, rgba(6,23,38,.34) 78%,
                           rgba(6,23,38,.46) 100%),
    linear-gradient(180deg, rgba(6,23,38,.42) 0%, rgba(6,23,38,0) 40%,
                            rgba(6,23,38,.55) 100%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, .72fr);
  gap: 40px;
  align-items: center;
  /* border-box, so this is the finished hero height (target 520–580) */
  min-height: 560px;
  padding-block: clamp(40px, 4.4vw, 62px);
}
.hero__copy { max-width: 46rem; }

.hero__kicker {
  display: flex; align-items: center; flex-wrap: wrap; gap: 9px 13px;
  font-size: var(--fs-label); font-weight: 800;
  letter-spacing: 0.21em; text-transform: uppercase;
  color: var(--brand-300); margin-bottom: 20px;
}
.hero__kicker i { width: 3px; height: 3px; border-radius: 50%; background: rgba(135,205,233,.55); }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--brand-300); }
.hero__lead {
  font-size: var(--fs-lead); font-weight: 400;
  color: var(--on-dark);
  margin-top: 18px; max-width: 44rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }

/* Credibility element, right of the copy */
.hero__aside {
  justify-self: end; align-self: center;
  max-width: 250px; text-align: right;
  border-right: 2px solid var(--brand-300);
  padding-right: 26px;
}
.hero__aside dt {
  font-size: clamp(2rem, 1.5rem + 1.4vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1;
  color: var(--brand-300);
}
.hero__aside dd {
  margin: 10px 0 0;
  font-size: var(--fs-xs); font-weight: 600; line-height: 1.5;
  color: rgba(255, 255, 255, .78);
}
.hero__aside .hero__tagline {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  font-size: var(--fs-xs); font-weight: 700;
  color: rgba(255, 255, 255, .62);
}

/* --------------------------------------------------------------------------
   8. CREDIBILITY BAND
   -------------------------------------------------------------------------- */
.strip { border-bottom: 1px solid var(--line); background: var(--white); }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__item { padding: var(--band) 30px var(--band) 0; border-right: 1px solid var(--line-2); }
.strip__grid > .strip__item:first-child { padding-left: 0; }
.strip__item + .strip__item { padding-left: 30px; }
.strip__item:last-child { border-right: 0; padding-right: 0; }
.strip__k {
  display: block; font-size: 0.9375rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-700);
}
.strip__v { display: block; margin-top: 5px; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.5; }

/* --------------------------------------------------------------------------
   9. ABOUT
   -------------------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
}
.about__body p { font-size: var(--fs-lead); color: var(--ink-2); }
.about__body p:first-of-type { color: var(--ink); font-weight: 500; }
.about__note {
  margin-top: 28px; padding-left: 22px;
  border-left: 2px solid var(--brand-300);
  font-size: var(--fs-sm); color: var(--ink-2);
}
.about__figure img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--sh-3); }

/* --------------------------------------------------------------------------
   10. SERVICES — premium card catalogue, hierarchy preserved
   -------------------------------------------------------------------------- */
.tier-label {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 14px;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.tier-desc {
  max-width: 76ch; margin: 0 0 26px;
  font-size: var(--fs-sm); color: var(--ink-2);
}
.tier-label b {
  font-size: var(--fs-label); font-weight: 800;
  letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--brand-700);
}
.tier-label span { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.tier-label--quiet b { color: var(--muted); }
.tier-label--quiet span { font-weight: 500; color: var(--muted); }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.svc-card {
  display: flex; flex-direction: column;
  padding: clamp(24px, 2.2vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease),
              transform .3s var(--ease);
}
.svc-card::after {
  content: ""; position: absolute; left: -1px; right: -1px; top: -1px;
  height: 2px; background: var(--brand-400);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.svc-card__ico svg { transition: transform .3s var(--ease), color .3s var(--ease); }

/* Hover only where hovering is real — never gate content on it */
@media (hover: hover) and (pointer: fine) {
  .svc-card:hover {
    border-color: var(--brand-200);
    box-shadow: 0 14px 34px rgba(6, 23, 38, .10);
    transform: translateY(-5px);
  }
  .svc-card:hover::after { transform: scaleX(1); }
  .svc-card:hover .svc-card__ico svg { transform: translateY(-2px); color: var(--brand-500); }
}
.svc-card:focus-within {
  border-color: var(--brand-200);
  box-shadow: 0 14px 34px rgba(6, 23, 38, .10);
}
.svc-card__top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.svc-card__n {
  font-size: var(--fs-xs); font-weight: 800;
  letter-spacing: 0.08em; color: var(--brand-500);
}
.svc-card__ico { margin-left: auto; color: var(--brand-600); }
.svc-card__ico svg { width: 24px; height: 24px; }
.svc-card h4 { margin-bottom: 9px; }
.svc-card p { font-size: var(--fs-sm); color: var(--ink-2); }

/* Adjacent practice reads as a step down from flagship */
.svc-card--adjacent { background: var(--tint-2); }

/* Select-engagement capabilities: deliberately the lightest weight */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cap {
  padding: 22px 22px 24px;
  border-top: 2px solid var(--line);
}
.cap svg { width: 19px; height: 19px; color: var(--muted); margin-bottom: 12px; }
.cap h4 { font-size: var(--fs-sm); font-weight: 700; margin-bottom: 6px; }
.cap p { font-size: var(--fs-xs); color: var(--ink-2); line-height: 1.55; }

.svc-more { margin-top: clamp(38px, 4vw, 54px); }
.svc-more[hidden] { display: none; }
.svc-more.is-revealing { animation: reveal .45s var(--ease) both; }
@keyframes reveal { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.svc-more__block + .svc-more__block { margin-top: clamp(34px, 3.6vw, 48px); }

.svc-toggle { display: flex; justify-content: center; margin-top: 34px; }
.svc-toggle .btn { min-width: 250px; }

.scope-note {
  display: flex; gap: 11px; align-items: flex-start;
  margin-top: 20px; padding: 15px 18px;
  border: 1px dashed var(--line); border-radius: var(--r);
  font-size: var(--fs-xs); color: var(--muted); line-height: 1.6;
}
.scope-note svg { flex: none; width: 16px; height: 16px; margin-top: 2px; color: var(--brand-500); }

/* --------------------------------------------------------------------------
   11. WHY SPACENET — editorial, dividers not boxes
   -------------------------------------------------------------------------- */
.why { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.why__media { position: absolute; inset: 0; }
.why__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 76% 50%;
  filter: saturate(1.05);
}
.why__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,23,38,.96) 0%, rgba(6,23,38,.90) 40%,
                           rgba(6,23,38,.78) 72%, rgba(6,23,38,.70) 100%),
    linear-gradient(180deg, rgba(6,23,38,.28) 0%, rgba(6,23,38,0) 36%,
                            rgba(6,23,38,.38) 100%);
}
.why__inner { position: relative; }
.why__lede { max-width: 620px; margin-bottom: clamp(44px, 4.6vw, 66px); }
.why__lede p {
  font-size: var(--fs-lead); color: var(--on-dark); margin-top: 18px;
}

.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.why__item {
  padding: 30px clamp(20px, 2.2vw, 32px) 4px;
  border-top: 1px solid rgba(255, 255, 255, .26);
  border-left: 1px solid rgba(255, 255, 255, .14);
}
.why__grid > .why__item:first-child { border-left: 0; padding-left: 0; }
.why__grid > .why__item:last-child { padding-right: 0; }
.why__n {
  display: block; margin-bottom: 16px;
  font-size: var(--fs-xs); font-weight: 800;
  letter-spacing: 0.14em; color: var(--brand-300);
}
.why__item svg { width: 24px; height: 24px; color: var(--brand-300); margin-bottom: 16px; }
.why__item h3 { font-size: var(--fs-h4); margin-bottom: 10px; }
.why__item p { font-size: var(--fs-sm); color: var(--on-dark); }

/* --------------------------------------------------------------------------
   12. LEADERSHIP
   -------------------------------------------------------------------------- */
.lead__grid {
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 5vw, 78px);
}
.lead__name { font-size: clamp(1.875rem, 1.35rem + 1.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; }
.lead__role {
  margin-top: 7px; font-size: var(--fs-sm); font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-700);
}
.lead__rule { width: 48px; height: 2px; background: var(--brand-300); margin: 20px 0 22px; }
.lead__bio { font-size: var(--fs-lead); color: var(--ink-2); }
.lead__meta { margin-top: 22px; font-size: var(--fs-sm); color: var(--ink-2); }
.lead__pull {
  margin-top: 24px; padding: 18px 22px;
  background: var(--navy-900); border-radius: var(--r);
  border-left: 2px solid var(--brand-300);
  font-size: var(--fs-sm); font-weight: 600; line-height: 1.6; color: #fff;
}

.tl__title {
  font-size: var(--fs-label); font-weight: 800;
  letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.tl { position: relative; padding-left: 28px; }
.tl::before { content: ""; position: absolute; left: 4px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.tl__item { position: relative; padding-bottom: 30px; }
.tl__item:last-child { padding-bottom: 0; }
.tl__item::before {
  content: ""; position: absolute; left: -28px; top: 5px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--brand-400);
}
.tl__item:first-child::before { background: var(--brand-600); border-color: var(--brand-600); }
.tl__yr { font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.1em; color: var(--brand-700); }
.tl__role { margin-top: 4px; font-size: var(--fs-h4); font-weight: 700; }
.tl__org { font-size: var(--fs-sm); color: var(--ink-2); font-weight: 600; }
.tl__pts { margin-top: 11px; display: grid; gap: 7px; }
.tl__pts li { position: relative; padding-left: 17px; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.6; }
.tl__pts li::before { content: ""; position: absolute; left: 0; top: 10px; width: 7px; height: 1px; background: var(--brand-400); }
.tl__src { margin-top: 22px; font-size: var(--fs-xs); color: var(--muted); font-style: italic; }

/* --------------------------------------------------------------------------
   13. DELIVERY MODEL — connected horizontal steps
   -------------------------------------------------------------------------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(26px, 3vw, 52px); }
.step { position: relative; padding-top: 30px; }
.step::before {
  content: ""; position: absolute; left: 0; right: calc(-1 * clamp(26px, 3vw, 52px));
  top: 0; height: 1px; background: var(--line);
}
.step:last-child::before { right: 0; }
.step__n {
  position: absolute; top: -9px; left: 0;
  padding-right: 12px; background: var(--tint);
  font-size: var(--fs-xs); font-weight: 800;
  letter-spacing: 0.14em; color: var(--brand-600);
}
.step h3 { margin: 14px 0 10px; font-size: var(--fs-h4); }
.step p { font-size: var(--fs-sm); color: var(--ink-2); }

/* --------------------------------------------------------------------------
   14. CREDENTIALS — editorial grid
   -------------------------------------------------------------------------- */
.cred__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(34px, 4vw, 64px); }
.cred__title {
  font-size: var(--fs-label); font-weight: 800;
  letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--muted); padding-bottom: 12px; margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.cred__block + .cred__block { margin-top: clamp(30px, 3vw, 42px); }

.certs { display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; }
.certs li {
  display: flex; gap: 11px; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid var(--line-2);
  font-size: var(--fs-sm); font-weight: 600; color: var(--ink-2);
}
.certs li::before { content: ""; flex: none; width: 5px; height: 5px; border-radius: 50%; background: var(--brand-400); }
.certs li small { display: block; margin-top: 3px; font-weight: 500; font-size: var(--fs-xs); color: var(--muted); }
.certs li.certs__wide { grid-column: 1 / -1; }

.aff { display: grid; gap: 0; }
.aff li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--line-2);
  font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.55;
}
.aff svg { flex: none; width: 17px; height: 17px; color: var(--brand-600); margin-top: 3px; }
.aff b { display: block; font-weight: 700; color: var(--ink); }

.recog { background: var(--navy-900); color: #fff; border-radius: var(--r-lg); padding: clamp(26px, 2.8vw, 34px); }
.recog .cred__title { color: var(--brand-300); border-bottom-color: rgba(255,255,255,.18); }
.recog svg { width: 25px; height: 25px; color: var(--brand-300); margin-bottom: 14px; }
.recog p { font-size: var(--fs-sm); color: var(--on-dark); }
.recog cite { display: block; margin-top: 11px; font-style: normal; font-size: var(--fs-xs); color: rgba(255,255,255,.6); }

/* --------------------------------------------------------------------------
   15. CONTACT
   -------------------------------------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(38px, 4.4vw, 72px); }
.contact__list { display: grid; gap: 18px; margin-top: 30px; }
.contact__row { display: flex; gap: 15px; align-items: flex-start; }
.contact__ico {
  flex: none; width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--white); color: var(--brand-600);
}
.contact__ico svg { width: 18px; height: 18px; }
.contact__row dt {
  font-size: var(--fs-label); font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px;
}
.contact__row dd { margin: 0; font-size: var(--fs-body); font-weight: 600; }
.contact__row dd a { color: var(--ink); }
.contact__row dd a:hover { color: var(--brand-700); }

.form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(24px, 2.8vw, 38px);
  box-shadow: var(--sh-2);
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 20px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; font-size: var(--fs-xs); font-weight: 700; color: var(--ink-2); }
.req { color: #B3261E; margin-left: 2px; }

.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  font: inherit; font-size: var(--fs-sm); color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { min-height: 124px; resize: vertical; }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23597185' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 40px;
}
.field input::placeholder, .field textarea::placeholder { color: #95A8B7; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #C6D3DC; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(29, 143, 191, .18);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 3px solid var(--brand-500); outline-offset: 1px;
}
.field .err { display: none; margin-top: 6px; font-size: var(--fs-xs); font-weight: 600; color: #B3261E; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #B3261E; background: #FEF6F5; }
.field.is-invalid .err { display: block; }

/* Honeypot — hidden from people, visible to naive bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 15px; margin-top: 22px; }
.form__foot small { font-size: var(--fs-xs); color: var(--muted); }

.form__status { display: none; margin-top: 20px; padding: 16px 18px; border-radius: var(--r);
                font-size: var(--fs-sm); font-weight: 600; border: 1px solid transparent; }
.form__status.is-ok   { display: flex; gap: 10px; align-items: flex-start; background: #EAF7F0; border-color: #B7E0C8; color: #14603A; }
.form__status.is-fail { display: flex; gap: 10px; align-items: flex-start; background: #FDF0EF; border-color: #F0C4C0; color: #8C1D18; }
.form__status.is-info { display: flex; gap: 10px; align-items: flex-start; background: var(--brand-050); border-color: var(--brand-200); color: var(--brand-700); }
.form__status svg { flex: none; width: 18px; height: 18px; margin-top: 2px; }
.form__status-note { display: block; margin-top: 5px; font-style: normal; font-weight: 500;
                     font-size: var(--fs-xs); line-height: 1.5; opacity: .95; }

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.footer { background: var(--navy-900); color: rgba(255, 255, 255, .72); }
.footer__top {
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr) minmax(0, 1fr);
  gap: clamp(32px, 3.6vw, 64px);
  padding-block: clamp(46px, 5vw, 70px);
}
.footer__logo { width: 155px; height: auto; max-width: 100%; }
.footer__tag { margin-top: 18px; font-size: var(--fs-sm); font-weight: 700; color: var(--brand-300); }
.footer__blurb { margin-top: 12px; font-size: var(--fs-sm); max-width: 34ch; }
.footer__social { margin-top: 22px; }
.footer__social .social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.18); }
.footer__social .social svg { width: 15px; height: 15px; }

.footer h4 {
  font-size: var(--fs-label); font-weight: 800; letter-spacing: 0.17em;
  text-transform: uppercase; color: rgba(255, 255, 255, .5); margin-bottom: 16px;
}
.footer__nav { display: grid; gap: 10px; }
.footer__nav a, .footer__contact a { color: rgba(255, 255, 255, .78); font-size: var(--fs-sm); }
.footer__nav a:hover, .footer__contact a:hover { color: var(--brand-300); }
.footer__contact { display: grid; gap: 11px; font-size: var(--fs-sm); font-style: normal; }

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 22px;
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  align-items: center; justify-content: space-between;
  font-size: var(--fs-xs); color: rgba(255, 255, 255, .5);
}
.footer__credit { color: rgba(255, 255, 255, .42); }
.footer__credit a { color: rgba(255, 255, 255, .6); border-bottom: 1px solid rgba(255,255,255,.2); }
.footer__credit a:hover { color: var(--brand-300); border-bottom-color: var(--brand-300); }

/* --------------------------------------------------------------------------
   17. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1260px) {
  .nav a { padding: 10px 9px; font-size: 0.875rem; }
  .nav a::after { left: 9px; right: 9px; }
  .btn--header { padding: 11px 16px; }
}

@media (max-width: 1135px) {
  :root { --hdr: 70px; }

  .burger { display: inline-flex; }
  .header__inner { gap: 12px; }
  .header .btn--header { display: none; }

  .nav {
    position: fixed; top: var(--hdr); left: 0; right: 0;
    max-height: calc(100dvh - var(--hdr)); overflow-y: auto;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--gut) 26px;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(6, 23, 38, .14);
    transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .nav a { padding: 15px 4px; font-size: 1rem; font-weight: 700; border-bottom: 1px solid var(--line-2); }
  .nav a::after { display: none; }
  .nav [data-mobile-cta] { display: inline-flex; margin-top: 18px; border-bottom: 0; }

  .hero__inner { grid-template-columns: 1fr; gap: 30px; min-height: 0; }
  .hero__aside {
    justify-self: start; text-align: left;
    border-right: 0; padding-right: 0;
    border-left: 2px solid var(--brand-300); padding-left: 20px;
    max-width: none;
  }

  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__figure { order: -1; }

  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }

  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid > .why__item:nth-child(3) { border-left: 0; padding-left: 0; }
  .why__grid > .why__item:nth-child(2) { padding-right: 0; }

  .lead__grid { grid-template-columns: 1fr; gap: 40px; }
  .cred__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .topbar__contact { gap: 14px; }
  .topbar__contact .topbar__label { display: none; }
  .topbar__contact a { gap: 0; }
  .topbar__contact svg { width: 15px; height: 15px; }

  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .strip__item { padding: 20px 18px 20px 0; border-bottom: 1px solid var(--line-2); }
  .strip__item:nth-child(2n) { border-right: 0; padding-right: 0; }
  .strip__item:nth-child(2n+1) { padding-left: 0; }
  .strip__item:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }

  .steps { grid-template-columns: 1fr; gap: 24px; }
  .step::before { right: 0; }
  .certs { grid-template-columns: 1fr; gap: 0; }
  .form__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 100%; }
  .svc-toggle .btn { width: 100%; }
}

@media (max-width: 620px) {
  .svc-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .why__item, .why__grid > .why__item:nth-child(3) { border-left: 0; padding-left: 0; padding-right: 0; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bar { justify-content: flex-start; }
  .brand__mark { height: 34px; }
  .brand__name { font-size: 0.875rem; }
  .brand__tag { font-size: 0.5625rem; }
}

@media (max-width: 480px) {
  /* Keep the full lockup — name + official tagline — but let it use the
     room the burger leaves rather than wrapping into four lines. */
  .brand { min-width: 0; margin-right: 12px; }
  .brand__text { min-width: 0; }
  .brand__name { white-space: normal; font-size: 0.8125rem; line-height: 1.2; }
  .brand__tag  { white-space: normal; font-size: 0.5rem; line-height: 1.25; }
  .brand__mark { height: 30px; }
  .topbar { font-size: 0.75rem; }
}

/* --------------------------------------------------------------------------
   18. CREDIBILITY BAND  (non-attributed value statements)
   -------------------------------------------------------------------------- */
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.value {
  padding: 34px clamp(22px, 2.4vw, 40px) 6px;
  border-top: 2px solid var(--navy-900);
  border-left: 1px solid var(--line);
}
.values__grid > .value:first-child { border-left: 0; padding-left: 0; }
.values__grid > .value:last-child { padding-right: 0; }
.value svg { width: 24px; height: 24px; color: var(--brand-600); margin-bottom: 18px; }
.value h3 { font-size: var(--fs-h4); margin-bottom: 10px; }
.value p { font-size: var(--fs-sm); color: var(--ink-2); }

@media (max-width: 900px) {
  .values__grid { grid-template-columns: 1fr; }
  .value { border-left: 0; padding-left: 0; padding-right: 0; padding-top: 26px; }
  .values__grid > .value + .value { border-top-width: 1px; border-top-color: var(--line); }
}

/* --------------------------------------------------------------------------
   19. FAQ — editorial accordion, thin dividers, no plugin look
   -------------------------------------------------------------------------- */
.faq { max-width: 940px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }

.faq__q {
  display: flex; align-items: flex-start; gap: 20px;
  width: 100%; margin: 0; padding: 24px 0;
  background: none; border: 0; cursor: pointer;
  font: inherit; font-size: var(--fs-h4); font-weight: 700;
  letter-spacing: -0.012em; line-height: 1.4;
  color: var(--ink); text-align: left;
  transition: color .25s var(--ease);
}
.faq__q:hover { color: var(--brand-700); }
.faq__item.is-open .faq__q { color: var(--brand-700); }

.faq__mark {
  flex: none; position: relative;
  width: 22px; height: 22px; margin-top: 3px;
  border: 1px solid var(--line); border-radius: 50%;
  transition: border-color .25s var(--ease), background-color .25s var(--ease),
              transform .35s var(--ease);
}
.faq__mark::before, .faq__mark::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--brand-600);
  transform: translate(-50%, -50%);
  transition: opacity .25s var(--ease), background-color .25s var(--ease);
}
.faq__mark::before { width: 9px; height: 1.5px; }
.faq__mark::after  { width: 1.5px; height: 9px; }
.faq__item.is-open .faq__mark { border-color: var(--brand-600); background: var(--brand-600); transform: rotate(90deg); }
.faq__item.is-open .faq__mark::before { background: #fff; }
.faq__item.is-open .faq__mark::after { opacity: 0; }

/* grid-rows technique animates to the answer's real height */
.faq__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}
.faq__item.is-open .faq__panel { grid-template-rows: 1fr; }
.faq__panel > div { overflow: hidden; }
.faq__panel p {
  max-width: 78ch;
  padding: 0 0 26px 42px;
  font-size: var(--fs-sm); line-height: 1.72; color: var(--ink-2);
}

@media (max-width: 620px) {
  .faq__q { gap: 14px; padding: 20px 0; font-size: 1rem; }
  .faq__panel p { padding-left: 36px; padding-bottom: 22px; }
}

/* --------------------------------------------------------------------------
   20. FLOATING WHATSAPP WIDGET
   -------------------------------------------------------------------------- */
.wa {
  position: fixed; z-index: 120;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}

.wa__panel {
  width: 322px; max-width: calc(100vw - 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 18px 50px rgba(6, 23, 38, .22);
  overflow: hidden;
  transform-origin: bottom right;
  opacity: 0; visibility: hidden;
  transform: translateY(10px) scale(.97);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.wa.is-open .wa__panel { opacity: 1; visibility: visible; transform: none; }

.wa__head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; background: var(--navy-900); color: #fff;
}
.wa__head svg { width: 22px; height: 22px; color: #25D366; flex: none; }
.wa__head b { display: block; font-size: var(--fs-sm); font-weight: 700; }
.wa__head span { display: block; font-size: 0.6875rem; color: rgba(255,255,255,.62); margin-top: 1px; }
.wa__close {
  margin-left: auto; width: 28px; height: 28px;
  display: grid; place-items: center;
  background: none; border: 0; cursor: pointer; color: rgba(255,255,255,.7);
  border-radius: 2px; transition: color .2s var(--ease);
}
.wa__close:hover { color: #fff; }
.wa__close svg { width: 14px; height: 14px; color: currentColor; }

.wa__body { padding: 18px; }
.wa__body p { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.6; }
.wa__cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; margin-top: 16px; padding: 13px 18px;
  background: #25D366; color: #06301A;
  border-radius: var(--r);
  font-size: var(--fs-sm); font-weight: 800; letter-spacing: -0.004em;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.wa__cta:hover { background: #1FB856; color: #06301A; transform: translateY(-1px); }
.wa__cta svg { width: 17px; height: 17px; flex: none; }
.wa__num { display: block; margin-top: 10px; font-size: var(--fs-xs); color: var(--muted); text-align: center; }

.wa__toggle {
  width: 56px; height: 56px; flex: none;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  border: 0; border-radius: 50%; cursor: pointer;
  box-shadow: 0 8px 24px rgba(6, 23, 38, .26), 0 0 0 1px rgba(6, 23, 38, .12);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease);
}
.wa__toggle:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(6, 23, 38, .32), 0 0 0 1px rgba(6, 23, 38, .16); }
.wa__toggle svg { width: 29px; height: 29px; }
.wa__toggle .wa__x { display: none; }
.wa.is-open .wa__toggle { background: var(--navy-900); }
.wa.is-open .wa__toggle .wa__mark { display: none; }
.wa.is-open .wa__toggle .wa__x { display: block; width: 18px; height: 18px; }

/* Quiet ping — one slow pulse, not continuous motion */
.wa__toggle::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; opacity: 0;
}
.wa__toggle { position: relative; }
.wa:not(.is-open) .wa__toggle.is-hinting::after { animation: waPing 2.4s var(--ease) 2; }
@keyframes waPing {
  0%   { opacity: .55; transform: scale(1); }
  70%  { opacity: 0;   transform: scale(1.45); }
  100% { opacity: 0;   transform: scale(1.45); }
}

@media (max-width: 560px) {
  .wa { right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); }
  .wa__panel { width: calc(100vw - 32px); }
  .wa__toggle { width: 52px; height: 52px; }
  .wa__toggle svg { width: 27px; height: 27px; }
}

/* --------------------------------------------------------------------------
   21. MOTION SYSTEM
   -------------------------------------------------------------------------- */

/* Scroll reveal — opacity + transform only, so it stays on the compositor.
   Scoped to .js: without JavaScript the content simply renders as normal. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .62s var(--ease), transform .62s var(--ease);
  transition-delay: calc(var(--i, 0) * 85ms);
  will-change: opacity, transform;
}
.js .reveal.is-in { opacity: 1; transform: none; will-change: auto; }

/* Hero entrance — a single ordered sequence on load */
.hero__media img { animation: heroMedia 1.5s var(--ease) both; }
.hero__media::after { animation: heroVeil 1.2s var(--ease) both; }
@keyframes heroMedia { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1.03); } }
@keyframes heroVeil  { from { opacity: 0; } to { opacity: 1; } }

/* Very slow Ken Burns after the entrance settles; stays within 1.03–1.07 */
.hero.is-loaded .hero__media img {
  animation: heroMedia 1.5s var(--ease) both, heroDrift 46s ease-in-out 1.5s infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to   { transform: scale(1.07) translate3d(-1.1%, -0.7%, 0); }
}

.hero__copy > *, .hero__aside {
  opacity: 0; transform: translateY(16px);
  animation: heroRise .8s var(--ease) both;
}
@keyframes heroRise { to { opacity: 1; transform: none; } }
.hero__kicker  { animation-delay: .30s; }
.hero h1       { animation-delay: .42s; }
.hero__lead    { animation-delay: .56s; }
.hero__actions { animation-delay: .70s; }
.hero__aside   { animation-delay: .84s; }

/* Revealed services animate in rather than snapping into place */
.svc-more.is-revealing .svc-more__block { animation: reveal .55s var(--ease) both; }
.svc-more.is-revealing .svc-more__block:nth-child(2) { animation-delay: .12s; }
.svc-more.is-revealing .svc-card,
.svc-more.is-revealing .cap { animation: reveal .5s var(--ease) both; }
.svc-more.is-revealing .svc-card:nth-child(2),
.svc-more.is-revealing .cap:nth-child(2) { animation-delay: .07s; }
.svc-more.is-revealing .svc-card:nth-child(3),
.svc-more.is-revealing .cap:nth-child(3) { animation-delay: .14s; }
.svc-more.is-revealing .cap:nth-child(4) { animation-delay: .21s; }
@keyframes reveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.svc-toggle .btn svg { transition: transform .3s var(--ease); }
.svc-toggle .btn:hover svg { transform: translateY(1px); }

/* --------------------------------------------------------------------------
   22. REDUCED MOTION — content always visible, motion removed
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0ms !important;
    transition-duration: .001ms !important;
    transition-delay: 0ms !important;
  }

  .js .reveal, .reveal { opacity: 1 !important; transform: none !important; }
  .hero__copy > *, .hero__aside { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero__media img,
  .hero.is-loaded .hero__media img { animation: none !important; transform: none !important; opacity: 1 !important; }
  .hero__media::after { animation: none !important; opacity: 1 !important; }
  .svc-card:hover { transform: none !important; }
  .btn--primary:hover, .wa__cta:hover, .wa__toggle:hover { transform: none !important; }
  .wa:not(.is-open) .wa__toggle.is-hinting::after { animation: none !important; }
  .faq__panel { transition: none !important; }
}

/* --------------------------------------------------------------------------
   23. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .topbar, .header, .burger, .hero__actions, .form, .footer__nav,
  .svc-toggle, .wa { display: none !important; }
  .hero, .why, .footer, .recog, .lead__pull { background: #fff !important; color: #000 !important; }
  .hero__media, .why__media { display: none !important; }
  .on-dark, .on-dark h2, .on-dark h3, .hero h1, .recog p { color: #000 !important; }
  .svc-more { display: block !important; }
  .faq__panel { grid-template-rows: 1fr !important; }
  .js .reveal, .reveal, .hero__copy > *, .hero__aside { opacity: 1 !important; transform: none !important; animation: none !important; }
  body { font-size: 11pt; }
}
