/* ==========================================================================
   ECG Healthcare Group — Design System
   Brand preserved: #00a0de (ECG Blue) · #2bac70 (ECG Green) · #499bdf
   Typeface preserved: Plus Jakarta Sans
   ========================================================================== */

/* ---------- 1. Fonts ---------- */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url('../fonts/plus-jakarta-sans-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url('../fonts/plus-jakarta-sans-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- 2. Design tokens ---------- */
:root {
  /* Brand — unchanged */
  --brand-blue: #00a0de;
  --brand-green: #2bac70;
  --brand-sky: #499bdf;

  /* Brand tints & shades (derived, not new hues) */
  --blue-950: #00293a;
  --blue-900: #003f59;
  --blue-800: #005a7d;
  --blue-700: #0079a8;
  --blue-600: #008ec4;
  --blue-500: #00a0de;
  --blue-400: #33b6e6;
  --blue-300: #66c9ed;
  --blue-200: #a3ddf4;
  --blue-100: #d2eefa;
  --blue-50:  #eff9fd;

  --green-800: #1c714a;
  --green-700: #22885a;
  --green-600: #269a66;
  --green-500: #2bac70;
  --green-400: #55bd8d;
  --green-300: #85d0ab;
  --green-200: #b6e3ca;
  --green-100: #ddf2e7;
  --green-50:  #f0faf5;

  /* Neutrals */
  --ink-900: #000000;
  --ink-800: #0f1416;
  --ink-700: #1d2529;
  --ink-600: #313131;
  --ink-500: #4b5358;
  --ink-400: #6c767c;
  --ink-300: #98a2a8;
  --ink-200: #c9d1d6;
  --ink-100: #e6ebee;
  --ink-50:  #f4f7f9;

  /* Surfaces */
  --surface: #ffffff;
  --surface-muted: #f8f8f8;
  --surface-tint: #f5fbfe;
  --surface-ink: #000000;
  --border: rgba(15, 20, 22, .08);
  --border-strong: rgba(15, 20, 22, .14);

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
  --grad-brand-soft: linear-gradient(135deg, var(--blue-50) 0%, var(--green-50) 100%);
  --grad-ink: linear-gradient(160deg, #0b1013 0%, #000000 100%);

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 44px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(15,20,22,.05);
  --sh-sm: 0 2px 8px rgba(15,20,22,.06), 0 1px 2px rgba(15,20,22,.04);
  --sh-md: 0 12px 32px -12px rgba(15,20,22,.16), 0 2px 8px rgba(15,20,22,.05);
  --sh-lg: 0 28px 60px -24px rgba(15,20,22,.22), 0 6px 16px rgba(15,20,22,.06);
  --sh-xl: 0 48px 96px -32px rgba(15,20,22,.28), 0 10px 24px rgba(15,20,22,.07);
  --sh-brand: 0 16px 40px -14px rgba(0,160,222,.5);
  --sh-brand-lg: 0 24px 56px -16px rgba(0,160,222,.55);

  /* Layout */
  --wrap: 1280px;
  --wrap-narrow: 880px;
  --gutter: clamp(20px, 4.5vw, 64px);
  --section-y: clamp(48px, 5.5vw, 88px);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.4, .5, 1);
  --t-fast: .18s;
  --t: .32s;
  --t-slow: .6s;

  /* Header */
  --header-h: 104px;
  --header-h-sm: 76px;
}

/* ---------- 3. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-600);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.nav-open, body.privacy-open { overflow: hidden; }
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { margin: 0; color: var(--ink-900); font-weight: 700; line-height: 1.14; letter-spacing: -.022em; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--blue-200); color: var(--blue-950); }
:focus-visible { outline: 3px solid var(--brand-blue); outline-offset: 3px; border-radius: 4px; }

.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;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 999;
  transform: translateY(-160%);
  background: var(--ink-900); color: #fff; padding: 12px 22px;
  border-radius: var(--r-pill); font-weight: 600; font-size: 15px;
  transition: transform var(--t) var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- 4. Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { width: 100%; max-width: 1560px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(36px, 4vw, 58px); }
.section--muted { background: var(--surface-muted); }
.section--tint { background: var(--surface-tint); }
.section--soft { background: var(--grad-brand-soft); }

.grid { display: grid; gap: clamp(24px, 3vw, 48px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }

/* ---------- 5. Type scale ---------- */
/* Line-heights are set generously so descenders (g, p, y) are never clipped. */
.display   { font-size: clamp(2.05rem, 3.9vw, 3.4rem); line-height: 1.14; letter-spacing: -.03em; font-weight: 700; }
.h1        { font-size: clamp(1.9rem, 3.2vw, 2.8rem);  line-height: 1.18; letter-spacing: -.028em; }
.h2        { font-size: clamp(1.6rem, 2.5vw, 2.25rem); line-height: 1.24; letter-spacing: -.024em; }
.h3        { font-size: clamp(1.28rem, 1.8vw, 1.65rem);line-height: 1.32; letter-spacing: -.018em; }
.h4        { font-size: clamp(1.1rem, 1.35vw, 1.26rem);line-height: 1.4;  letter-spacing: -.012em; }
.lead      { font-size: clamp(1.06rem, 1.35vw, 1.28rem); line-height: 1.72; color: var(--ink-500); font-weight: 400; }
.body-lg   { font-size: clamp(1rem, 1.15vw, 1.1rem); line-height: 1.8; color: var(--ink-500); }
.balance   { text-wrap: balance; }
.pretty    { text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-700);
}
.eyebrow::before {
  content: ''; width: 26px; height: 2px; border-radius: 2px;
  background: var(--grad-brand); flex: none;
}
.eyebrow--light { color: var(--blue-300); }
.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- 6. Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px 8px 13px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  font-size: .82rem; font-weight: 600; letter-spacing: .01em; color: #fff;
}
.badge--light {
  background: var(--blue-50); border-color: var(--blue-100); color: var(--blue-800);
}
.badge__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand-green); flex: none;
  box-shadow: 0 0 0 4px rgba(43,172,112,.25);
  animation: pulse-dot 2.6s var(--ease) infinite;
}
.badge__text { min-width: 0; }
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(43,172,112,.3); }
  50%     { box-shadow: 0 0 0 7px rgba(43,172,112,0); }
}

