/* ============================================================
   FYMEKO — produkční stylesheet
   Design tokeny + komponenty + responzivita

   BAREVNÉ REŽIMY: výchozí je tmavý (:root). Světlý = atribut
   data-theme="light" na <html> (nastavuje js/theme.js).
   PRAVIDLO: v komponentách NEPOUŽÍVAT hardcoded barvy — vždy token,
   jinak se nová věc ve světlém režimu rozbije.
   ============================================================ */

:root {
  color-scheme: dark;   /* nativní prvky (scrollbary, výběry) podle režimu */

  /* Pozadí */
  --bg-base: #080b10;
  --bg-card-section: #0e141d;
  --bg-input: #0a0f16;
  --bg-cell: #0b1018;
  --bg-footer: #0a0e13;
  --bg-card-dark: #0c121b;
  --bg-spec-hover: #101822;
  --grad-card: linear-gradient(160deg, #0c121b, #0a0f16);
  --grad-modal: linear-gradient(160deg, #0e141d, #0a0f16);

  /* Akcent (teal) */
  --teal: #0db2ba;
  --teal-cta: linear-gradient(135deg, #17c4ce, #0a97a0);
  --teal-light: #a6ecf0;
  --teal-text: #45d4dd;
  --on-teal: #032528;
  --on-teal-2: #04262a;

  /* Text */
  --text-1: #f1f6f9;
  --text-1b: #eef3f7;
  --text-1c: #e9eff4;
  --text-2: #94a1ae;
  --text-2b: #8b98a5;
  --text-2c: #bcc7d2;
  --text-muted: #7a8794;
  --text-muted-2: #74808d;
  --text-muted-3: #5e6b78;
  --text-muted-4: #6c7884;
  --text-strong: #ffffff;   /* maximální kontrast (hover odkazů) */
  --on-accent: #ffffff;     /* text/ikona na barevné ploše oboru */

  /* Linky a jemné plochy (v tmavém bílé, ve světlém tmavé) */
  --line-soft: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --line-input: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.14);
  --line-outline: rgba(255, 255, 255, 0.18);
  --line-hover: rgba(255, 255, 255, 0.30);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --surface-soft-h: rgba(255, 255, 255, 0.12);

  /* Překryvy (sticky hlavička, tooltip, modal) */
  --scrim-header: rgba(8, 11, 16, 0.78);
  --scrim-nav: rgba(8, 11, 16, 0.97);
  --scrim-panel: rgba(8, 11, 16, 0.93);
  --scrim-modal: rgba(4, 7, 11, 0.72);
  --halo: rgba(8, 11, 16, 0.5);   /* obtažení textu nad mapou */

  /* Stíny */
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-modal: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-pin: 0 1.5px 2px rgba(0, 0, 0, 0.55);
  --shadow-pin-h: 0 2.5px 4px rgba(0, 0, 0, 0.7);

  /* Mapa ČR */
  --map-fill: #0e1722;
  --map-stroke: rgba(13, 178, 186, 0.16);
  --map-hover: rgba(13, 178, 186, 0.14);
  --map-sel: rgba(13, 178, 186, 0.30);
  --map-dim-fill: #0b1017;
  --map-dim-opacity: 0.55;
  --map-kraj: rgba(13, 178, 186, 0.55);
  --map-kraj-sel: #45d4dd;
  --map-cr: #45d4dd;
  --map-cr-glow: rgba(13, 178, 186, 0.5);
  --map-label: #7f8b98;
  --map-label-opacity: 0.45;
  --pin-stroke: #ffffff;

  /* Obory — plochy (identita kategorií, needitovat) */
  --fyzio: #ec6a4e;
  --fyzio-av: linear-gradient(135deg, #f2805f, #c8472d);
  --kondice: #4b8cf5;
  --kondice-av: linear-gradient(135deg, #5e9af8, #2b5fd0);
  --medic: #35d39a;
  --medic-av: linear-gradient(135deg, #45dba6, #1d9b71);
  --nutri: #f5b84b;
  --mental: #b06af5;
  /* Obory — textové varianty (ve světlém režimu ztmavené na čitelný kontrast) */
  --fyzio-txt: #ec6a4e;
  --kondice-txt: #4b8cf5;
  --medic-txt: #35d39a;
  --nutri-txt: #f5b84b;
  --mental-txt: #b06af5;

  /* Sociální sítě */
  --soc-web: #6fc0cf;
  --soc-fb: #6f93e8;
  --soc-ln: #4a9fd8;
  --soc-ig: #c98bf5;

  /* Fonty */
  --font-body: 'Manrope', sans-serif;
  --font-head: 'Sora', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --maxw-section: 1280px;
  --maxw-hero: 1480px;
  --pad-x: 44px;
}

/* ============================================================
   SVĚTLÝ REŽIM — přepisuje jen barevné tokeny (kontrasty ověřeny
   na WCAG AA: text ≥ 4.5:1 proti pozadí stránky i karty).
   Tyrkysové CTA gradienty zůstávají identické = brand konzistence.
   ============================================================ */
:root[data-theme="light"] {
  color-scheme: light;

  --bg-base: #f2f6f8;
  --bg-card-section: #ffffff;
  --bg-input: #ffffff;
  --bg-cell: #ffffff;
  --bg-footer: #e8eef2;
  --bg-card-dark: #ffffff;
  --bg-spec-hover: #edf4f7;
  --grad-card: linear-gradient(160deg, #ffffff, #f6fafb);
  --grad-modal: linear-gradient(160deg, #ffffff, #f5f9fa);

  --teal: #067077;
  --teal-light: #05646a;   /* interní sekce ho používá jako text (flash, avatar, štítky) → musí být tmavý */
  --teal-text: #05646a;

  --text-1: #0b1c23;
  --text-1b: #10242c;
  --text-1c: #16303a;
  --text-2: #4a6472;
  --text-2b: #526c7a;
  --text-2c: #3c5663;
  --text-muted: #566d7a;
  --text-muted-2: #58707d;
  --text-muted-3: #546b78;   /* i na tmavším pozadí patičky drží AA */
  --text-muted-4: #546b78;
  --text-strong: #06171d;

  --line-soft: rgba(11, 32, 40, 0.07);
  --line: rgba(11, 32, 40, 0.11);
  --line-input: rgba(11, 32, 40, 0.16);
  --line-strong: rgba(11, 32, 40, 0.18);
  --line-outline: rgba(11, 32, 40, 0.22);
  --line-hover: rgba(11, 32, 40, 0.38);
  --surface-soft: rgba(11, 32, 40, 0.05);
  --surface-soft-h: rgba(11, 32, 40, 0.10);

  --scrim-header: rgba(242, 246, 248, 0.82);
  --scrim-nav: rgba(255, 255, 255, 0.97);
  --scrim-panel: rgba(255, 255, 255, 0.95);
  --scrim-modal: rgba(16, 32, 39, 0.42);
  --halo: rgba(255, 255, 255, 0.8);

  --shadow-card: 0 8px 24px rgba(11, 32, 40, 0.12);
  --shadow-modal: 0 24px 60px rgba(11, 32, 40, 0.22);
  --shadow-pin: 0 1.5px 3px rgba(11, 32, 40, 0.35);
  --shadow-pin-h: 0 2.5px 5px rgba(11, 32, 40, 0.45);

  --map-fill: #ffffff;
  --map-stroke: rgba(7, 118, 125, 0.22);
  --map-hover: rgba(13, 178, 186, 0.16);
  --map-sel: rgba(13, 178, 186, 0.26);
  --map-dim-fill: #e9eff3;
  --map-dim-opacity: 0.75;
  --map-kraj: rgba(7, 118, 125, 0.6);
  --map-kraj-sel: #07767d;
  --map-cr: #086b72;
  --map-cr-glow: rgba(7, 118, 125, 0.3);
  --map-label: #607886;
  --map-label-opacity: 0.7;   /* na světlém pozadí potřebují názvy krajů víc síly */

  --fyzio-txt: #bc4423;
  --kondice-txt: #2560c9;
  --medic-txt: #0a7050;
  --nutri-txt: #8a6109;
  --mental-txt: #7d35cc;

  --soc-web: #0d7f92;
  --soc-fb: #2f549e;
  --soc-ln: #16648f;
  --soc-ig: #8a3fbf;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text-1c);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
}
::selection { background: rgba(13, 178, 186, 0.3); color: var(--text-strong); }
img { display: block; }
a { color: inherit; }

input::placeholder, textarea::placeholder { color: var(--text-muted-3); }
input:focus, textarea:focus { outline: none; border-color: var(--teal) !important; }

/* ---------- Animace ---------- */
@keyframes fy-pulse { 0% { transform: scale(1); opacity: .5; } 70% { transform: scale(2.3); opacity: 0; } 100% { opacity: 0; } }
@keyframes fy-dash { to { stroke-dashoffset: -24; } }
@keyframes fy-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes fy-glow { 0%, 100% { opacity: .35; } 50% { opacity: .75; } }

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

/* ---------- Sdílené komponenty ---------- */
.fy-link { position: relative; transition: color .2s; text-decoration: none; }
.fy-link:hover { color: var(--text-strong); }

.fy-card { transition: transform .35s cubic-bezier(.2, .7, .2, 1), border-color .35s, background .35s; }
.fy-card:hover { transform: translateY(-4px); }

.fy-cta { transition: transform .25s, box-shadow .25s, filter .25s; }
.fy-cta:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 14px 40px rgba(13, 178, 186, 0.32); }

.fy-spec { transition: transform .25s, border-color .25s, background .25s; }
.fy-spec:hover { transform: translateX(3px); background: var(--bg-spec-hover); }

.fy-scroll::-webkit-scrollbar { width: 7px; }
.fy-scroll::-webkit-scrollbar-thumb { background: rgba(13, 178, 186, 0.28); border-radius: 8px; }
.fy-scroll::-webkit-scrollbar-track { background: transparent; }

/* Kicker (čárka + mono label) */
.kicker { display: flex; align-items: center; gap: 13px; }
.kicker-line { width: 34px; height: 2px; background: var(--teal); display: inline-block; flex: 0 0 auto; }
.kicker-label { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--teal); }

/* Primární CTA pill */
.cta-primary {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  border-radius: 999px; background: var(--teal-cta); color: var(--on-teal);
  font-weight: 700; box-shadow: 0 10px 32px rgba(13, 178, 186, 0.28);
}
.cta-outline {
  display: inline-flex; align-items: center; text-decoration: none;
  border-radius: 999px; background: transparent; border: 1px solid var(--line-outline);
  color: var(--text-1c); font-weight: 700;
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad-x);
  background: var(--scrim-header);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.header-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.header-brand img { height: 40px; width: auto; }
.header-brand span { font-family: var(--font-head); font-weight: 800; font-size: 23px; letter-spacing: 0.01em; color: var(--text-1b); }
.header-nav { display: flex; align-items: center; gap: 36px; margin-left: auto; margin-right: 28px; }
.header-nav a { color: var(--text-2c); font-weight: 600; font-size: 15px; }
.header-cta { padding: 12px 22px; font-size: 14.5px; box-shadow: 0 8px 26px rgba(13, 178, 186, 0.25); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--text-1c); padding: 6px; }
.nav-toggle svg { display: block; }

/* Přepínač světlý / tmavý režim */
.theme-toggle {
  flex: 0 0 auto; width: 40px; height: 40px; margin-left: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--line-strong); background: transparent;
  color: var(--text-2c); cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.theme-toggle:hover { color: var(--teal); border-color: var(--teal); background: rgba(13, 178, 186, 0.1); }
.theme-toggle svg { width: 19px; height: 19px; display: block; }
/* zobrazená ikona = režim, do kterého tlačítko přepne */
.theme-toggle .ico-moon { display: none; }
:root[data-theme="light"] .theme-toggle .ico-sun { display: none; }
:root[data-theme="light"] .theme-toggle .ico-moon { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; height: auto; min-height: 0;
  display: flex; flex-direction: column; padding: 30px var(--pad-x) 28px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 600px at 72% 42%, rgba(13, 178, 186, 0.13), transparent 60%),
    radial-gradient(700px 500px at 12% 12%, rgba(75, 140, 245, 0.08), transparent 55%);
}
.hero-top {
  position: relative; display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; max-width: var(--maxw-hero); width: 100%; margin: 0 auto;
}
.hero-h1 {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(27px, 3vw, 44px);
  line-height: 1.0; letter-spacing: -0.02em; margin: 0 0 11px; color: var(--text-1); white-space: nowrap;
}
.hero-h1 .accent { color: var(--teal); }
.hero-sub { font-size: 15.5px; line-height: 1.5; color: var(--text-2); margin: 0; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex: 0 0 auto; padding-bottom: 6px; }
.hero-actions .cta-primary { padding: 15px 26px; font-size: 15.5px; }
.hero-actions .cta-outline { padding: 15px 26px; font-size: 15.5px; }

/* ---------- Mapa blok (mapa přes celou šířku, specialisté pod ní) ---------- */
.map-grid {
  position: relative; display: grid; grid-template-columns: 1fr; gap: 24px;
  max-width: var(--maxw-hero); width: 100%; margin: 16px auto 0; flex: 1; min-height: 0;
}
.map-card, .spec-card {
  position: relative; border-radius: 26px;
  background: var(--grad-card);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; min-height: 0;
}
.map-card { padding: 24px 28px 16px; overflow: hidden; }
.spec-card { padding: 22px 22px; }
.map-glow {
  position: absolute; top: -120px; right: -80px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(13, 178, 186, 0.16), transparent 70%); pointer-events: none;
}
.map-card-head { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.kicker-sm .kicker-line { width: 26px; }
.kicker-sm .kicker-label { font-size: 11.5px; letter-spacing: 0.3em; }
.map-region-name { font-family: var(--font-head); font-weight: 700; font-size: 25px; color: var(--text-1); }
.badge-active {
  display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 999px;
  background: rgba(13, 178, 186, 0.12); border: 1px solid rgba(13, 178, 186, 0.3);
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); display: inline-block; animation: fy-glow 2s ease-in-out infinite; }
.badge-active span:last-child { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); }
.map-count { font-family: var(--font-mono); font-size: 14px; color: var(--teal); white-space: nowrap; font-weight: 500; }
.map-svg-wrap { position: relative; height: min(64vh, 620px); display: flex; align-items: center; justify-content: center; margin: 6px 0; }
.map-svg-wrap svg { width: 100%; height: 100%; }
.map-foot { position: relative; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-muted-3); letter-spacing: 0.04em; }

