/* ============================================================
   Renk Klima — Tasarım Sistemi
   Ana renk : Açık Buz Mavisi (müşteri isteği)
   CTA      : Marka kırmızısı #DD0E17 — logodan alındı (beyaz metin 5.06:1 ✅)
   Tüm renk kombinasyonları WCAG AA (≥4.5:1) hesaplanarak doğrulandı.
   ⛔ Mor yok.
   ============================================================ */

:root {
  /* --- Buz mavisi ölçeği --- */
  --primary-deep:    #063C4D;  /* beyaz metin 11.92:1 */
  --primary-dark:    #075B72;  /* beyaz üstü 7.64:1 · beyaz metin 7.64:1 */
  --primary:         #0A729E;  /* beyaz üstü 5.37:1 · surface üstü 4.75:1 · beyaz metin 5.37:1 */
  --primary-vivid:   #1E9BBD;  /* DEKORATİF + ikon (3.24:1) — küçük metin için KULLANILMAZ */
  --primary-light:   #8AD1EA;  /* koyu zemin üstü metin 4.51:1 */
  --primary-surface: #E3F4FA;  /* buz mavisi bölüm zemini */
  --primary-soft:    #F0F9FD;

  /* --- Yüzeyler --- */
  --page-bg:  #F7FCFE;
  --card:     #FFFFFF;
  --border:   #CFE6EF;
  --border-strong: #A9D3E4;

  /* --- Metin --- */
  --text:     #0B2027;  /* 16.80:1 */
  --text-2:   #4A6672;  /* 6.11:1 */
  --text-inv: #FFFFFF;

  /* --- CTA: MARKA KIRMIZISI (logodan) --- */
  --cta:       #DD0E17;  /* buton zemini · beyaz metin 5.06:1 ✅ */
  --cta-hover: #B80008;  /* hover · beyaz metin 6.90:1 ✅ */
  --cta-ink:   #B80008;  /* açık zeminde kırmızı METİN gerekirse (buz surface üstü 6.1:1)
                            ⚠ --cta doğrudan metin olarak buz zeminde kullanılmaz: 4.48:1 */

  /* --- Durum --- */
  --success: #0F7B4F;
  --warning: #B45309;
  --danger:  #B42318;

  /* --- WhatsApp --- */
  --wa-brand: #25D366;   /* sadece ikon dolgusu */
  --wa-btn:   #0B7A64;   /* buton zemini, beyaz metin 5.27:1 */
  --wa-btn-hover: #096251;

  /* --- Ölçü --- */
  --radius:    12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(11,32,39,.06);
  --shadow:    0 4px 16px rgba(11,32,39,.08);
  --shadow-lg: 0 12px 32px rgba(11,32,39,.12);
  --container: 1200px;
  --header-h:  64px;
  --mobilebar-h: 62px;
}

/* ============================================================ Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--page-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Mobilde sabit alt bar içeriği kapatmasın */
@media (max-width: 767px) {
  body { padding-bottom: calc(var(--mobilebar-h) + env(safe-area-inset-bottom, 0px)); }
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }
ul, ol { padding-left: 1.25rem; }

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

/* ============================================================ Tipografi */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; letter-spacing: -.015em; color: var(--text); }
h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.375rem, 3.2vw, 2.125rem); }
h3 { font-size: clamp(1.125rem, 2.2vw, 1.5rem); }
p  { max-width: 72ch; }

.lead { font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--text-2); }
.eyebrow {
  text-transform: uppercase; letter-spacing: .1em; font-size: .75rem;
  font-weight: 600; color: var(--primary);
}

