/* ============================================================
   ADHD ATHENS - Focus Mode Design System
   Premium health-tech aesthetic · optimized for ADHD users
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --blue: #02a9fe;
  --blue-dark: #3c8bba;
  --pink: #ff84f8;
  --yellow: #f9bf09;

  /* Derived */
  --ink: #0d2b3e;          /* deep calm navy for text */
  --ink-soft: #45647a;     /* secondary text */
  --ink-faint: #7d99ab;
  --bg: #ffffff;
  --bg-soft: #f4fafe;      /* whisper blue */
  --bg-softer: #eaf6fe;
  --line: #dcecf7;
  --blue-ghost: rgba(2, 169, 254, 0.08);
  --pink-ghost: rgba(255, 132, 248, 0.12);
  --yellow-ghost: rgba(249, 191, 9, 0.12);

  /* Type */
  --font-display: "Commissioner", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Shape */
  --radius-s: 12px;
  --radius-m: 20px;
  --radius-l: 28px;
  --radius-xl: 40px;

  /* Elevation */
  --shadow-s: 0 2px 8px rgba(13, 43, 62, 0.06);
  --shadow-m: 0 10px 30px rgba(13, 43, 62, 0.09);
  --shadow-l: 0 24px 60px rgba(13, 43, 62, 0.13);
  --glow-blue: 0 12px 32px rgba(2, 169, 254, 0.28);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --speed: 0.55s;

  --header-h: 88px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-dark); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}
p { margin: 0 0 1em; }
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: rgba(2, 169, 254, 0.25); }

/* ---------- Language switching ----------
   Elements carry .en or .el - only the active language is shown */
html[data-lang="en"] .el { display: none !important; }
html[data-lang="el"] .en { display: none !important; }

/* ---------- Layout ---------- */
.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: clamp(59px, 7.29vw, 106px) 0 clamp(72px, 9vw, 130px);
}
.page-hero + .section:not(.section-science-note),
.hero + .section {
  padding-top: clamp(20px, 2.5vw, 36px);
}
.section:has(.split) {
  padding-bottom: clamp(44px, 5.5vw, 78px);
}
.section-soft { background: var(--bg-soft); }

/* Soft wave divider between sections */
.divider {
  display: block;
  width: 100%;
  height: 70px;
  margin-bottom: -1px;
  color: var(--bg-soft);
}
.divider.flip { transform: scaleY(-1); }