/* Geografická mapa — hierarchie obrysů: okresy světlinká, kraje výrazněji, ČR nejvíc */
/* okresy = klikací plochy s úplně tenoučkým obrysem (jemné vnitřní členění) */
.map-svg-wrap svg .okres {
  fill: var(--map-fill); stroke: var(--map-stroke); stroke-width: 0.3;
  cursor: pointer; transition: fill .2s, opacity .3s;
  vector-effect: non-scaling-stroke;
}
.map-svg-wrap svg .okres.kraj-hover { fill: var(--map-hover); }
.map-svg-wrap svg .okres.selected { fill: var(--map-sel); }
/* okolní kraje při zoomu — tmavé plochy bez okresních čar (jinak „čárky v okolí") */
.map-svg-wrap svg .okres.dim { fill: var(--map-dim-fill); opacity: var(--map-dim-opacity); stroke: transparent; }

/* Obrysy krajů (výraznější) */
.map-svg-wrap svg .fy-border-kraj {
  stroke: var(--map-kraj); stroke-width: 1; stroke-linejoin: round;
  vector-effect: non-scaling-stroke; transition: opacity .3s, stroke .3s;
}
.map-svg-wrap svg .fy-border-kraj.selected { stroke: var(--map-kraj-sel); stroke-width: 1.6; }
.map-svg-wrap svg .fy-border-kraj.dim { opacity: 0; }
/* Obrys ČR (nejvýraznější) */
.map-svg-wrap svg .fy-border-cr {
  stroke: var(--map-cr); stroke-width: 2; stroke-linejoin: round;
  vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 3px var(--map-cr-glow));
  transition: opacity .3s;
}
.map-svg-wrap svg .fy-border-cr.dim { opacity: 0; }
.map-kraj-label {
  font-family: var(--font-mono); font-size: 10px; fill: var(--map-label); text-anchor: middle;
  pointer-events: none; opacity: var(--map-label-opacity); paint-order: stroke; stroke: var(--halo); stroke-width: 2px;
  transition: opacity .3s;
}
.map-kraj-label.selected { fill: var(--teal-text); font-weight: 700; opacity: 1; }
.map-kraj-label.dim { opacity: 0; }