/* ============================================================ Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 16px; }
@media (min-width: 768px) { .container { padding-inline: 24px; } }

.section { padding-block: 48px; }
@media (min-width: 768px) { .section { padding-block: 72px; } }
@media (min-width: 1280px) { .section { padding-block: 96px; } }

.section--surface { background: var(--primary-surface); }
.section--soft    { background: var(--primary-soft); }

.grid { display: grid; gap: 16px; }
@media (min-width: 768px)  { .grid { gap: 24px; } .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--primary-dark); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================ Butonlar */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 24px;
  border: 1px solid transparent; border-radius: var(--radius);
  font-weight: 600; text-align: center; text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease, transform .1s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn--cta       { background: var(--cta); color: #fff; }
.btn--cta:hover { background: var(--cta-hover); }

.btn--primary       { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); }

.btn--wa       { background: var(--wa-btn); color: #fff; }
.btn--wa:hover { background: var(--wa-btn-hover); }

.btn--ghost {
  background: transparent; color: var(--primary-dark);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--primary-surface); }

.btn--on-dark {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.5);
}
.btn--on-dark:hover { background: rgba(255,255,255,.12); }

.btn--block { width: 100%; }
.btn--lg { min-height: 54px; padding: 14px 32px; font-size: 1.05rem; }

/* ============================================================ Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: var(--header-h);
}
@media (min-width: 1024px) { .header__inner { min-height: 76px; } }

/* Marka: logo + AD — mobilde ad GİZLENMEZ (rules/branding.md) */
.brand { display: flex; align-items: center; gap: 9px; flex-shrink: 1; min-width: 0; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 34px; height: 34px; flex-shrink: 0; }
@media (min-width: 1024px) { .brand__mark { width: 40px; height: 40px; } }
.brand__name {
  font-weight: 700; letter-spacing: -.02em; color: var(--primary-dark);
  font-size: clamp(1rem, 4.2vw, 1.25rem);
  white-space: nowrap;
}

.nav { display: none; }
@media (min-width: 1024px) {
  .nav { display: flex; align-items: center; gap: 4px; }
  .nav__link {
    padding: 8px 12px; border-radius: 8px;
    color: var(--text-2); font-weight: 500; letter-spacing: .01em;
  }
  .nav__link:hover { color: var(--primary-dark); background: var(--primary-surface); text-decoration: none; }
  .nav__link[aria-current="page"] { color: var(--primary-dark); font-weight: 600; box-shadow: inset 0 -2px 0 var(--primary); }
}

.header__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header__cta { display: none; }
@media (min-width: 768px) { .header__cta { display: inline-flex; } }

/* Hamburger */
.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; flex-shrink: 0;
  background: transparent; border: 1px solid var(--border); border-radius: 10px;
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger__box { position: relative; width: 20px; height: 14px; }
.burger__line {
  position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px;
  background: var(--primary-dark);
  transition: transform .22s ease, opacity .18s ease, top .22s ease;
}
.burger__line:nth-child(1) { top: 0; }
.burger__line:nth-child(2) { top: 6px; }
.burger__line:nth-child(3) { top: 12px; }
.burger[aria-expanded="true"] .burger__line:nth-child(1) { top: 6px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__line:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__line:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* ============================================================ Mobil menü — full-screen overlay */
.mobilemenu {
  position: fixed; inset: 0; z-index: 100;
  background: var(--page-bg);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  overflow-y: auto;
}
.mobilemenu[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
@media (min-width: 1024px) { .mobilemenu { display: none !important; } }

.mobilemenu__top {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); padding-inline: 16px;
  border-bottom: 1px solid var(--border);
}
.mobilemenu__close {
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); border-radius: 10px; color: var(--primary-dark);
}
.mobilemenu__body { padding: 20px 16px 32px; }
.mobilemenu__cta { display: grid; gap: 10px; margin-bottom: 24px; }
.mobilemenu__list { list-style: none; padding: 0; display: grid; gap: 2px; }
.mobilemenu__link {
  display: block; padding: 14px 12px; border-radius: 10px;
  font-size: 1.2rem; font-weight: 600; color: var(--text);
}
.mobilemenu__link:hover, .mobilemenu__link:focus { background: var(--primary-surface); text-decoration: none; }

