/* =========================================================
   SiloBox — static stylesheet
   Brand: cobalt blue #094b8f · Typeface: Mulish (self-hosted)
   ========================================================= */

/* ---------- Fonts (self-hosted, GDPR-safe) ---------- */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url('../fonts/mulish-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: 'Mulish';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url('../fonts/mulish-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;
}

/* ---------- Design tokens ---------- */
:root {
  --blue-400: #3864ac;
  --blue-500: #094b8f;
  --blue-600: #003373;
  --blue-700: #001d58;
  --blue-800: #070138;

  --ink:        #14181f;
  --ink-soft:   #4b5563;
  --ink-muted:  #6b7280;

  --surface:      #ffffff;
  --surface-alt:  #f3f3f3;
  --line:         #e4e7ec;

  --on-dark:        #ffffff;
  --on-dark-soft:   rgba(255, 255, 255, .78);
  --on-dark-line:   rgba(255, 255, 255, .16);
  --on-dark-fill:   rgba(255, 255, 255, .06);

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(9, 27, 56, .06);
  --shadow:    0 6px 24px -8px rgba(9, 27, 56, .16), 0 2px 6px rgba(9, 27, 56, .05);
  --shadow-lg: 0 24px 48px -20px rgba(9, 27, 56, .28), 0 8px 16px -8px rgba(9, 27, 56, .12);

  --header-h: 76px;
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 8vw, 8rem);

  --ease: cubic-bezier(.22, .68, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: clamp(1rem, .96rem + .18vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
ul { list-style: none; margin: 0; padding: 0; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-500); text-decoration-thickness: 1px; text-underline-offset: .2em; }

h1, h2, h3 {
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
  text-wrap: balance;
}
h2 { font-size: clamp(1.875rem, 1.3rem + 2.3vw, 3rem); }
h3 { font-size: clamp(1.1875rem, 1.1rem + .45vw, 1.4375rem); letter-spacing: -.015em; }

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

.skip-link {
  position: absolute;
  left: 50%;
  top: .5rem;
  transform: translate(-50%, -200%);
  z-index: 200;
  padding: .7rem 1.25rem;
  background: var(--blue-500);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }

.section { padding-block: var(--section-y); position: relative; }
.section--muted { background: var(--surface-alt); }

.section--network {
  background: #fbfbfc url('../img/bg-network.jpg') center / cover no-repeat;
}

.section--dark {
  color: var(--on-dark);
  background: var(--blue-600);
}
.section--dark h2, .section--dark h3 { color: var(--on-dark); }

.section--matrix {
  background: var(--blue-600) url('../img/bg-matrix.jpg') center / cover no-repeat;
}
.section--matrix::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 29, 88, .55), rgba(0, 51, 115, .35));
  pointer-events: none;
}
.section--matrix > .container { position: relative; z-index: 1; }

.section__head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head h2:last-child { margin-bottom: 0; }

.eyebrow {
  margin: 0 0 .75rem;
  font-size: .8125rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-500);
}
.eyebrow--light { color: #8fc0ff; }

.lead {
  font-size: clamp(1.0625rem, 1rem + .35vw, 1.1875rem);
  color: var(--ink-soft);
  margin-bottom: 0;
}
.section--dark .lead { color: var(--on-dark-soft); }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue-500);
  --btn-fg: #fff;
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease),
              box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { box-shadow: 0 8px 20px -8px rgba(9, 75, 143, .6); }
.btn--primary:hover { --btn-bg: var(--blue-600); box-shadow: 0 12px 26px -8px rgba(9, 75, 143, .7); }