/* Tečky členů ve vybraném kraji */
.map-svg-wrap svg .fy-pin { transition: transform .12s ease-out; }
.map-svg-wrap svg .fy-pin-body {
  stroke: var(--pin-stroke); stroke-width: 1.3; vector-effect: non-scaling-stroke;
  filter: drop-shadow(var(--shadow-pin));
}
.map-svg-wrap svg .fy-pin:hover .fy-pin-body { filter: drop-shadow(var(--shadow-pin-h)); }
.map-svg-wrap svg .fy-pin-dot { fill: var(--pin-stroke); }

/* Tlačítko „← celá ČR" (odzoom) */
.map-back {
  position: absolute; top: 10px; left: 10px; z-index: 6;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--teal); background: var(--scrim-panel);
  border: 1px solid rgba(13, 178, 186, 0.4); border-radius: 999px;
  padding: 7px 14px; cursor: pointer; opacity: 0; pointer-events: none;
  transform: translateY(-6px); transition: opacity .25s, transform .25s;
}
.map-back.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.map-back:hover { background: rgba(13, 178, 186, 0.16); }

.map-tooltip {
  position: absolute; pointer-events: none; z-index: 5;
  background: var(--scrim-panel); border: 1px solid rgba(13, 178, 186, 0.32);
  border-radius: 9px; padding: 7px 11px; transform: translate(-50%, -130%);
  white-space: nowrap; display: flex; flex-direction: column; gap: 2px;
  box-shadow: var(--shadow-card);
}
.map-tooltip.hidden { display: none; }
.map-tooltip strong { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--text-1); }
.map-tooltip .t-kraj { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted-2); }
.map-tooltip .t-count { font-family: var(--font-mono); font-size: 11px; color: var(--teal); margin-top: 2px; }
.map-tooltip .t-count.t-empty { color: var(--text-muted-2); }
.fy-spec .meta .ig { color: var(--soc-ig); }