/* ---------- Section headers (Focus Mode: one idea per section) ---------- */
.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 18px;
}
.eyebrow .dot { display: none; }
.eyebrow::before, .eyebrow::after {
  content: "";
  flex: none;
  width: 32px;
  height: 3px;
  border-radius: 999px;
}
.eyebrow::before { background: linear-gradient(to left, var(--blue) 30%, transparent); }
.eyebrow::after { background: linear-gradient(to right, var(--blue) 30%, transparent); }
.eyebrow.pink { color: #b3489c; }
.eyebrow.pink::before { background: linear-gradient(to left, var(--pink) 30%, transparent); }
.eyebrow.pink::after { background: linear-gradient(to right, var(--pink) 30%, transparent); }
.eyebrow.yellow { color: #9c7800; }
.eyebrow.yellow::before { background: linear-gradient(to left, var(--yellow) 30%, transparent); }
.eyebrow.yellow::after { background: linear-gradient(to right, var(--yellow) 30%, transparent); }
.eyebrow.light { color: #8fd9ff; }
.eyebrow.light::before { background: linear-gradient(to left, rgba(143, 217, 255, 0.9) 30%, transparent); }
.eyebrow.light::after { background: linear-gradient(to right, rgba(143, 217, 255, 0.9) 30%, transparent); }

.section-title {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
}
.section-sub {
  font-size: clamp(17px, 1.5vw, 19.5px);
  color: var(--ink-soft);
  max-width: 60ch;
}
.section-head.center .section-sub { margin-inline: auto; }
.accent-word { position: relative; white-space: nowrap; }
.accent-word .scribble {
  position: absolute;
  left: 0; right: 0; bottom: -0.12em;
  width: 100%; height: 0.34em;
  color: var(--yellow);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1;
  padding: 17px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn svg { flex: none; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: linear-gradient(120deg, var(--blue), #2fb9ff 55%, var(--blue));
  background-size: 200% 100%;
  color: #fff;
  box-shadow: var(--glow-blue);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background-position: 95% 0;
  box-shadow: 0 18px 40px rgba(2, 169, 254, 0.38);
}
.btn-primary:active { transform: translateY(-1px); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-s);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  color: var(--blue-dark);
  box-shadow: var(--shadow-m);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-l); }
.btn-white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(4, 36, 56, 0.35);
}
.btn-white:hover { transform: translateY(-3px); }
.btn-s { padding: 12px 22px; font-size: 15px; }

/* ---------- 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.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(13, 43, 62, 0.06);
}
/* Homepage hero: keep the same settled header presentation as inner pages */
body:has(main > .hero:first-child) .site-header {
  background: #fff;
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(13, 43, 62, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header .logo img {
  height: 56px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}
.logo { flex: none; display: flex; align-items: center; }

.main-nav { margin-inline: auto; }
.main-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.main-nav a {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink-soft);
  padding: 9px 15px;
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}
.main-nav a:hover { color: var(--ink); background: var(--blue-ghost); }
.main-nav a.active, .main-nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--blue-ghost);
}

.header-actions { display: flex; align-items: center; gap: 14px; flex: none; }

.lang-toggle {
  display: inline-flex;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.lang-toggle button {
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 13px;
  color: var(--ink-faint);
  transition: background 0.25s, color 0.25s;
}
.lang-toggle button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0 12px;
}
.nav-burger span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Scroll progress (Focus Mode: orientation) */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  z-index: 110;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  border-radius: 0 3px 3px 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(48px, 7vw, 90px)) 0 clamp(32px, 4.5vw, 52px);
  overflow: hidden;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(2, 169, 254, 0.13), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(255, 132, 248, 0.10), transparent 55%),
    linear-gradient(180deg, #f7fcff 0%, #fff 90%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 800;
  letter-spacing: -0.028em;
}
.hero-lede {
  font-size: clamp(17.5px, 1.7vw, 20.5px);
  color: var(--ink-soft);
  max-width: 54ch;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-faint);
  font-weight: 500;
}

/* Hero visual - orbital rings echoing the logo */
.hero-visual { position: relative; }
.hero-visual .photo-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  transform: rotate(1.5deg);
}
.hero-visual .photo-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 790;
  object-fit: cover;
}
.hero-orbits {
  position: absolute;
  inset: -14% -18% auto auto;
  width: 65%;
  z-index: -1;
  color: var(--blue);
  opacity: 0.6;
}
.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-m);
  padding: 13px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
}
.hero-chip .ic {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: grid; place-items: center;
  flex: none;
}
.hero-chip small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--ink-faint);
}
.chip-1 { top: 7%; left: -9%; animation: float-y 7s ease-in-out infinite; }
.chip-2 { bottom: 9%; right: -6%; animation: float-y 8s ease-in-out 1.2s infinite; }
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Ambient blobs (only continuously-moving elements on the page) */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.blob-blue { background: radial-gradient(circle, rgba(2,169,254,0.35), transparent 65%); }
.blob-pink { background: radial-gradient(circle, rgba(255,132,248,0.3), transparent 65%); }
.blob-yellow { background: radial-gradient(circle, rgba(249,191,9,0.24), transparent 65%); }
.blob-drift-1 { animation: drift-1 26s ease-in-out infinite alternate; }
.blob-drift-2 { animation: drift-2 32s ease-in-out infinite alternate; }
@keyframes drift-1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(60px, -40px) scale(1.15); }
}
@keyframes drift-2 {
  from { transform: translate(0, 0) scale(1.1); }
  to { transform: translate(-50px, 50px) scale(0.95); }
}

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 1;
  margin-top: clamp(48px, 6vw, 76px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 16px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.35;
  color: var(--ink);
}
.trust-item svg { flex: none; }