.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .55); }
.btn--ghost:hover { --btn-bg: rgba(255, 255, 255, .12); --btn-bd: #fff; }

.btn--outline { --btn-bg: transparent; --btn-fg: var(--blue-500); --btn-bd: var(--blue-500); }
.btn--outline:hover { --btn-bg: var(--blue-500); --btn-fg: #fff; }

.btn--sm  { padding: .5rem 1.15rem; font-size: .9375rem; }
.btn--lg  { padding: .95rem 2rem; font-size: 1.0625rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
@supports not (backdrop-filter: blur(1px)) {
  .site-header { background: #fff; }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.header__logo { display: flex; flex: 0 0 auto; }
.header__logo img { width: 150px; height: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.nav__list a {
  position: relative;
  display: inline-block;
  padding: .35rem 0;
  color: var(--ink);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s var(--ease);
}
.nav__list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__list a:hover { color: var(--blue-500); }
.nav__list a:hover::after { transform: scaleX(1); }

/* Burger — the menu opens and closes on the checkbox alone, so it works
   with CSS only. The checkbox is visually hidden but stays focusable. */
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.nav-burger, .nav-scrim { display: none; }

.nav-burger {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.nav-burger__box { position: relative; display: block; width: 24px; height: 18px; }
.nav-burger__lines,
.nav-burger__lines::before,
.nav-burger__lines::after {
  position: absolute;
  left: 0;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--blue-500);
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav-burger__lines { top: 8px; }
.nav-burger__lines::before { content: ''; top: -8px; }
.nav-burger__lines::after  { content: ''; top: 8px; }

.nav-toggle:focus-visible + .nav-burger {
  outline: 3px solid var(--blue-400);
  outline-offset: 2px;
}

@media (max-width: 960px) {
  .nav-burger { display: grid; order: 3; }

  .nav-scrim {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 0;
    background: rgba(7, 1, 56, .45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    width: min(340px, 84vw);
    height: calc(100dvh - var(--header-h));
    padding: 2rem var(--gutter) 3rem;
    overflow-y: auto;
    background: #fff;
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .32s var(--ease), visibility .32s var(--ease);
  }

  .nav__list { flex-direction: column; align-items: stretch; gap: .25rem; }
  .nav__list a {
    display: block;
    padding: .85rem 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__list a::after { display: none; }
  .nav__cta { align-self: flex-start; }

  .nav-toggle:checked ~ .nav { transform: translateX(0); visibility: visible; }
  .nav-toggle:checked ~ .nav-scrim { opacity: 1; visibility: visible; }

  .nav-toggle:checked ~ .nav-burger .nav-burger__lines { background: transparent; }
  .nav-toggle:checked ~ .nav-burger .nav-burger__lines::before { top: 0; transform: rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger .nav-burger__lines::after  { top: 0; transform: rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 82svh, 820px);
  padding-block: clamp(4rem, 10vw, 7rem);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--blue-700) url('../img/hero.jpg') center / cover no-repeat;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 29, 88, .72) 0%, rgba(7, 1, 56, .82) 100%),
    radial-gradient(80% 60% at 50% 45%, rgba(0, 0, 0, .15), rgba(0, 0, 0, .55));
}

.hero__inner { text-align: center; }

.hero__title {
  max-width: 20ch;
  margin-inline: auto;
  font-size: clamp(2.125rem, 1.2rem + 4.4vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.08;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .3);
}

.hero__lead {
  max-width: 56ch;
  margin: 1.25rem auto 0;
  font-size: clamp(1.0625rem, 1rem + .4vw, 1.25rem);
  color: rgba(255, 255, 255, .82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .875rem;
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .625rem 1.75rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.trust li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}
.trust svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #8fc0ff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Cards ---------- */
.modules__intro {
  margin: -1.5rem 0 2rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.card {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 75, 143, .28);
  box-shadow: var(--shadow-lg);
}
.card h3 { margin-bottom: .875rem; }
.card p { color: var(--ink-soft); font-size: .9875rem; }
.card--feature strong { color: var(--ink); font-weight: 700; }

.card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  background: linear-gradient(140deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 10px 20px -10px rgba(9, 75, 143, .7);
}
.card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Tick lists */
.ticks { display: grid; gap: .75rem; }
.ticks li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink-soft);
  font-size: .9875rem;
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .18em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(9, 75, 143, .1)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23094b8f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}

/* ---------- Split (text + media) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.split__text p { color: var(--on-dark-soft); }

/* Certification badges sit on a light plate — the artwork is dark-on-transparent
   and must keep its detail, so it is never colour-filtered. */
.split__media { display: grid; place-items: center; }
.split__media img { width: min(100%, 330px); }

.badge-plate {
  display: grid;
  place-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, .55);
}

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .badge-plate { padding: 1.5rem; }
  .split__media img { width: min(70%, 260px); }
}

/* ---------- Benefits ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: .875rem;
}
.benefits li {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 1.125rem 1.375rem 1.125rem 3.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .9875rem;
  color: var(--ink-soft);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.benefits li::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 1.15rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-500)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E")
    center / 13px no-repeat;
}
.benefits li:hover {
  transform: translateY(-2px);
  border-color: rgba(9, 75, 143, .3);
  box-shadow: var(--shadow);
}

/* ---------- Case study ---------- */
.case {
  position: relative;
  padding: clamp(2rem, 5vw, 3.25rem);
  background: var(--on-dark-fill);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.case p {
  color: var(--on-dark-soft);
  font-size: clamp(1rem, .96rem + .3vw, 1.125rem);
}
.case__quote {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  fill: none;
  stroke: #8fc0ff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .85;
}

/* ---------- Pricing ---------- */
.plan {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(9, 75, 143, .32);
  box-shadow: var(--shadow-lg);
}

.plan__name {
  margin-bottom: 1rem;
  font-size: .9375rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-500);
}

.plan__price { display: flex; align-items: baseline; gap: .3rem; margin: 0; }
.plan__amount {
  font-size: clamp(2.25rem, 1.6rem + 2vw, 3rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1;
  color: var(--ink);
}
.plan__amount--text {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 1.875rem);
  letter-spacing: -.02em;
}
.plan__currency { font-size: 1.125rem; font-weight: 800; color: var(--ink-soft); }
.plan__period {
  margin: .4rem 0 1.75rem;
  font-size: .875rem;
  color: var(--ink-muted);
}

.ticks--plan {
  padding-top: 1.5rem;
  margin-bottom: 1.75rem;
  border-top: 1px solid var(--line);
}
.ticks--plan strong { color: var(--ink); font-weight: 800; }
.plan .btn { margin-top: auto; }

.plan--custom {
  background: linear-gradient(160deg, #fff, #eef4fb);
  border-color: rgba(9, 75, 143, .22);
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.contact__card:hover {
  transform: translateY(-3px);
  border-color: rgba(9, 75, 143, .32);
  box-shadow: var(--shadow);
}

.contact__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(140deg, var(--blue-500), var(--blue-700));
}
.contact__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__body { display: grid; gap: .15rem; min-width: 0; }
.contact__label {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact__value {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--blue-500);
  overflow-wrap: anywhere;
}

.contact__cta { margin-top: 2.5rem; text-align: center; }
.contact__note {
  margin: .875rem 0 0;
  font-size: .875rem;
  color: var(--ink-muted);
}

/* ---------- Footer ---------- */
.site-footer {
  padding-block: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--blue-700);
  color: var(--on-dark-soft);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
@media (max-width: 780px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

.footer__brand img {
  width: 150px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}
.footer__brand p { max-width: 42ch; font-size: .9375rem; }

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.footer__badges li {
  padding: .35rem .875rem;
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius-pill);
  background: var(--on-dark-fill);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer h2 {
  margin-bottom: 1.125rem;
  font-size: .8125rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}
.site-footer li + li { margin-top: .625rem; }
.site-footer a {
  color: var(--on-dark-soft);
  font-size: .9375rem;
  text-decoration: none;
  transition: color .2s var(--ease);
}
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--on-dark-line);
  font-size: .8125rem;
  color: rgba(255, 255, 255, .6);
}
.footer__bottom p { margin: 0; }

/* ---------- Intro animation ----------
   Deliberately load-only and time-based: nothing is gated on scroll position,
   so no content can ever be left invisible in any browser. ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero__title,
  .hero__lead,
  .hero__actions,
  .trust {
    animation: rise-in .7s var(--ease) both;
  }
  .hero__lead    { animation-delay: .08s; }
  .hero__actions { animation-delay: .16s; }
  .trust         { animation-delay: .24s; }

  @keyframes rise-in {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .hero__media, .nav-burger, .trust, .skip-link { display: none !important; }
  body { color: #000; }
  .section, .site-footer { background: none !important; color: #000; padding-block: 1rem; }
  .section--dark, .section--dark h2, .section--dark h3, .split__text p, .case p { color: #000 !important; }
  .split__media img, .footer__brand img { filter: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