/* ---------- Specialisté ---------- */
.spec-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.obor-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em;
  padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line-strong);
  background: transparent; color: var(--text-2c); cursor: pointer;
  transition: opacity .2s, border-color .2s;
}
.obor-chip .dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.obor-chip:hover { border-color: rgba(13, 178, 186, 0.5); }
.obor-chip.off { opacity: 0.35; }

.fy-spec .avatar.has-photo { padding: 0; }
.fy-spec .avatar.has-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fy-spec .avatar.no-photo { background: var(--surface-soft); border: 1px solid var(--line-input); color: var(--text-1); }
/* packa = ikona oboru v barevném kolečku, na pravé straně karty */
.fy-spec .packa {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.fy-spec .packa svg { width: 18px; height: 18px; display: block; }

.fy-spec .meta .reveal { cursor: pointer; color: var(--teal-text); }
.fy-spec .meta .reveal:hover { text-decoration: underline; }
.fy-spec .meta a.revealed { color: var(--teal); text-decoration: none; }
.fy-spec .meta a.revealed:hover { text-decoration: underline; }
.fy-spec .meta a.ig, .fy-spec .meta a.web, .fy-spec .meta a.fb, .fy-spec .meta a.ln { text-decoration: none; }
.fy-spec .meta a.ig:hover, .fy-spec .meta a.web:hover, .fy-spec .meta a.fb:hover, .fy-spec .meta a.ln:hover { text-decoration: underline; }
.fy-spec .meta .web { color: var(--soc-web); }
.fy-spec .meta .fb { color: var(--soc-fb); }
.fy-spec .meta .ln { color: var(--soc-ln); }
.fy-spec .meta .addr { color: var(--text-2); }
/* meta jako oddělené řádky (město+adresy / sporty / sociální / kontakty) */
.fy-spec .meta + .meta { margin-top: 5px; }
.fy-spec .meta-sport .sport { color: var(--text-2c); }

.spec-search { position: relative; margin-bottom: 16px; max-width: 460px; }
.spec-search-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--text-muted-3); font-size: 15px; }
.spec-search input {
  width: 100%; padding: 13px 16px 13px 40px; border-radius: 13px; background: var(--bg-input);
  border: 1px solid var(--line-input); color: var(--text-1c); font-family: var(--font-body); font-size: 14px;
}
.spec-list { min-height: 100px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; align-items: start; }
.spec-list .spec-empty { grid-column: 1 / -1; }
.fy-spec {
  position: relative; overflow: hidden; display: flex; gap: 13px; align-items: flex-start;
  padding: 14px 15px 14px 17px; border: 1px solid var(--line-soft);
  border-radius: 16px; background: var(--bg-cell);
}
/* L-rám: barva oboru na levé a horní hraně (barvu nastavuje app.js inline) */
.fy-spec .bar {
  position: absolute; inset: 0; pointer-events: none;
  border-top: 3px solid; border-left: 3px solid;
  border-top-left-radius: 16px;
}
.fy-spec .avatar {
  flex: 0 0 auto; width: 84px; height: 84px; border-radius: 14px; overflow: hidden; display: flex;
  align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 26px; color: var(--on-accent);
}
.fy-spec .body { flex: 1; min-width: 0; }
.fy-spec .name { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--text-1); }
.fy-spec .role { font-size: 13px; color: var(--text-2b); margin: 2px 0 7px; }
.fy-spec .meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11px; color: var(--text-muted-2); }
.fy-spec .meta .city { color: var(--text-2); }
.spec-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 34px 18px; color: var(--text-muted-2); }
.spec-empty .icon { font-size: 30px; margin-bottom: 10px; opacity: .5; }
.spec-empty .title { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--text-2c); margin-bottom: 5px; }
.spec-empty .hint { font-size: 13px; max-width: 230px; }