/* ---------- Focus Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.focus-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px 28px;
  box-shadow: var(--shadow-s);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
  display: flex;
  flex-direction: column;
}
.focus-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 48px rgba(13, 43, 62, 0.12), 0 0 0 1px rgba(2, 169, 254, 0.25);
  border-color: rgba(2, 169, 254, 0.4);
}
.focus-card .card-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--blue-ghost);
  color: var(--blue);
  transition: transform 0.4s var(--ease-out);
}
.focus-card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
.focus-card .card-icon.pink { background: var(--pink-ghost); color: #d65fcd; }
.focus-card .card-icon.yellow { background: var(--yellow-ghost); color: #d8a407; }
.focus-card .card-icon.dark { background: rgba(60, 139, 186, 0.12); color: var(--blue-dark); }
.focus-card h3 {
  font-size: 20.5px;
  font-weight: 700;
  margin-bottom: 8px;
}
.focus-card p {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin-bottom: 0;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--blue-dark);
}
.card-link svg { transition: transform 0.3s var(--ease-out); }
.focus-card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Journey Blocks (assessment pathway) ---------- */
.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.journey-path {
  position: absolute;
  top: 56px;
  left: 8%;
  /* SVG is a replaced element: `right` alone won't size it, so set width explicitly */
  width: 84%;
  height: 4px;
  z-index: 0;
  color: var(--line);
}
.journey-path .track { stroke: currentColor; }
.journey-path .progress {
  stroke: url(#journeyGrad);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.8s var(--ease-out) 0.3s;
}
.journey.in-view .journey-path .progress { stroke-dashoffset: 0; }

.journey-step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 26px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-s);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.journey-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.journey-num {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 8px 20px rgba(2, 169, 254, 0.35);
  position: relative;
}
.journey-step:nth-child(3) .journey-num { background: linear-gradient(135deg, #ff9af9, #e26cd8); box-shadow: 0 8px 20px rgba(255, 132, 248, 0.4); }
.journey-step:nth-child(4) .journey-num { background: linear-gradient(135deg, #ffd23e, #e6ac00); box-shadow: 0 8px 20px rgba(249, 191, 9, 0.4); }
.journey-step:nth-child(5) .journey-num { background: linear-gradient(135deg, #3c8bba, #2a6c94); box-shadow: 0 8px 20px rgba(60, 139, 186, 0.4); }
.journey-step h3 { font-size: 19px; margin-bottom: 7px; }
.journey-step p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.journey-step .step-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
  font-family: var(--font-display);
}

/* ---------- Highlight Box ----------
   White card with a gradient hairline border and a floating,
   focus-ring icon badge overlapping the left edge */
.highlight-box {
  position: relative;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(120deg, rgba(2, 169, 254, 0.65), rgba(2, 169, 254, 0.12) 45%, rgba(2, 169, 254, 0.3)) border-box;
  border: 1.5px solid transparent;
  border-radius: var(--radius-m);
  box-shadow: 0 10px 28px rgba(13, 43, 62, 0.07);
  padding: 22px 26px 22px 50px;
  margin: 34px 0 34px 28px;
}
.highlight-box .hb-icon {
  position: absolute;
  left: -27px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow:
    0 0 0 5px #fff,
    0 0 0 7px rgba(2, 169, 254, 0.3),
    0 10px 22px rgba(2, 169, 254, 0.3);
}
.highlight-box.yellow {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(120deg, rgba(249, 191, 9, 0.7), rgba(249, 191, 9, 0.12) 45%, rgba(249, 191, 9, 0.35)) border-box;
}
.highlight-box.yellow .hb-icon {
  background: linear-gradient(135deg, #ffd23e, #e6ac00);
  box-shadow:
    0 0 0 5px #fff,
    0 0 0 7px rgba(249, 191, 9, 0.35),
    0 10px 22px rgba(249, 191, 9, 0.35);
}
.highlight-box.pink {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(120deg, rgba(255, 132, 248, 0.7), rgba(255, 132, 248, 0.12) 45%, rgba(255, 132, 248, 0.35)) border-box;
}
.highlight-box.pink .hb-icon {
  background: linear-gradient(135deg, #ff9af9, #d65fcd);
  box-shadow:
    0 0 0 5px #fff,
    0 0 0 7px rgba(255, 132, 248, 0.35),
    0 10px 22px rgba(255, 132, 248, 0.35);
}
.highlight-box p { margin: 0; font-size: 15.5px; }
.highlight-box strong { font-family: var(--font-display); }

/* ---------- Why Choose / comparison cards ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.why-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 34px 32px;
  box-shadow: var(--shadow-s);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.why-card::after {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: var(--blue-ghost);
  transition: transform 0.5s var(--ease-out);
}
.why-card:nth-child(2)::after { background: var(--pink-ghost); }
.why-card:nth-child(3)::after { background: var(--yellow-ghost); }
.why-card:nth-child(4)::after { background: rgba(60, 139, 186, 0.1); }
.why-card:hover::after { transform: scale(1.5); }
.why-card > * { position: relative; z-index: 1; }
.why-card h3 { font-size: 21px; display: flex; align-items: center; gap: 13px; }
.why-card h3 svg { flex: none; }
.why-card p { color: var(--ink-soft); font-size: 15.5px; margin: 0; }

/* ---------- Stats ---------- */
.stats-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(2, 169, 254, 0.25), transparent 60%),
    radial-gradient(700px 400px at 5% 100%, rgba(255, 132, 248, 0.16), transparent 55%),
    var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(44px, 5vw, 70px) clamp(28px, 5vw, 70px);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(120deg, #6fd0ff, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  max-width: 22ch;
  margin-inline: auto;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  /* cards keep their natural height, so expanding one bio doesn't stretch the others */
  align-items: start;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.team-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-m); }
.team-photo {
  position: relative;
  background: linear-gradient(160deg, var(--bg-softer), #fff 80%);
  overflow: hidden;
}
.team-photo::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 0%, rgba(2, 169, 254, 0.18), transparent 70%);
}
.team-card:nth-child(2) .team-photo::before { background: radial-gradient(circle at 50% 0%, rgba(255, 132, 248, 0.2), transparent 70%); }
.team-card:nth-child(3) .team-photo::before { background: radial-gradient(circle at 50% 0%, rgba(249, 191, 9, 0.18), transparent 70%); }
.team-photo img {
  position: relative;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease-out);
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.team-body h3 { font-size: 21px; margin-bottom: 4px; }
.team-role {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 14px;
}
.team-body p { font-size: 15px; color: var(--ink-soft); flex: 1; }
.bio-toggle {
  align-self: flex-start;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-ghost);
  border: 1px solid rgba(2, 169, 254, 0.25);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.bio-toggle:hover { background: rgba(2, 169, 254, 0.15); transform: translateY(-2px); }
.bio-toggle svg { transition: transform 0.3s var(--ease-out); }
.bio-toggle:hover svg { transform: translateX(3px); }

/* ---------- Full bio profiles (about page) ---------- */
.bio-profile {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(30px, 4.5vw, 64px);
  align-items: start;
  scroll-margin-top: calc(var(--header-h) + 28px);
}
.bio-profile + .bio-profile {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(48px, 6vw, 80px);
  border-top: 1px dashed var(--line);
}
.bio-photo {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-softer), #fff 80%);
  box-shadow: var(--shadow-s);
}
.bio-photo::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 0%, rgba(2, 169, 254, 0.18), transparent 70%);
}
.bio-profile:nth-of-type(2) .bio-photo::before { background: radial-gradient(circle at 50% 0%, rgba(255, 132, 248, 0.2), transparent 70%); }
.bio-profile:nth-of-type(3) .bio-photo::before { background: radial-gradient(circle at 50% 0%, rgba(249, 191, 9, 0.18), transparent 70%); }
.bio-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  object-position: top center;
}
.bio-content h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 4px;
}
.bio-content .team-role { margin-bottom: 20px; font-size: 15px; }
.bio-content p { color: var(--ink-soft); font-size: 16px; }

