/* =============================================================
   maximzocktttcafestudio — Premium Cleaning Studio, München
   Main stylesheet · Original design system
   Author: maximzocktttcafestudio digital
   ============================================================= */

/* -------------------------------------------------------------
   0. Font faces (self-hosted for GDPR compliance — DE market)
   Add the woff2 files to /assets/fonts/. Robust fallbacks below.
------------------------------------------------------------- */
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* -------------------------------------------------------------
   1. Design tokens
------------------------------------------------------------- */
:root {
  /* Palette */
  --white: #ffffff;
  --navy: #0a1b32;
  --navy-700: #10294a;
  --navy-600: #163561;
  --charcoal: #202834;
  --ink: #17202e;
  --soft-blue: #6c9ceb;
  --soft-blue-soft: #e8f0fd;
  --emerald: #10b981;
  --emerald-deep: #0c9a70;
  --emerald-soft: #e4f7f0;
  --light: #f4f7fb;
  --light-2: #eef2f8;
  --line: #e2e8f2;
  --muted: #64748b;
  --muted-2: #8a97ab;

  /* Typography */
  --font-display: "Space Grotesk", "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Fluid type scale */
  --fs-display: clamp(2.6rem, 1.6rem + 4.6vw, 5.4rem);
  --fs-h1: clamp(2.1rem, 1.5rem + 2.8vw, 3.6rem);
  --fs-h2: clamp(1.7rem, 1.3rem + 1.9vw, 2.7rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.8vw, 1.6rem);
  --fs-lead: clamp(1.05rem, 0.98rem + 0.5vw, 1.3rem);
  --fs-body: 1.02rem;
  --fs-small: 0.9rem;

  /* Spacing */
  --space-section: clamp(4.5rem, 3rem + 6vw, 9rem);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(16, 32, 61, 0.06);
  --shadow: 0 18px 40px -18px rgba(10, 27, 50, 0.22);
  --shadow-lg: 0 40px 80px -30px rgba(10, 27, 50, 0.35);
  --shadow-emerald: 0 18px 34px -12px rgba(16, 185, 129, 0.45);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.5s;

  --container: 1200px;
}