/* ---------- Sekce ---------- */
.section { max-width: var(--maxw-section); margin: 0 auto; padding: 96px var(--pad-x) 0; }
.section-stats { padding: 60px var(--pad-x) 0; }
.section h2 {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02; letter-spacing: -0.02em; color: var(--text-1);
}
.section h2 .accent { color: var(--teal); }
.section-lead { font-size: 17px; line-height: 1.55; color: var(--text-2); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }

/* Mini-karty oborů */
.obor-mini { display: flex; align-items: flex-start; gap: 16px; padding: 24px; border-radius: 20px; background: var(--bg-card-section); }
.obor-mini .ico { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.obor-mini .ico svg { width: 24px; height: 24px; display: block; }
.obor-card .ico svg { width: 26px; height: 26px; display: block; }
.obor-mini .name { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--text-1); }
.obor-mini .count { font-family: var(--font-mono); font-size: 12px; margin: 4px 0 6px; }
.obor-mini .desc { font-size: 13.5px; color: var(--text-2b); line-height: 1.45; }

/* Statistický pruh */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--bg-cell); overflow: hidden; }
.stats-cell { padding: 30px 26px; border-right: 1px solid var(--line-soft); }
.stats-cell:last-child { border-right: none; }
.stats-num { font-family: var(--font-head); font-weight: 800; font-size: 46px; line-height: 1; color: var(--text-1); }
.stats-num.accent { color: var(--teal); }
.stats-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-top: 9px; }

/* Velké karty oborů */
.obor-card { padding: 30px; border-radius: 22px; background: var(--bg-card-section); border: 1px solid var(--line-soft); }
.obor-card .ico { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 22px; }
.obor-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 22px; margin: 0 0 12px; color: var(--text-1); }
.obor-card p { font-size: 14.5px; line-height: 1.55; color: var(--text-2b); margin: 0 0 20px; }
.obor-card .items { display: flex; flex-direction: column; }
.obor-card .item { display: flex; gap: 13px; padding: 12px 0; border-top: 1px solid var(--line-soft); }
.obor-card .item .n { font-family: var(--font-mono); font-size: 12px; }
.obor-card .item .t { font-size: 14px; color: var(--text-2c); }