@media (max-width: 1024px) {
  .bio-profile { grid-template-columns: 1fr; }
  .bio-photo {
    position: static;
    max-width: 420px;
  }
}

/* ---------- Testimonials ---------- */
.testimonials-wrap { position: relative; max-width: 820px; margin-inline: auto; }
.testimonial-viewport { overflow: hidden; border-radius: var(--radius-l); }
.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
}
.testimonial {
  flex: 0 0 100%;
  margin: 0; /* reset default <figure> margins that misalign the slider */
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(32px, 4vw, 52px);
  text-align: center;
  box-shadow: var(--shadow-s);
}
.testimonial .quote-mark { color: var(--pink); margin-bottom: 14px; }
.testimonial blockquote {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}
.testimonial cite {
  font-style: normal;
  font-size: 14.5px;
  color: var(--ink-faint);
  font-weight: 600;
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}
.t-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: all 0.3s var(--ease-out);
}
.t-arrow:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-s); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 9px; height: 9px;
  border-radius: 999px;
  border: 0;
  background: var(--line);
  padding: 0;
  transition: all 0.3s var(--ease-out);
}
.t-dot[aria-current="true"] { width: 26px; background: var(--blue); }

/* ---------- Photo gallery slideshow ---------- */
.gallery-wrap {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
}
.gallery-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-m);
  background: #fff;
}
.gallery-track {
  display: flex;
  transition: transform 0.65s var(--ease-out);
}
.gallery-slide {
  flex: 0 0 100%;
  margin: 0;
  position: relative;
}
.gallery-slide img {
  width: 100%;
  height: clamp(280px, 48vw, 560px);
  object-fit: cover;
  object-position: center;
}
.gallery-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