/* ---------- 7. Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px;
  border: 1px solid transparent; border-radius: var(--r-pill);
  font-size: .97rem; font-weight: 600; letter-spacing: -.005em;
  cursor: pointer; white-space: nowrap; isolation: isolate;
  transition: transform var(--t) var(--ease-spring), box-shadow var(--t) var(--ease),
              background-color var(--t) var(--ease), color var(--t) var(--ease),
              border-color var(--t) var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform var(--t) var(--ease-spring); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: .08s; }
.btn:hover svg.i-arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--brand-blue); color: #fff; box-shadow: var(--sh-brand);
}
.btn--primary::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--grad-brand); opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.btn--primary:hover { box-shadow: var(--sh-brand-lg); }
.btn--primary:hover::before { opacity: 1; }

.btn--ghost {
  background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.btn--ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }

.btn--outline {
  background: transparent; color: var(--ink-900); border-color: var(--border-strong);
}
.btn--outline:hover {
  border-color: var(--brand-blue); color: var(--blue-700);
  background: var(--blue-50); box-shadow: var(--sh-md);
}

.btn--dark { background: var(--ink-900); color: #fff; }
.btn--dark:hover { background: var(--blue-800); box-shadow: var(--sh-md); }

.btn--sm { padding: 12px 22px; font-size: .9rem; }
.btn--lg { padding: 19px 38px; font-size: 1.03rem; }

/* Text link with animated underline */
.link-u {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--blue-700);
  transition: color var(--t) var(--ease);
}
.link-u::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 2px; width: 100%;
  background: currentColor; border-radius: 2px;
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--t) var(--ease-out);
}
.link-u:hover::after { transform: scaleX(1); transform-origin: left; }
.link-u svg { width: 16px; height: 16px; transition: transform var(--t) var(--ease-spring); }
.link-u:hover svg { transform: translateX(3px); }

/* ---------- 8. Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: height var(--t) var(--ease), background-color var(--t) var(--ease),
              box-shadow var(--t) var(--ease), border-color var(--t) var(--ease),
              backdrop-filter var(--t) var(--ease), transform var(--t-slow) var(--ease);
}
/* Pages with a dark hero start transparent-on-dark */
.site-header[data-mode="over"] { background: transparent; }
.site-header[data-mode="over"] .nav-link,
.site-header[data-mode="over"] .nav-toggle__box { color: #fff; }
.site-header[data-mode="over"] .nav-toggle__bar { background: #fff; }
/* Homepage top state: no plate behind the logo — it sits clean on the hero.
   A soft drop-shadow keeps it legible while preserving the exact brand colours.
   On scroll the shadow lifts and the logo settles onto the glass bar. */
.site-header[data-mode="over"]:not(.is-stuck):not(.nav-is-open) .brand__img {
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.55)) drop-shadow(0 4px 20px rgba(0,0,0,.4));
}

.site-header.is-stuck,
.site-header[data-mode="solid"] {
  height: var(--header-h-sm);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px -20px rgba(15,20,22,.24);
}
.site-header.is-stuck .nav-link,
.site-header[data-mode="solid"] .nav-link { color: var(--ink-700); }
.site-header.is-stuck .nav-toggle__bar,
.site-header[data-mode="solid"] .nav-toggle__bar { background: var(--ink-900); }
.site-header.is-hidden { transform: translateY(-100%); }

/* While the mobile drawer is open the bar always goes light, so the close icon reads. */
.site-header.nav-is-open {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
  transform: none;
}
.site-header.nav-is-open .nav-toggle__bar { background: var(--ink-900); }
.site-header.nav-is-open .nav-toggle { border-color: var(--border-strong); }

.header-inner {
  width: 100%; max-width: 1560px; margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand { display: flex; align-items: center; flex: none; }
.brand__img {
  height: clamp(38px, 4.4vw, 54px); width: auto;
  transition: height var(--t) var(--ease), filter var(--t) var(--ease), transform var(--t) var(--ease-spring);
}
.site-header.is-stuck .brand__img { height: clamp(34px, 3.6vw, 42px); }
.brand:hover .brand__img { transform: scale(1.04); }

.nav { display: flex; align-items: center; gap: clamp(6px, 1.6vw, 14px); }
.nav-list { display: flex; align-items: center; gap: clamp(2px, .8vw, 10px); }
.nav-link {
  position: relative; display: block;
  padding: 11px 16px; border-radius: var(--r-pill);
  font-size: .96rem; font-weight: 600; letter-spacing: -.005em; color: var(--ink-700);
  transition: color var(--t) var(--ease), background-color var(--t) var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px;
  border-radius: 2px; background: var(--grad-brand);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--t) var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-link:hover { color: var(--brand-blue); }
.nav-link[aria-current="page"] { color: var(--brand-blue); }
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
.site-header[data-mode="over"]:not(.is-stuck) .nav-link[aria-current="page"] { color: #fff; }

.nav-cta { margin-left: clamp(4px, 1vw, 14px); }
.site-header[data-mode="over"]:not(.is-stuck) .nav-cta.btn--primary {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: none;
}
.site-header[data-mode="over"]:not(.is-stuck) .nav-cta.btn--primary:hover {
  background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.5);
}

/* Mobile toggle */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 46px; height: 46px; padding: 0; flex: none;
  background: transparent; border: 1px solid var(--border-strong);
  border-radius: 14px; cursor: pointer;
  transition: background-color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.site-header[data-mode="over"]:not(.is-stuck) .nav-toggle { border-color: rgba(255,255,255,.35); }
.nav-toggle:hover { background: rgba(0,160,222,.08); border-color: var(--brand-blue); }
.nav-toggle__box { position: relative; width: 20px; height: 14px; }
.nav-toggle__bar {
  position: absolute; left: 0; height: 2px; width: 100%; border-radius: 2px;
  background: var(--ink-900);
  transition: transform var(--t) var(--ease-spring), opacity var(--t-fast) var(--ease), width var(--t) var(--ease);
}
.nav-toggle__bar:nth-child(1) { top: 0; }
.nav-toggle__bar:nth-child(2) { top: 6px; width: 72%; }
.nav-toggle__bar:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  display: grid; align-content: start;
  padding: calc(var(--header-h-sm) + 40px) var(--gutter) 48px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(28px) saturate(180%); -webkit-backdrop-filter: blur(28px) saturate(180%);
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav__list { display: grid; gap: 6px; border-top: 1px solid var(--border); }
.mobile-nav__link {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 1.5rem; font-weight: 700; letter-spacing: -.025em; color: var(--ink-900);
  opacity: 0; transform: translateY(14px);
  transition: color var(--t) var(--ease), opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.mobile-nav.is-open .mobile-nav__link { opacity: 1; transform: translateY(0); }
.mobile-nav.is-open .mobile-nav__link:nth-child(1) { transition-delay: .06s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(2) { transition-delay: .12s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(3) { transition-delay: .18s; }
.mobile-nav__link:hover, .mobile-nav__link[aria-current="page"] { color: var(--brand-blue); }
.mobile-nav__link svg { width: 20px; height: 20px; color: var(--ink-300); transition: transform var(--t) var(--ease-spring), color var(--t) var(--ease); }
.mobile-nav__link:hover svg { transform: translateX(5px); color: var(--brand-blue); }
.mobile-nav__foot {
  margin-top: 40px; display: grid; gap: 14px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease-out) .26s, transform .5s var(--ease-out) .26s;
}
.mobile-nav.is-open .mobile-nav__foot { opacity: 1; transform: translateY(0); }
.mobile-nav__contact { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink-700); }
.mobile-nav__contact svg { width: 20px; height: 20px; color: var(--brand-blue); flex: none; }

/* ---------- 9. Hero (home) ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(84vh, 760px);
  display: flex; align-items: flex-end;
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: clamp(36px, 4vw, 60px);
  background: var(--ink-900);
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; z-index: -2; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.06);
}
.hero__slide.is-active .hero__slide-img { animation: kenburns 9s var(--ease) forwards; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,10,.62) 0%, rgba(10,10,10,.24) 34%, rgba(10,10,10,.82) 100%),
    linear-gradient(100deg, rgba(0,41,58,.72) 0%, rgba(10,10,10,.18) 62%);
}
.hero__glow {
  position: absolute; z-index: -1; pointer-events: none;
  width: min(52vw, 660px); aspect-ratio: 1; border-radius: 50%;
  filter: blur(90px); opacity: .34;
}
.hero__glow--a { top: -14%; right: -8%; background: radial-gradient(circle, var(--brand-blue), transparent 68%); }
.hero__glow--b { bottom: -20%; left: -10%; background: radial-gradient(circle, var(--brand-green), transparent 68%); }

.hero__inner { position: relative; width: 100%; }
.hero__content { max-width: 940px; padding-left: clamp(36px, 3.4vw, 52px); color: #fff; }
.hero__title { color: #fff; margin: 22px 0 0; }
/* padding + matching negative margin keeps the reveal mask without clipping descenders */
.hero__title .word {
  display: inline-block; overflow: hidden; vertical-align: bottom;
  padding-bottom: .14em; margin-bottom: -.14em;
}
.hero__title .word > span {
  display: inline-block;
  transform: translateY(105%);
  animation: word-up .95s var(--ease-out) forwards;
}
@keyframes word-up { to { transform: translateY(0); } }
.hero__sub {
  margin-top: 22px; max-width: 600px;
  font-size: clamp(1rem, 1.15vw, 1.12rem); line-height: 1.7;
  color: rgba(255,255,255,.82);
}
.hero__actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__bar {
  position: relative; min-height: 70px; margin-top: clamp(32px, 4vw, 56px);
  display: flex; align-items: flex-end; justify-content: center;
}
.hero__dots { display: flex; align-items: center; justify-content: center; gap: 10px; }
.hero__dot {
  width: 34px; height: 4px; padding: 0; border: 0; border-radius: 2px; cursor: pointer;
  background: rgba(255,255,255,.28); overflow: hidden; position: relative;
  transition: background-color var(--t) var(--ease), width var(--t) var(--ease);
}
.hero__dot:hover { background: rgba(255,255,255,.5); }
.hero__dot.is-active { width: 62px; background: rgba(255,255,255,.3); }
.hero__dot.is-active::after {
  content: ''; position: absolute; inset: 0; background: #fff; transform-origin: left;
  animation: dot-fill 6.5s linear forwards;
}
@keyframes dot-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero__count {
  position: absolute; left: 50%; bottom: 43px; transform: translateX(-50%);
  font-size: .76rem; font-weight: 600; letter-spacing: .1em; color: rgba(255,255,255,.6); font-variant-numeric: tabular-nums;
}
.hero__arrows { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.hero__arrow {
  position: absolute; top: 50%; width: 48px; height: 48px; display: grid; place-items: center; padding: 0; cursor: pointer;
  border-radius: 50%; color: #fff;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transform: translateY(-50%); pointer-events: auto;
  transition: background-color var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease-spring);
}
.hero__arrow:first-child { left: clamp(12px, 2.8vw, 42px); }
.hero__arrow:last-child { right: clamp(12px, 2.8vw, 42px); }
.hero__arrow:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); transform: translateY(-50%) scale(1.07); }
.hero__arrow svg { width: 20px; height: 20px; }