/* Benefity */
.benefit-card { position: relative; padding: 30px; border-radius: 20px; background: var(--bg-card-section); border: 1px solid var(--line-soft); }
.benefit-card .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.benefit-card .num { font-family: var(--font-mono); font-weight: 700; font-size: 14px; color: var(--teal); }
.benefit-card .arrow { color: var(--teal); font-size: 18px; }
.benefit-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 20px; margin: 0 0 11px; color: var(--text-1); }
.benefit-card p { font-size: 14px; line-height: 1.55; color: var(--text-2b); margin: 0; }

/* Kroky */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.step .line { height: 2px; background: linear-gradient(90deg, var(--teal), rgba(13, 178, 186, 0.1)); margin-bottom: 22px; }
.step .num { font-family: var(--font-head); font-weight: 600; font-size: 50px; color: var(--text-1); line-height: 1; margin-bottom: 18px; }
.step h3 { font-family: var(--font-head); font-weight: 700; font-size: 20px; margin: 0 0 10px; color: var(--text-1); }
.step p { font-size: 14.5px; line-height: 1.55; color: var(--text-2b); margin: 0; }

/* Reference / klienti */
.split-klienti { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.quote { font-family: var(--font-head); font-weight: 600; font-size: clamp(24px, 2.7vw, 34px); line-height: 1.28; letter-spacing: -0.01em; margin: 0 0 30px; color: var(--text-1b); }
.quote .accent { color: var(--teal); }
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-author .avatar { width: 48px; height: 48px; border-radius: 13px; background: var(--fyzio-av); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--on-accent); }
.quote-author .name { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--text-1); }
.quote-author .role { font-size: 13.5px; color: var(--text-2b); }
.klienti-card { padding: 38px 34px; border-radius: 24px; background: var(--bg-card-dark); border: 1px solid var(--line); }
.klienti-card .kicker-label { margin-bottom: 18px; display: block; }
.klienti-card h2 { font-size: clamp(26px, 2.8vw, 34px); line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 16px; }
.klienti-card p { font-size: 15px; line-height: 1.55; color: var(--text-2); margin: 0 0 26px; }
.klienti-item { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line-soft); }
.klienti-item .n { font-family: var(--font-mono); font-size: 12px; color: var(--teal); }
.klienti-item .t { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--text-1c); }
.klienti-item .d { font-size: 13.5px; color: var(--text-2b); margin-top: 3px; }

/* Kontakt */
.section-kontakt { padding: 96px var(--pad-x) 90px; }
.split-kontakt { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start; }
.contact-h2 { font-size: clamp(34px, 4.4vw, 58px); line-height: 1.0; letter-spacing: -0.02em; margin: 0 0 18px; }
.contact-lead { font-size: 16.5px; line-height: 1.55; color: var(--text-2); max-width: 460px; margin: 0 0 36px; }
.contact-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; border-top: 1px solid var(--line); gap: 16px; }
.contact-row:last-child { border-bottom: 1px solid var(--line); }
.contact-row .label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); }
.contact-row .value { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--text-1b); text-decoration: none; text-align: right; }

/* Formulář */
.form-card { padding: 38px 34px; border-radius: 24px; background: var(--bg-card-dark); border: 1px solid var(--line); }
.form-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 26px; margin: 0 0 20px; color: var(--text-1); }
.type-switch { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.type-pill {
  padding: 11px 18px; border-radius: 999px; border: 1px solid var(--line-input);
  background: transparent; color: var(--text-2); font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: all .2s;
}
.type-pill.is-active { border-color: var(--teal); background: rgba(13, 178, 186, 0.14); color: var(--teal); }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.field label, .field-row label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.field input, .field textarea, .field-row input {
  width: 100%; padding: 14px 16px; border-radius: 12px; background: var(--bg-input);
  border: 1px solid var(--line-input); color: var(--text-1c); font-family: var(--font-body); font-size: 15px;
}
.field textarea { resize: vertical; }
.form-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 16px;
  border-radius: 13px; border: none; background: var(--teal-cta); color: var(--on-teal);
  font-family: var(--font-head); font-weight: 700; font-size: 16px; cursor: pointer; box-shadow: 0 10px 30px rgba(13, 178, 186, 0.26);
}
.form-submit:disabled { opacity: .6; cursor: default; }
.form-consent { font-size: 12.5px; line-height: 1.5; color: var(--text-muted-4); margin: 16px 0 0; text-align: center; }
.form-error { color: var(--fyzio); font-size: 13.5px; margin: 12px 0 0; text-align: center; }
.form-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 40px 10px; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: rgba(13, 178, 186, 0.14); border: 1px solid rgba(13, 178, 186, 0.4); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 30px; margin-bottom: 22px; }
.form-success h3 { font-family: var(--font-head); font-weight: 700; font-size: 24px; margin: 0 0 10px; color: var(--text-1); }
.form-success p { font-size: 15px; line-height: 1.55; color: var(--text-2); max-width: 320px; margin: 0 0 26px; }
.form-success button { padding: 12px 24px; border-radius: 999px; background: transparent; border: 1px solid var(--line-outline); color: var(--text-1c); font-family: var(--font-body); font-weight: 700; font-size: 14.5px; cursor: pointer; }

