/* ==========================================================================
   Clinovia — Dermatology Clinic UI
   Brand: navy #1a204c · teal #02a384 (sampled from logo-main.png)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy: #1a204c;
  --navy-700: #232b60;
  --navy-900: #11162f;
  --teal: #02a384;
  --teal-600: #018f74;
  --teal-050: #eef8f5;
  --teal-100: #d8efe9;

  --ink: #131730;
  --body: #5b6079;
  --muted: #8a90a6;
  --line: #e6e8ef;
  --line-soft: #eef0f5;
  --bg: #ffffff;
  --bg-soft: #f7f9f9;
  --bg-mint: #eaf4f2;

  --sans: "Plus Jakarta Sans", "Noto Sans Georgian", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", "Noto Serif Georgian", Georgia, serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-sm: 0 2px 10px rgba(19, 23, 48, .05);
  --shadow-md: 0 18px 40px -18px rgba(19, 23, 48, .18);
  --shadow-lg: 0 40px 80px -32px rgba(19, 23, 48, .35);

  --wrap: 1240px;
  --gut: 24px;
  --head-h: 74px;
  --tick-h: 46px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; color: var(--ink); font-weight: 600; letter-spacing: -.02em; line-height: 1.12; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding: clamp(64px, 8vw, 116px) 0; }
.section--soft { background: var(--bg-soft); }
.section--mint { background: var(--bg-mint); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Type ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-style: italic; font-size: 19px;
  color: var(--teal); letter-spacing: .01em;
}
.kicker::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; flex: none;
}
.h1 { font-size: clamp(38px, 5.4vw, 63px); }
.h2 { font-size: clamp(30px, 3.6vw, 45px); }
.h3 { font-size: clamp(21px, 2vw, 25px); }
.acc {
  display: block; font-family: var(--serif); font-style: italic;
  font-weight: 400; letter-spacing: 0; padding-top: .08em;
}
.lead { font-size: 17px; color: var(--body); }
.sec-head { max-width: 720px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head .h2 { margin: 14px 0 16px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal); --btn-fg: #fff; --btn-bd: var(--teal);
  position: relative; display: inline-flex; align-items: center; gap: 14px;
  padding: 7px 7px 7px 26px; border: 1px solid var(--btn-bd); border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-size: 15px; font-weight: 600; letter-spacing: -.01em; white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn__ico {
  display: grid; place-items: center; width: 34px; height: 34px; flex: none;
  border-radius: 50%; background: #fff; color: var(--teal);
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.btn__ico svg { width: 15px; height: 15px; }
.btn:hover { transform: translateY(-2px); }
.btn:hover .btn__ico { transform: rotate(-45deg); }
.btn--navy { --btn-bg: var(--navy); --btn-bd: var(--navy); }
.btn--navy .btn__ico { color: var(--navy); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--light .btn__ico { background: var(--teal); color: #fff; }
.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .55); }
.btn--ghost .btn__ico { background: rgba(255, 255, 255, .18); color: #fff; }
.btn--ghost:hover { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--ghost:hover .btn__ico { background: var(--teal); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--outline .btn__ico { background: var(--teal-050); color: var(--teal); }
.btn--sm { padding: 5px 5px 5px 20px; font-size: 14px; }
.btn--sm .btn__ico { width: 30px; height: 30px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 600; color: var(--navy);
}
.link-arrow svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--teal); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar {
  background: var(--navy); color: rgba(255, 255, 255, .78);
  font-size: 13.5px; position: relative; z-index: 60;
}
.topbar__in { display: flex; align-items: center; gap: 26px; min-height: 44px; max-width: 1640px; }
.topbar__list { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 15px; height: 15px; color: var(--teal); flex: none; }
.topbar__item a:hover { color: #fff; }
.topbar__right { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.topbar__note { display: inline-flex; align-items: center; gap: 8px; }
.topbar__note b { color: #fff; font-weight: 600; }
.topbar__ht {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  padding: 4px 12px 4px 8px; border-radius: 999px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16);
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .01em; white-space: nowrap;
}
.topbar__ht img { width: auto; height: 18px; }
.socials { display: flex; align-items: center; gap: 6px; }
.socials a {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255, 255, 255, .08); transition: background .25s var(--ease), color .25s var(--ease);
}
.socials svg { width: 14px; height: 14px; }
.socials a:hover { background: var(--teal); color: #fff; }

/* --- sticky shell: full-bleed flat bar, transparent over the hero --- */
.site-head {
  position: absolute; inset: 44px 0 auto; z-index: 70;
  --head-fg: #fff; --head-line: rgba(255, 255, 255, .22); --brand-invert: 1;
  border-bottom: 1px solid var(--head-line);
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.site-head__in { max-width: 1640px; }
.navbar {
  display: flex; align-items: center; gap: 22px;
  height: 84px; padding: 0;
}
.site-head.is-stuck {
  position: fixed; inset: 0 0 auto;
  animation: dropIn .45s var(--ease) both;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(14px);
  --head-fg: var(--navy); --head-line: var(--line-soft); --brand-invert: 0;
}
.site-head.is-stuck .navbar { height: 72px; }
@keyframes dropIn { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img {
  height: 36px; width: auto;
  filter: brightness(calc(1 - var(--brand-invert))) invert(var(--brand-invert));
  transition: filter .35s var(--ease);
}

/* --- primary nav --- */
.nav { margin-inline: auto; flex: none; }
.nav__list { display: flex; align-items: center; gap: 4px; flex-wrap: nowrap; }
.nav__item { position: relative; flex: none; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  padding: 12px 14px; border-radius: 10px;
  font-size: 15px; font-weight: 600; color: var(--head-fg); letter-spacing: -.01em;
  transition: color .25s var(--ease);
}
.nav__link svg { width: 11px; height: 11px; flex: none; opacity: .55; transition: transform .3s var(--ease); }
.nav__item.is-active > .nav__link { color: var(--teal); }
.nav__link:hover { color: var(--teal); }
.nav__item.is-open > .nav__link { color: var(--teal); }
.nav__item.is-open > .nav__link svg { transform: rotate(180deg); }
/* condition-tab icon: skin patch with scaling (psoriasis / eczema) */
.nav__link .nav__ico { width: 17px; height: 17px; opacity: 1; color: var(--teal); }
.site-head:not(.is-stuck) .nav__link .nav__ico { color: #7fe3cd; }
.nav__item.is-open > .nav__link .nav__ico,
.nav__link:hover .nav__ico { color: var(--teal); }
.nav__item.is-open > .nav__link .nav__ico { transform: none; }

/* dropdown */
.drop {
  position: absolute; top: calc(100% + 14px); left: 0; z-index: 20;
  min-width: 268px; padding: 12px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.nav__item.is-open > .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop::before { content: ""; position: absolute; inset: -14px 0 100%; }
.drop__link {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px;
  font-size: 14.5px; font-weight: 500; color: var(--navy);
  transition: background .22s var(--ease), color .22s var(--ease), padding .22s var(--ease);
}
.drop__link i {
  width: 5px; height: 5px; border-radius: 50%; background: var(--teal-100); flex: none;
  transition: background .22s var(--ease), transform .22s var(--ease);
}
.drop__link:hover { background: var(--teal-050); color: var(--teal-600); }
.drop__link:hover i { background: var(--teal); transform: scale(1.4); }

/* mega menu */
.nav__item--mega { position: static; }
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; z-index: 20;
  width: min(1100px, calc(100vw - 48px)); transform: translate(-50%, 10px);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) .92fr; gap: 4px;
  padding: 26px; background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.nav__item.is-open > .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega::before { content: ""; position: absolute; inset: -14px 0 100%; }
.mega__col { padding: 0 20px; border-left: 1px solid var(--line-soft); }
.mega__col:first-child { border-left: 0; padding-left: 4px; }
.mega__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.mega__ico {
  display: grid; place-items: center; width: 40px; height: 40px; flex: none;
  border-radius: 12px; background: var(--teal-050); color: var(--teal-600);
}
.mega__ico svg { width: 21px; height: 21px; }
.mega__title { font-size: 15.5px; font-weight: 700; color: var(--ink); }
.mega__sub { display: block; font-size: 12px; font-weight: 500; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.mega__list { display: grid; gap: 2px; }
.mega__link {
  display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 9px;
  font-size: 14.5px; color: var(--navy); font-weight: 500;
  transition: background .22s var(--ease), color .22s var(--ease);
}
.mega__link i { width: 5px; height: 5px; border-radius: 50%; background: var(--teal-100); flex: none; transition: background .22s, transform .22s; }
.mega__link:hover { background: var(--teal-050); color: var(--teal-600); }
.mega__link:hover i { background: var(--teal); transform: scale(1.4); }
/* hover preview column: swaps a vertical clinical photo per condition */
.mega__preview {
  display: flex; flex-direction: column; gap: 12px;
  padding: 0 0 0 20px; border-left: 1px solid var(--line-soft);
}
.mega__pane {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  aspect-ratio: 3 / 4; background: var(--bg-mint); isolation: isolate;
}
.mega__pane img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .35s var(--ease);
}
.mega__pane img.is-shown { opacity: 1; }
.mega__pane::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17, 22, 47, 0) 45%, rgba(17, 22, 47, .82));
}
.mega__caption { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; color: #fff; }
.mega__caption b { display: block; font-size: 15.5px; font-weight: 700; letter-spacing: -.01em; }
.mega__caption span { font-size: 12px; color: rgba(255, 255, 255, .72); }
.mega__preview .btn { justify-content: space-between; }

/* --- header actions --- */
.head-actions { display: flex; align-items: center; gap: 10px; flex: none; margin-left: auto; }

.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px;
  border: 1px solid var(--head-line); border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--head-fg);
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.lang__btn:hover { border-color: var(--teal); background: var(--teal-050); color: var(--teal-600); }
.lang__btn > svg:first-child { width: 17px; height: 17px; color: var(--teal); }
.lang__btn .chev { width: 10px; height: 10px; opacity: .6; transition: transform .3s var(--ease); }
.lang.is-open .lang__btn .chev { transform: rotate(180deg); }
.lang__menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 30;
  min-width: 190px; padding: 8px; background: #fff;
  border: 1px solid var(--line-soft); border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__opt {
  display: flex; align-items: center; gap: 10px; width: 100%; padding: 9px 11px;
  border-radius: 9px; font-size: 14.5px; font-weight: 500; color: var(--navy); text-align: left;
  transition: background .2s var(--ease);
}
.lang__opt:hover { background: var(--teal-050); }
.lang__opt .flag { font-size: 17px; line-height: 1; }
.lang__opt .code { margin-left: auto; font-size: 11.5px; font-weight: 700; color: var(--muted); letter-spacing: .06em; }
.lang__opt[aria-selected="true"] { background: var(--teal-050); color: var(--teal-600); }
.lang__opt[aria-selected="true"] .code { color: var(--teal); }