/* ---------- 10. Page hero (inner pages) ---------- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(32px, 3.6vw, 56px));
  padding-bottom: clamp(32px, 3.6vw, 56px);
  background: linear-gradient(180deg, var(--blue-50) 0%, #fff 100%);
}

/* Two-column banner: copy on the left, a premium image card on the right */
.page-hero__layout {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(30px, 3.8vw, 58px);
  align-items: center;
}
.page-hero__copy > * + * { margin-top: 18px; }
.page-hero__h1 { margin: 0; }
.page-hero__lead { max-width: 46ch; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 6px; }

/* Trust row under the banner CTAs */
.page-hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 24px;
  padding-top: 20px; margin-top: 24px;
  border-top: 1px solid var(--border);
}
.page-hero__meta-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 600; color: var(--ink-500);
}
.page-hero__meta-item svg { width: 18px; height: 18px; color: var(--brand-green); flex: none; }

/* Image side */
.page-hero__media { position: relative; }
.page-hero__media .media { border-radius: var(--r-2xl); }
.page-hero__media::before {
  content: ''; position: absolute; inset: auto -20px -20px auto;
  width: 60%; height: 58%; border-radius: var(--r-2xl); z-index: -1;
  background: var(--grad-brand); opacity: .14; filter: blur(8px);
}
.page-hero__chip {
  position: absolute; left: clamp(-14px, -1.2vw, 0px); bottom: clamp(22px, 2.6vw, 34px); z-index: 3;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 24px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(22px) saturate(180%); -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: var(--sh-lg);
}
.page-hero__chip-icon {
  width: 44px; height: 44px; flex: none; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; box-shadow: var(--sh-brand);
}
.page-hero__chip-icon svg { width: 20px; height: 20px; }
.page-hero__chip-num { display: block; font-size: 1.32rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.15; color: var(--ink-900); }
.page-hero__chip-label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-400); line-height: 1.4; }

/* Slim decorative marquee strip beneath the banner */
.page-strip {
  position: relative; z-index: 1;
  padding-block: clamp(12px, 1.4vw, 20px);
  background: var(--grad-brand);
  color: #fff;
}
.page-strip .marquee__item {
  font-size: clamp(.92rem, 1.15vw, 1.14rem);
  font-weight: 700; letter-spacing: .01em;
}
.page-strip .marquee__sep { width: 7px; height: 7px; opacity: .7; }
.page-hero__deco {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
}
.page-hero__orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .3;
}
.page-hero__orb--a { width: 460px; height: 460px; top: -180px; right: -100px; background: radial-gradient(circle, var(--brand-blue), transparent 70%); }
.page-hero__orb--b { width: 380px; height: 380px; bottom: -200px; left: -80px; background: radial-gradient(circle, var(--brand-green), transparent 70%); }
.page-hero__grid {
  position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(to right, rgba(0,160,222,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,160,222,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 80%);
}
.page-hero__inner { position: relative; }
.page-hero__title { margin: 20px 0 0; }
.page-hero__sub { margin-top: 22px; max-width: 640px; }

/* Breadcrumbs */
.crumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .87rem; color: var(--ink-400); font-weight: 500; }
.crumbs a { transition: color var(--t) var(--ease); }
.crumbs a:hover { color: var(--brand-blue); }
.crumbs svg { width: 14px; height: 14px; color: var(--ink-300); flex: none; }
.crumbs [aria-current] { color: var(--ink-700); font-weight: 600; }