/* -------------------------------------------------------------
   2. Reset & base
------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

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

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

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

::selection { background: var(--emerald); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
}

/* -------------------------------------------------------------
   3. Layout helpers
------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 0.6rem + 2.4vw, 2.5rem);
}
.container--wide { max-width: 1360px; }
.container--narrow { max-width: 820px; }

.section { padding-block: var(--space-section); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 3vw, 5rem); }
.section--dark { background: var(--navy); color: #dfe7f2; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--light { background: var(--light); }
.section--gradient {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-700) 55%, #12345f 100%);
  color: #dfe7f2;
}

.grid { display: grid; gap: clamp(1.1rem, 0.7rem + 1.6vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.stack-sm > * + * { margin-top: 0.6rem; }
.stack > * + * { margin-top: 1.1rem; }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-60 { max-width: 60ch; }
.maxw-50 { max-width: 52ch; }

/* -------------------------------------------------------------
   4. Typography components
------------------------------------------------------------- */
.display { font-size: var(--fs-display); font-weight: 700; letter-spacing: -0.03em; }
.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
}
.section--dark .lead, .section--gradient .lead { color: #b9c6db; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-deep);
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
}
.section--dark .kicker, .section--gradient .kicker { color: #4fd3aa; }
.section--dark .kicker::before, .section--gradient .kicker::before { background: #4fd3aa; }

.text-emerald { color: var(--emerald-deep); }
.text-blue { color: var(--soft-blue); }

/* gradient text accent */
.grad-text {
  background: linear-gradient(100deg, var(--emerald) 0%, var(--soft-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* -------------------------------------------------------------
   5. Buttons
------------------------------------------------------------- */
.btn {
  --btn-bg: var(--emerald);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background 0.3s ease, color 0.3s ease;
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; transition: transform 0.35s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { --btn-bg: var(--emerald); box-shadow: var(--shadow-emerald); }
.btn--primary:hover { background: var(--emerald-deep); box-shadow: 0 24px 40px -14px rgba(16,185,129,0.55); }

.btn--dark { --btn-bg: var(--navy); box-shadow: var(--shadow); }
.btn--dark:hover { background: var(--navy-700); }

.btn--light { --btn-bg: #fff; --btn-fg: var(--navy); box-shadow: var(--shadow-sm); }
.btn--light:hover { background: var(--light); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--navy); background: var(--navy); color: #fff; }

.section--dark .btn--ghost, .section--gradient .btn--ghost {
  --btn-fg: #fff;
  border-color: rgba(255,255,255,0.28);
}
.section--dark .btn--ghost:hover, .section--gradient .btn--ghost:hover {
  background: #fff; color: var(--navy); border-color: #fff;
}

.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--emerald-deep);
}
.link-arrow svg { width: 1.05em; height: 1.05em; transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* -------------------------------------------------------------
   6. Header / navigation
------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding-block: 1.15rem;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav--scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 8px 30px -18px rgba(10, 27, 50, 0.35);
  padding-block: 0.7rem;
  border-bottom: 1px solid rgba(226, 232, 242, 0.7);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  /* Fluid size keeps the long wordmark on one line down to small screens */
  font-size: clamp(0.95rem, 0.82rem + 0.6vw, 1.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  min-width: 0;
}
.brand > span { white-space: nowrap; }
.brand__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-600) 100%);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 20px; height: 20px; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}
/* On transparent hero (top of page) brand is light */
.nav:not(.nav--scrolled) .brand { color: #fff; }
.nav:not(.nav--scrolled) .brand small { color: rgba(255,255,255,0.7); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav__links a {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-weight: 500;
  font-size: 0.96rem;
  border-radius: 100px;
  color: var(--charcoal);
  transition: color 0.25s ease, background 0.25s ease;
}
.nav:not(.nav--scrolled) .nav__links a { color: rgba(255,255,255,0.82); }
.nav__links a:hover { color: var(--emerald-deep); }
.nav:not(.nav--scrolled) .nav__links a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav__links a[aria-current="page"] { color: var(--emerald-deep); font-weight: 600; }
.nav:not(.nav--scrolled) .nav__links a[aria-current="page"] { color: #fff; }
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.15rem;
  height: 2px; border-radius: 2px;
  background: var(--emerald);
}

.nav__cta { display: inline-flex; align-items: center; gap: 0.75rem; }
.nav:not(.nav--scrolled) .nav__cta .btn--dark { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25); }
.nav:not(.nav--scrolled) .nav__cta .btn--dark:hover { background: #fff; color: var(--navy); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
}
.nav:not(.nav--scrolled) .nav-toggle { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.28); }
.nav-toggle span {
  position: relative;
  width: 20px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.nav:not(.nav--scrolled) .nav-toggle span { background: #fff; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 20px; height: 2px; background: inherit; border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); background: var(--navy); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); background: var(--navy); }

/* Mobile drawer */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 27, 50, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.nav-mobile[data-open="true"] { opacity: 1; visibility: visible; }
.nav-mobile__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: #fff;
  padding: 6rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.nav-mobile[data-open="true"] .nav-mobile__panel { transform: translateX(0); }
.nav-mobile__panel a {
  padding: 0.95rem 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-mobile__panel a[aria-current="page"] { color: var(--emerald-deep); }
.nav-mobile__panel .btn { margin-top: 1.4rem; }
.nav-mobile__meta { margin-top: auto; padding-top: 1.5rem; color: var(--muted); font-size: 0.9rem; }
.nav-mobile__meta a { display: inline; font-size: inherit; padding: 0; border: 0; color: var(--emerald-deep); }

body.no-scroll { overflow: hidden; }

/* -------------------------------------------------------------
   7. Hero
------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(8rem, 6rem + 8vw, 12rem);
  padding-bottom: clamp(4rem, 3rem + 4vw, 7rem);
  background: radial-gradient(120% 120% at 80% 0%, #16345f 0%, var(--navy) 55%, #08152a 100%);
  color: #e7eefa;
  overflow: hidden;
}
.hero::after {
  /* subtle grid texture */
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(120% 80% at 70% 10%, #000 0%, transparent 70%);
  mask-image: radial-gradient(120% 80% at 70% 10%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}
.hero__glow--1 { background: rgba(16,185,129,0.5); top: -120px; right: -60px; }
.hero__glow--2 { background: rgba(108,156,235,0.42); bottom: -180px; left: -120px; }

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.95rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.82rem;
  font-weight: 500;
  color: #d8e3f5;
  backdrop-filter: blur(6px);
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.25);
}
.hero h1 {
  color: #fff;
  font-size: var(--fs-display);
  font-weight: 700;
  margin-top: 1.4rem;
  letter-spacing: -0.035em;
}
.hero p.lead { color: #c3d0e6; margin-top: 1.3rem; max-width: 52ch; }
.hero .btn-row { margin-top: 2.1rem; }
.hero__stats {
  display: flex;
  gap: clamp(1.2rem, 0.5rem + 2vw, 2.6rem);
  margin-top: 2.6rem;
  flex-wrap: wrap;
}
.hero__stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem);
  color: #fff;
  line-height: 1;
}
.hero__stat .lbl { font-size: 0.85rem; color: #9fb0cb; margin-top: 0.35rem; }

/* Hero media card w/ glass overlay */
.hero__media { position: relative; }
.hero__media .img-ph {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__card {
  position: absolute;
  left: -1.5rem; bottom: 1.5rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 280px;
}
.hero__card .ico {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--emerald-soft);
  color: var(--emerald-deep);
}
.hero__card strong { display: block; font-family: var(--font-display); color: var(--navy); font-size: 1rem; }
.hero__card span { font-size: 0.82rem; color: var(--muted); }

.hero__trust {
  position: relative; z-index: 2;
  margin-top: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  gap: 1.4rem 2.4rem;
  flex-wrap: wrap;
}
.hero__trust span { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: #8a9cba; }
.hero__trust ul { display: flex; gap: 1.6rem 2.2rem; flex-wrap: wrap; }
.hero__trust li {
  font-family: var(--font-display);
  font-weight: 600;
  color: #c9d6ec;
  font-size: 0.98rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.hero__trust li svg { width: 18px; height: 18px; color: var(--emerald); }

/* -------------------------------------------------------------
   8. Images
------------------------------------------------------------- */
.img-ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(108,156,235,0.16), rgba(16,185,129,0.14)),
    linear-gradient(160deg, #e9eff8 0%, #dde6f3 100%);
  display: grid;
  place-items: center;
  color: var(--muted);
  isolation: isolate;
}
.img-ph > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.img-ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,27,50,0.06) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  z-index: -1;
}
.img-ph:has(> img)::before,
.img-ph:has(> img) .img-ph__label { display: none; }
.img-ph__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy-700);
  max-width: 82%;
}
.img-ph__label svg { width: 34px; height: 34px; color: var(--soft-blue); opacity: 0.8; }
.img-ph__label .dim {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  background: rgba(255,255,255,0.65);
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
}
.img-ph--landscape { aspect-ratio: 16 / 10; }
.img-ph--square { aspect-ratio: 1 / 1; }
.img-ph--portrait { aspect-ratio: 3 / 4; }
.img-ph--wide { aspect-ratio: 21 / 9; }

/* -------------------------------------------------------------
   9. Section headers
------------------------------------------------------------- */
.section-head { max-width: 640px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .h2 { margin-top: 1rem; }
.section-head .lead { margin-top: 1rem; }
.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  max-width: none;
  flex-wrap: wrap;
}
.section-head--split > div:first-child { max-width: 620px; }

/* -------------------------------------------------------------
   10. Cards & feature grids
------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.1rem + 1.2vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

/* Feature (icon) card */
.feature { display: flex; flex-direction: column; gap: 0.85rem; }
.feature__ico {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--soft-blue-soft), #fff);
  color: var(--navy);
  border: 1px solid var(--line);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}
.feature__ico svg { width: 27px; height: 27px; }
.feature:hover .feature__ico { background: var(--navy); color: #fff; transform: rotate(-4deg); }
.feature h3 { font-size: var(--fs-h3); }
.feature p { color: var(--muted); font-size: 0.98rem; }

/* number badge for feature (why-choose) */
.feature__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--emerald-deep);
  letter-spacing: 0.1em;
}

