:root {
  --ink: #0f1c2e;
  --navy: #0a1f3d;
  --navy-deep: #061528;
  --blue: #1a4f8a;
  --blue-mid: #2a6fb0;
  --sky: #4f9fd4;
  --mist: #e8f2fa;
  --soft: #f0f7fc;
  --paper: #f7fafc;
  --foam: #ffffff;
  --muted: #5a6f82;
  --line: #d4e2ee;
  --ok: #0f6b4c;
  --ok-bg: #e3f6ec;
  --warn: #7a5418;
  --warn-bg: #f7f0e4;
  --cgh: #0e8f8a;
  --cgh-deep: #0a6e6a;
  --cta: #c45c12;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --font-head: "Outfit", "Figtree", sans-serif;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 12px 36px rgba(10, 31, 61, .08);
  --shadow-lg: 0 24px 60px rgba(10, 31, 61, .14);
  --header-h: 72px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
#main { max-width: 100%; overflow-x: clip; min-width: 0; }
img, iframe { max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; background: var(--navy); color: #fff;
  padding: .5rem 1rem; z-index: 200; border-radius: 8px;
}
.skip-link:focus { top: .5rem; }
.container {
  width: min(1140px, calc(100% - 2rem));
  max-width: 100%;
  margin-inline: auto;
  min-width: 0;
}
.muted { color: var(--muted); }

/* —— Disclaimer —— */
.disclaimer-bar {
  background: rgba(247, 240, 228, .92);
  color: var(--warn);
  text-align: center;
  padding: .5rem 1rem;
  font-size: .84rem;
  border-bottom: 1px solid #ead9b8;
}

/* —— Header —— */
/* Solid bg only — backdrop-filter traps position:fixed children (broken mobile menu). */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: #fff;
  border-bottom: 1px solid rgba(212, 226, 238, .8);
}
body.nav-open {
  overflow: hidden;
  touch-action: none;
  height: 100%;
}
body.nav-open .site-header { z-index: 1000; }
body.nav-open .disclaimer-bar { position: relative; z-index: 0; }
body.nav-open .sticky-lead-cta { visibility: hidden; pointer-events: none; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
}
.logo { display: flex; align-items: center; gap: .75rem; color: var(--navy); }
.logo:hover { text-decoration: none; color: var(--navy); }
.logo-img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; }
.logo-img--footer { height: 36px; margin-bottom: .55rem; }
.logo-mark {
  display: grid; place-items: center;
  min-width: 3rem; height: 2.5rem; padding: 0 .55rem;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: #fff;
  font-family: var(--font-head); font-weight: 700; letter-spacing: .04em;
  border-radius: 10px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-family: var(--font-head); font-size: 1.12rem; }
.logo-text small { font-size: .72rem; color: var(--muted); font-weight: 500; }
.main-nav { display: flex; align-items: center; gap: 1.1rem; }
.main-nav a { color: var(--ink); font-weight: 600; font-size: .93rem; }
.main-nav a:hover { color: var(--blue); text-decoration: none; }
.nav-cta {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff !important;
  padding: .48rem .95rem; border-radius: 999px;
}
.nav-cta:hover { filter: brightness(1.08); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--navy); font: inherit; font-weight: 600;
  padding: .4rem .75rem; border-radius: 10px; cursor: pointer;
}

/* —— Buttons —— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .75rem 1.25rem; border-radius: 12px; font-weight: 600;
  border: 0; cursor: pointer; font: inherit; text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s, filter .2s, background .2s;
}
.btn:hover { text-decoration: none; }
.btn-lg { padding: .95rem 1.45rem; font-size: 1.02rem; border-radius: 14px; }
.btn-sm { padding: .45rem .8rem; font-size: .85rem; border-radius: 10px; }
.btn-primary { background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; box-shadow: 0 8px 22px rgba(26, 79, 138, .22); }
.btn-primary:hover { color: #fff; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-secondary:hover { background: var(--mist); color: var(--navy); border-color: var(--sky); }
.btn-ghost { background: transparent; color: var(--blue); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--mist); color: var(--navy); }
.btn-ghost-light {
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.28);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.2); color: #fff; }
.btn-cta { background: var(--cta); color: #fff; }
.btn-cta:hover { filter: brightness(1.06); color: #fff; }
.btn-cgh {
  background: linear-gradient(135deg, var(--cgh-deep), var(--cgh));
  color: #fff; box-shadow: 0 10px 28px rgba(14, 143, 138, .28);
}
.btn-cgh:hover { color: #fff; filter: brightness(1.06); }
.btn-block { display: block; text-align: center; width: 100%; margin-bottom: .75rem; }

/* —— Hero premium —— */
.hero--premium {
  position: relative;
  overflow: hidden;
  color: #f4f9fc;
  background:
    radial-gradient(ellipse 70% 60% at 78% 42%, rgba(79, 159, 212, .35), transparent 55%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(26, 79, 138, .45), transparent 50%),
    linear-gradient(155deg, #061528 0%, #0a2748 38%, #1a4f8a 72%, #6bb3db 100%);
  padding: 3.5rem 0 4rem;
}
.hero-glow {
  position: absolute; inset: -20% 40% auto -10%;
  height: 70%;
  background: radial-gradient(circle, rgba(110, 190, 235, .22), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(180, 220, 245, .9); margin: 0 0 .85rem;
}
.hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -.02em;
  margin: 0 0 .9rem; max-width: 12em;
  animation: rise .7s var(--ease) both;
}
.hero-copy .lead {
  color: rgba(230, 242, 250, .88); font-size: 1.08rem; max-width: 34em;
  margin: 0 0 1.4rem; animation: rise .7s var(--ease) .08s both;
}
.hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-bottom: 1.25rem; animation: rise .7s var(--ease) .14s both; }
.hero-trust {
  display: flex; align-items: center; gap: .45rem; flex-wrap: wrap;
  margin: 0; font-size: .88rem; color: rgba(200, 225, 240, .78);
  animation: rise .7s var(--ease) .2s both;
}
.hero-trust .icon { flex-shrink: 0; opacity: .9; }

.hero-visual {
  position: relative;
  min-height: 420px;
  animation: rise .8s var(--ease) .12s both;
}

/* Premium glass stage (replaces Turkey SVG map) */
.hero-stage {
  position: absolute;
  inset: 4% 2% 8% 4%;
  border-radius: 28px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(200, 230, 250, .18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 24px 48px rgba(4, 16, 36, .28);
}
.hero-stage__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(180, 220, 245, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 220, 245, .07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, #000 20%, transparent 75%);
  opacity: .9;
}
.hero-stage__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
}
.hero-stage__orb--a {
  width: 180px; height: 180px; top: 8%; right: 12%;
  background: rgba(79, 159, 212, .45);
  animation: floatY 7s ease-in-out infinite;
}
.hero-stage__orb--b {
  width: 140px; height: 140px; bottom: 12%; left: 10%;
  background: rgba(43, 179, 168, .28);
  animation: floatY 8.5s ease-in-out infinite reverse;
}
.hero-stage__orb--c {
  width: 90px; height: 90px; top: 42%; left: 42%;
  background: rgba(255, 255, 255, .12);
  filter: blur(18px);
}