.mobilemenu__sub { list-style: none; padding: 0 0 6px 12px; display: none; }
.mobilemenu__sub[data-open="true"] { display: grid; gap: 2px; }
.mobilemenu__sublink { display: block; padding: 10px 12px; border-radius: 8px; color: var(--text-2); }
.mobilemenu__sublink:hover { background: var(--primary-soft); text-decoration: none; }

.mobilemenu__row { display: flex; align-items: center; }
.mobilemenu__row .mobilemenu__link { flex: 1; }
.mobilemenu__toggle {
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; border-radius: 10px; color: var(--primary-dark);
}
.mobilemenu__toggle svg { transition: transform .2s ease; }
.mobilemenu__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

body.is-locked { overflow: hidden; }

/* ============================================================ Mobil sabit alt bar (telefon + WhatsApp)
   KATI KURAL: mobilde TEK konum burasıdır. Hero'da ve başka hiçbir yerde tekrarlanmaz.
   Tablet + masaüstünde GÖSTERİLMEZ. (rules/responsive.md) */
.mobilebar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 20px rgba(11,32,39,.16);
}
@media (min-width: 768px) { .mobilebar { display: none; } }

.mobilebar__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: var(--mobilebar-h);
  color: #fff; font-weight: 700; font-size: 1rem;
}
.mobilebar__btn:hover { text-decoration: none; }
.mobilebar__btn--call { background: var(--cta); }
.mobilebar__btn--call:active { background: var(--cta-hover); }
.mobilebar__btn--wa { background: var(--wa-btn); }
.mobilebar__btn--wa:active { background: var(--wa-btn-hover); }

/* ============================================================ Hero */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--primary-deep) 0%, var(--primary-dark) 48%, var(--primary) 100%);
  color: #fff;
}
.hero::after { /* dekoratif buz mavisi hüzme */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(680px 380px at 88% 12%, rgba(138,209,234,.28), transparent 62%),
    radial-gradient(520px 340px at 6% 92%, rgba(30,155,189,.22), transparent 60%);
}
.hero__inner { position: relative; z-index: 1; padding-block: 48px 56px; }
@media (min-width: 1024px) {
  .hero__inner {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
    padding-block: 88px 96px;
  }
}
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--primary-light); }
.hero__sub { color: #DCEEF6; margin-top: 16px; font-size: clamp(1rem, 1.8vw, 1.15rem); max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__actions .btn { flex: 1 1 auto; min-width: 180px; }
@media (min-width: 768px) { .hero__actions .btn { flex: 0 0 auto; } }

/* Güven rozetleri — SADECE kullanıcının onayladığı iddialar */
.badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.badge {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 18px; border-radius: var(--radius);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
}
.badge__value { font-size: 1.375rem; font-weight: 800; color: #fff; line-height: 1.1; }
.badge__label { font-size: .8rem; color: #C6E5F1; }

.hero__panel {
  display: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(6px);
}
@media (min-width: 1024px) { .hero__panel { display: block; } }
.hero__panel h2 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.hero__list { list-style: none; padding: 0; display: grid; gap: 10px; }
.hero__list li {
  display: flex; align-items: center; gap: 10px;
  color: #DCEEF6; font-size: .95rem;
  padding: 10px 12px; border-radius: 10px; background: rgba(255,255,255,.06);
}
.hero__list svg { flex-shrink: 0; color: var(--primary-light); }

/* ============================================================ HERO SLIDER
   2 slide · SOLDA görsel, SAĞDA o görsele ait hizmet tanıtımı.
   Metin görselin ÜSTÜNDE değil, hero'nun buz mavisi zemininde → kontrast garanti.
   Otomatik geçiş 7sn · hover/focus'ta durur · klavye ok tuşları · swipe · ARIA.
   prefers-reduced-motion → otomatik geçiş kapalı.
   ⚠ Mobilde hero'da telefon/WhatsApp butonu YOK (sabit alt barda).
   ============================================================ */
.hslider { position: relative; z-index: 1; }
.hslider__track { position: relative; }

.hslide {
  display: none;
  padding-block: 40px 52px;
}
.hslide[data-active="true"] { display: block; animation: hs-in .45s ease; }
@keyframes hs-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hslide[data-active="true"] { animation: none; } }

@media (min-width: 1024px) {
  .hslide[data-active="true"] {
    display: grid;
    grid-template-columns: 1.02fr .98fr;   /* SOL: görsel · SAĞ: metin */
    gap: 56px; align-items: center;
    padding-block: 72px 80px;
  }
}

.hslide__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.16);
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,.06);
}
.hslide__media img { width: 100%; height: 100%; object-fit: cover; }