/* ---------- 11. Marquee (preserves scrolling-text sections) ---------- */
.marquee {
  --mq-duration: 42s;
  position: relative; display: flex; overflow: hidden;
  width: 100%; user-select: none;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee--edge { mask-image: none; -webkit-mask-image: none; }
.marquee__track {
  display: flex; flex: none; align-items: center; gap: clamp(28px, 3vw, 64px);
  padding-right: clamp(28px, 3vw, 64px);
  min-width: 100%;
  animation: mq-scroll var(--mq-duration) linear infinite;
  will-change: transform;
}
.marquee--rtl .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes mq-scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.marquee__item {
  flex: none; margin: 0;
  font-weight: 700; letter-spacing: -.03em;
  /* generous line-height so descenders clear the overflow:hidden edge */
  line-height: 1.32;
  padding-block: .04em;
  white-space: nowrap;
}
.marquee__sep { flex: none; width: 12px; height: 12px; border-radius: 50%; opacity: .55; background: currentColor; }

/* Angled brand bands (home) */
.bands { position: relative; padding-block: clamp(34px, 4vw, 60px); overflow: hidden; }
.band {
  position: relative; padding-block: clamp(14px, 1.8vw, 26px); color: #fff;
}
.band--blue { background: var(--brand-blue); transform: rotate(2deg) scale(1.08); }
.band--green { background: var(--brand-green); transform: rotate(-2deg) scale(1.08); margin-top: clamp(-6px, -0.5vw, 0px); z-index: 2; }
.band .marquee__item { font-size: clamp(1.25rem, 3vw, 2.4rem); color: #fff; }

/* Hero-scale display marquee (inner pages) */
.marquee--display .marquee__item {
  font-size: clamp(3.2rem, 10.5vw, 10rem);
  letter-spacing: -.045em;
}
.marquee--display .marquee__item.is-outline {
  color: transparent;
  -webkit-text-stroke: max(2px, .022em) currentColor;
}

/* ---------- 12. Cards ---------- */
.card {
  position: relative; isolation: isolate;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(24px, 2.6vw, 38px);
  box-shadow: var(--sh-sm);
  transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.card--hover:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--blue-100); }
.card--flush { padding: 0; overflow: hidden; }
.card--glass {
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(22px) saturate(180%); -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-color: rgba(255,255,255,.7);
  box-shadow: var(--sh-md);
}
.card--elevated { box-shadow: var(--sh-lg); border-color: transparent; }
.card__title { margin-bottom: 14px; }
.card__icon {
  width: 58px; height: 58px; border-radius: 18px;
  display: grid; place-items: center; margin-bottom: 24px;
  background: var(--grad-brand-soft); color: var(--blue-700);
  border: 1px solid var(--blue-100);
  transition: transform var(--t) var(--ease-spring), background var(--t) var(--ease), color var(--t) var(--ease);
}
.card__icon svg { width: 26px; height: 26px; }
.card--hover:hover .card__icon { transform: scale(1.08) rotate(-4deg); background: var(--grad-brand); color: #fff; border-color: transparent; }

/* Division cards */
.divisions { display: grid; gap: clamp(16px, 1.8vw, 24px); grid-template-columns: repeat(3, minmax(0,1fr)); }
.division {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; gap: 20px;
  padding: clamp(24px, 2.4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.division::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--grad-brand-soft); opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.division::after {
  content: ''; position: absolute; inset-inline: 0; top: 0; height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-slow) var(--ease-out);
}
.division:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.division:hover::before { opacity: 1; }
.division:hover::after { transform: scaleX(1); }
.division__logo {
  display: grid; place-items: center;
  min-height: clamp(110px, 12vw, 150px);
  padding: 8px;
}
.division__logo img {
  max-height: clamp(74px, 8.4vw, 104px); width: auto; object-fit: contain;
  transition: transform var(--t-slow) var(--ease-out);
}
.division:hover .division__logo img { transform: scale(1.06); }
.division__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: .93rem; font-weight: 600; color: var(--ink-500);
  transition: color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.division:hover .division__foot { color: var(--blue-700); border-color: var(--blue-200); }
.division__go {
  width: 42px; height: 42px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink-50); color: var(--ink-500);
  transition: background var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease-spring);
}
.division__go svg { width: 18px; height: 18px; }
.division:hover .division__go { background: var(--grad-brand); color: #fff; transform: rotate(45deg); }

/* Policy / document list */
.doc-list { display: grid; gap: 14px; }
.doc {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: center; gap: clamp(16px, 2vw, 26px);
  padding: clamp(20px, 2.2vw, 28px) clamp(20px, 2.4vw, 32px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xs);
  transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.doc::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--grad-brand-soft); opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.doc:hover { transform: translateX(6px); box-shadow: var(--sh-md); border-color: var(--blue-100); }
.doc:hover::before { opacity: 1; }
.doc__icon {
  width: 52px; height: 52px; flex: none; border-radius: 15px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-700); border: 1px solid var(--blue-100);
  transition: background var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease-spring);
}
.doc__icon svg { width: 23px; height: 23px; }
.doc:hover .doc__icon { background: var(--grad-brand); color: #fff; border-color: transparent; transform: scale(1.06); }
.doc__body { display: block; flex: 1 1 auto; min-width: 0; }
.doc__title { display: block; font-size: clamp(1.02rem, 1.35vw, 1.2rem); font-weight: 700; color: var(--ink-900); letter-spacing: -.018em; line-height: 1.35; }
.doc__meta { display: block; margin-top: 5px; font-size: .84rem; font-weight: 500; color: var(--ink-400); }
.doc__go {
  width: 42px; height: 42px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink-50); color: var(--ink-500);
  transition: background var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease-spring);
}
.doc__go svg { width: 18px; height: 18px; }
.doc:hover .doc__go { background: var(--brand-blue); color: #fff; transform: scale(1.08); }

/* Value / feature tiles */
/* auto-fit with a comfortable minimum: columns drop before text is squeezed */
.tiles { display: grid; gap: clamp(14px, 1.6vw, 22px); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.tiles--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.tiles--4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.tile {
  display: flex; gap: 18px; align-items: flex-start;
  padding: clamp(20px, 2.1vw, 28px);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--sh-xs);
  transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--blue-100); }
.tile__icon {
  width: 42px; height: 42px; flex: none; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-brand-soft); color: var(--blue-700); border: 1px solid var(--blue-100);
  transition: transform var(--t) var(--ease-spring);
}
.tile__icon svg { width: 20px; height: 20px; }
.tile:hover .tile__icon { transform: scale(1.08) rotate(-5deg); }
.tile > div { min-width: 0; }