.hero-stage__stack {
  position: absolute;
  left: 50%; top: 46%;
  width: min(240px, 58%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.hero-stage__sheet {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(4, 16, 36, .22);
}
.hero-stage__sheet--back,
.hero-stage__sheet--mid {
  position: absolute;
  left: 0; right: 0;
  padding: 1rem 1.1rem;
}
.hero-stage__sheet--back {
  top: -28px;
  transform: rotate(-7deg) scale(.92);
  opacity: .55;
  background: rgba(255,255,255,.06);
}
.hero-stage__sheet--mid {
  top: -12px;
  transform: rotate(4deg) scale(.96);
  opacity: .78;
  background: rgba(232, 244, 252, .16);
}
.hero-stage__sheet--front {
  position: relative;
  padding: 1.15rem 1.2rem 1.2rem;
  background: linear-gradient(165deg, rgba(255,255,255,.94), rgba(236,246,252,.9));
  color: var(--ink);
  border-color: rgba(255,255,255,.7);
  animation: floatY 6s ease-in-out infinite;
}
.hero-stage__sheet-line {
  display: block; height: 6px; border-radius: 99px;
  background: rgba(255,255,255,.28); margin-bottom: .45rem;
}
.hero-stage__sheet--mid .hero-stage__sheet-line { background: rgba(26, 79, 138, .12); }
.hero-stage__sheet-line--short { width: 55%; margin-bottom: 0; }
.hero-stage__badge {
  display: inline-flex; margin-bottom: .55rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue); background: rgba(79,159,212,.14);
  padding: .2rem .5rem; border-radius: 999px;
}
.hero-stage__pin {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: .7rem;
  background: linear-gradient(145deg, #d9ecf8, #eef6fb);
  color: var(--blue);
  box-shadow: 0 4px 12px rgba(26, 79, 138, .12);
}
.hero-stage__sheet--front strong {
  display: block; font-family: var(--font-head);
  font-size: 1.05rem; line-height: 1.2; margin-bottom: .2rem;
}
.hero-stage__meta {
  display: block; font-size: .78rem; color: var(--muted); margin-bottom: .75rem;
}
.hero-stage__checks {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: .35rem;
}
.hero-stage__checks li {
  display: flex; align-items: center; gap: .45rem;
  font-size: .8rem; color: var(--ink-soft, #3a5166); font-weight: 500;
}
.hero-stage__checks i {
  width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(145deg, var(--cgh, #0e8f8a), var(--blue));
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.35);
}

.hero-stage__timeline {
  position: absolute;
  left: 8%; right: 8%; bottom: 10%;
  display: flex; align-items: center; justify-content: space-between;
  gap: .35rem; z-index: 1;
  padding: .55rem .75rem;
  border-radius: 999px;
  background: rgba(6, 21, 40, .35);
  border: 1px solid rgba(200, 230, 250, .16);
  backdrop-filter: blur(8px);
}
.hero-stage__timeline::before {
  content: "";
  position: absolute; left: 1.1rem; right: 1.1rem; top: 50%;
  height: 2px; transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(110,190,235,.15), rgba(79,159,212,.55), rgba(43,179,168,.4));
  z-index: 0;
}
.hero-stage__node {
  position: relative; z-index: 1;
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(200, 230, 245, .45);
  border: 2px solid rgba(255,255,255,.55);
  box-shadow: 0 0 0 4px rgba(6,21,40,.2);
}
.hero-stage__node--active {
  background: #7ec8ef;
  box-shadow: 0 0 0 4px rgba(79,159,212,.35), 0 0 16px rgba(110,190,235,.55);
}
.hero-stage__node::after {
  content: attr(data-label);
  position: absolute; left: 50%; top: calc(100% + 8px);
  transform: translateX(-50%);
  font-size: .62rem; font-weight: 600; letter-spacing: .02em;
  color: rgba(210, 230, 245, .78); white-space: nowrap;
}

.hero-stage__chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .7rem; border-radius: 999px;
  font-size: .72rem; font-weight: 650;
  color: #eaf4fb;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  animation: floatY 5.8s ease-in-out infinite;
}
.hero-stage__chip--cozger { top: 12%; left: 7%; animation-delay: .4s; }
.hero-stage__chip--docs { top: 18%; right: 6%; animation-delay: 1.2s; }

.hero-visual > .float-card { z-index: 2; }
.float-card {
  position: absolute;
  display: grid; grid-template-columns: auto 1fr; gap: .15rem .65rem;
  align-items: center;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  padding: .75rem .9rem;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.6);
  transition: transform .25s var(--ease);
  animation: floatY 5.5s ease-in-out infinite;
}
.float-card:hover { transform: translateY(-4px) scale(1.02); text-decoration: none; color: var(--ink); }
.float-card__icon {
  grid-row: 1 / span 2;
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #d9ecf8, #eef6fb);
  color: var(--blue);
}
.float-card strong { font-family: var(--font-head); font-size: .92rem; line-height: 1.2; }
.float-card span { font-size: .75rem; color: var(--muted); }
.float-card--stat {
  display: flex; flex-direction: column; gap: 0; grid-template-columns: 1fr;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: #fff; border: 0;
}
.float-card--stat strong { font-size: 1.45rem; color: #fff; }
.float-card--stat span { color: rgba(230,242,250,.8); }
.float-card--1 { top: 4%; left: -2%; animation-delay: 0s; }
.float-card--2 { top: 8%; right: -4%; animation-delay: .6s; }
.float-card--3 { bottom: 22%; left: -4%; animation-delay: 1.1s; }
.float-card--4 { bottom: 28%; right: -2%; animation-delay: 1.6s; }
.float-card--5 { bottom: 2%; left: 28%; animation-delay: 2s; }

/* —— Sections —— */
.section { padding: 3.6rem 0; }
.section--metrics { background: var(--foam); padding: 2.4rem 0; }
.section--soft { background: linear-gradient(180deg, #eaf4fb 0%, #f3f8fc 100%); }
.section--white { background: var(--foam); }
.section--roadmap {
  background:
    radial-gradient(circle at 12% 20%, rgba(79,159,212,.12), transparent 35%),
    radial-gradient(circle at 88% 70%, rgba(14,143,138,.08), transparent 40%),
    repeating-linear-gradient(-12deg, transparent, transparent 18px, rgba(26,79,138,.03) 18px, rgba(26,79,138,.03) 19px),
    #f5fafc;
}
.section--finder {
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(79,159,212,.25), transparent 50%),
    linear-gradient(160deg, #061528 0%, #0c2d52 55%, #163f6e 100%);
  color: #e8f2fa;
}
.section--turkey { background: linear-gradient(180deg, #f8fbfd 0%, #eef5fa 100%); }
.section--guides { background: linear-gradient(180deg, #eaf3f9 0%, #f4f8fb 100%); }
.section--cgh {
  background: linear-gradient(120deg, #0a6e6a 0%, #0e8f8a 40%, #1a6fa8 100%);
  color: #fff; padding: 3rem 0;
}
.section-alt { background: var(--foam); }
.section-head { max-width: 38rem; margin-bottom: 1.75rem; }
.section-head h2, .section h2, .center-block h2, .aside-card h2, .info-panel h2 {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 650;
  margin: 0 0 .4rem;
  letter-spacing: -.01em;
}
.section-head p { margin: 0; color: var(--muted); }
.section-head--on-dark h2 { color: #fff; }
.section-head--on-dark p { color: rgba(220, 235, 245, .78); }
.section-head--light h2 { color: var(--navy); }
.eyebrow {
  text-transform: uppercase; letter-spacing: .1em; font-size: .72rem;
  font-weight: 700; color: var(--blue-mid); margin: 0;
}
.eyebrow--on-dark { color: rgba(200, 240, 235, .9); }
.lead { font-size: 1.06rem; color: var(--muted); margin: 0 0 1.25rem; }
.text-link { font-weight: 600; color: var(--blue); }
.text-link:hover { color: var(--navy); }

/* —— Metrics —— */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.metric-card {
  position: relative; overflow: hidden;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #fff 0%, #f0f7fc 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.metric-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px;
  background: linear-gradient(180deg, var(--sky), var(--blue));
}
.metric-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.metric-card__icon {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 12px; margin-bottom: .75rem;
  background: linear-gradient(145deg, #d6ebf7, #eef6fb); color: var(--blue);
}
.metric-card strong {
  display: block; font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.25rem); line-height: 1; color: var(--navy);
}
.metric-card span { color: var(--muted); font-size: .92rem; }

/* —— Quick access —— */
.qa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.qa-tile {
  display: flex; flex-direction: column; gap: .35rem;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.95), rgba(232,242,250,.9));
  border: 1px solid rgba(212, 226, 238, .9);
  box-shadow: var(--shadow);
  color: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .2s;
}
.qa-tile:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--sky); text-decoration: none; color: var(--ink);
}
.qa-tile__icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: .35rem;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #cfe6f5, #e8f4fb); color: var(--blue);
}
.qa-tile strong { font-family: var(--font-head); font-size: 1.12rem; color: var(--navy); }
.qa-tile span { color: var(--muted); font-size: .9rem; }

/* legacy quick-access used on home rehab leftover / rehab pages */
.quick-access { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.qa-card {
  display: flex; flex-direction: column; gap: .35rem; padding: 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #f0f7fc);
  border: 1px solid var(--line); color: var(--ink); box-shadow: var(--shadow);
  transition: transform .25s var(--ease);
}
.qa-card:hover { transform: translateY(-3px); text-decoration: none; color: var(--navy); }
.qa-card span { color: var(--muted); font-size: .9rem; }

/* —— Timeline —— */
.timeline {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute; top: 18px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--blue), var(--cgh));
}
.timeline__item {
  position: relative; padding: 2.6rem .75rem 0; text-align: center;
}
.timeline__dot {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue);
  box-shadow: 0 0 0 4px rgba(79, 159, 212, .2);
}
.timeline__item strong {
  display: block; font-family: var(--font-head); color: var(--navy);
  font-size: 1.05rem; margin-bottom: .3rem;
}
.timeline__item p { margin: 0; color: var(--muted); font-size: .9rem; }

/* —— Roadmap —— */
.roadmap { max-width: 900px; }
.roadmap__start {
  display: inline-flex; flex-direction: column; gap: .25rem;
  padding: 1rem 1.25rem; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff;
  margin-bottom: 1.25rem; box-shadow: var(--shadow);
}
.roadmap__badge {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  opacity: .8;
}
.roadmap__branches {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem;
}
.roadmap__branch {
  padding: 1.35rem 1.3rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.roadmap__branch--alt {
  background: linear-gradient(160deg, #f0faf9, #fff);
  border-color: rgba(14, 143, 138, .25);
}
.roadmap__branch h3 {
  font-family: var(--font-head); margin: 0 0 .75rem; color: var(--navy); font-size: 1.15rem;
}
.roadmap__branch ul { margin: 0 0 1rem; padding-left: 1.1rem; color: var(--muted); }
.roadmap__branch li { margin-bottom: .35rem; }
.roadmap__cta { text-align: center; }

/* —— Finder star —— */
.finder-form {
  display: grid;
  grid-template-columns: minmax(160px, .8fr) minmax(180px, 1.2fr) auto;
  gap: .55rem;
  background: rgba(255,255,255,.94);
  padding: .55rem;
  border-radius: 14px;
  max-width: 720px;
  box-shadow: var(--shadow);
}
.finder-form--star {
  max-width: none;
  gap: .85rem;
  padding: 1.1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.finder-form select, .finder-form input {
  border: 0; background: var(--paper);
  padding: .85rem .9rem; font: inherit; border-radius: 10px; color: var(--ink);
}
.finder-form--star select, .finder-form--star input {
  min-height: 56px;
  font-size: 1.08rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border-radius: 14px;
}
.finder-form select:focus, .finder-form input:focus { outline: 2px solid var(--sky); }
.finder-note { margin: 1rem 0 0; font-size: .9rem; color: rgba(200, 220, 235, .7); }
.page-hero .finder-form { background: #fff; border: 1px solid var(--line); }
.page-hero .finder-form--star {
  background: linear-gradient(145deg, #0a1f3d, #1a4f8a);
  border: 1px solid rgba(255,255,255,.12);
}

/* —— Turkey section (chips only, no map) —— */
.turkey-layout {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center;
}
.turkey-layout--chips {
  grid-template-columns: 1fr;
  max-width: 920px;
}
.turkey-layout--chips .section-head { max-width: 40rem; }
.popular-cities {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem; margin-bottom: 1.25rem;
}
.popular-city {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .55rem;
  align-items: center;
  padding: .85rem 1rem; border-radius: 14px;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.popular-city:hover {
  transform: translateY(-2px); box-shadow: var(--shadow);
  border-color: var(--sky); text-decoration: none; color: var(--ink);
}
.popular-city__pin {
  width: 28px; height: 28px; border-radius: 9px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #e8f4fb, #f4fafc);
  color: var(--blue); flex-shrink: 0;
}
.popular-city strong { font-family: var(--font-head); font-size: .95rem; }
.popular-city em { font-style: normal; color: var(--blue); font-size: .82rem; font-weight: 600; }

/* —— Guides —— */
.guide-grid, .shortcut-grid, .dir-grid {
  display: grid; gap: 1rem;
}
.guide-grid, .guide-grid--visual { grid-template-columns: repeat(3, 1fr); }
.shortcut-grid { grid-template-columns: repeat(4, 1fr); }
.dir-grid { grid-template-columns: repeat(2, 1fr); }
.guide-card, .shortcut {
  display: block; padding: 1.25rem 1.2rem 1.3rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  color: inherit; box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.guide-card:hover, .shortcut:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  text-decoration: none; color: inherit;
}
.guide-card--visual {
  background: linear-gradient(165deg, #fff 0%, #f3f8fc 100%);
}
.guide-card__top {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem;
}
.guide-card__icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #d4eaf7, #eef6fb); color: var(--blue);
}
.shortcut__n { font-family: var(--font-head); color: var(--blue); font-size: 1.1rem; }
.shortcut h3, .guide-card h3, .dir-card__title {
  font-family: var(--font-head); font-size: 1.12rem; margin: .2rem 0 .35rem; color: var(--navy);
}
.shortcut p, .guide-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.guide-card__go {
  display: inline-block; margin-top: .9rem; font-weight: 600; font-size: .88rem; color: var(--blue);
}

/* —— CGH banner —— */
.cgh-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cgh-banner h2 {
  font-family: var(--font-head); color: #fff !important;
  font-size: clamp(1.5rem, 2.5vw, 2rem); margin: .25rem 0 .5rem;
}
.cgh-banner p { margin: 0; color: rgba(230, 250, 248, .88); max-width: 36rem; }

/* —— Page hero —— */
.page-hero {
  padding: 2.4rem 0 1.6rem;
  background: linear-gradient(160deg, #e8f2fa 0%, #f7fafc 55%, #eef6fb 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero--guide {
  background:
    radial-gradient(ellipse 50% 80% at 90% 0%, rgba(79,159,212,.15), transparent 50%),
    linear-gradient(160deg, #0a1f3d 0%, #1a4f8a 100%);
  color: #f0f7fc; border: 0;
}
.page-hero--guide .eyebrow { color: rgba(180, 220, 245, .9); }
.page-hero--guide h1 { color: #fff; }
.page-hero--guide .lead { color: rgba(220, 235, 245, .85); }
.page-hero--guide .breadcrumb, .page-hero--guide .breadcrumb a { color: rgba(200, 220, 235, .75); }
.page-hero h1, .center-main h1, .page-guide h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  line-height: 1.15; color: var(--navy); margin: .2rem 0 .6rem; font-weight: 650;
}
.page-hero--rehab { padding-top: 3rem; }

/* —— Guide template —— */
.guide-layout, .contact-layout, .center-layout {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 280px);
  gap: 2.2rem; align-items: start; padding: 2.2rem 0 3rem;
}
.guide-aside, .center-aside { position: sticky; top: calc(var(--header-h) + 1rem); }
.short-answer {
  background: linear-gradient(145deg, #e8f5f4, #eef6fb);
  border: 1px solid rgba(14, 143, 138, .2);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.5rem;
}
.short-answer__label {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--cgh); margin-bottom: .35rem;
}
.short-answer p { margin: 0; color: var(--ink); font-size: 1.02rem; }
.content-body { max-width: 42rem; }
.content-body--wide { max-width: 46rem; }
.content-body h2 {
  font-family: var(--font-head); color: var(--navy); margin-top: 2rem; font-size: 1.4rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.content-body p { margin: 0 0 1rem; }
.content-body ul { padding-left: 1.2rem; }
.info-box {
  background: var(--mist); border-left: 4px solid var(--sky);
  padding: 1rem 1.15rem; margin: 1.1rem 0; border-radius: 0 12px 12px 0;
}
.info-box--warning { background: var(--warn-bg); border-color: #c9a36a; color: var(--warn); }
.faq-item {
  background: #fff; padding: .85rem 1.05rem; margin-bottom: .5rem;
  border: 1px solid var(--line); border-radius: 12px;
}
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--navy); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--blue); font-weight: 700; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: .65rem 0 0; color: var(--muted); }
.toc-list { list-style: none; padding: 0; margin: .5rem 0 0; }
.toc-list li { margin: 0; }
.toc-list a {
  display: block; padding: .4rem 0; font-size: .9rem; color: var(--muted);
  border-bottom: 1px solid var(--mist); font-weight: 500;
}
.toc-list a:hover { color: var(--blue); }
.related-cards { margin-top: 2.5rem; }
.related-cards h2 { font-family: var(--font-head); color: var(--navy); font-size: 1.35rem; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; }
.related-card {
  display: flex; flex-direction: column; gap: .35rem;
  padding: 1.1rem 1.15rem; border-radius: 14px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  color: var(--ink); transition: transform .2s;
}
.related-card:hover { transform: translateY(-2px); text-decoration: none; color: var(--ink); }
.related-card strong { font-family: var(--font-head); color: var(--navy); }
.related-card span { font-size: .85rem; color: var(--blue); font-weight: 600; }

.aside-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem 1.2rem; margin-bottom: 1rem; box-shadow: var(--shadow);
}
.aside-card--soft { background: var(--mist); border-color: transparent; }
.aside-card p, .aside-card li { color: var(--muted); }
.aside-card ul { margin: .4rem 0 0; padding-left: 1.1rem; }
.aside-card .btn { width: 100%; margin-top: .6rem; }
.aside-card p span { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }

/* —— CTA box —— */
.cta-box {
  background: linear-gradient(120deg, #0a6e6a, #0e8f8a 45%, #1a6fa8);
  color: #eef6f8; padding: 1.6rem 1.5rem; margin: 2rem 0;
  display: flex; gap: 1rem; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.cta-box h3 { font-family: var(--font-head); margin: 0 0 .35rem; color: #fff; }
.cta-box p { margin: 0 0 .4rem; }
.cta-note { font-size: .85rem; opacity: .8; }

/* —— Directory / city —— */
.city-filter { margin-bottom: 1rem; }
.city-filter-input {
  width: min(320px, 100%); padding: .7rem .85rem;
  border: 1px solid var(--line); border-radius: 12px; font: inherit; background: #fff;
}
.city-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: .55rem;
}
.city-tile {
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto;
  gap: 0 .55rem; padding: .75rem .8rem;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  border-radius: 12px; transition: border-color .2s, transform .2s, box-shadow .2s;
}
.city-tile:hover {
  border-color: var(--sky); transform: translateY(-2px); box-shadow: var(--shadow);
  text-decoration: none; color: var(--ink);
}
.city-tile__plate {
  grid-row: 1 / span 2; align-self: center;
  font-size: .7rem; font-weight: 700; color: var(--blue); min-width: 1.4rem;
}
.city-tile strong { font-size: .92rem; }
.city-tile__count { grid-column: 2; font-size: .75rem; color: var(--muted); }
.city-filter-empty { color: var(--muted); }

.dir-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem 1.2rem 1.05rem; display: flex; flex-direction: column; gap: .35rem;
  box-shadow: var(--shadow); transition: border-color .2s, transform .2s;
}
.dir-grid .dir-card { min-height: 100%; }
.dir-card:hover { border-color: var(--sky); transform: translateY(-2px); }
.dir-card__top { display: flex; justify-content: space-between; gap: .5rem; align-items: start; }
.dir-card__place, .dir-card__addr { margin: 0; color: var(--muted); font-size: .9rem; }
.dir-card__title { margin: 0; font-size: 1.12rem; }
.dir-card__title a { color: var(--navy); }
.dir-card__title a:hover { color: var(--blue); }
.dir-card__actions {
  display: flex; justify-content: space-between; align-items: center;
  gap: .75rem; margin-top: auto; padding-top: .7rem; border-top: 1px solid var(--mist); flex-wrap: wrap;
}
.dir-card__phone { font-weight: 600; }
.dir-card__links { display: flex; gap: .75rem; align-items: center; }
.dir-card__more, .dir-card__dir { font-size: .88rem; font-weight: 600; }
.dir-card__dir { color: var(--cgh); }

.badge {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .72rem; font-weight: 700; padding: .2rem .5rem;
  background: var(--mist); color: var(--blue); border-radius: 999px;
}
.badge-verified { background: var(--ok-bg); color: var(--ok); }
.badge-meb { background: #e8f0fa; color: var(--blue); }

/* —— RAM detail —— */
.center-page { padding-bottom: 2rem; }
.center-page .breadcrumb { margin-top: 1.4rem; }
.center-hero-card {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1.25rem; flex-wrap: wrap;
  padding: 1.6rem 1.5rem; margin: 1rem 0 1.5rem;
  background: linear-gradient(145deg, #fff, #eef5fb);
  border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow);
}
.center-hero-card h1 { margin: .2rem 0 .65rem; font-family: var(--font-head); color: var(--navy); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.center-hero-card__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.center-info-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem;
}
.info-panel {
  padding: 1.15rem 1.2rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.info-panel h2 { font-size: .95rem !important; letter-spacing: .04em; text-transform: uppercase; color: var(--blue) !important; margin-bottom: .55rem; }
.info-panel p { margin: 0; }
.info-panel p span, .info-panel__sub span {
  display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: .15rem;
}
.info-panel__sub { margin-top: .75rem !important; }
.center-block { margin: 1.4rem 0; }
.center-block p { margin: 0; }
.map-embed {
  aspect-ratio: 16 / 9; border: 1px solid var(--line); overflow: hidden;
  background: var(--mist); border-radius: 14px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.nearby-block { padding-top: 1rem; }

/* —— Steps (legacy) —— */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; counter-reset: step;
}
.steps li {
  background: #fff; padding: 1.4rem 1.3rem 1.5rem; border-radius: var(--radius);
  border-bottom: 3px solid var(--sky); box-shadow: var(--shadow); counter-increment: step;
}
.steps li::before {
  content: counter(step); font-family: var(--font-head); font-size: 1.8rem;
  color: var(--blue); display: block; line-height: 1; margin-bottom: .5rem;
}
.steps strong { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); margin-bottom: .3rem; }
.steps p { margin: 0; color: var(--muted); }
.section-stats { padding: 2rem 0; background: var(--navy); color: #e7f1f4; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; }
.stats-row strong {
  display: block; font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: #fff; line-height: 1;
}
.stats-row span { font-size: .95rem; opacity: .85; }

.breadcrumb { font-size: .88rem; color: var(--muted); margin: 0 0 1rem; }
.breadcrumb a { color: var(--blue); }
.bc-sep { margin: 0 .35rem; color: #9aafb6; }

.district-chips {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; margin-bottom: 1rem;
  max-width: 100%; min-width: 0;
}
.district-chips a {
  padding: .45rem .8rem; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); font-size: .88rem; font-weight: 600; color: var(--ink);
}
.district-chips a.is-active, .district-chips a:hover {
  background: var(--navy); color: #fff; border-color: var(--navy); text-decoration: none;
}
.district-chips em { font-style: normal; color: var(--sky); margin-left: .25rem; }

.inline-link { margin: 0 0 1rem; }
.split-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.split-copy p { color: var(--muted); }
.related-inline ul { padding-left: 1.1rem; }
.related-inline a { font-weight: 600; }

.contact-form { display: grid; gap: .8rem; max-width: 520px; margin-top: 1.2rem; }
.contact-form label { display: grid; gap: .3rem; font-weight: 600; }
.contact-form input, .contact-form textarea, .contact-form select {
  padding: .7rem .8rem; border: 1px solid var(--line); border-radius: 10px; font: inherit;
}
.flash { padding: .75rem 1rem; margin: 1rem 0; border-radius: 10px; }
.flash-success { background: var(--ok-bg); color: var(--ok); }
.flash-error { background: #f8d7da; color: #842029; }

/* —— Footer —— */
.site-footer {
  background: linear-gradient(180deg, var(--navy-deep), #040d1a);
  color: #c5d6e4; margin-top: 0; padding: 3rem 0 1.4rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 1.8rem;
}
.footer-brand .logo-mark { margin-bottom: .7rem; }
.footer-contact, .footer-social { margin: .55rem 0; font-size: .9rem; }
.footer-contact a, .footer-social a { margin-right: .55rem; }
.footer-brand strong {
  display: block; font-family: var(--font-head); color: #fff; font-size: 1.2rem; margin-bottom: .4rem;
}
.footer-cgh {
  display: inline-block; margin-top: .85rem; font-weight: 600; color: #7ad4cf !important;
}
.footer-cgh:hover { color: #fff !important; }
.site-footer h4 {
  margin: 0 0 .6rem; color: #fff; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
}
.site-footer a { display: block; color: #c5d6e4; font-size: .92rem; margin-top: .3rem; }
.site-footer a:hover { color: #fff; }
.footer-copy {
  margin-top: 2rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem; opacity: .72; text-align: left;
}
.footer-copy p { margin: .2rem 0; }

/* —— Rehab —— */
.glass-card {
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 226, 238, .9); border-radius: var(--radius); box-shadow: var(--shadow);
}
.source-note { font-size: .88rem; color: var(--muted); border-left: 3px solid var(--sky); padding-left: .75rem; }
.filter-panel {
  padding: 1.35rem; margin-bottom: 1.25rem;
  background: linear-gradient(145deg, #fff, #f0f7fc);
  border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
  min-width: 0;
}
.filter-grid > label, .filter-inline label {
  display: flex; flex-direction: column; gap: .35rem;
  font-weight: 600; font-size: .88rem;
  min-width: 0;
  max-width: 100%;
}
.filter-grid select, .filter-grid input, .filter-inline input, .filter-inline select,
.admin-form input, .admin-form textarea, .admin-form select {
  border: 1px solid var(--line); border-radius: 12px; padding: .65rem .75rem; font: inherit; background: #fff;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.filter-actions { display: flex; gap: .75rem; margin-top: 1rem; }
.stats-inline { color: var(--muted); font-size: .92rem; margin: .5rem 0 0; }
.city-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 150px), 1fr));
  gap: .65rem;
  min-width: 0;
}
.city-chip {
  display: flex; justify-content: space-between; align-items: center;
  padding: .85rem 1rem; border-radius: 14px; background: #fff; border: 1px solid var(--line);
  color: var(--ink); font-weight: 600; transition: transform .2s, box-shadow .2s;
}
.city-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; color: var(--navy); }
.city-chip em { font-style: normal; color: var(--blue); font-size: .85rem; }
.center-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1rem;
  min-width: 0;
}
.rehab-card { display: flex; flex-direction: column; gap: 0; overflow: hidden; padding: 0; }
.rehab-card__media {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.1rem;
  background:
    radial-gradient(circle at 20% 50%, rgba(79,159,212,.2), transparent 50%),
    linear-gradient(135deg, #d6ebf7, #eef6fb);
}
.rehab-card__icon {
  flex: 0 0 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(255,255,255,.7); color: var(--blue);
}
.rehab-card__body { padding: 1.1rem; }
.rehab-card__meta { margin: 0; font-size: .8rem; color: var(--blue); font-weight: 600; }
.rehab-card h3 { margin: .2rem 0 .4rem; font-family: var(--font-head); font-size: 1.05rem; line-height: 1.35; }
.rehab-card h3 a { color: var(--navy); }
.rehab-card__addr { margin: 0 0 .6rem; color: var(--muted); font-size: .9rem; }
.tag-list { list-style: none; padding: 0; margin: 0 0 .75rem; display: flex; flex-wrap: wrap; gap: .35rem; }
.tag-list li { font-size: .72rem; background: var(--mist); color: var(--navy); padding: .25rem .5rem; border-radius: 999px; }
.rehab-card__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-inline {
  display: flex; flex-wrap: wrap; gap: .65rem; align-items: end;
  max-width: 100%; min-width: 0;
}
.filter-inline > label, .filter-inline > .btn { flex: 1 1 140px; min-width: 0; max-width: 100%; }
.detail-layout { display: grid; grid-template-columns: 1.5fr .9fr; gap: 1.5rem; align-items: start; min-width: 0; }
.detail-main { padding: 1.5rem; }
.detail-loc { color: var(--muted); }
.info-list { display: grid; gap: 1rem; margin: 1.25rem 0; }
.info-list dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); }
.info-list dd { margin: .2rem 0 0; }
.hint { color: var(--muted); font-size: .85rem; }
.program-list { padding-left: 1.1rem; }
.transparency-box {
  margin-top: 1.5rem; padding: 1rem 1.1rem; border-radius: 14px;
  background: var(--warn-bg); color: var(--warn); border: 1px solid #ead9b8;
}
.transparency-box h3 { margin: 0 0 .4rem; font-size: 1rem; color: var(--navy); }
.pager { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: 1.25rem; }
.pager a {
  min-width: 2.2rem; text-align: center; padding: .4rem .55rem;
  border-radius: 10px; border: 1px solid var(--line); color: var(--ink);
}
.pager a.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.side-block { margin-top: 1rem; padding: 1rem; border-radius: 14px; background: #fff; border: 1px solid var(--line); }
.mini-list { list-style: none; padding: 0; margin: 0; }
.mini-list li { padding: .4rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.admin-stats { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1rem 0; }
.admin-stats > div { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: .85rem 1.1rem; min-width: 120px; }
.admin-stats strong { display: block; font-size: 1.4rem; color: var(--navy); }
.admin-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.admin-form { display: grid; gap: .85rem; max-width: 640px; }
.admin-form label { display: grid; gap: .35rem; font-weight: 600; }
.alert { padding: .75rem 1rem; border-radius: 12px; margin: .75rem 0; }
.alert-ok { background: var(--ok-bg); color: var(--ok); }
.alert-err { background: #fde8e8; color: #8a1f1f; }
.empty-state {
  padding: 2rem; text-align: center; color: var(--muted);
  background: #fff; border-radius: var(--radius); border: 1px dashed var(--line);
}

/* —— Animations —— */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* —— Responsive —— */

/* §13 Font / spacing mobile overrides */
@media (max-width: 768px) {
  :root {
    --header-h: 56px;
  }
  .section { padding: 2.8rem 0; }
  .section--metrics { padding: 1.8rem 0; }
  .section-head { margin-bottom: 1.25rem; }
  .section-head h2, .section h2, .center-block h2, .aside-card h2, .info-panel h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.65rem);
  }
  .hero-copy h1 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }
  .page-hero h1, .center-main h1, .page-guide h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  body { line-height: 1.55; }
  .lead { font-size: 1rem; }
}

/* §14 CTA buttons polish */
.btn { min-height: 52px; border-radius: 14px; }
.btn-lg { min-height: 56px; border-radius: 16px; }
.btn-sm { min-height: 40px; }

@media (max-width: 1024px) {
  .hero-grid, .turkey-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 1.35rem; }
  .hero-copy { order: 0; }
  .hero-visual {
    order: 1;
    min-height: 0;
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
    aspect-ratio: 16 / 11;
  }
  .hero-stage {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    min-height: 260px;
  }
  .hero-visual > .float-card { display: none; }
  .metrics-grid, .qa-grid, .center-info-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; gap: .5rem; }
  .timeline::before {
    top: 0; bottom: 0; left: 17px; right: auto; width: 2px; height: auto;
    background: linear-gradient(180deg, var(--sky), var(--blue), var(--cgh));
  }
  .timeline__item { text-align: left; padding: .25rem 0 .25rem 3rem; }
  .timeline__dot { top: .55rem; left: 10px; transform: none; }
  .guide-grid, .guide-grid--visual, .shortcut-grid, .steps, .split-copy,
  .footer-grid, .guide-layout, .contact-layout, .center-layout, .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .guide-aside, .center-aside { position: static; }
  .roadmap__branches { grid-template-columns: 1fr; }
}

/* §1 Header compact, §16 Mobile menu, §2 Hero compact, all mobile sections */
@media (max-width: 768px) {

  /* §1 — Header compact: one row, ≤72px, slim sticky */
  .header-inner { min-height: 56px; gap: .5rem; }
  .logo-mark { min-width: 2.4rem; height: 2rem; padding: 0 .4rem; font-size: .85rem; border-radius: 8px; }
  .logo-text strong { font-size: .98rem; }
  .logo-text small { display: none; }
  .disclaimer-bar { font-size: .78rem; padding: .35rem .75rem; }

  /* §16 — Mobile menu: true fullscreen overlay (solid, above hero) */
  .nav-toggle {
    display: inline-flex; align-items: center; gap: .3rem;
    padding: .4rem .7rem; font-size: .88rem; border-radius: 10px;
    position: relative; z-index: 2;
  }
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 1100;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: #ffffff;
    padding: 4.5rem 1.35rem 2rem;
    gap: .15rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a {
    padding: .9rem .55rem; font-size: 1.12rem; font-weight: 600;
    border-bottom: 1px solid var(--mist); color: var(--navy);
  }
  .main-nav .nav-cta {
    margin-top: 1.1rem; text-align: center; border-radius: 14px;
    padding: 1rem; font-size: 1.05rem; border-bottom: none;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: #fff !important;
  }

  /* §2 — Hero compact: text → premium glass stage (no map) */
  .hero--premium { padding: 1.5rem 0 1.65rem; }
  .hero-grid { gap: .85rem; }
  .hero-visual {
    order: 1;
    min-height: 0;
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
    height: auto;
  }
  .hero-stage {
    position: relative;
    inset: auto;
    min-height: 168px;
    height: 168px;
    border-radius: 20px;
  }
  .hero-stage__stack { width: min(200px, 52%); top: 42%; }
  .hero-stage__sheet--back { top: -18px; }
  .hero-stage__sheet--mid { top: -8px; }
  .hero-stage__sheet--front { padding: .85rem .95rem .9rem; }
  .hero-stage__pin { width: 32px; height: 32px; border-radius: 10px; margin-bottom: .45rem; }
  .hero-stage__pin svg { width: 18px; height: 18px; }
  .hero-stage__sheet--front strong { font-size: .92rem; }
  .hero-stage__meta { font-size: .72rem; margin-bottom: .45rem; }
  .hero-stage__checks { display: none; }
  .hero-stage__timeline { bottom: 8%; padding: .4rem .6rem; }
  .hero-stage__node::after { display: none; }
  .hero-stage__chip { font-size: .68rem; padding: .35rem .55rem; }
  .hero-stage__chip--cozger { top: 8%; left: 5%; }
  .hero-stage__chip--docs { top: 10%; right: 5%; }
  .hero-kicker { font-size: .7rem; margin-bottom: .5rem; }
  .hero-copy h1 { margin-bottom: .5rem; }
  .hero-copy .lead { font-size: .95rem; margin-bottom: .9rem; }
  .hero-actions { margin-bottom: .75rem; gap: .5rem; }
  .hero-actions .btn { padding: .65rem 1rem; font-size: .92rem; min-height: 48px; }
  .hero-trust { font-size: .78rem; margin-bottom: 0; }
  .hero-visual > .float-card { display: none; }

  /* §4 — Metric cards: 2-col, 120-150px height */
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: .65rem; }
  .metric-card {
    padding: .85rem .9rem .9rem;
    min-height: 120px; max-height: 150px;
  }
  .metric-card__icon { width: 34px; height: 34px; border-radius: 10px; margin-bottom: .45rem; }
  .metric-card__icon svg { width: 18px; height: 18px; }
  .metric-card strong { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .metric-card span { font-size: .82rem; }

  /* §5 — Quick access: 2-col, 150-180px */
  .qa-grid { grid-template-columns: repeat(2, 1fr); gap: .65rem; }
  .qa-tile {
    padding: .9rem .85rem;
    min-height: 140px; max-height: 180px;
  }
  .qa-tile__icon { width: 36px; height: 36px; border-radius: 10px; margin-bottom: .2rem; }
  .qa-tile__icon svg { width: 18px; height: 18px; }
  .qa-tile strong { font-size: .98rem; }
  .qa-tile span { font-size: .82rem; }

  /* §7 — Timeline compact: 20% less spacing, smaller desc */
  .timeline__item p { font-size: .82rem; }
  .timeline__item strong { font-size: .95rem; margin-bottom: .15rem; }

  /* §8 — Roadmap compact */
  .roadmap__branches { grid-template-columns: 1fr; gap: .75rem; }
  .roadmap__branch { padding: 1rem 1.1rem; }
  .roadmap__branch h3 { font-size: 1.05rem; margin-bottom: .5rem; }
  .roadmap__branch ul { margin-bottom: .65rem; }
  .roadmap__branch li { margin-bottom: .2rem; font-size: .9rem; }
  .roadmap__start { padding: .8rem 1rem; margin-bottom: 1rem; }
  .roadmap__cta { margin-top: .5rem; }
  .roadmap__cta .btn { width: 100%; }

  /* §9 — RAM Finder: optimized spacing, 56px button */
  .section--finder { padding: 2.4rem 0; }
  .finder-form, .finder-form--star {
    grid-template-columns: 1fr;
    gap: .6rem; padding: .8rem;
  }
  .finder-form--star { padding: .85rem; border-radius: 16px; }
  .finder-form--star select, .finder-form--star input {
    min-height: 52px; font-size: 1rem; padding: .85rem 1rem;
  }
  .finder-form .btn { min-height: 56px; font-size: 1rem; }
  .finder-note { font-size: .82rem; margin-top: .75rem; }

  /* §10 — Finder results: compact cards */
  .dir-grid { grid-template-columns: 1fr; gap: .65rem; }
  .dir-card { padding: .9rem 1rem .85rem; gap: .2rem; }
  .dir-card__title { font-size: 1rem; }
  .dir-card__addr { font-size: .82rem; margin-bottom: .4rem; }
  .dir-card__actions { padding-top: .5rem; gap: .5rem; }
  .dir-card__phone { font-size: .88rem; }
  .dir-card__more, .dir-card__dir { font-size: .82rem; }

  /* §11 — Turkey city cards: 2-col chips */
  .popular-cities { grid-template-columns: repeat(2, 1fr); gap: .5rem; margin-bottom: 1rem; }
  .popular-city {
    padding: .6rem .7rem; border-radius: 10px;
    min-height: 52px; gap: .4rem;
  }
  .popular-city__pin { width: 24px; height: 24px; border-radius: 7px; }
  .popular-city__pin svg { width: 12px; height: 12px; }
  .popular-city strong { font-size: .88rem; }
  .popular-city em { font-size: .75rem; }

  /* §12 — Popular guides: compact horizontal */
  .guide-grid, .guide-grid--visual { grid-template-columns: 1fr; gap: .65rem; }
  .guide-card, .guide-card--visual {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 .75rem;
    padding: .85rem 1rem;
  }
  .guide-card__top {
    grid-column: 1; grid-row: 1 / span 2;
    margin-bottom: 0; justify-content: center;
  }
  .guide-card__top .badge { display: none; }
  .guide-card h3 {
    grid-column: 2; grid-row: 1;
    font-size: .98rem; margin: 0;
  }
  .guide-card p {
    grid-column: 2; grid-row: 2;
    font-size: .82rem; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
  }
  .guide-card__go {
    grid-column: 3; grid-row: 1 / span 2;
    margin-top: 0; font-size: .82rem; white-space: nowrap;
  }

  /* §17 — Card height standards */
  .city-tile { min-height: auto; }
  .city-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .city-tile { padding: .6rem .7rem; }
  .city-tile strong { font-size: .85rem; }

  /* Footer compact */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .site-footer { padding: 2rem 0 1rem; }
  .site-footer h4 { font-size: .72rem; }
  .site-footer a { font-size: .85rem; }

  /* CGH banner */
  .cgh-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .section--cgh { padding: 2rem 0; }
  .cgh-banner h2 { font-size: clamp(1.3rem, 5vw, 1.65rem) !important; }

  /* Misc compact */
  .steps { grid-template-columns: 1fr; gap: .75rem; }
  .steps li { padding: 1rem; }
  .split-copy { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats-row { grid-template-columns: 1fr; gap: .75rem; }
  .filter-grid { grid-template-columns: 1fr; min-width: 0; }
  .filter-actions { flex-wrap: wrap; }
  .filter-actions .btn { flex: 1 1 auto; min-width: 0; }
  .header-inner { min-width: 0; }
  .logo { min-width: 0; flex-shrink: 1; }
  .logo-img { max-width: min(160px, 52vw); }
  .section .container, .page-hero .container { min-width: 0; }
  .main-nav:not(.is-open) {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
  }
  .sticky-lead-cta {
    left: 0; right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: stretch;
    gap: .45rem;
    padding-inline: .65rem;
  }
  .sticky-lead-cta .btn {
    flex: 1 1 calc(50% - .25rem);
    max-width: none;
    min-width: 0;
  }
  .detail-layout { grid-template-columns: 1fr; }
  .admin-grid-2 { grid-template-columns: 1fr; }
  .center-info-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .guide-layout, .contact-layout, .center-layout { grid-template-columns: 1fr; }
  .shortcut-grid { grid-template-columns: 1fr 1fr; }
}

/* §6 — Card variety: add variant classes */
.metric-card--outline {
  background: transparent;
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.metric-card--outline:hover { background: var(--mist); box-shadow: var(--shadow); }
.metric-card--gradient {
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: #fff; border-color: transparent;
}
.metric-card--gradient::before { display: none; }
.metric-card--gradient strong { color: #fff; }
.metric-card--gradient span { color: rgba(230,242,250,.85); }
.metric-card--gradient .metric-card__icon { background: rgba(255,255,255,.15); color: #fff; }

.qa-tile--outline {
  background: transparent;
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.qa-tile--outline:hover { background: var(--mist); box-shadow: var(--shadow); }
.qa-tile--soft-grad {
  background: linear-gradient(145deg, #e8f5f4, #eef6fb);
  border-color: rgba(14,143,138,.18);
}
.qa-tile--horizontal {
  flex-direction: row; align-items: center; gap: .75rem;
}
.qa-tile--horizontal .qa-tile__icon { margin-bottom: 0; }

/* §15 — Section transitions: alternating backgrounds */
.section--quick { background: linear-gradient(180deg, #e8f4fb 0%, #f0f7fc 100%); }
.section--timeline-alt { background: var(--foam); }
.section--guides-pale { background: linear-gradient(180deg, #edf5fa 0%, #f8fbfd 100%); }

/* §9 — Finder badge */
.finder-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; color: rgba(200,230,245,.85);
  margin-top: .6rem;
}
.finder-badge__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cgh); display: inline-block;
}

/* —— Motion reduce for hero stage —— */
@media (prefers-reduced-motion: reduce) {
  .hero-stage__orb,
  .hero-stage__sheet--front,
  .hero-stage__chip,
  .float-card { animation: none; }
}

/* §19 — QA: prevent horizontal overflow */
html { overflow-x: clip; }
body { overflow-x: clip; }
.container { overflow-wrap: break-word; min-width: 0; }
img { height: auto; max-width: 100%; }

/* §16 — Mobile menu close button */
.mobile-nav-close {
  display: none;
  position: absolute; top: 1rem; right: 1rem;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: .45rem .8rem; font: inherit; font-weight: 600; font-size: .9rem;
  color: var(--navy); cursor: pointer; z-index: 2;
}
@media (max-width: 768px) {
  .main-nav .mobile-nav-close { display: inline-flex; align-items: center; }
}

/* Sticky lead CTA (mobile + compact desktop) */
.sticky-lead-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; gap: .55rem; align-items: center; justify-content: center;
  padding: .65rem .85rem calc(.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px rgba(15, 40, 70, .1);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.sticky-lead-cta .btn { flex: 1; max-width: 280px; }
.sticky-lead-cta__wa { flex: 0 0 auto; max-width: none; }
body.has-sticky-lead { padding-bottom: 5.25rem; }
@media (min-width: 900px) {
  .sticky-lead-cta { justify-content: flex-end; padding-inline: 1.5rem; }
  .sticky-lead-cta .btn { flex: 0 0 auto; }
}
.lead-form .form-row { display: grid; gap: .8rem; }
@media (min-width: 640px) {
  .lead-form .form-row--2 { grid-template-columns: 1fr 1fr; }
}
.lead-form .check-label {
  display: flex; align-items: flex-start; gap: .55rem;
  font-weight: 500; font-size: .88rem; line-height: 1.45; color: var(--muted);
}
.lead-form .check-label input { margin-top: .2rem; flex-shrink: 0; }
.lead-form .kvkk-box {
  background: var(--mist); border: 1px solid var(--line); border-radius: 12px;
  padding: .85rem 1rem; display: grid; gap: .65rem;
}
.lead-panel {
  scroll-margin-top: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