.hslide__body { margin-top: 28px; }
@media (min-width: 1024px) { .hslide__body { margin-top: 0; } }

.hslide__tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: 999px; margin-bottom: 14px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: var(--primary-light); font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
}
.hslide__body h2 {
  color: #fff;
  font-size: clamp(1.6rem, 4.2vw, 2.6rem);
  line-height: 1.15;
}
.hslide__body h2 em { font-style: normal; color: var(--primary-light); }
.hslide__body p { color: #DCEEF6; margin-top: 14px; font-size: clamp(.98rem, 1.7vw, 1.1rem); max-width: 52ch; }

.hslide__points { list-style: none; padding: 0; margin-top: 18px; display: grid; gap: 8px; }
.hslide__points li { display: flex; align-items: flex-start; gap: 9px; color: #C6E5F1; font-size: .94rem; }
.hslide__points svg { flex-shrink: 0; margin-top: 3px; color: var(--primary-light); }

.hslide__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hslide__actions .btn { flex: 1 1 auto; min-width: 170px; }
@media (min-width: 768px) { .hslide__actions .btn { flex: 0 0 auto; } }

/* --- Slider kontrolleri --- */
.hslider__nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-bottom: 28px;
}
@media (min-width: 1024px) { .hslider__nav { padding-bottom: 40px; } }

.hslider__dots { display: flex; gap: 8px; }
.hslider__dot {
  width: 36px; height: 6px; padding: 0; border: 0; border-radius: 999px;
  background: rgba(255,255,255,.28); cursor: pointer;
  transition: background-color .2s ease, width .2s ease;
}
.hslider__dot:hover { background: rgba(255,255,255,.5); }
.hslider__dot[aria-pressed="true"] { background: var(--primary-light); width: 52px; }

.hslider__arrows { display: flex; gap: 8px; }
.hslider__arrow {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px; color: #fff;
  transition: background-color .18s ease;
}
.hslider__arrow:hover { background: rgba(255,255,255,.2); }
.hslider__arrow--prev svg { transform: rotate(90deg); }
.hslider__arrow--next svg { transform: rotate(-90deg); }

/* Alt sayfa hero — kompakt */
.subhero {
  background: linear-gradient(140deg, var(--primary-deep), var(--primary-dark));
  color: #fff; padding-block: 32px 36px;
}
@media (min-width: 768px) { .subhero { padding-block: 48px 52px; } }
.subhero h1 { color: #fff; }
.subhero__sub { color: #DCEEF6; margin-top: 12px; max-width: 68ch; }

/* Breadcrumb */
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: .85rem; margin-bottom: 14px; color: #A9D3E4; }
.crumbs a { color: #C6E5F1; }
.crumbs a:hover { color: #fff; }
.crumbs span[aria-current] { color: #fff; }

/* ============================================================ Kartlar */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
  display: flex; flex-direction: column; gap: 10px;
}
@media (hover: hover) {
  .card--link:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--border-strong); }
}
.card h3 { font-size: 1.1rem; }
.card h3 a { color: var(--text); }
.card h3 a:hover { color: var(--primary); text-decoration: none; }
.card p { color: var(--text-2); font-size: .94rem; margin: 0; }
.card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--primary-surface); color: var(--primary-dark);
}
.card__more { margin-top: auto; padding-top: 8px; font-weight: 600; color: var(--primary); font-size: .92rem; }

/* Görselli hizmet kartı */
.card--media { padding: 0; overflow: hidden; gap: 0; }
.card__img { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--primary-surface); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
@media (hover: hover) { .card--media:hover .card__img img { transform: scale(1.045); } }
.card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card--media .card__icon {
  width: 40px; height: 40px; margin-top: -40px; position: relative; z-index: 1;
  background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}

/* Öne çıkan sayı bandı (anasayfa) — sadece onaylı iddialar */
.statbar {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 768px) { .statbar { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.statbar__item {
  background: var(--primary-surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  display: flex; flex-direction: column; gap: 2px;
}
.statbar__value { font-size: 1.75rem; font-weight: 800; color: var(--primary-dark); line-height: 1.1; }
.statbar__label { font-size: .82rem; color: var(--text-2); }

/* Hizmet detay: görselli split hero */
.svc-media {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  aspect-ratio: 16 / 10; background: var(--primary-surface);
}
.svc-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-split { display: grid; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .svc-split { grid-template-columns: 1fr 1fr; gap: 56px; } }

/* ============================================================ Mahalle etiketleri (ilçe sayfası içinde) */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block; padding: 7px 13px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border);
  font-size: .85rem; color: var(--text-2); font-weight: 500;
}
.tag strong { color: var(--primary-dark); font-weight: 600; }

/* ============================================================ Prose (blog / yasal / hizmet gövdesi) */
.prose { max-width: 74ch; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 1.9em; font-size: clamp(1.25rem, 2.6vw, 1.65rem); }
.prose h3 { margin-top: 1.5em; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.prose p, .prose li { color: #22404B; }
.prose ul, .prose ol { padding-left: 1.35rem; }
.prose li + li { margin-top: .45em; }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose table {
  width: 100%; border-collapse: collapse; font-size: .92rem;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.prose thead { background: var(--primary-surface); }
.prose th, .prose td { padding: 11px 13px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.prose th { color: var(--primary-dark); font-weight: 600; }
.prose tbody tr:last-child td { border-bottom: 0; }
/* Geniş tablo yatay kaydırma — sayfa gövdesi ASLA yatay kaymaz */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ============================================================ Accordion (SSS) */
.acc { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); overflow: hidden; }
.acc + .acc { margin-top: 10px; }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 18px; background: transparent; border: 0; text-align: left;
  font-weight: 600; color: var(--text); font-size: 1rem;
}
.acc__btn:hover { background: var(--primary-soft); }
.acc__btn svg { flex-shrink: 0; color: var(--primary); transition: transform .2s ease; }
.acc__btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.acc__panel { padding: 0 18px 18px; color: var(--text-2); }
.acc__panel[hidden] { display: none; }

/* ============================================================ Form */
.field { display: grid; gap: 6px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: .92rem; }
.field .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px;
  font-size: 16px; /* iOS zoom engeli */
  color: var(--text); background: var(--card);
  border: 1px solid var(--border-strong); border-radius: 10px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,114,158,.16);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: var(--danger); box-shadow: 0 0 0 3px rgba(180,35,24,.12);
}
.field__err { display: flex; align-items: center; gap: 6px; color: var(--danger); font-size: .85rem; font-weight: 500; }

.consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.consent input { width: 20px; height: 20px; min-height: 0; margin-top: 3px; flex-shrink: 0; accent-color: var(--primary); }
.consent span { font-size: .9rem; color: var(--text-2); }
.consent a { text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: .85rem; color: var(--text-2); text-align: center; margin-top: 12px; }

/* ============================================================ Uyarı / durum kutuları */
.alert { display: flex; gap: 12px; padding: 14px 16px; border-radius: var(--radius); font-size: .93rem; }
.alert svg { flex-shrink: 0; margin-top: 2px; }
.alert--success { background: #E6F4EE; border: 1px solid #A9D8C4; color: #0B5C3B; }
.alert--danger  { background: #FBEAE8; border: 1px solid #F0BDB7; color: #8C1B12; }
.alert--info    { background: var(--primary-surface); border: 1px solid var(--border-strong); color: var(--primary-dark); }

/* Toast */
.toast-wrap { position: fixed; right: 16px; bottom: 16px; z-index: 200; display: grid; gap: 8px; }
@media (max-width: 767px) { .toast-wrap { bottom: calc(var(--mobilebar-h) + 16px); left: 16px; right: 16px; } }
.toast {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); font-size: .93rem;
  animation: toast-in .2s ease;
}
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Empty state */
.empty { text-align: center; padding: 56px 20px; color: var(--text-2); }
.empty svg { color: var(--border-strong); margin: 0 auto 14px; }
.empty h3 { color: var(--text); margin-bottom: 8px; }

/* Skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--primary-surface) 25%, var(--primary-soft) 50%, var(--primary-surface) 75%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite linear; border-radius: 8px;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ============================================================ Harita — tıklayınca yüklenir (lazy) */
.map {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--primary-surface);
  aspect-ratio: 16 / 10;
}
.map__ph {
  position: absolute; inset: 0; display: grid; place-items: center; gap: 10px;
  width: 100%; background: transparent; border: 0; color: var(--primary-dark); font-weight: 600;
}
.map iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================ Footer */
.footer { background: var(--primary-deep); color: #C6E5F1; margin-top: 64px; }
.footer__top { padding-block: 44px 32px; }
@media (min-width: 1024px) { .footer__top { padding-block: 64px 40px; } }

.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer__brand span { font-weight: 700; font-size: 1.2rem; color: #fff; }
.footer__about { font-size: .92rem; color: #A9D3E4; max-width: 42ch; }

.footer__cols { display: grid; gap: 4px; margin-top: 32px; }
@media (min-width: 768px)  { .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (min-width: 1024px) { .footer__cols { grid-template-columns: repeat(4, 1fr); gap: 40px; } }

.footer__col h3 {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .09em;
  color: var(--primary-light); font-weight: 600; margin-bottom: 14px;
}
.footer__list { list-style: none; padding: 0; display: grid; gap: 9px; }
.footer__list a { color: #C6E5F1; font-size: .93rem; }
.footer__list a:hover { color: #fff; }

/* Mobilde footer accordion */
@media (max-width: 767px) {
  .footer__col { border-bottom: 1px solid rgba(255,255,255,.12); }
  .footer__col h3 {
    display: flex; align-items: center; justify-content: space-between;
    margin: 0; padding: 16px 0; cursor: pointer;
  }
  .footer__col h3 svg { transition: transform .2s ease; }
  .footer__col[data-open="true"] h3 svg { transform: rotate(180deg); }
  .footer__list { display: none; padding-bottom: 18px; }
  .footer__col[data-open="true"] .footer__list { display: grid; }
}

.footer__nap { font-style: normal; display: grid; gap: 10px; }
.footer__nap a, .footer__nap span { display: flex; align-items: flex-start; gap: 9px; color: #C6E5F1; font-size: .93rem; }
.footer__nap svg { flex-shrink: 0; margin-top: 3px; color: var(--primary-light); }
.footer__nap a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 20px;
  display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center;
  font-size: .84rem; color: #8FBFD3;
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__credit { color: #A9D3E4; }
.footer__credit a { color: #fff; font-weight: 600; }

/* ============================================================ Yardımcılar */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.stack   { display: grid; gap: 16px; }
.stack-8 { display: grid; gap: 8px; }
.center  { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.section__head { max-width: 62ch; margin-bottom: 28px; }
.section__head.center { margin-inline: auto; }
.section__head p { color: var(--text-2); margin-top: 10px; }

/* CTA bandı */
.ctaband {
  background: linear-gradient(140deg, var(--primary-dark), var(--primary));
  color: #fff; border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
}
@media (min-width: 768px) { .ctaband { padding: 44px 40px; } }
.ctaband h2 { color: #fff; }
.ctaband p { color: #DCEEF6; margin: 12px auto 24px; max-width: 56ch; }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