/* Centred variant for full-width feature rows — balanced at any zoom level */
.tiles--center { justify-content: center; }
.tiles--center .tile {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 16px;
  padding: clamp(26px, 2.4vw, 34px) clamp(18px, 1.8vw, 26px);
}
.tiles--center .tile__icon { width: 50px; height: 50px; border-radius: 16px; }
.tiles--center .tile__icon svg { width: 23px; height: 23px; }
.tiles--center .tile__title { font-size: 1.02rem; margin-bottom: 7px; }
.tiles--center .tile__text { max-width: 26ch; margin-inline: auto; }
.tile__title { font-size: 1rem; font-weight: 700; color: var(--ink-900); letter-spacing: -.016em; line-height: 1.35; margin-bottom: 5px; text-wrap: balance; }
.tile__text { font-size: .9rem; line-height: 1.6; color: var(--ink-400); text-wrap: pretty; }

/* ---------- 13. Media / image treatments ---------- */
.media {
  position: relative; overflow: hidden; border-radius: var(--r-2xl);
  box-shadow: var(--sh-lg); isolation: isolate;
  background: var(--ink-50);
}
.media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.1s var(--ease-out);
}
.media:hover img { transform: scale(1.045); }
.media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,41,58,0) 46%, rgba(0,41,58,.34) 100%);
  opacity: .9;
}
.media--tall { aspect-ratio: 4 / 5; }
.media--portrait { aspect-ratio: 3 / 4; }
.media--square { aspect-ratio: 1 / 1; }
.media--wide { aspect-ratio: 16 / 10; }
.media--plain::after { display: none; }

.media-frame { position: relative; }
.media-frame::before {
  content: ''; position: absolute; inset: auto -18px -18px auto;
  width: 62%; height: 62%; border-radius: var(--r-2xl); z-index: -1;
  background: var(--grad-brand); opacity: .13; filter: blur(6px);
}
.media-frame__badge {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 16px;
  padding: 20px 26px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(22px) saturate(180%); -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--sh-lg);
}
.media-frame__badge--bl { left: clamp(-16px, -1.4vw, 0px); bottom: clamp(24px, 3vw, 40px); }
.media-frame__badge--br { right: clamp(-16px, -1.4vw, 0px); bottom: clamp(24px, 3vw, 40px); }
.media-frame__badge-num {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem); font-weight: 800; line-height: 1;
  letter-spacing: -.03em;
}
.media-frame__badge-label { font-size: .8rem; font-weight: 600; line-height: 1.35; color: var(--ink-500); max-width: 130px; }

/* Split layout */
.split { display: grid; gap: clamp(30px, 3.6vw, 58px); align-items: center; grid-template-columns: repeat(2, minmax(0,1fr)); }
.split--reverse > :first-child { order: 2; }
.split__body > * + * { margin-top: 20px; }

/* ---------- 14. Quote / testimonial ---------- */
.quote {
  position: relative; isolation: isolate;
  padding: clamp(26px, 2.8vw, 42px);
  border-radius: var(--r-2xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
}
.quote__mark {
  position: absolute; top: clamp(18px, 2.4vw, 30px); right: clamp(22px, 3vw, 44px);
  font-size: clamp(5rem, 9vw, 9rem); line-height: .7; font-weight: 800;
  color: var(--blue-100); z-index: -1; user-select: none;
}
.quote__text {
  font-size: clamp(1.06rem, 1.35vw, 1.24rem); line-height: 1.78; color: var(--ink-500);
}
.quote__author {
  margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 18px;
}
.quote__avatar {
  width: 54px; height: 54px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; font-weight: 700; font-size: 1.02rem; letter-spacing: -.01em;
  box-shadow: var(--sh-brand);
}
.quote__name { font-size: 1.05rem; font-weight: 700; color: var(--ink-900); letter-spacing: -.018em; line-height: 1.3; }

/* ---------- 15. Stats ---------- */
.stats { display: grid; gap: clamp(18px, 2.4vw, 32px); grid-template-columns: repeat(4, minmax(0,1fr)); }
.stat {
  padding: clamp(24px, 2.6vw, 36px);
  border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--sh-xs);
  transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--blue-100); }
.stat__num {
  font-size: clamp(2.1rem, 3.4vw, 3.1rem); font-weight: 800; line-height: 1; letter-spacing: -.035em;
  margin-bottom: 12px;
}
.stat__label { font-size: .92rem; font-weight: 500; line-height: 1.55; color: var(--ink-400); }
.stats--onDark .stat { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); box-shadow: none; }
.stats--onDark .stat:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.24); }
.stats--onDark .stat__label { color: rgba(255,255,255,.62); }

/* ---------- 16. CTA band ---------- */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--r-2xl);
  padding: clamp(30px, 3.4vw, 56px);
  background: var(--grad-ink); color: #fff;
  box-shadow: var(--sh-xl);
}
.cta-band::before {
  content: ''; position: absolute; z-index: -1; pointer-events: none;
  width: 620px; height: 620px; border-radius: 50%; top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(0,160,222,.5), transparent 68%); filter: blur(60px);
}
.cta-band::after {
  content: ''; position: absolute; z-index: -1; pointer-events: none;
  width: 520px; height: 520px; border-radius: 50%; bottom: -280px; left: -180px;
  background: radial-gradient(circle, rgba(43,172,112,.42), transparent 68%); filter: blur(60px);
}
.cta-band h2, .cta-band h3 { color: #fff; }
/* actions column sizes to its buttons so they never wrap mid-row */
.cta-band__grid { display: grid; gap: clamp(24px, 3vw, 44px); align-items: center; grid-template-columns: minmax(0, 1fr) auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band__actions .btn { flex: none; }

/* ---------- 17. Accordion ---------- */
.acc { display: grid; gap: 12px; }
.acc__item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-xs); overflow: hidden;
  transition: box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.acc__item.is-open { box-shadow: var(--sh-md); border-color: var(--blue-100); }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: clamp(20px, 2.2vw, 28px) clamp(20px, 2.4vw, 32px);
  background: transparent; border: 0; cursor: pointer; text-align: left;
  font-size: clamp(1rem, 1.3vw, 1.14rem); font-weight: 700; color: var(--ink-900); letter-spacing: -.018em;
  transition: color var(--t) var(--ease);
}
.acc__btn:hover { color: var(--brand-blue); }
.acc__ind {
  width: 36px; height: 36px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-700);
  transition: background var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease-spring);
}
.acc__ind svg { width: 17px; height: 17px; }
.acc__item.is-open .acc__ind { background: var(--grad-brand); color: #fff; transform: rotate(180deg); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t) var(--ease-out); }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel-inner { overflow: hidden; }
.acc__panel-inner > div {
  padding: 0 clamp(20px, 2.4vw, 32px) clamp(22px, 2.4vw, 30px);
  color: var(--ink-500); font-size: .98rem; line-height: 1.75;
}

/* ---------- 18. Notice / empty state ---------- */
.notice {
  display: flex; align-items: flex-start; gap: 18px;
  padding: clamp(20px, 2.2vw, 30px);
  border-radius: var(--r-lg);
  background: var(--grad-brand-soft);
  border: 1px solid var(--blue-100);
}
.notice__icon {
  width: 46px; height: 46px; flex: none; border-radius: 14px; display: grid; place-items: center;
  background: #fff; color: var(--blue-700); box-shadow: var(--sh-xs);
}
.notice__icon svg { width: 21px; height: 21px; }
.notice__title { font-size: 1.06rem; font-weight: 700; color: var(--ink-900); letter-spacing: -.018em; margin-bottom: 8px; }
.notice__text { font-size: .96rem; line-height: 1.7; color: var(--ink-500); }

/* ---------- 19. Contact cards ---------- */
.contact-grid { display: grid; gap: clamp(18px, 2.2vw, 26px); grid-template-columns: repeat(2, minmax(0,1fr)); }
.contact-card {
  display: flex; align-items: flex-start; gap: 20px;
  padding: clamp(26px, 2.8vw, 36px);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: transform var(--t) var(--ease-out), background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.contact-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.26); }