/* Glass card (for dark sections) */
.glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.1rem + 1.2vw, 2.2rem);
  backdrop-filter: blur(10px);
  transition: transform 0.45s var(--ease), background 0.45s var(--ease);
}
.glass:hover { transform: translateY(-5px); background: rgba(255,255,255,0.1); }
.glass h3 { color: #fff; }
.glass p { color: #b9c6db; }

/* -------------------------------------------------------------
   11. Service cards (with hover reveal)
------------------------------------------------------------- */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card .img-ph { border-radius: 0; }
.service-card__body { padding: clamp(1.3rem, 1rem + 1vw, 1.9rem); display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.service-card__body h3 { font-size: 1.25rem; }
.service-card__body p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.service-card__tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  background: var(--emerald-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}
.service-card__foot { margin-top: 0.4rem; }

/* Compact service tile list */
.service-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.service-tile:hover { transform: translateX(6px); border-color: var(--emerald); box-shadow: var(--shadow-sm); }
.service-tile .ico {
  flex: none; width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--light);
  color: var(--navy);
}
.service-tile h4 { font-size: 1.05rem; }
.service-tile p { font-size: 0.88rem; color: var(--muted); }
.service-tile .link-arrow { margin-left: auto; }

/* -------------------------------------------------------------
   12. Process timeline
------------------------------------------------------------- */
.process { position: relative; }
.process__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 0.5rem + 1.5vw, 2rem);
  position: relative;
}
.process__track::before {
  content: "";
  position: absolute;
  top: 34px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.step__dot {
  width: 70px; height: 70px;
  display: grid; place-items: center;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), color 0.45s var(--ease);
}
.step__dot svg { width: 30px; height: 30px; }
.step:hover .step__dot { transform: translateY(-6px) scale(1.05); background: var(--navy); color: #fff; }
.step__num {
  position: absolute;
  top: -10px; right: -10px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.15rem; }
.step p { font-size: 0.9rem; color: var(--muted); max-width: 24ch; }

.section--dark .step__dot { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); color: #fff; }
.section--dark .step p { color: #b9c6db; }
.section--dark .process__track::before { background: repeating-linear-gradient(90deg, rgba(255,255,255,0.18) 0 10px, transparent 10px 18px); }

/* -------------------------------------------------------------
   13. Split / alternating layouts
------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.split + .split { margin-top: clamp(3rem, 2rem + 3vw, 5.5rem); }
.split--reverse .split__media { order: 2; }
.split__media .img-ph { aspect-ratio: 5 / 4; box-shadow: var(--shadow); }
.split__content h2 { margin-bottom: 1rem; }
.split__list { margin-top: 1.5rem; display: grid; gap: 0.85rem; }
.split__list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.98rem;
}
.split__list li svg {
  flex: none; width: 22px; height: 22px;
  color: var(--emerald-deep);
  margin-top: 2px;
}
.split__list li strong { color: var(--navy); font-family: var(--font-display); }

/* floating stat chip on media */
.media-chip {
  position: absolute;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.media-chip .num { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--navy); line-height: 1; }
.media-chip .lbl { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }
.media-chip--tr { top: -1.2rem; right: -1.2rem; }
.media-chip--bl { bottom: -1.2rem; left: -1.2rem; }

/* -------------------------------------------------------------
   14. Standards infographic
------------------------------------------------------------- */
.standards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 0.5rem + 1.5vw, 1.8rem);
}
.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stat-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.6rem + 2vw, 3.2rem);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-card .num .suffix { color: var(--emerald-deep); }
.stat-card .lbl { margin-top: 0.6rem; color: var(--muted); font-size: 0.92rem; }