/* ---------- FAQ Accordion ---------- */
#faq.section {
  padding-top: clamp(28px, 3.5vw, 48px);
}
.divider + #faq.section {
  padding-top: clamp(16px, 2vw, 28px);
}
#faq .section-head {
  margin-bottom: clamp(24px, 3vw, 40px);
}
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item.open {
  border-color: rgba(2, 169, 254, 0.4);
  box-shadow: var(--shadow-m);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  text-align: left;
  background: none;
  border: 0;
  padding: 21px 24px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.faq-q .faq-chevron {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-ghost);
  color: var(--blue-dark);
  transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--blue);
  color: #fff;
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner > div {
  padding: 0 24px 24px;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.faq-a-inner ul { margin: 8px 0 0; padding-left: 22px; }
.faq-a-inner li { margin-bottom: 4px; }

/* ADHD page — science callout */
.section-science-note {
  padding-top: 0;
  padding-bottom: clamp(48px, 6vw, 88px);
}
.science-callout {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(40px, 4.5vw, 48px) clamp(28px, 4vw, 52px);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(2, 169, 254, 0.55), rgba(255, 132, 248, 0.28) 52%, rgba(249, 191, 9, 0.42)) border-box;
  border: 2px solid transparent;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}
.science-callout-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 22px);
  text-align: center;
}
.science-callout::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  font-weight: 800;
  color: rgba(2, 169, 254, 0.1);
  pointer-events: none;
  user-select: none;
}
.science-callout-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow:
    0 0 0 5px #fff,
    0 0 0 7px rgba(2, 169, 254, 0.22),
    0 10px 24px rgba(2, 169, 254, 0.28);
}
.science-callout-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 600;
  line-height: 1.58;
  color: var(--ink);
  max-width: 58ch;
  margin-inline: auto;
}

/* ---------- Final CTA ---------- */
.cta-final {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(2, 169, 254, 0.35), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(255, 132, 248, 0.22), transparent 55%),
    radial-gradient(500px 300px at 50% 120%, rgba(249, 191, 9, 0.15), transparent 60%),
    var(--ink);
  color: #fff;
  padding: clamp(52px, 7vw, 96px) clamp(28px, 6vw, 90px);
  text-align: center;
}
.cta-final h2 {
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 800;
  max-width: 22ch;
  margin-inline: auto;
}
.cta-final p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 56ch;
  margin: 0 auto 36px;
}
.cta-final .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cta-contact-row {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.85);
}
.cta-contact-row a {
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.cta-contact-row a:hover { color: #6fd0ff; }
.cta-orbits {
  position: absolute;
  width: 480px;
  right: -120px;
  top: -130px;
  color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #07212f;
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(52px, 6vw, 80px) 0 36px;
  margin-top: clamp(72px, 9vw, 130px);
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 48px;
}
.site-footer .logo img { height: 52px; margin-bottom: 18px; }
.site-footer h4 {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.75); transition: color 0.25s; }
.site-footer a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
}