.contact-card__icon {
  width: 50px; height: 50px; flex: none; border-radius: 15px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; box-shadow: var(--sh-brand);
  transition: transform var(--t) var(--ease-spring);
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card:hover .contact-card__icon { transform: scale(1.07) rotate(-5deg); }
.contact-card > span:last-child { display: block; min-width: 0; }
.contact-card__label {
  display: block;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 8px;
}
.contact-card__value {
  display: block;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem); font-weight: 700; color: #fff; letter-spacing: -.02em;
  word-break: break-word;
  transition: color var(--t) var(--ease);
}
.contact-card:hover .contact-card__value { color: var(--blue-300); }

/* ---------- 20. Footer ---------- */
.site-footer {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--surface-ink); color: rgba(255,255,255,.66);
  padding-top: clamp(48px, 5.5vw, 80px);
}
/* one restrained brand wash — kept subtle so the footer reads clean, not showy */
.site-footer::before {
  content: ''; position: absolute; z-index: -1; pointer-events: none;
  width: 620px; height: 620px; border-radius: 50%; top: -380px; right: -200px;
  background: radial-gradient(circle, rgba(0,160,222,.16), transparent 70%); filter: blur(80px);
}
.site-footer::after {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 2px; z-index: -1;
  background: var(--grad-brand); opacity: .55;
}
.footer-lead {
  padding-bottom: clamp(34px, 4vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-lead__grid { display: grid; gap: clamp(26px, 3.4vw, 48px); align-items: center; grid-template-columns: minmax(0, 1fr) auto; }
.footer-lead__eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-300);
}
.footer-lead__eyebrow::before { content: ''; width: 26px; height: 2px; border-radius: 2px; background: var(--grad-brand); flex: none; }
.footer-lead__title {
  color: #fff; margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  /* roomy line-height so descenders in "leading / development / delivery" never clip */
  line-height: 1.24; letter-spacing: -.028em;
  text-wrap: balance;
}
.footer-lead__text {
  margin: 16px 0 0; max-width: 58ch;
  font-size: clamp(.95rem, 1.05vw, 1.04rem); line-height: 1.75;
  color: rgba(255,255,255,.6);
}
.footer-lead__actions { display: flex; flex-wrap: nowrap; gap: 12px; justify-content: flex-start; }
.footer-lead__actions .btn { flex: none; }

.footer-main {
  padding-block: clamp(38px, 4.2vw, 60px);
  display: grid;
  column-gap: clamp(26px, 3.2vw, 52px);
  row-gap: clamp(32px, 3.4vw, 44px);
  /* the contact column is widest — it carries the longest string on the page */
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr) minmax(0, 1fr) minmax(268px, 1.3fr);
  align-items: start;
}
/* Logo shown in full brand colour on a white plate, never recoloured. */
.footer-brand__plate {
  display: inline-flex; padding: 14px 20px; margin-bottom: 20px;
  border-radius: var(--r-md); background: #fff;
  box-shadow: 0 12px 32px -18px rgba(0,0,0,.9);
  transition: transform var(--t) var(--ease-spring), box-shadow var(--t) var(--ease);
}
.footer-brand__plate:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -18px rgba(0,160,222,.7); }
.footer-brand__logo { height: 52px; width: auto; }
.footer-brand__text { font-size: .97rem; line-height: 1.75; color: rgba(255,255,255,.58); max-width: 380px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.72);
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease-spring);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--grad-brand); color: #fff; border-color: transparent; transform: translateY(-3px); }