/* ---------- Partnerský blok (exkluzivní, dole) ---------- */
.partner-cta { padding: 40px var(--pad-x) 96px; }
.partner-cta-inner {
  max-width: 920px; margin: 0 auto; text-align: center;
  background: var(--grad-card);
  border: 1px solid var(--line); border-radius: 26px;
  padding: 56px 48px; position: relative; overflow: hidden;
}
.partner-cta-inner::before {
  content: ""; position: absolute; top: -140px; left: 50%; transform: translateX(-50%);
  width: 520px; height: 380px; background: radial-gradient(circle, rgba(13, 178, 186, 0.13), transparent 70%); pointer-events: none;
}
.partner-cta .kicker { justify-content: center; margin-bottom: 20px; position: relative; }
.partner-cta h2 {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(27px, 3.2vw, 40px);
  line-height: 1.1; letter-spacing: -0.02em; color: var(--text-1); margin: 0 auto 18px; max-width: 620px; position: relative;
}
.partner-cta h2 .accent { color: var(--teal); }
.partner-cta p { font-size: 16px; line-height: 1.6; color: var(--text-2); max-width: 560px; margin: 0 auto 30px; position: relative; }
.partner-cta .cta-primary { padding: 15px 30px; font-size: 15.5px; position: relative; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-footer); }
.footer-grid { max-width: var(--maxw-section); margin: 0 auto; padding: 56px var(--pad-x); display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 36px; width: auto; }
.footer-brand span { font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--text-1b); }
.footer-desc { font-size: 14px; line-height: 1.6; color: var(--text-2b); max-width: 300px; margin: 0 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 11px; color: var(--text-2); text-decoration: none; transition: border-color .2s, color .2s; }
.footer-social a:hover { color: var(--text-strong); border-color: var(--line-hover); }
.footer-col-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted-3); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 13px; }
.footer-links a { color: var(--text-2c); font-size: 14.5px; }
.footer-bottom { border-top: 1px solid var(--line-soft); }
.footer-bottom-inner { max-width: var(--maxw-section); margin: 0 auto; padding: 22px var(--pad-x); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
/* muted-3 dával na tmavé patičce jen 3,55:1 (pod AA) — copyright je právní údaj,
   musí být čitelný. muted-2 by prošel jen na tmavém (4,81), ve světlém dává 4,45;
   --text-muted projde v OBOU režimech (tmavý 5,27 · světlý 4,64). */
/* Zproštění odpovědnosti — vlastní řádek nad copyrightem. Záměrně silnější token
   než .footer-copy: právní text musí být čitelný (muted-3 dává na tmavém 3,5:1). */
.footer-disclaimer {
  flex: 1 1 100%; order: -1; max-width: 96ch;
  font-size: 12.5px; line-height: 1.55; color: var(--text-muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-muted-4); font-size: 13px; }

/* ---------- Textové (právní) stránky ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 60px var(--pad-x) 90px; }
.legal .kicker { margin-bottom: 20px; }
.legal h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 4vw, 46px); line-height: 1.05; letter-spacing: -0.02em; color: var(--text-1); margin: 0 0 14px; }
.legal .lead { font-size: 16px; line-height: 1.6; color: var(--text-2); margin: 0 0 10px; }
.legal .updated { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted-3); margin: 0 0 40px; }
.legal h2 { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--text-1); margin: 40px 0 12px; }
.legal p { font-size: 15px; line-height: 1.65; color: var(--text-2c); margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 0; list-style: none; }
.legal li { position: relative; font-size: 15px; line-height: 1.6; color: var(--text-2c); padding: 6px 0 6px 22px; }
.legal li::before { content: "›"; position: absolute; left: 4px; color: var(--teal); font-weight: 700; }
.legal a { color: var(--teal); text-decoration: none; }
.legal a:hover { text-decoration: underline; }
.legal .info-box { background: var(--bg-card-dark); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; margin: 0 0 24px; }
.legal .info-box p { margin: 0 0 4px; font-size: 14.5px; }
.legal .info-box p:last-child { margin: 0; }
.legal .note { font-size: 13px; color: var(--text-muted-2); border-top: 1px solid var(--line); margin-top: 40px; padding-top: 20px; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-family: var(--font-mono); font-size: 13px; color: var(--teal); text-decoration: none; }

/* ============================================================
   RESPONZIVITA
   ============================================================ */
/* Šest položek v navigaci + CTA se do 1400 px netěsná — sevři mezery,
   pod 1150 px CTA schovej (v menu i v patičce je „Stát se partnerem" dostupné). */
@media (max-width: 1400px) { .header-nav { gap: 24px; } }
@media (max-width: 1150px) { .header-cta { display: none; } }

@media (max-width: 1100px) {
  :root { --pad-x: 32px; }
  .hero-h1 { white-space: normal; }
}

@media (max-width: 900px) {
  /* Header → hamburger */
  .header-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--scrim-nav); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--pad-x) 16px; display: none;
  }
  .header-nav.is-open { display: flex; }
  .header-nav a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 16px; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  /* nav je mimo flow (absolutní) → přepínač a hamburger drž vpravo vedle sebe */
  .theme-toggle { margin-left: auto; margin-right: 6px; }

  /* Hero → uvolnit výškový zámek, stack */
  .hero { height: auto; min-height: 0; padding: 28px var(--pad-x) 8px; }
  .hero-top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-actions { width: 100%; }
  .map-grid { grid-template-columns: 1fr; margin-top: 24px; }
  .map-svg-wrap { height: auto; min-height: 340px; }
  .spec-list { grid-template-columns: 1fr; }

  /* Gridy 3/4 → 2 */
  .grid-3, .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-cell:nth-child(2) { border-right: none; }
  .stats-cell:nth-child(1), .stats-cell:nth-child(2) { border-bottom: 1px solid var(--line-soft); }

  /* Split sekce → stack */
  .split-klienti, .split-kontakt { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 620px) {
  :root { --pad-x: 20px; }
  .section { padding-top: 64px; }
  .section-kontakt { padding-bottom: 64px; }
  .grid-3, .steps, .stats-bar { grid-template-columns: 1fr; }
  .stats-cell { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .stats-cell:last-child { border-bottom: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .map-card, .spec-card { padding: 20px 18px; }
  .spec-list { grid-template-columns: 1fr; }
  .map-svg-wrap { min-height: 260px; }
  .form-card, .klienti-card { padding: 28px 22px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .cta-primary, .hero-actions .cta-outline { width: 100%; justify-content: center; }
}

/* ---------- Detail člena (modal) ---------- */
.fy-modal {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: var(--scrim-modal); backdrop-filter: blur(4px);
}
.fy-modal.show { display: flex; animation: fy-modal-in .2s ease; }
@keyframes fy-modal-in { from { opacity: 0; } to { opacity: 1; } }
.fy-modal-card {
  position: relative; width: 100%; max-width: 440px; max-height: 88vh; overflow-y: auto;
  background: var(--grad-modal);
  border: 1px solid var(--line-input); border-radius: 20px;
  padding: 26px 26px 22px; box-shadow: var(--shadow-modal);
}
.fy-modal-close {
  position: absolute; top: 12px; right: 14px; width: 34px; height: 34px;
  border: 0; border-radius: 50%; background: var(--surface-soft);
  color: var(--text-2); font-size: 22px; line-height: 1; cursor: pointer; transition: background .2s, color .2s;
}
.fy-modal-close:hover { background: var(--surface-soft-h); color: var(--text-1); }
.fy-modal-head { display: flex; align-items: center; gap: 16px; padding-bottom: 16px; margin-bottom: 4px; border-bottom: 2px solid rgba(13, 178, 186, 0.4); }
.fy-modal-av { width: 66px; height: 66px; border-radius: 50%; flex: 0 0 auto; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.fy-modal-av.no-photo { color: var(--on-accent); font-family: var(--font-head); font-weight: 700; font-size: 24px; }
.fy-modal-av.has-photo img { width: 100%; height: 100%; object-fit: cover; }
.fy-modal-name { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--text-1); line-height: 1.15; }
.fy-modal-role { font-size: 13.5px; color: var(--teal); margin-top: 3px; }
.fy-modal-rows { margin-top: 14px; }
.fy-modal-row { display: flex; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; }
.fy-modal-row:last-child { border-bottom: 0; }
.fy-modal-row .k { flex: 0 0 92px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted-2); padding-top: 2px; }
.fy-modal-row .v { color: var(--text-1c); word-break: break-word; }
.fy-modal-row .v a { color: var(--teal); }

/* ---------- Lišta se souhlasem s měřením ---------- */
.fy-consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--scrim-panel); border-top: 1px solid var(--line-outline);
  backdrop-filter: blur(10px); box-shadow: var(--shadow-modal);
}
.fy-consent-in {
  max-width: var(--maxw-section); margin: 0 auto; padding: 18px var(--pad-x);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.fy-consent-txt { flex: 1 1 460px; font-size: 13.5px; line-height: 1.55; color: var(--text-2c); }
.fy-consent-txt strong { color: var(--text-1b); }
.fy-consent-txt a { color: var(--teal-text); }
.fy-consent-btns { display: flex; gap: 10px; flex: 0 0 auto; }
.fy-consent-btns button {
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  padding: 11px 22px; border-radius: 999px; cursor: pointer; border: 1px solid var(--line-outline);
  background: none; color: var(--text-1b); transition: border-color .2s, background .2s;
}
.fy-consent-btns button:hover { border-color: var(--line-hover); background: var(--surface-soft); }
.fy-consent-yes { background: var(--teal-cta) !important; color: var(--on-teal) !important; border-color: transparent !important; }
.fy-consent-yes:hover { filter: brightness(1.06); }
@media (max-width: 700px) {
  .fy-consent-in { padding: 16px 18px; gap: 14px; }
  .fy-consent-btns { width: 100%; }
  .fy-consent-btns button { flex: 1; }
}