/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }

/* SVG line-draw on reveal */
.draw-path path, .draw-path circle, .draw-path ellipse {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.6s var(--ease-out) 0.2s;
}
.draw-path.in-view path, .draw-path.in-view circle, .draw-path.in-view ellipse {
  stroke-dashoffset: 0;
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + clamp(48px, 7vw, 90px)) 0 clamp(32px, 4.5vw, 52px);
  background:
    radial-gradient(900px 480px at 90% -20%, rgba(2, 169, 254, 0.14), transparent 60%),
    radial-gradient(700px 420px at 0% 110%, rgba(255, 132, 248, 0.09), transparent 55%),
    linear-gradient(180deg, #f7fcff, #fff);
}
.page-hero h1 { font-size: clamp(34px, 4.8vw, 56px); font-weight: 800; max-width: 20ch; }
.page-hero-lede {
  max-width: 54ch;
  margin: 8px 0 0;
  font-size: clamp(16.5px, 1.5vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
}
.page-hero .split {
  margin-top: clamp(28px, 4vw, 48px);
  align-items: start;
}
.page-hero .section-sub { font-size: clamp(17px, 1.6vw, 20px); }
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-faint);
  margin-bottom: 22px;
}
.breadcrumbs a { color: var(--blue-dark); }
.breadcrumbs svg { opacity: 0.5; }

/* ---------- Prose / content sections on subpages ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.split .photo-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-l);
}
.split .photo-card img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.prose h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; }
.prose h3 { font-size: 21px; margin-top: 1.6em; }
.prose p, .prose li { color: var(--ink-soft); font-size: 16px; }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: 10px; margin: 18px 0; }
.prose ul li {
  position: relative;
  padding-left: 34px;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-ghost) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233c8bba' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* Focus side-nav (sticky on service pages) */
.with-sidenav {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.side-nav {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  display: grid;
  gap: 4px;
}
.side-nav .side-label {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ink-faint);
  margin-bottom: 10px;
}
.side-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 16px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  border-left: 3px solid transparent;
  transition: all 0.25s;
}
.side-nav a:hover { background: var(--blue-ghost); color: var(--ink); }
.side-nav a.active {
  background: var(--blue-ghost);
  color: var(--blue-dark);
  border-left-color: var(--blue);
}
.service-block { scroll-margin-top: calc(var(--header-h) + 24px); }
.service-block + .service-block { margin-top: clamp(56px, 7vw, 90px); padding-top: clamp(56px, 7vw, 90px); border-top: 1px dashed var(--line); }
.service-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.service-head .card-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--blue-ghost);
  color: var(--blue);
  flex: none;
}
.service-head h2 { margin: 0; font-size: clamp(25px, 2.8vw, 33px); }

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 12px 20px;
  font-family: var(--font-display);
  box-shadow: var(--shadow-s);
}
.price-tag .amount { font-size: 24px; font-weight: 800; color: var(--ink); }
.price-tag .per { font-size: 13.5px; color: var(--ink-faint); font-weight: 600; }