.head-call { display: inline-flex; align-items: center; gap: 11px; padding-inline: 6px; color: var(--head-fg); }
.head-call__ico {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: color-mix(in srgb, var(--teal) 16%, transparent); color: var(--teal);
}
.head-call__ico svg { width: 18px; height: 18px; }
.head-call small { display: block; font-size: 11.5px; opacity: .7; letter-spacing: .04em; text-transform: uppercase; line-height: 1.4; }
.head-call b { font-size: 15px; color: currentColor; font-weight: 700; }

.burger {
  display: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--head-fg); color: var(--navy); place-items: center; flex: none;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.site-head.is-stuck .burger { background: var(--navy); color: #fff; }
.burger svg { width: 20px; height: 20px; }

/* icon-only call button, mobile header only */
.head-icon {
  display: none; place-items: center; width: 44px; height: 44px; flex: none;
  border-radius: 50%; border: 1px solid var(--head-line); color: var(--head-fg);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.head-icon svg { width: 18px; height: 18px; }
.head-icon:active { background: var(--teal); border-color: var(--teal); color: #fff; }

/* --- mobile drawer --- */
.scrim {
  position: fixed; inset: 0; z-index: 90; background: rgba(17, 22, 47, .5);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.scrim.is-on { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100;
  width: min(400px, 88vw); display: flex; flex-direction: column;
  background: #fff; box-shadow: var(--shadow-lg);
  transform: translateX(102%); visibility: hidden;
  transition: transform .42s var(--ease), visibility .42s;
}
.drawer.is-on { transform: translateX(0); visibility: visible; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: calc(20px + env(safe-area-inset-top, 0px)) 22px 20px; border-bottom: 1px solid var(--line-soft); }
.drawer__top img { height: 30px; }
.drawer__close { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-soft); }
.drawer__close svg { width: 18px; height: 18px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 12px 22px 26px; }
.macc__row { border-bottom: 1px solid var(--line-soft); }
.macc__btn {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; padding: 16px 0; font-size: 16px; font-weight: 600; color: var(--navy); text-align: left;
}
.macc__btn svg { width: 13px; height: 13px; opacity: .5; transition: transform .3s var(--ease); }
.macc__row.is-open .macc__btn { color: var(--teal); }
.macc__row.is-open .macc__btn svg { transform: rotate(180deg); }
.macc__label { display: inline-flex; align-items: center; gap: 10px; }
.macc__btn .macc__ico { width: 19px; height: 19px; opacity: 1; color: var(--teal); flex: none; }
.macc__row.is-open .macc__btn .macc__ico { transform: none; }
.macc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s var(--ease); }
.macc__row.is-open .macc__panel { grid-template-rows: 1fr; }
.macc__inner { overflow: hidden; }
.macc__group { padding: 0 0 12px; }
.macc__group > span { display: block; padding: 8px 0 4px; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.macc__panel a { display: block; padding: 9px 0 9px 14px; border-left: 2px solid var(--line); font-size: 14.5px; color: var(--body); }
.macc__panel a:hover { border-color: var(--teal); color: var(--teal); }
.drawer__foot {
  padding: 18px 22px calc(24px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line-soft); display: grid; gap: 12px;
}
.drawer__contact { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.drawer__contact a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 10px; border-radius: 12px; font-size: 14px; font-weight: 700; white-space: nowrap;
}
.drawer__contact svg { width: 16px; height: 16px; flex: none; }
.drawer__contact .is-call { background: var(--bg-soft); color: var(--navy); border: 1px solid var(--line); }
.drawer__contact .is-call svg { color: var(--teal); }
.drawer__contact .is-wa { background: #25d366; color: #fff; }
.drawer__langs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.drawer__langs button {
  padding: 10px 6px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 13px; font-weight: 700; color: var(--navy);
}
.drawer__langs button[aria-selected="true"] { border-color: var(--teal); background: var(--teal-050); color: var(--teal-600); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: min(900px, 100svh); display: flex; align-items: flex-end;
  padding: calc(84px + 150px) 0 108px;
}
/* --- crossfading slides --- */
.hero__slides { position: absolute; inset: 0; z-index: -2; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 30%; }
.hero__slide:nth-child(2) img { object-position: 60% 35%; }
.hero__slide:nth-child(3) img { object-position: 55% 45%; }
.hero__slides::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(96deg, rgba(11, 32, 43, .93) 0%, rgba(11, 32, 43, .76) 34%, rgba(11, 32, 43, .14) 66%, rgba(11, 32, 43, .32) 100%),
    linear-gradient(180deg, rgba(9, 26, 36, .55) 0%, rgba(9, 26, 36, 0) 30%, rgba(9, 26, 36, .55) 100%);
}
.hero__in { position: relative; display: grid; gap: 34px; }
/* --- stacked copy panes --- */
.hero__panes { display: grid; max-width: 640px; }
.hero__pane {
  grid-area: 1 / 1; color: #fff;
  opacity: 0; visibility: hidden; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), visibility .7s;
}
.hero__pane.is-active { opacity: 1; visibility: visible; transform: none; }
.hero .kicker { color: #7fe3cd; }
.hero__title { margin: 16px 0 20px; color: #fff; }
.hero__text { max-width: 520px; color: rgba(255, 255, 255, .82); font-size: 16.5px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
/* --- controls --- */
.hero__bar { display: flex; align-items: flex-end; gap: 26px; flex-wrap: wrap; }
.hero__nav { display: flex; align-items: center; gap: 10px; }
.hero__arrow {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .38); color: #fff;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.hero__arrow svg { width: 16px; height: 16px; }
.hero__arrow:hover { background: #fff; color: var(--navy); border-color: #fff; }
.hero__arrow--prev svg { transform: rotate(180deg); }
.hero__dots { display: flex; align-items: center; gap: 8px; }
.hero__dot {
  width: 30px; height: 4px; border-radius: 999px; background: rgba(255, 255, 255, .34);
  transition: background .3s var(--ease), width .3s var(--ease);
}
.hero__dot[aria-selected="true"] { width: 52px; background: var(--teal); }
.hero__badges { display: flex; flex-wrap: wrap; gap: 22px 40px; align-items: center; margin-left: auto; }
.hero__badge {
  position: relative; padding-left: 20px; max-width: 240px;
  color: #fff; font-size: 14.5px; font-weight: 600; line-height: 1.45;
}
.hero__badge::before { content: ""; position: absolute; left: 0; top: 3px; bottom: 3px; width: 2px; background: rgba(255, 255, 255, .55); }
.hero__badge span { display: block; font-weight: 400; font-size: 13px; color: rgba(255, 255, 255, .68); margin-top: 4px; }
.badge-cf {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px 9px 14px;
  border-radius: 999px; background: rgba(2, 163, 132, .18);
  border: 1px solid rgba(127, 227, 205, .55); color: #d8f5ee;
  font-size: 14px; font-weight: 700; letter-spacing: -.01em;
}
.badge-cf svg { width: 18px; height: 18px; color: #7fe3cd; flex: none; }
/* --- scroll cue, pinned to the bottom edge --- */
.hero__ring {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 58px; height: 58px; border-radius: 50%; z-index: 2;
  border: 1px solid rgba(255, 255, 255, .45); display: grid; place-items: center;
  color: #fff; background: rgba(255, 255, 255, .08); backdrop-filter: blur(3px);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.hero__ring:hover { background: rgba(255, 255, 255, .2); transform: translateX(-50%) translateY(-3px); }
.hero__ring svg { width: 20px; height: 20px; animation: bob 2.2s var(--ease) infinite; }

/* ---------- Stats ---------- */
.stats { padding: clamp(46px, 5vw, 72px) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { display: flex; align-items: center; gap: 14px; }
.stat__num { font-family: var(--sans); font-size: clamp(30px, 3.4vw, 44px); font-weight: 600; color: var(--ink); letter-spacing: -.04em; line-height: 1; }
.stat__lbl { font-size: 13.5px; line-height: 1.4; color: var(--body); max-width: 130px; }
.stats__grid .stat + .stat { border-left: 1px solid var(--line); padding-left: 30px; }

/* ---------- Most requested services (square thumb left, copy right) ---------- */
.pops { padding: 0 0 clamp(40px, 5vw, 64px); }
.pops__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px; padding-top: 8px; border-top: 1px solid var(--line); }
.pops__head .h3 { font-size: clamp(19px, 2vw, 23px); }
.pops__head .h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--teal); }
.pops__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 22px; }
.pcard {
  display: flex; align-items: center; gap: 14px; padding: 12px 14px 12px 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.pcard:hover { border-color: var(--teal-100); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.pcard__img { width: 74px; height: 74px; flex: none; border-radius: 12px; overflow: hidden; background: var(--bg-mint); }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pcard:hover .pcard__img img { transform: scale(1.06); }
.pcard__body { min-width: 0; }
.pcard__body b { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; line-height: 1.25; overflow-wrap: anywhere; }
.pcard__body span { display: block; margin-top: 5px; font-size: 12.5px; color: var(--muted); line-height: 1.35; }
.pcard__go { width: 15px; height: 15px; flex: none; margin-left: auto; color: var(--teal); transition: transform .3s var(--ease); }
.pcard:hover .pcard__go { transform: translateX(3px); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about__top { display: grid; grid-template-columns: .84fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: start; }
.about__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about__media img { width: 100%; aspect-ratio: 5 / 5.4; object-fit: cover; }
.about__chip {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: rgba(255, 255, 255, .93); backdrop-filter: blur(8px);
  border-radius: var(--r-md); box-shadow: var(--shadow-sm);
}
.about__chip svg { width: 26px; height: 26px; color: var(--teal); flex: none; }
.about__chip b { display: block; font-size: 14.5px; color: var(--ink); }
.about__chip span { font-size: 12.5px; }
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 34px 0 30px; }
.mv__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.mv__head svg { width: 24px; height: 24px; color: var(--navy); }
.mv__head h3 { font-size: 19px; }
.mv p { font-size: 14.5px; }

/* ==========================================================================
   FOCUS — Psoriasis & Eczema
   ========================================================================== */
.focus__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 46px; }
.fcard {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  padding: clamp(26px, 3vw, 38px); background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: box-shadow .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-100); }
.fcard__glow {
  position: absolute; top: -90px; right: -70px; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 163, 132, .16), transparent 70%); pointer-events: none;
}
.fcard__badge {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  padding: 6px 14px; border-radius: 999px; background: var(--teal-050); color: var(--teal-600);
  font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.fcard h3 { margin: 18px 0 12px; font-size: clamp(24px, 2.4vw, 30px); }
.fcard h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--teal); margin-left: .18em; }
.fcard > p { font-size: 15px; }
.fcard__list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin: 24px 0 28px; }
.fcard__list a {
  display: flex; align-items: center; gap: 9px; padding: 9px 0;
  border-bottom: 1px dashed var(--line); font-size: 14.5px; font-weight: 500; color: var(--navy);
  transition: color .22s var(--ease), padding-left .22s var(--ease);
}
.fcard__list svg { width: 15px; height: 15px; color: var(--teal); flex: none; }
.fcard__list a:hover { color: var(--teal); padding-left: 5px; }
.fcard__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: auto; }
.fcard__meta { display: flex; gap: 22px; margin-left: auto; }
.fcard__meta div b { display: block; font-size: 19px; color: var(--ink); letter-spacing: -.03em; }
.fcard__meta div span { font-size: 12px; color: var(--muted); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.svc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.svc {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  padding: 0 30px 30px; background: #fff; border-radius: var(--r-lg); border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.svc__img { margin: 0 -30px; overflow: hidden; }
.svc__img img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  transition: transform .6s var(--ease);
}
.svc:hover .svc__img img { transform: scale(1.05); }
.svc__ico {
  position: relative; z-index: 2; margin: -29px 0 0;
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px;
  background: #fff; color: var(--teal-600); box-shadow: var(--shadow-sm);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.svc__ico svg { width: 28px; height: 28px; }
.svc:hover .svc__ico { background: var(--teal); color: #fff; }
.svc h3 { margin: 18px 0 10px; font-size: 19.5px; }
.svc p { font-size: 14.5px; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 18px 0 22px; }
.svc__tags span { padding: 4px 11px; border-radius: 999px; background: var(--bg-soft); font-size: 12.5px; color: var(--body); }
.svc .link-arrow { margin-top: auto; }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.step { position: relative; padding-top: 30px; border-top: 2px solid var(--line); }
.step::before {
  content: ""; position: absolute; top: -6px; left: 0; width: 10px; height: 10px;
  border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(2, 163, 132, .16);
}
.step__n { font-family: var(--serif); font-style: italic; font-size: 34px; color: var(--teal); line-height: 1; }
.step h3 { margin: 12px 0 10px; font-size: 18.5px; }
.step p { font-size: 14px; }

/* ==========================================================================
   PHOTOTHERAPY BAND
   ========================================================================== */
.band { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: clamp(32px, 5vw, 68px); }
.band__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.band__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.band__stat {
  position: absolute; right: 20px; top: 20px; padding: 16px 20px; text-align: center;
  background: rgba(255, 255, 255, .94); border-radius: var(--r-md); box-shadow: var(--shadow-sm);
}
.band__stat b { display: block; font-size: 27px; color: var(--teal-600); letter-spacing: -.03em; line-height: 1.1; }
.band__stat span { font-size: 12px; }
.checks { display: grid; gap: 14px; margin: 28px 0 32px; }
.checks li { display: flex; gap: 12px; font-size: 15px; }
.checks svg { width: 21px; height: 21px; color: var(--teal); flex: none; margin-top: 1px; }
.checks b { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   TEAM
   ========================================================================== */
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.doc { text-align: left; }
.doc__media { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--bg-mint); }
.doc__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .6s var(--ease); }
.doc:hover .doc__media img { transform: scale(1.045); }
.doc__socials {
  position: absolute; left: 16px; bottom: 16px; display: flex; gap: 8px;
  opacity: 0; transform: translateY(12px); transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.doc:hover .doc__socials { opacity: 1; transform: translateY(0); }
.doc__socials a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.doc__socials a:hover { background: var(--teal); color: #fff; }
.doc__socials svg { width: 15px; height: 15px; }
.doc__body { padding: 20px 2px 0; }
.doc__body h3 { font-size: 19px; }
.doc__role { display: block; margin-top: 6px; font-size: 13.5px; color: var(--teal-600); font-weight: 600; }
.doc__tags { margin-top: 12px; font-size: 13.5px; color: var(--muted); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.quote { display: flex; flex-direction: column; padding: 32px; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.quote__stars { display: flex; gap: 3px; color: #f5a524; }
.quote__stars svg { width: 16px; height: 16px; }
.quote p { margin: 18px 0 24px; font-size: 15px; color: var(--body); }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.quote__av { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; font-size: 15px; flex: none; }
.quote__who b { display: block; font-size: 15px; color: var(--ink); }
.quote__who span { font-size: 13px; color: var(--muted); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { display: grid; grid-template-columns: .82fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq__aside { position: relative; padding: 34px; border-radius: var(--r-lg); background: var(--navy); color: rgba(255, 255, 255, .76); overflow: hidden; }
.faq__aside h3 { color: #fff; font-size: 24px; margin-bottom: 12px; }
.faq__aside .kicker { color: #7fe3cd; }
.faq__aside .btn { margin-top: 24px; }
.faq__aside::after {
  content: ""; position: absolute; right: -60px; bottom: -80px; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 163, 132, .5), transparent 70%);
}
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: 100%; padding: 22px 0; text-align: left;
  font-size: 16.5px; font-weight: 600; color: var(--ink); letter-spacing: -.01em;
}
.acc__sign { display: grid; place-items: center; width: 32px; height: 32px; flex: none; border-radius: 50%; background: var(--bg-soft); color: var(--navy); transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.acc__sign svg { width: 14px; height: 14px; }
.acc__item.is-open .acc__btn { color: var(--teal-600); }
.acc__item.is-open .acc__sign { background: var(--teal); color: #fff; transform: rotate(180deg); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__inner { overflow: hidden; }
.acc__inner p { padding: 0 52px 24px 0; font-size: 15px; }

/* ==========================================================================
   CTA + FORM
   ========================================================================== */
.cta { position: relative; isolation: isolate; overflow: hidden; padding: clamp(56px, 7vw, 96px) 0; }
.cta__bg { position: absolute; inset: 0; z-index: -2; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(17, 22, 47, .95) 8%, rgba(17, 22, 47, .78) 48%, rgba(17, 22, 47, .5)); }
.cta__in { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.cta__copy { color: rgba(255, 255, 255, .8); }
.cta__copy h2 { color: #fff; margin: 14px 0 16px; }
.cta__copy .kicker { color: #7fe3cd; }
.cta__pts { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 26px; }
.cta__pts li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: #fff; }
.cta__pts svg { width: 18px; height: 18px; color: #7fe3cd; }
.form { padding: 30px; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.form h3 { font-size: 21px; }
.form > p { margin: 8px 0 22px; font-size: 14px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--navy); letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; font: inherit; font-size: 14.5px; color: var(--ink);
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--teal); background: #fff; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.form .btn { width: 100%; justify-content: space-between; margin-top: 4px; }
.form__note { margin-top: 12px; font-size: 12.5px; color: var(--muted); text-align: center; }
.form__ok {
  display: none; align-items: center; gap: 10px; margin-top: 14px; padding: 12px 14px;
  border-radius: 12px; background: var(--teal-050); color: var(--teal-600); font-size: 14px; font-weight: 600;
}
.form__ok.is-on { display: flex; }
.form__ok svg { width: 18px; height: 18px; flex: none; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot { background: var(--navy-900); color: rgba(255, 255, 255, .62); padding-top: clamp(56px, 6vw, 84px); }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 52px; }
.foot__brand > img { height: 36px; filter: brightness(0) invert(1); }
.foot__ht { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); }
.foot__ht img { height: 52px; width: auto; opacity: .95; }
.foot__brand p { margin: 20px 0 22px; font-size: 14.5px; max-width: 330px; }
.foot h4 { color: #fff; font-size: 16px; margin-bottom: 20px; }
.foot__list { display: grid; gap: 11px; font-size: 14.5px; }
.foot__list a:hover { color: var(--teal); }
.foot__contact { display: grid; gap: 16px; font-size: 14.5px; }
.foot__contact li { display: flex; gap: 12px; }
.foot__contact svg { width: 18px; height: 18px; color: var(--teal); flex: none; margin-top: 3px; }
.foot__contact b { display: block; color: #fff; font-weight: 600; }
.foot__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0 26px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13.5px;
}
.foot__legal { display: flex; gap: 20px; }
.foot__legal a:hover { color: #fff; }
.foot__langs { display: flex; align-items: center; gap: 6px; }
.foot__langs button { padding: 6px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.14); }
.foot__langs button[aria-selected="true"] { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ==========================================================================
   INSIDE OUT — cortisone-free + gut-skin axis
   ========================================================================== */
.gut__grid { display: grid; grid-template-columns: .92fr 1fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.gut__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.gut__media img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.gut__chip {
  position: absolute; left: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(6px); box-shadow: var(--shadow-sm);
  font-size: 13.5px; font-weight: 700; color: var(--navy);
}
.gut__chip svg { width: 18px; height: 18px; color: var(--teal); flex: none; }
.gut__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 30px; margin: 30px 0 32px; }
.pillar__n {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
  background: var(--teal-050); color: var(--teal-600);
  font-size: 13px; font-weight: 700; letter-spacing: 0;
}
.pillar h3 { margin: 14px 0 8px; font-size: 18px; }
.pillar p { font-size: 14px; }

/* ==========================================================================
   BEFORE / AFTER
   ========================================================================== */
.ba__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.ba { display: flex; flex-direction: column; }
.ba__box {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  aspect-ratio: 4 / 3; background: var(--bg-soft); box-shadow: var(--shadow-sm);
  --pos: 50%;
  touch-action: pan-y;
}
.ba__box img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__tag {
  position: absolute; top: 14px; z-index: 3; padding: 5px 12px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.ba__tag--before { left: 14px; background: rgba(17, 22, 47, .72); color: #fff; }
.ba__tag--after { right: 14px; background: rgba(2, 163, 132, .88); color: #fff; }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); z-index: 4;
  width: 2px; background: rgba(255, 255, 255, .9); transform: translateX(-1px);
  pointer-events: none;
}
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--navy); box-shadow: var(--shadow-md);
}
.ba__grip svg { width: 20px; height: 20px; }
.ba__range {
  position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none;
}
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; width: 44px; height: 100%; }
.ba__range::-moz-range-thumb { width: 44px; height: 100%; border: 0; }
.ba__hint {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 3;
  padding: 5px 12px; border-radius: 999px; background: rgba(17, 22, 47, .6); backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, .9); font-size: 11.5px; white-space: nowrap;
  transition: opacity .3s var(--ease);
}
.ba__box:hover .ba__hint, .ba__box.is-touched .ba__hint { opacity: 0; }
.ba__body { padding: 20px 2px 0; }
.ba__body h3 { font-size: 19px; }
.ba__meta { display: block; margin: 7px 0 10px; font-size: 13px; font-weight: 600; color: var(--teal-600); }
.ba__body p { font-size: 14.5px; }
.ba__foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line);
}
.ba__note { max-width: 720px; font-size: 13px; color: var(--muted); }

/* ==========================================================================
   FLOATING DOCK — WhatsApp + chat
   ========================================================================== */
.dock {
  position: fixed; right: 22px; bottom: calc(20px + var(--tick-h)); z-index: 120;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.dock__btn {
  position: relative; display: grid; place-items: center; width: 56px; height: 56px;
  border-radius: 50%; color: #fff; box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.dock__btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.dock__btn svg { width: 26px; height: 26px; }
.dock__btn--wa { background: #25d366; }
.dock__btn--chat { background: var(--navy); }
.dock__btn--chat.is-open svg.ico-chat, .dock__btn--chat:not(.is-open) svg.ico-x { display: none; }
.dock__btn::after {
  content: attr(data-tip); position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 7px 12px; border-radius: 10px; background: var(--navy-900); color: #fff;
  font-size: 12.5px; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.dock__btn:hover::after { opacity: 1; transform: translateY(-50%); }
.dock__pulse {
  position: absolute; inset: 0; border-radius: 50%; border: 2px solid currentColor;
  color: #25d366; animation: pulse 2.4s var(--ease) infinite; pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .55; }
  70%, 100% { transform: scale(1.5); opacity: 0; }
}

.chat {
  position: fixed; right: 22px; bottom: calc(156px + var(--tick-h)); z-index: 121;
  width: min(376px, calc(100vw - 32px)); display: flex; flex-direction: column;
  max-height: min(540px, calc(100vh - 210px - var(--tick-h)));
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(.98);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.chat.is-open { opacity: 1; visibility: visible; transform: none; }
.chat__head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: var(--navy); color: #fff; }
.chat__av { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .14); flex: none; }
.chat__av svg { width: 20px; height: 20px; }
.chat__head b { display: block; font-size: 15px; }
.chat__head small { font-size: 12px; color: rgba(255, 255, 255, .65); }
.chat__close { margin-left: auto; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: #fff; background: rgba(255, 255, 255, .1); }
.chat__close svg { width: 15px; height: 15px; }
.chat__body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; background: var(--bg-soft); }
.msg { max-width: 88%; padding: 12px 14px; border-radius: 14px; font-size: 14px; line-height: 1.55; }
.msg--bot { align-self: flex-start; background: #fff; color: var(--body); border-bottom-left-radius: 4px; box-shadow: var(--shadow-sm); }
.msg--me { align-self: flex-end; background: var(--teal); color: #fff; border-bottom-right-radius: 4px; }
.chat__chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 18px 0; }
.chat__chip {
  padding: 8px 13px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; font-size: 13px; font-weight: 600; color: var(--navy); text-align: left;
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.chat__chip:hover { border-color: var(--teal); background: var(--teal-050); color: var(--teal-600); }
.chat__form { display: flex; gap: 8px; padding: 14px 18px 16px; border-top: 1px solid var(--line-soft); }
.chat__form input {
  flex: 1; min-width: 0; padding: 12px 14px; font: inherit; font-size: 14px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--bg-soft); color: var(--ink);
}
.chat__form input:focus { outline: 0; border-color: var(--teal); background: #fff; }
.chat__send { display: grid; place-items: center; width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--teal); color: #fff; }
.chat__send svg { width: 18px; height: 18px; }
.chat__wa { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 12px; background: #25d366; color: #fff; font-size: 13.5px; font-weight: 700; }
.chat__wa svg { width: 17px; height: 17px; }

/* ==========================================================================
   RESULTS POPUP
   ========================================================================== */
.pop {
  position: fixed; inset: 0; z-index: 130; display: grid; place-items: center; padding: 20px;
  background: rgba(12, 16, 36, .62); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.pop.is-open { opacity: 1; visibility: visible; }
.pop__card {
  position: relative; width: min(880px, 100%); max-height: calc(100vh - 40px); overflow: auto;
  display: grid; grid-template-columns: 1.05fr 1fr;
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(.98); transition: transform .4s var(--ease);
}
.pop.is-open .pop__card { transform: none; }
.pop__media { position: relative; background: var(--bg-mint); }
.pop__media .ba__box { height: 100%; aspect-ratio: auto; min-height: 320px; border-radius: 0; box-shadow: none; }
.pop__body { padding: 34px 32px; display: flex; flex-direction: column; }
.pop__tag {
  align-self: flex-start; padding: 6px 14px; border-radius: 999px;
  background: var(--teal-050); color: var(--teal-600);
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.pop__body h3 { margin: 16px 0 12px; font-size: clamp(22px, 2.4vw, 28px); }
.pop__body p { font-size: 15px; }
.pop__list { display: grid; gap: 10px; margin: 20px 0 26px; }
.pop__list li { display: flex; gap: 10px; font-size: 14px; color: var(--body); }
.pop__list svg { width: 18px; height: 18px; color: var(--teal); flex: none; margin-top: 2px; }
.pop__cta { margin-top: auto; display: grid; gap: 12px; }
.pop__dismiss { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.pop__dismiss input { width: 15px; height: 15px; accent-color: var(--teal); }
.pop__close {
  position: absolute; top: 14px; right: 14px; z-index: 6;
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: #fff; color: var(--navy); box-shadow: var(--shadow-sm);
}
.pop__close svg { width: 16px; height: 16px; }

/* ---------- Reveal on scroll ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__ring svg { animation: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1560px) {
  .head-call { display: none; }
}
/* Georgian labels are wider than latin — compact the nav, collapse it earlier */
html:lang(ka) .nav__link { padding-inline: 8px; font-size: 14px; letter-spacing: 0; }
@media (max-width: 1760px) {
  html:lang(ka) .head-call { display: none; }
}
@media (max-width: 1220px) {
  html:lang(ka) .nav { display: none; }
  html:lang(ka) .burger { display: grid; }
  html:lang(ka) .navbar { height: 68px; padding: 0; }
  html:lang(ka) .head-icon { display: grid; }
}
@media (max-width: 1360px) {
  .nav__link { padding: 12px 9px; font-size: 14.2px; }
  .navbar { padding-left: 20px; }
}
@media (max-width: 1120px) {
  .nav, .head-call { display: none; }
  .burger { display: grid; }
  .head-icon { display: grid; }
  .navbar { height: 68px; padding: 0; gap: 12px; }
  .brand img { height: 31px; }
  .about__top { grid-template-columns: 1fr; }
  .svc__grid, .team__grid, .quotes { grid-template-columns: 1fr 1fr; }
  .pops__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: 1fr 1fr; }
  .band, .cta__in, .faq, .gut__grid { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .ba__grid { grid-template-columns: 1fr 1fr; }
  .pop__card { grid-template-columns: 1fr; }
  .pop__media .ba__box { min-height: 240px; }
  .pop__media .ba__tag--after { right: 62px; }
}
@media (max-width: 860px) {
  .topbar__list .topbar__item:nth-child(n + 3) { display: none; }
  .topbar__note { display: none; }
  .focus__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stats__grid .stat + .stat { border-left: 0; padding-left: 0; }
  .stats__grid .stat:nth-child(2), .stats__grid .stat:nth-child(4) { border-left: 1px solid var(--line); padding-left: 24px; }
  .pops__grid { gap: 12px; }
  .hero { min-height: auto; padding: 200px 0 92px; }
  .hero__badges { margin-left: 0; gap: 18px 30px; }
  .hero__bar { gap: 20px; }
  .hero__ring { display: none; }
}
@media (max-width: 680px) {
  :root { --gut: 18px; --tick-h: 42px; }
  .site-head { top: 40px; }
  .topbar { font-size: 12.5px; }
  .topbar__in { gap: 10px; min-height: 40px; }
  .topbar__list { gap: 14px; }
  .topbar__list .topbar__item:nth-child(n + 2) { display: none; }
  .topbar__item, .topbar__item a { white-space: nowrap; }
  .topbar__item a { font-weight: 600; color: #fff; }
  .socials { display: none; }
  .topbar__ht { padding: 3px 10px 3px 7px; font-size: 11px; gap: 6px; }
  .topbar__ht img { height: 15px; }
  .head-actions > .btn { display: none; }
  .navbar { height: 64px; gap: 8px; }
  .brand img { height: 29px; }
  .head-icon, .burger { width: 42px; height: 42px; }
  .lang__btn { padding: 8px 10px; gap: 6px; }
  .lang__btn span:not(.chev) { font-size: 12.5px; letter-spacing: .02em; }
  .lang__btn .chev { display: none; }
  .lang__menu { min-width: 200px; }
  /* two cards per row on phones: square thumb + short label only */
  .pops__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .pcard { gap: 10px; padding: 9px; border-radius: 14px; }
  .pcard__img { width: 54px; height: 54px; border-radius: 10px; }
  .pcard__body b { font-size: 12.8px; line-height: 1.2; }
  .pcard__body span, .pcard__go { display: none; }
  .pops__head { gap: 4px 12px; }
  .drawer { width: min(400px, 92vw); }
  .svc__grid, .team__grid, .quotes, .steps, .foot__grid, .form__grid, .mv, .fcard__list, .gut__pillars { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; justify-content: space-between; }
  .quote, .form, .fcard { padding: 24px; }
  .ba__grid { grid-template-columns: 1fr; }
  .dock { right: 14px; bottom: calc(12px + var(--tick-h)); }
  .dock__btn { width: 52px; height: 52px; }
  .dock__btn::after { display: none; }
  .chat { right: 14px; bottom: calc(128px + var(--tick-h)); max-height: calc(100vh - 180px - var(--tick-h)); }
  .pop__body { padding: 26px 22px; }
  .foot__bottom { justify-content: center; text-align: center; }
  /* mobile hero: only the punchy bits — kicker, headline, one CTA, dots */
  .hero__slide img { object-position: 60% 32%; }
  .hero { min-height: auto; padding: 150px 0 40px; }
  .hero__in { gap: 22px; }
  .hero__title { font-size: clamp(32px, 9vw, 42px); margin: 12px 0 0; }
  .hero .kicker { font-size: 17px; }
  .hero__text { display: none; }
  .hero__cta { margin-top: 24px; }
  .hero__cta .btn--ghost { display: none; }
  .hero__badges { display: none; }
  .hero__bar { gap: 0; }
  .hero__arrow { width: 40px; height: 40px; }
}
@media (max-width: 560px) {
  .topbar__ht span { font-size: 10.5px; }
  .drawer__contact a { font-size: 13px; padding: 12px 8px; }
}

/* drawer/popup take over the screen — keep the floating dock out of the way */
body.is-locked .dock { opacity: 0; visibility: hidden; }

/* ==========================================================================
   STICKY SLOGAN TICKER
   ========================================================================== */
body { padding-bottom: var(--tick-h); }
.ticker {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 115;
  display: flex; align-items: center; gap: 18px; height: var(--tick-h);
  padding-left: 16px; overflow: hidden;
  background: var(--navy-900); color: rgba(255, 255, 255, .9);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.ticker__badge {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  padding: 6px 13px; border-radius: 999px;
  background: var(--teal); color: #fff;
  font-size: 12.5px; font-weight: 700; letter-spacing: -.01em; white-space: nowrap;
}
.ticker__badge svg { width: 15px; height: 15px; flex: none; }
.ticker__viewport {
  position: relative; flex: 1; min-width: 0; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 40px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 40px), transparent);
}
.ticker__track {
  display: flex; align-items: center; width: max-content;
  animation: tick 42s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: inline-flex; align-items: center; gap: 14px; padding-right: 14px;
  font-size: 13.5px; font-weight: 600; white-space: nowrap;
}
.ticker__item::after {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal); flex: none;
}
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}
.dock { transition: opacity .25s var(--ease), visibility .25s; }

/* the badge would eat the scroll area on phones — slogans get the full width */
@media (max-width: 680px) {
  .ticker { padding-left: 14px; gap: 0; }
  .ticker__badge { display: none; }
  .ticker__item { font-size: 13px; }
  .ticker__viewport {
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 32px), transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 32px), transparent);
  }
}


/* ==========================================================================
   SUB-PAGES — page hero, cards, detail layout, blog, contact
   ========================================================================== */
.phero { padding: calc(84px + 92px) 0 clamp(52px, 5vw, 78px); background: var(--bg-soft); border-bottom: 1px solid var(--line-soft); }
.phero__title { margin: 16px 0 18px; }
.phero__lead { max-width: 720px; }
.phero__meta { display: inline-block; margin-top: 14px; font-size: 13.5px; color: var(--muted); }
.phero--detail .phero__lead { max-width: 780px; }
.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 13px; color: var(--muted); }
.crumb a:hover { color: var(--teal); }
.crumb b { color: var(--navy); font-weight: 600; }
.crumb span { opacity: .5; }

/* group headers on the conditions index */
.gsec__head { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.gsec__ico { display: grid; place-items: center; width: 54px; height: 54px; flex: none; border-radius: 16px; background: var(--teal-050); color: var(--teal-600); }
.gsec__ico svg { width: 26px; height: 26px; }

/* condition cards */
.cgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.ccard {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.ccard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-100); }
.ccard__img { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-mint); }
.ccard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ccard:hover .ccard__img img { transform: scale(1.05); }
.ccard__body { display: flex; flex-direction: column; gap: 10px; padding: 22px 22px 24px; }
.ccard__body b { font-size: 18px; color: var(--ink); letter-spacing: -.01em; }
.ccard__body > span { font-size: 14px; color: var(--body); }
.ccard__body .link-arrow { margin-top: auto; }

/* treatment cards */
.tgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.tcard {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-100); }
.tcard__img { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--bg-mint); }
.tcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tcard:hover .tcard__img img { transform: scale(1.05); }
.tcard__ico {
  position: absolute; top: calc(3 / 2 * 100% / 3 * 0); left: 22px; margin-top: -29px;
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: #fff; color: var(--teal-600); box-shadow: var(--shadow-sm);
}
.tcard__ico svg { width: 27px; height: 27px; }
.tcard__body { display: flex; flex-direction: column; gap: 10px; padding: 34px 22px 24px; }
.tcard__body b { font-size: 19px; color: var(--ink); letter-spacing: -.01em; }
.tcard__body > span { font-size: 14.5px; color: var(--body); }
.tcard__body .link-arrow { margin-top: auto; }

/* detail layout */
.detail { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(28px, 4vw, 56px); align-items: start; }
.detail__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 34px; }
.detail__media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.detail__block { padding-top: 26px; margin-top: 26px; border-top: 1px solid var(--line); }
.detail__block:first-of-type { padding-top: 0; margin-top: 0; border-top: 0; }
.detail__block .h3 { margin-bottom: 18px; }
.detail__block .checks { gap: 12px; }
.detail__note {
  display: flex; gap: 14px; margin-top: 30px; padding: 20px 22px;
  background: var(--teal-050); border: 1px solid var(--teal-100); border-radius: var(--r-md);
}
.detail__note svg { width: 22px; height: 22px; color: var(--teal-600); flex: none; margin-top: 2px; }
.detail__note b { display: block; margin-bottom: 5px; font-size: 15px; color: var(--ink); }
.detail__note span span { font-size: 14.5px; }
.detail__side { display: grid; gap: 20px; position: sticky; top: 104px; }
.sidecard { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.sidelist { display: grid; }
.sidelist__item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px; font-weight: 500; color: var(--navy);
  transition: color .22s var(--ease), padding-left .22s var(--ease);
}
.sidelist__item:last-child { border-bottom: 0; }
.sidelist__item svg { width: 14px; height: 14px; color: var(--teal); flex: none; }
.sidelist__item:hover { color: var(--teal-600); padding-left: 4px; }

/* article body */
.article { display: grid; gap: 18px; }
.article p { font-size: 16px; line-height: 1.75; }

/* blog */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  font-size: 14px; font-weight: 600; color: var(--navy);
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.chip:hover { border-color: var(--teal); color: var(--teal-600); }
.chip.is-on { background: var(--navy); border-color: var(--navy); color: #fff; }
.bgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.bcard {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-100); }
.bcard__img { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-mint); }
.bcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.bcard:hover .bcard__img img { transform: scale(1.05); }
.bcard__body { display: flex; flex-direction: column; gap: 10px; padding: 22px 22px 24px; }
.bcard__meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--muted); }
.bcard__meta em {
  font-style: normal; padding: 4px 10px; border-radius: 999px;
  background: var(--teal-050); color: var(--teal-600); font-weight: 700; font-size: 11.5px;
  letter-spacing: .04em; text-transform: uppercase;
}
.bcard__body b { font-size: 18.5px; color: var(--ink); letter-spacing: -.01em; line-height: 1.3; }
.bcard__lead { font-size: 14px; color: var(--body); }
.bcard__body .link-arrow { margin-top: auto; }
.bempty { padding: 40px 0; text-align: center; color: var(--muted); }

/* cta band */
.band-cta {
  display: grid; grid-template-columns: 1fr auto; gap: 26px 40px; align-items: center;
  padding: clamp(26px, 3vw, 40px); background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
}
.band-cta p { font-size: 15px; max-width: 620px; }
.band-cta__act { display: flex; flex-wrap: wrap; gap: 12px; }

/* contact */
.ctgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.ctcard { display: flex; flex-direction: column; gap: 10px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); }
.ctcard__ico { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--teal-050); color: var(--teal-600); }
.ctcard__ico svg { width: 24px; height: 24px; }
.ctcard h3 { font-size: 17px; margin-top: 6px; }
.ctcard p { font-size: 14.5px; }
.ctcard a:hover { color: var(--teal); }
.ctcard__sub { font-size: 13px; color: var(--muted); }
.ctcard .link-arrow { margin-top: auto; padding-top: 6px; }
.ct__split { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.ct__map { margin-top: 30px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.ct__map iframe { display: block; width: 100%; height: 320px; border: 0; }

@media (max-width: 1120px) {
  .cgrid, .tgrid, .bgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail { grid-template-columns: 1fr; }
  .detail__side { position: static; grid-template-columns: 1fr 1fr; }
  .ctgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ct__split { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .phero { padding: 176px 0 clamp(40px, 6vw, 56px); }
}
@media (max-width: 680px) {
  .cgrid, .tgrid, .bgrid, .ctgrid { grid-template-columns: minmax(0, 1fr); }
  .detail__side { grid-template-columns: 1fr; }
  .band-cta { grid-template-columns: 1fr; }
  .band-cta__act .btn { width: 100%; justify-content: space-between; }
  .gsec__head { gap: 12px; margin-bottom: 22px; }
  .gsec__ico { width: 46px; height: 46px; }
  .article p { font-size: 15.5px; }
}

/* sub-pages open on a light hero, so the header starts in its solid state */
body.page-sub .site-head {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(14px);
  --head-fg: var(--navy); --head-line: var(--line-soft); --brand-invert: 0;
}
body.page-sub .burger { background: var(--navy); color: #fff; }


/* ==========================================================================
   AD LANDING PAGES (condition / treatment detail)
   ========================================================================== */
.lhero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: calc(84px + 92px) 0 clamp(48px, 6vw, 84px);
}
.lhero__bg { position: absolute; inset: 0; z-index: -2; }
.lhero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 35%; }
.lhero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11, 22, 47, .95) 0%, rgba(11, 22, 47, .82) 46%, rgba(11, 22, 47, .58) 100%);
}
.lhero__in { display: grid; grid-template-columns: 1fr 420px; gap: clamp(28px, 4vw, 56px); align-items: start; }
.lhero__copy { color: #fff; max-width: 640px; }
.lhero .kicker { color: #7fe3cd; }
.lhero__title { margin: 14px 0 16px; color: #fff; font-size: clamp(32px, 4.4vw, 52px); }
.lhero__lead { font-size: 17px; color: rgba(255, 255, 255, .84); max-width: 560px; }
.lhero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; }
.lchip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: 999px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2);
  color: #fff; font-size: 13.5px; font-weight: 600;
}
.lchip svg { width: 15px; height: 15px; color: #7fe3cd; flex: none; }
.lhero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.crumb--light { color: rgba(255, 255, 255, .6); }
.crumb--light b { color: #fff; }
.crumb--light a:hover { color: #7fe3cd; }

/* inline lead form */
.lform { padding: 26px; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.lform__title { font-size: 21px; color: var(--ink); letter-spacing: -.02em; }
.lform__sub { margin: 8px 0 20px; font-size: 14px; color: var(--body); }
.lform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lform .field--full { grid-column: 1 / -1; }
.lform .btn { width: 100%; justify-content: space-between; margin-top: 14px; }
.lform__alt { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 14px; }
.lform__alt a { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: var(--navy); }
.lform__alt a:hover { color: var(--teal-600); }
.lform__alt svg { width: 15px; height: 15px; color: var(--teal); }
.lform .form__note { margin-top: 10px; }

/* trust strip */
.tstrip { background: var(--navy); color: rgba(255, 255, 255, .82); }
.tstrip__in { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 34px; min-height: 74px; padding-block: 14px; }
.tstrip__item { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; }
.tstrip__item svg { width: 18px; height: 18px; color: #7fe3cd; flex: none; }
.tstrip__item b { font-weight: 600; color: #fff; }
.tstrip__ht { margin-left: auto; }
.tstrip__ht img { height: 34px; width: auto; opacity: .95; }

/* symptom checklist + side card */
.lsplit { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
.symlist { display: grid; gap: 12px; margin: 26px 0 30px; }
.symlist li {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 15px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  font-size: 15px; color: var(--ink);
}
.symlist li svg { width: 20px; height: 20px; color: var(--teal); flex: none; margin-top: 1px; }
.lcard { padding: clamp(24px, 3vw, 34px); background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-lg); }

/* care steps */
.carelist { display: grid; gap: 16px; margin-top: 40px; }
.careitem {
  display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start;
  padding: 22px 24px; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
}
.careitem__n {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px;
  background: var(--teal); color: #fff; font-size: 17px; font-weight: 700; letter-spacing: -.02em;
}
.careitem p { font-size: 15.5px; color: var(--ink); }
.carefoot { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* why grid */
.why__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; margin-top: 44px; }
.why { padding: 26px 24px; background: #fff; border-radius: var(--r-lg); border: 1px solid var(--line); }
.why__n { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: var(--teal-050); color: var(--teal-600); font-size: 13px; font-weight: 700; }
.why h3 { margin: 16px 0 8px; font-size: 18px; }
.why p { font-size: 14px; }

/* proof + final cta */
.ba__grid--single { grid-template-columns: 1.1fr .9fr; align-items: center; }
.proofside { display: grid; gap: 20px; justify-items: start; }
.lcta { display: grid; grid-template-columns: 1fr 420px; gap: clamp(28px, 4vw, 56px); align-items: start; }

/* sticky conversion bar (mobile) */
.cbar { display: none; }
@media (max-width: 900px) {
  .cbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 118;
    display: grid; grid-template-columns: 1fr 1fr 1.35fr; gap: 1px;
    background: var(--line); border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .cbar__btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 58px; background: #fff; color: var(--navy);
    font-size: 13.5px; font-weight: 700; white-space: nowrap;
  }
  .cbar__btn svg { width: 17px; height: 17px; color: var(--teal); flex: none; }
  .cbar__btn--wa { color: #128c4b; }
  .cbar__btn--wa svg { color: #25d366; }
  .cbar__btn--main { background: var(--teal); color: #fff; }
  .cbar__btn--main svg { color: #fff; }
  /* the slogan ticker steps aside for the conversion bar */
  body:has(.cbar) .ticker { display: none; }
  body:has(.cbar) { padding-bottom: 58px; }
  body:has(.cbar) .dock { bottom: 70px; }
  body:has(.cbar) .chat { bottom: 188px; max-height: calc(100vh - 250px); }
}

@media (max-width: 1120px) {
  .lhero__in, .lcta { grid-template-columns: 1fr; }
  .lform { max-width: 560px; }
  .lsplit { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .ba__grid--single { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .lhero { padding: 172px 0 42px; }
  .lhero__lead { font-size: 15.5px; }
  .lhero__cta .btn { width: 100%; justify-content: space-between; }
  .lform { padding: 20px; }
  .lform__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .tstrip__ht { margin-left: 0; }
  .careitem { grid-template-columns: 44px 1fr; gap: 14px; padding: 18px; }
  .careitem__n { width: 44px; height: 44px; border-radius: 13px; font-size: 15px; }
  .symlist li { padding: 13px 15px; font-size: 14.5px; }
}


/* ==========================================================================
   DETAIL GALLERY + LIGHTBOX
   ========================================================================== */
.gal { padding: clamp(38px, 4.5vw, 62px) 0 clamp(30px, 4vw, 50px); }
.gal__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 14px 24px; margin-bottom: 26px; }
.gal__hint { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted); }
.gal__hint svg { width: 17px; height: 17px; color: var(--teal); flex: none; }
.gal__grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "a a b c" "a a d e";
}
.galcell {
  position: relative; overflow: hidden; padding: 0; border-radius: var(--r-md);
  background: var(--bg-mint); cursor: zoom-in; height: 100%; min-height: 0;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.galcell:nth-child(1) { grid-area: a; aspect-ratio: 4 / 3; height: auto; }
.galcell:nth-child(2) { grid-area: b; }
.galcell:nth-child(3) { grid-area: c; }
.galcell:nth-child(4) { grid-area: d; }
.galcell:nth-child(5) { grid-area: e; }
.galcell:nth-child(n + 6) { display: none; }
.galcell img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.galcell:hover { box-shadow: var(--shadow-md); }
.galcell:hover img { transform: scale(1.05); }
.galcell__cap {
  position: absolute; left: 12px; right: 12px; bottom: 10px;
  padding: 6px 11px; border-radius: 999px;
  background: rgba(17, 22, 47, .72); backdrop-filter: blur(6px);
  color: #fff; font-size: 12px; font-weight: 600; text-align: left;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.galcell:hover .galcell__cap, .galcell:focus-visible .galcell__cap { opacity: 1; transform: none; }

.lbox {
  position: fixed; inset: 0; z-index: 140; display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px; align-items: center;
  padding: 24px; background: rgba(9, 12, 28, .93);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.lbox.is-open { opacity: 1; visibility: visible; }
.lbox__fig { grid-column: 2; margin: 0; display: grid; gap: 14px; justify-items: center; }
.lbox__fig img { max-width: 100%; max-height: calc(100vh - 150px); border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.lbox__fig figcaption { display: flex; align-items: center; gap: 14px; color: rgba(255, 255, 255, .82); font-size: 14px; }
.lbox__fig figcaption b { color: #7fe3cd; font-weight: 700; font-size: 13px; }
.lbox__nav {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .32); color: #fff;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lbox__nav:hover { background: #fff; color: var(--navy); }
.lbox__nav svg { width: 18px; height: 18px; }
.lbox__nav--prev { grid-column: 1; justify-self: start; }
.lbox__nav--prev svg { transform: rotate(180deg); }
.lbox__nav--next { grid-column: 3; justify-self: end; }
.lbox__close {
  position: absolute; top: 18px; right: 18px;
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 255, 255, .12); color: #fff;
}
.lbox__close:hover { background: #fff; color: var(--navy); }
.lbox__close svg { width: 18px; height: 18px; }

@media (max-width: 1120px) {
  .gal__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-areas: "a a" "b c" "d e"; }
}
@media (max-width: 680px) {
  .gal__grid {
    display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
    margin-inline: calc(var(--gut) * -1); padding-inline: var(--gut) ;
    scrollbar-width: none;
  }
  .gal__grid::-webkit-scrollbar { display: none; }
  .galcell { flex: 0 0 78%; scroll-snap-align: center; aspect-ratio: 4 / 3; }
  .galcell:nth-child(1) { aspect-ratio: 4 / 3; }
  .galcell:nth-child(n + 6) { display: block; }
  .galcell__cap { opacity: 1; transform: none; }
  .lbox { grid-template-columns: minmax(0, 1fr); padding: 16px; }
  .lbox__fig { grid-column: 1; }
  .lbox__nav { position: absolute; bottom: 22px; width: 46px; height: 46px; background: rgba(255,255,255,.12); }
  .lbox__nav--prev { left: 24px; }
  .lbox__nav--next { right: 24px; }
}


/* measurable follow-up (replaces patient testimonials) */
.fu__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 44px; }
.fu__grid .why__n { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; }
.fu__grid .why__n svg { width: 22px; height: 22px; }
.ba__legal { display: flex; align-items: flex-start; gap: 9px; margin-top: 14px; font-size: 12.5px; color: var(--muted); }
.ba__legal svg { width: 15px; height: 15px; color: var(--teal); flex: none; margin-top: 2px; }
.pending {
  display: grid; gap: 12px; justify-items: start; max-width: 760px;
  padding: clamp(24px, 3vw, 36px); background: var(--bg-soft);
  border: 1px dashed var(--line); border-radius: var(--r-lg);
}
.pending h3 { font-size: clamp(19px, 2vw, 23px); }
.pending p { font-size: 15px; }
/* HealthTürkiye branding is health-tourism promotion: shown on the international
   locales only, since domestic Turkish promotion requires the authorisation certificate */
[data-intl-only] { display: none !important; }
html:not(:lang(tr)) .topbar__ht[data-intl-only] { display: inline-flex !important; }
html:not(:lang(tr)) .foot__ht[data-intl-only],
html:not(:lang(tr)) .tstrip__ht[data-intl-only] { display: block !important; }
@media (max-width: 1120px) { .fu__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .fu__grid { grid-template-columns: 1fr; } }

/* first block after a page hero: breathing room without a full section gap */
.section--tight { padding-top: clamp(42px, 4.5vw, 66px); }