/* progress-style quality bars */
.quality-bars { display: grid; gap: 1.4rem; }
.qbar__head { display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.qbar__track { height: 10px; border-radius: 100px; background: var(--light-2); overflow: hidden; }
.qbar__fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--soft-blue), var(--emerald));
  width: 0;
  transition: width 1.4s var(--ease-out);
}
.section--dark .qbar__track { background: rgba(255,255,255,0.1); }
.section--dark .qbar__head { color: #fff; }

/* -------------------------------------------------------------
   15. FAQ accordion
------------------------------------------------------------- */
.faq { display: grid; gap: 0.9rem; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq__item[data-open="true"] { border-color: var(--emerald); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--navy);
}
.faq__icon {
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--light);
  position: relative;
  transition: background 0.3s ease;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.3s ease;
}
.faq__icon::before { width: 13px; height: 2px; }
.faq__icon::after { width: 2px; height: 13px; }
.faq__item[data-open="true"] .faq__icon { background: var(--emerald); }
.faq__item[data-open="true"] .faq__icon::before,
.faq__item[data-open="true"] .faq__icon::after { background: #fff; }
.faq__item[data-open="true"] .faq__icon::after { transform: scaleY(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__a p { padding: 0 1.4rem 1.4rem; color: var(--muted); font-size: 0.98rem; }

/* -------------------------------------------------------------
   16. CTA band
------------------------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-700) 60%, #12457a 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 90% 10%, rgba(16,185,129,0.35), transparent 60%);
  z-index: -1;
}
.cta-band::after {
  content: "";
  position: absolute; right: -60px; bottom: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.05);
  z-index: -1;
}
.cta-band h2 { color: #fff; font-size: var(--fs-h2); max-width: 20ch; }
.cta-band p { color: #c3d0e6; margin-top: 1rem; max-width: 48ch; }
.cta-band .btn-row { margin-top: 2rem; }
.cta-band__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; }
.cta-band__aside {
  display: flex; flex-direction: column; gap: 0.9rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}
.cta-band__aside a { display: flex; align-items: center; gap: 0.8rem; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.cta-band__aside a svg { width: 22px; height: 22px; color: var(--emerald); flex: none; }
.cta-band__aside span { font-size: 0.85rem; color: #9fb0cb; display: block; font-weight: 400; font-family: var(--font-body); }

/* -------------------------------------------------------------
   17. Testimonials
------------------------------------------------------------- */
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100%;
}
.quote-card .stars { display: flex; gap: 3px; color: #f5b100; }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-size: 1.05rem; color: var(--charcoal); line-height: 1.6; }
.quote-card__author { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.quote-card__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
  background: var(--navy); color: #fff;
  flex: none;
}
.quote-card__author strong { display: block; font-family: var(--font-display); color: var(--navy); font-size: 0.98rem; }
.quote-card__author span { font-size: 0.82rem; color: var(--muted); }

/* -------------------------------------------------------------
   18. Forms (contact)
------------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.field label .req { color: var(--emerald-deep); }
.field input, .field select, .field textarea {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 0.98rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px var(--emerald-soft);
}
.field--error input, .field--error select, .field--error textarea { border-color: #e5484d; }
.field__err { font-size: 0.8rem; color: #e5484d; display: none; }
.field--error .field__err { display: block; }
.form__consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.88rem; color: var(--muted); }
.form__consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--emerald); flex: none; }
.form__note { font-size: 0.85rem; color: var(--muted); }
.form-success {
  display: none;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  background: var(--emerald-soft);
  border: 1px solid var(--emerald);
  color: var(--emerald-deep);
  font-weight: 500;
  align-items: center;
  gap: 0.7rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: none; }

/* contact info cards */
.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  align-items: flex-start;
}
.info-card .ico {
  flex: none; width: 48px; height: 48px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--navy); color: #fff;
}
.info-card h4 { font-size: 1.05rem; }
.info-card p, .info-card a { color: var(--muted); font-size: 0.95rem; }
.info-card a:hover { color: var(--emerald-deep); }

/* -------------------------------------------------------------
   19. Pill / list utilities
------------------------------------------------------------- */
.pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 100px;
  background: var(--light);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}