/* Mini-steps (coaching) */
.mini-steps { display: grid; gap: 14px; margin: 24px 0; }
.mini-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.mini-step:hover { box-shadow: var(--shadow-s); }
.mini-step-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  text-align: left;
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}
.mini-step .n {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-ghost);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
}
.mini-step-header h4 { margin: 2px 0 3px; font-size: 16.5px; flex: 1; }
.mini-step-header .step-summary { margin: 0; font-size: 14px; color: var(--ink-soft); flex: 1; }
.mini-step-toggle {
  flex: none;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
  padding: 0;
  white-space: nowrap;
}
.mini-step-toggle svg { transition: transform 0.3s var(--ease-out); }
.mini-step.open .mini-step-toggle svg { transform: rotate(180deg); }
.mini-step-details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}
.mini-step.open .mini-step-details { grid-template-rows: 1fr; }
.mini-step-details-inner {
  overflow: hidden;
  padding: 0 20px 0 70px;
}
.mini-step.open .mini-step-details-inner { padding-bottom: 20px; }
.mini-step-details-inner p,
.mini-step-details-inner ul { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 10px; }
.mini-step-details-inner ul { padding-left: 0; list-style: none; display: grid; gap: 6px; }
.mini-step-details-inner ul li { position: relative; padding-left: 22px; }
.mini-step-details-inner ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.55;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
.contact-shared {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(22px, 2.5vw, 30px);
  box-shadow: var(--shadow-s);
  margin-top: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(36px, 4.5vw, 52px);
}
.contact-shared .ic {
  flex: none;
  width: 50px; height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
}
.contact-shared h2 {
  font-size: 18px;
  margin-bottom: 6px;
}
.contact-shared p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-soft);
}
.contact-shared a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.contact-shared a:hover { color: var(--blue-dark); }
.contact-shared-note {
  display: block;
  margin-top: 4px;
  font-size: 14.5px;
  color: var(--ink-faint);
}
.people-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.person-contact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(22px, 2.4vw, 28px);
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.person-contact:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.person-contact h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.person-role {
  margin: 0;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue-dark);
  line-height: 1.4;
}
.person-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.person-details li {
  display: grid;
  gap: 3px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.person-details .pd-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.person-details a {
  color: var(--ink);
  font-weight: 600;
  word-break: break-word;
}
.person-details a:hover { color: var(--blue-dark); }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px;
  box-shadow: var(--shadow-s);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.contact-card .ic {
  flex: none;
  width: 50px; height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--blue-ghost);
  color: var(--blue);
}
.contact-card h3 { font-size: 17.5px; margin-bottom: 4px; }
.contact-card p { margin: 0; font-size: 15px; color: var(--ink-soft); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: var(--shadow-m);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
}
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--bg-soft);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(2, 169, 254, 0.14);
}
.form-note { font-size: 13.5px; color: var(--ink-faint); margin-top: 14px; }
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-status {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
}
.form-status.is-success {
  background: rgba(2, 169, 254, 0.1);
  color: var(--blue-dark);
  border: 1px solid rgba(2, 169, 254, 0.22);
}
.form-status.is-error {
  background: rgba(200, 60, 60, 0.08);
  color: #9b2c2c;
  border: 1px solid rgba(200, 60, 60, 0.2);
}
.form-card form.is-sending #booking-submit {
  opacity: 0.7;
  pointer-events: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 14px 14px;
  font-weight: 600;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .nav-burger { display: flex; }
  .site-header.menu-open .main-nav {
    display: block;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-l);
    padding: 18px 24px 26px;
  }
  .site-header.menu-open .main-nav ul { flex-direction: column; gap: 2px; }
  .site-header.menu-open .main-nav a { padding: 14px 16px; font-size: 17px; border-radius: 14px; }
  .header-actions .btn { display: none; }
  /* nav (with its auto margins) is hidden, so push the actions right ourselves */
  .header-actions { margin-left: auto; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .journey-path { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .with-sidenav { grid-template-columns: 1fr; }
  .side-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
  }
  .side-nav .side-label { width: 100%; }
  .side-nav a { border-left: 0; border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 17px; }
  .side-nav a.active { border-color: var(--blue); }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .people-contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 36px); }
  .card-grid, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 26px 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-chip { display: none; }
  .trust-bar { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-slide img { height: clamp(220px, 58vw, 360px); }
  .people-contact-grid { grid-template-columns: 1fr; }
  .site-header .logo img { height: 46px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .draw-path path, .draw-path circle, .draw-path ellipse { stroke-dashoffset: 0; }
}