.footer-col__title {
  position: relative;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; margin: 0 0 26px; padding-bottom: 14px; line-height: 1.5;
}
.footer-col__title::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 28px; height: 2px; border-radius: 2px; background: var(--grad-brand);
}
.footer-links { display: grid; gap: 14px; }
.footer-links a {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  font-size: .96rem; line-height: 1.5; color: rgba(255,255,255,.62); width: fit-content;
  transition: color var(--t) var(--ease), transform var(--t) var(--ease);
}
.footer-links a::before {
  content: ''; width: 0; height: 1.5px; border-radius: 2px; background: var(--grad-brand);
  transition: width var(--t) var(--ease-out); flex: none;
}
.footer-links a:hover { color: #fff; }
.footer-links a:hover::before { width: 16px; }
.footer-links a svg { width: 15px; height: 15px; opacity: .5; flex: none; }

.footer-contact { display: grid; gap: 14px; }
.footer-contact__item { display: flex; align-items: center; gap: 12px; }
.footer-contact__icon {
  width: 36px; height: 36px; flex: none; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: var(--blue-300);
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.footer-contact__icon svg { width: 16px; height: 16px; }
.footer-contact__item:hover .footer-contact__icon { background: var(--grad-brand); color: #fff; border-color: transparent; }
.footer-contact__item > span:last-child { display: block; min-width: 0; }
.footer-contact__label { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 2px; line-height: 1.4; }
/* nowrap + fluid size keeps the address on one line instead of splitting mid-word */
.footer-contact__value {
  display: block; font-weight: 600; color: #fff; line-height: 1.45;
  font-size: clamp(.85rem, .92vw, .96rem);
  white-space: nowrap; overflow-wrap: normal; word-break: normal;
  transition: color var(--t) var(--ease);
}
a.footer-contact__item:hover .footer-contact__value { color: var(--blue-300); }

.footer-newsletter { margin-top: 22px; }
.footer-newsletter__form {
  display: flex; gap: 8px; padding: 6px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-pill);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.footer-newsletter__form:focus-within { border-color: rgba(0,160,222,.6); background: rgba(255,255,255,.09); }
.footer-newsletter__form input {
  flex: 1 1 auto; min-width: 0; padding: 12px 18px;
  background: transparent; border: 0; outline: none; color: #fff; font-size: .94rem;
}
.footer-newsletter__form input::placeholder { color: rgba(255,255,255,.38); }
.footer-newsletter__form button {
  flex: none; width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  display: grid; place-items: center; background: var(--grad-brand); color: #fff;
  transition: transform var(--t) var(--ease-spring), box-shadow var(--t) var(--ease);
}
.footer-newsletter__form button svg { width: 18px; height: 18px; }
.footer-newsletter__form button:hover { transform: scale(1.07); box-shadow: var(--sh-brand); }
.footer-newsletter__note { margin-top: 12px; font-size: .82rem; color: rgba(255,255,255,.42); }

.footer-bottom {
  padding-block: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 28px;
  font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.48);
}
.footer-bottom a { color: rgba(255,255,255,.7); transition: color var(--t) var(--ease); }
.footer-bottom a:hover { color: var(--brand-blue); }
.footer-bottom__links { display: flex; flex-wrap: wrap; gap: 8px 24px; }

/* Back to top */
.to-top {
  position: fixed; right: clamp(16px, 2.4vw, 34px); bottom: clamp(16px, 2.4vw, 34px); z-index: 90;
  width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer;
  display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; box-shadow: var(--sh-brand);
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.85);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease-spring), visibility var(--t), box-shadow var(--t) var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.to-top:hover { transform: translateY(-3px) scale(1.06); box-shadow: var(--sh-brand-lg); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- 21. Privacy preferences ---------- */
.privacy-control {
  position: fixed; left: clamp(16px, 2.4vw, 34px); bottom: clamp(16px, 2.4vw, 34px); z-index: 120;
  width: 58px; height: 58px; display: grid; place-items: center; padding: 0;
  border: 1px solid rgba(255,255,255,.45); border-radius: 50%; cursor: pointer;
  color: #fff; background: var(--brand-blue); box-shadow: 0 12px 30px rgba(0,91,145,.28), 0 0 0 7px rgba(0,160,222,.1);
  transition: transform var(--t) var(--ease-spring), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
}
.privacy-control::before {
  content: ''; position: absolute; inset: -7px; border: 1px solid rgba(0,160,222,.3); border-radius: 50%;
  animation: privacy-pulse 2.8s var(--ease) infinite; pointer-events: none;
}
.privacy-control:hover { transform: translateY(-4px) scale(1.04); background: var(--blue-600); box-shadow: 0 18px 36px rgba(0,91,145,.34), 0 0 0 8px rgba(0,160,222,.14); }
.privacy-control:active { transform: translateY(0) scale(.98); }
.privacy-control svg { width: 31px; height: 31px; }
@keyframes privacy-pulse {
  0%, 100% { opacity: .35; transform: scale(.96); }
  50% { opacity: 0; transform: scale(1.14); }
}
.privacy-overlay {
  position: fixed; inset: 0; z-index: 130; display: grid; place-items: center;
  padding: clamp(28px, 5vh, 56px) clamp(24px, 5vw, 64px);
  background: rgba(5, 17, 24, .54); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  opacity: 0; visibility: hidden; transition: opacity var(--t) var(--ease), visibility var(--t);
}
.privacy-overlay.is-open { opacity: 1; visibility: visible; }
.privacy-dialog {
  width: min(620px, 100%); max-height: min(680px, calc(100vh - 56px)); display: flex; flex-direction: column;
  overflow: hidden; border: 1px solid rgba(255,255,255,.82); border-radius: 18px;
  background: #fff; color: var(--ink-700); box-shadow: 0 30px 90px rgba(0, 24, 38, .32), 0 8px 24px rgba(0, 24, 38, .1);
  transform: translateY(12px) scale(.98); transition: transform var(--t) var(--ease-out);
}
.privacy-overlay.is-open .privacy-dialog { transform: translateY(0) scale(1); }
.privacy-dialog__header { position: relative; padding: 28px 32px 20px; }
.privacy-dialog__title { padding-right: 44px; font-size: 1.08rem; line-height: 1.35; letter-spacing: -.02em; }
.privacy-dialog__close {
  position: absolute; top: 20px; right: 22px; width: 38px; height: 38px; display: grid; place-items: center;
  border: 0; border-radius: 50%; background: transparent; color: var(--ink-600); cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.privacy-dialog__close:hover { background: var(--ink-50); color: var(--brand-blue); transform: rotate(5deg); }
.privacy-dialog__close svg { width: 21px; height: 21px; }
.privacy-dialog__intro { margin-top: 14px; max-width: 58ch; font-size: .82rem; line-height: 1.55; color: var(--ink-600); }
.privacy-dialog__policy { display: inline-flex; margin-top: 25px; color: var(--blue-700); font-size: .78rem; font-weight: 600; }
.privacy-dialog__policy:hover { color: var(--brand-blue); text-decoration: underline; text-underline-offset: 3px; }
.privacy-tabs { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 20px; border-bottom: 1px solid var(--border-strong); }
.privacy-tab {
  position: relative; padding: 11px 12px 12px; border: 0; background: transparent; cursor: pointer;
  color: var(--ink-600); font-size: .78rem; font-weight: 500; transition: color var(--t-fast) var(--ease);
}
.privacy-tab::after { content: ''; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--brand-blue); transform: scaleX(0); transition: transform var(--t) var(--ease-out); }
.privacy-tab:hover, .privacy-tab[aria-selected="true"] { color: var(--blue-700); font-weight: 700; }
.privacy-tab[aria-selected="true"]::after { transform: scaleX(1); }
.privacy-dialog__body { min-height: 0; overflow: auto; padding: 16px 24px 18px; background: #fff; }
.privacy-panel { display: none; gap: 12px; }
.privacy-panel.is-active { display: grid; }
.privacy-services { gap: 14px; }
.privacy-services__list { display: grid; gap: 8px; }
.privacy-service {
  display: grid; grid-template-columns: minmax(0,1fr) auto auto; align-items: center; gap: 13px;
  padding: 12px 13px; border: 1px solid var(--border-strong); border-radius: 6px; background: #fff;
}
.privacy-service__title { display: block; color: var(--ink-700); font-size: .79rem; font-weight: 700; line-height: 1.35; }
.privacy-service__text { display: block; margin-top: 3px; color: var(--ink-500); font-size: .7rem; line-height: 1.4; }
.privacy-service__category { padding: 4px 8px; border-radius: 99px; background: var(--blue-50); color: var(--blue-700); font-size: .64rem; font-weight: 700; white-space: nowrap; }
.privacy-service__category--essential { background: var(--green-50); color: var(--green-800); }
.privacy-services__request { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 13px; border-radius: 6px; background: var(--ink-50); color: var(--ink-500); font-size: .7rem; }
.privacy-services__request code { padding: 3px 6px; border: 1px solid var(--border); border-radius: 4px; color: var(--ink-700); background: #fff; font-size: .66rem; }
.privacy-category {
  display: grid; grid-template-columns: minmax(0,1fr) auto auto; align-items: center; gap: 15px;
  padding: 15px 14px; border: 1px solid var(--border-strong); border-radius: 6px; background: #fff;
}
.privacy-category__title { display: block; color: var(--ink-700); font-size: .82rem; font-weight: 700; line-height: 1.3; }
.privacy-category__text { display: block; margin-top: 4px; color: var(--ink-600); font-size: .76rem; line-height: 1.42; }
.privacy-category__chevron { width: 18px; height: 18px; color: var(--ink-500); transition: transform var(--t-fast) var(--ease); }
.privacy-category__more { display: grid; place-items: center; padding: 4px; border: 0; background: transparent; color: inherit; cursor: pointer; }
.privacy-category.is-expanded .privacy-category__chevron { transform: rotate(180deg); }
.privacy-category__details { grid-column: 1 / -1; display: none; padding-top: 12px; border-top: 1px solid var(--border); color: var(--ink-500); font-size: .74rem; line-height: 1.5; }
.privacy-category.is-expanded .privacy-category__details { display: block; }
.privacy-toggle { position: relative; width: 40px; height: 23px; flex: none; padding: 0; border: 0; border-radius: 99px; background: var(--ink-200); cursor: pointer; transition: background var(--t-fast) var(--ease); }
.privacy-toggle::before { content: ''; position: absolute; top: 3px; left: 3px; width: 17px; height: 17px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(15,20,22,.22); transition: transform var(--t-fast) var(--ease-spring); }
.privacy-toggle[aria-pressed="true"] { background: var(--brand-blue); }
.privacy-toggle[aria-pressed="true"]::before { transform: translateX(17px); }
.privacy-toggle:disabled { opacity: .7; cursor: not-allowed; }
.privacy-dialog__footer { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; padding: 14px 24px 20px; border-top: 1px solid var(--border); background: #fff; }
.privacy-action { min-height: 42px; padding: 10px 13px; border: 1px solid transparent; border-radius: 5px; cursor: pointer; font-size: .78rem; font-weight: 700; transition: transform var(--t-fast) var(--ease-spring), background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease); }
.privacy-action:hover { transform: translateY(-1px); }
.privacy-action--save { color: var(--ink-700); background: var(--ink-50); border-color: var(--border); }
.privacy-action--save:hover { background: var(--ink-100); }
.privacy-action--deny, .privacy-action--accept { color: #fff; background: var(--brand-blue); }
.privacy-action--deny:hover, .privacy-action--accept:hover { background: var(--blue-700); }
.privacy-dialog__credit { grid-column: 1 / -1; text-align: center; color: var(--ink-500); font-size: .65rem; }

/* ---------- 22. Scroll reveal ----------
   Scoped to .js so that with JavaScript disabled or still loading every section
   renders fully visible — the animation is an enhancement, never a gate. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  will-change: opacity, transform;
}
.js [data-reveal="left"]  { transform: translateX(-32px); }
.js [data-reveal="right"] { transform: translateX(32px); }
.js [data-reveal="scale"] { transform: scale(.96); }
.js [data-reveal="fade"]  { transform: none; }
.js [data-reveal].is-in   { opacity: 1; transform: none; }

/* ---------- 23. Responsive ---------- */
@media (max-width: 1180px) {
  .footer-main { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .cta-band__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 1000px) {
  :root { --header-h: 84px; --header-h-sm: 70px; }
  .nav-list, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .divisions { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}
@media (max-width: 980px) {
  .page-hero__layout { grid-template-columns: 1fr; gap: clamp(32px, 5vw, 48px); }
  .page-hero__media::before { display: none; }
}
@media (max-width: 860px) {
  .split, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-bottom: clamp(44px, 8vw, 72px); }
  .hero__content { padding-inline: clamp(22px, 5vw, 42px); }
  .hero__bar { min-height: 62px; }
  .footer-lead__grid { grid-template-columns: 1fr; }
  .footer-lead__actions { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .footer-main { grid-template-columns: 1fr; }
  .tiles, .tiles--2, .tiles--4, .stats, .divisions { grid-template-columns: 1fr; }
  .footer-contact__value { white-space: normal; overflow-wrap: anywhere; }
  .btn { width: 100%; }
  .hero { padding-top: calc(var(--header-h) + 20px); padding-bottom: 30px; }
  .hero__content { padding-left: 34px; padding-right: 34px; }
  .badge { max-width: 100%; padding: 7px 12px 7px 10px; gap: 8px; font-size: .68rem; line-height: 1.35; white-space: normal; }
  .badge__dot { margin-top: .34em; }
  .hero__title { font-size: clamp(1.72rem, 8vw, 2.25rem); }
  .hero__sub { margin-top: 16px; font-size: .88rem; line-height: 1.5; }
  .hero__actions { margin-top: 24px; flex-direction: column; gap: 10px; }
  .hero__actions .btn { width: 100%; flex: none; }
  .hero__bar { min-height: 56px; margin-top: 22px; }
  .hero__count { bottom: 32px; font-size: .66rem; }
  .hero__arrow { width: 36px; height: 36px; }
  .hero__arrow:first-child { left: 6px; }
  .hero__arrow:last-child { right: 6px; }
  .hero__arrow svg { width: 16px; height: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .media-frame__badge { position: static; margin-top: 18px; }
  .media-frame::before { display: none; }
  .doc { flex-wrap: wrap; }
  .privacy-control { width: 54px; height: 54px; }
  .privacy-control svg { width: 28px; height: 28px; }
  .privacy-overlay { padding: 20px; }
  .privacy-dialog { max-height: calc(100vh - 40px); border-radius: 16px; }
  .privacy-dialog__header { padding: 23px 20px 16px; }
  .privacy-dialog__close { top: 16px; right: 14px; }
  .privacy-dialog__body { padding: 13px 14px 16px; }
  .privacy-dialog__footer { grid-template-columns: 1fr; gap: 8px; padding: 12px 14px 16px; }
  .privacy-dialog__credit { order: 4; }
  .privacy-category { grid-template-columns: minmax(0,1fr) auto; }
  .privacy-category__more { display: none; }
  .privacy-category__details { grid-column: 1 / -1; }
  .privacy-service { grid-template-columns: minmax(0,1fr) auto; }
  .privacy-service .privacy-toggle { grid-column: 2; grid-row: 1; }
  .privacy-service__category { grid-column: 1; grid-row: 2; justify-self: start; }
  .privacy-services__request { align-items: flex-start; flex-direction: column; }
}

/* ---------- 24. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__title .word > span { transform: none; }
  .marquee__track { animation: none; }
  .hero__slide.is-active .hero__slide-img { animation: none; transform: scale(1.04); }
}

/* ---------- 25. Print ---------- */
@media print {
  .site-header, .mobile-nav, .to-top, .privacy-control, .privacy-overlay, .hero__arrows, .hero__dots, .marquee { display: none !important; }
  body { color: #000; }
  .site-footer { background: #fff; color: #000; }
}