.pill svg { width: 16px; height: 16px; color: var(--emerald-deep); }

.check-list { display: grid; gap: 0.8rem; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.98rem; }
.check-list li svg { flex: none; width: 22px; height: 22px; color: var(--emerald-deep); margin-top: 1px; }

.section--dark .check-list li { color: #cdd8e9; }

/* two-col checklist inside cards */
.mini-list { display: grid; gap: 0.55rem; }
.mini-list li { display: flex; gap: 0.55rem; align-items: center; font-size: 0.92rem; color: var(--muted); }
.mini-list li svg { flex: none; width: 18px; height: 18px; color: var(--emerald); }

/* -------------------------------------------------------------
   20. Pricing / plan cards
------------------------------------------------------------- */
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  height: 100%;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan--featured {
  background: linear-gradient(160deg, var(--navy), var(--navy-700));
  border-color: transparent;
  color: #cdd8e9;
  position: relative;
}
.plan--featured h3, .plan--featured .plan__price { color: #fff; }
.plan__badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: var(--emerald);
  color: #fff;
  font-family: var(--font-display);
}
.plan__price { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; color: var(--navy); line-height: 1; }
.plan__price small { font-size: 0.95rem; color: var(--muted); font-weight: 500; }
.plan--featured .plan__price small { color: #9fb0cb; }
.plan p.desc { color: var(--muted); font-size: 0.95rem; }
.plan--featured p.desc { color: #b9c6db; }
.plan .mini-list { margin-top: 0.3rem; }
.plan--featured .mini-list li { color: #cdd8e9; }

/* -------------------------------------------------------------
   21. Page hero (interior pages)
------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding-top: clamp(8rem, 6rem + 7vw, 11rem);
  padding-bottom: clamp(3rem, 2rem + 3vw, 5rem);
  background: radial-gradient(120% 130% at 85% 0%, #16345f 0%, var(--navy) 60%, #08152a 100%);
  color: #e7eefa;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(100% 70% at 80% 0%, #000, transparent 75%);
  mask-image: radial-gradient(100% 70% at 80% 0%, #000, transparent 75%);
}
.page-hero__glow {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  filter: blur(90px); opacity: 0.45; top: -140px; right: -60px;
  background: rgba(16,185,129,0.45); pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { color: #fff; font-size: var(--fs-h1); margin-top: 1.2rem; }
.page-hero p { color: #c3d0e6; margin-top: 1.1rem; font-size: var(--fs-lead); max-width: 60ch; }
.page-hero .btn-row { margin-top: 1.9rem; }

/* Breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: #9fb0cb; }
.crumbs a { color: #c3d0e6; }
.crumbs a:hover { color: #fff; }
.crumbs span.sep { opacity: 0.5; }
.crumbs [aria-current] { color: #fff; }

/* -------------------------------------------------------------
   22. Footer
------------------------------------------------------------- */
.footer {
  background: var(--navy);
  color: #b9c6db;
  padding-top: clamp(3.5rem, 2.5rem + 3vw, 5.5rem);
}
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer__brand .brand { color: #fff; margin-bottom: 1.2rem; }
.footer__brand .brand small { color: rgba(255,255,255,0.6); }
.footer__brand p { color: #93a3bd; font-size: 0.95rem; max-width: 34ch; }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer__social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #cdd8e9;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.footer__social a:hover { background: var(--emerald); color: #fff; transform: translateY(-3px); border-color: transparent; }
.footer__social svg { width: 19px; height: 19px; }
.footer__col h4 { color: #fff; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.1rem; font-family: var(--font-display); }
.footer__col ul { display: grid; gap: 0.7rem; }
.footer__col a { font-size: 0.95rem; color: #a9b8d0; transition: color 0.25s ease, padding-left 0.25s ease; }
.footer__col a:hover { color: #fff; padding-left: 4px; }
.footer__contact li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.95rem; margin-bottom: 0.9rem; }
.footer__contact svg { flex: none; width: 20px; height: 20px; color: var(--emerald); margin-top: 2px; }
.footer__bottom {
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #8496b3;
}
.footer__legal { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.footer__legal a:hover { color: #fff; }

/* -------------------------------------------------------------
   23. Back-to-top & cookie banner
------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: clamp(1rem, 0.5rem + 1.5vw, 2rem);
  bottom: clamp(1rem, 0.5rem + 1.5vw, 2rem);
  z-index: 80;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.3s ease;
}
.to-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { background: var(--emerald); transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; }

.cookie {
  position: fixed;
  left: clamp(1rem, 0.5rem + 1.5vw, 2rem);
  bottom: clamp(1rem, 0.5rem + 1.5vw, 2rem);
  z-index: 90;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(140%);
  transition: transform 0.5s var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie h4 { font-size: 1.1rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.cookie h4 svg { width: 22px; height: 22px; color: var(--emerald-deep); }
.cookie p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.1rem; }
.cookie p a { color: var(--emerald-deep); text-decoration: underline; }
.cookie__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cookie__actions .btn { padding: 0.7rem 1.2rem; font-size: 0.9rem; }

/* -------------------------------------------------------------
   24. Reveal-on-scroll animation
------------------------------------------------------------- */
/* Only hide reveals when JS is available (class set in <head>).
   Without JS the content stays fully visible — no blank page. */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }
.js-reveal .reveal[data-reveal="left"] { transform: translateX(-32px); }
.js-reveal .reveal[data-reveal="right"] { transform: translateX(32px); }
.js-reveal .reveal[data-reveal="scale"] { transform: scale(0.94); }
.js-reveal .reveal.is-visible[data-reveal] { transform: none; }
/* stagger via delay */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* -------------------------------------------------------------
   25. Misc content (legal pages, prose)
------------------------------------------------------------- */
.prose { max-width: 760px; }
.prose h2 { font-size: var(--fs-h3); margin-top: 2.6rem; margin-bottom: 0.8rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.8rem; margin-bottom: 0.6rem; }
.prose p { color: var(--charcoal); margin-bottom: 1rem; }
.prose ul { margin: 0 0 1rem 0; display: grid; gap: 0.5rem; }
.prose ul li { position: relative; padding-left: 1.4rem; color: var(--charcoal); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--emerald);
}
.prose a { color: var(--emerald-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--navy); }
.prose__meta {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--light);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.toc {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin-bottom: 2.5rem;
}
.toc h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.9rem; }
.toc ol { list-style: none; display: grid; gap: 0.5rem; counter-reset: toc; }
.toc ol li { counter-increment: toc; }
.toc ol li a { color: var(--charcoal); font-weight: 500; display: flex; gap: 0.6rem; }
.toc ol li a::before { content: counter(toc, decimal-leading-zero); color: var(--emerald-deep); font-family: var(--font-display); font-weight: 700; }
.toc ol li a:hover { color: var(--emerald-deep); }

/* stat strip (dark) */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-strip .item { text-align: center; }
.stat-strip .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem,1.5rem+1.6vw,2.8rem); color: #fff; letter-spacing: -0.03em; }
.stat-strip .num .suffix { color: #4fd3aa; }
.stat-strip .lbl { color: #9fb0cb; font-size: 0.9rem; margin-top: 0.4rem; }

/* value badges row */
.badge-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.6rem 1.1rem; border-radius: 100px;
  background: #fff; border: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.badge svg { width: 18px; height: 18px; color: var(--emerald-deep); }

/* team card */
.team-card { text-align: center; }
.team-card .img-ph { aspect-ratio: 3/4; border-radius: var(--radius-lg); margin-bottom: 1rem; }
.team-card h4 { font-size: 1.15rem; }
.team-card span { color: var(--emerald-deep); font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; }
.team-card p { color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem; }

/* -------------------------------------------------------------
   26. Responsive
------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 480px; margin-inline: auto; width: 100%; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer__brand { grid-column: 1 / -1; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .process__track { grid-template-columns: repeat(2, 1fr); gap: 2.2rem; }
  .process__track::before { display: none; }
  .standards { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav-toggle { display: grid; }
  .nav__cta { gap: 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { max-width: 520px; }
  .section-head--split { align-items: flex-start; }
}

@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .standards { grid-template-columns: 1fr 1fr; }
  .process__track { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.4rem; }
  .footer__top { grid-template-columns: 1fr; }
  .cookie { left: 0.8rem; right: 0.8rem; max-width: none; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .hero__card { left: 0.5rem; right: 0.5rem; max-width: none; }
}

@media (max-width: 400px) {
  /* Keep the long wordmark comfortable on the smallest phones */
  .nav__inner { gap: 0.5rem; }
  .brand { font-size: 0.9rem; gap: 0.5rem; }
  .brand__mark { width: 32px; height: 32px; border-radius: 9px; }
  .brand__mark svg { width: 17px; height: 17px; }
  .brand small { display: none; }
}

/* utility spacing */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }
