/* ==========================================================================
   Bursa Özel Direksiyon Eğitimi — site.css
   Claude Design'daki "Bursa Direksiyon Dersi.dc.html" tasarımının
   bağımsız (runtime'sız) uygulaması.
   Sıra: token → temel → yerleşim → bileşen → duyarlı (responsive en sonda,
   böylece bileşen kuralları !important olmadan ezilebiliyor).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tasarım token'ları
   -------------------------------------------------------------------------- */

:root {
  /* Marka turuncusu — YALNIZCA dekoratif: kenarlık, nokta, ayraç, ikon çizgisi.
     Beyaz yazıyla 3.12:1, açık zeminde metin olarak 2.87:1 verir; ikisi de
     WCAG AA'nın altında. Metin ve dolgu için aşağıdaki iki token kullanılır. */
  --accent: #FF5A1F;

  /* Açık zeminde metin rengi olarak accent. #BD3B06 sayfa/kart/şerit
     zeminlerinin hepsinde >= 4.66:1 verir — markaya en yakın geçen ton. */
  --accent-text: #BD3B06;

  /* Beyaz yazı taşıyan accent dolgular (düğme, rozet). Beyazla 5.54:1.
     Koyu temada da koyu kalmalı — üstündeki yazı her iki temada da beyaz. */
  --accent-solid: #BD3B06;

  --bg: #F7F5F2;
  --bg2: #EFEBE4;
  --surface: #FFFFFF;
  --line: #E4E0D9;
  --line2: #E7E2DA;
  --field: #FBFAF8;
  --text: #1A1A1A;
  --muted: #55504A;
  /* #7C7770 sayfa zemininde 4.08:1 veriyordu — AA altı. #6F6960 sayfa 4.99,
     kart 5.43, şerit 4.57 veriyor; hepsi geçiyor. Koyu temadaki #8E8880 zaten
     5.34-4.86 aralığında, ona dokunulmadı. */
  --muted2: #6F6960;
  --ink: #1A1A1A;
  --header: rgba(247, 245, 242, .9);
  --headerS: rgba(247, 245, 242, .95);

  /* Koyu zeminli bölümlerde (--ink) temadan bağımsız sabit renkler */
  --on-ink: #F2EEE8;
  --on-ink-muted: #A9A39B;
  --on-ink-dim: #9E9890;
  --on-ink-soft: #D6D1CA;
  --on-ink-soft2: #B5AFA7;
  --on-ink-line: #2E2E2C;
  --on-ink-line2: #33322F;
  --on-ink-line3: #45443F;

  color-scheme: light;
}

:root[data-theme="dark"] {
  /* Koyu zeminde marka turuncusu zaten 5.47-6.01:1 veriyor — kısmaya gerek yok. */
  --accent-text: #FF5A1F;

  --bg: #121211;
  --bg2: #191918;
  --surface: #1C1C1A;
  --line: #302F2C;
  --line2: #26251F;
  --field: #161615;
  --text: #F2EEE8;
  --muted: #A9A39B;
  --muted2: #8E8880;
  --ink: #0A0A09;
  --header: rgba(18, 18, 17, .9);
  --headerS: rgba(18, 18, 17, .95);

  color-scheme: dark;
}

/* --------------------------------------------------------------------------
   2. Temel
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-text); }

h1, h2, h3, h4, p, figure, ul, dl, dd, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
img, iframe, svg { max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
[hidden] { display: none !important; }

::selection { background: var(--accent-solid); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
}

@keyframes om-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes om-pulse {
  0%, 100% { transform: scale(1); opacity: .55; }
  50% { transform: scale(1.6); opacity: 0; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  font-size: 14px;
  font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Yerleşim
   -------------------------------------------------------------------------- */

/* Kaynak tasarımda yatay boşluk dış öğede (section/footer), max-width ise iç
   sarmalayıcıdadır — yani 1240px İÇERİĞİN genişliğidir, boşluk dışında kalır.
   content-box bunu tek öğede birebir yeniden üretir; border-box olsaydı içerik
   geniş ekranda 56px dar kalırdı. Üst bar ve menü ise kaynakta max-width ve
   padding'i aynı öğede taşır (border-box) — onlar aşağıda ayrıca geri alınıyor. */
.wrap {
  box-sizing: content-box;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.wrap--narrow { max-width: 1000px; }

/* Yapışkan başlık 74px — çapa bağlantıları bölüm başlığını örtmesin. */
section[id] { scroll-margin-top: 84px; }

.section { padding-top: 100px; padding-bottom: 100px; }
.section--hero { background: var(--bg); padding-top: 74px; padding-bottom: 0; }
.section--stats { padding-top: 76px; padding-bottom: 76px; }
.section--who { padding-top: 20px; padding-bottom: 100px; }
.section--gallery { padding-bottom: 0; }
.section--flush-top { padding-top: 0; }

.section--ink {
  background: var(--ink);
  color: var(--on-ink);
}

.section--band {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid { display: grid; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--split { grid-template-columns: 1fr 1fr; }
.grid--signs { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }

.gap-16 { gap: 16px; }
.gap-18 { gap: 18px; }
.gap-20 { gap: 20px; }
.gap-22 { gap: 22px; }
.gap-24 { gap: 24px; }

.only-sm { display: none !important; }

/* --------------------------------------------------------------------------
   4. Bölüm başlıkları
   -------------------------------------------------------------------------- */

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 18px;
}
.eyebrow--block { margin-bottom: 30px; }

.h2 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.h2--narrow { max-width: 15ch; }
.h2--spaced { margin-bottom: 54px; }
.h2--spaced-sm { margin-bottom: 24px; }
.h2--spaced-md { margin-bottom: 30px; }
#sss .h2--spaced-sm { margin-bottom: 26px; }

.head {
  gap: 40px;
  margin-bottom: 46px;
}
.head--end { align-items: end; }
.head--tight { margin-bottom: 40px; }
#hizmetler .head { margin-bottom: 54px; }
#fiyatlar .head { margin-bottom: 50px; }
.section--who .head {
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  margin-bottom: 50px;
}

.head__lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 44ch;
  justify-self: end;
}
.head__lead--ink { color: var(--on-ink-muted); max-width: 42ch; }
.head__lead--short { max-width: 40ch; }
.head__lead--tight { max-width: 42ch; }
.section--who .head__lead {
  font-size: 17px;
  max-width: none;
  justify-self: auto;
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   5. Düğmeler
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  font-weight: 700;
}

.btn--ink {
  gap: 9px;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
  flex: none;
  transition: transform .2s ease, background .2s ease;
}
.btn--ink:hover {
  background: var(--accent-solid);
  color: #fff;
  transform: translateY(-1px);
}

.btn--accent {
  gap: 11px;
  background: var(--accent-solid);
  color: #fff;
  padding: 17px 28px;
  font-size: 15.5px;
  box-shadow: 0 10px 26px -10px rgba(255, 90, 31, .75);
  transition: transform .22s ease, box-shadow .22s ease;
}
.btn--accent:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px rgba(255, 90, 31, .85);
}

.btn--outline {
  gap: 10px;
  border: 1.5px solid var(--text);
  padding: 16px 26px;
  font-size: 15.5px;
  transition: background .2s ease, color .2s ease;
}
.btn--outline:hover { background: var(--ink); color: #fff; }

.btn--ghost {
  gap: 10px;
  border: 1.5px solid var(--on-ink-line3);
  padding: 14px 24px;
  font-size: 15px;
  transition: background .2s ease, border-color .2s ease;
}
.btn--ghost:hover {
  background: var(--accent-solid);
  border-color: var(--accent-text);
  color: #fff;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}
.icon-btn:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

/* Kart kaldırma efekti — gölge bileşene göre değişiyor */
.lift { transition: transform .3s ease, box-shadow .3s ease; }
.lift:hover { transform: translateY(-5px); }

/* --------------------------------------------------------------------------
   6. İlerleme çubuğu · üst bar · menü
   -------------------------------------------------------------------------- */

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 90;
  transition: width .1s linear;
}

.topbar {
  background: var(--ink);
  color: #EFEBE5;
  font-size: 13px;
}
/* Kaynakta üst bar ve menü sarmalayıcısı max-width + padding'i aynı öğede
   taşır; bu yüzden geniş ekranda içerikleri bölümlerden 56px dar kalır. */
.topbar__inner,
.header__inner { box-sizing: border-box; }

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.topbar__hours { display: flex; align-items: center; gap: 10px; }
.topbar__hours > span:not(.topbar__dot) { opacity: .82; }
.topbar__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex: none;
}
.topbar__links { display: flex; align-items: center; gap: 26px; }
.topbar__links > a { opacity: .82; }
.topbar__phone {
  opacity: 1;
  font-weight: 700;
  letter-spacing: .02em;
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--header);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.header.is-scrolled {
  background: var(--headerS);
  box-shadow: 0 10px 30px -22px rgba(26, 26, 26, .55);
}
.header__inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__actions { display: flex; align-items: center; gap: 12px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--ink);
  display: grid;
  place-items: center;
  flex: none;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name {
  font-family: Newsreader, Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.logo__sub {
  font-size: 10.5px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted2);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
}
.nav a { transition: color .2s; }
.nav a:hover { color: var(--text); }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 14px 20px 22px;
  display: grid;
  gap: 2px;
  font-size: 16px;
  font-weight: 600;
}
.mobile-nav > a {
  padding: 12px 6px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav > a.mobile-nav__last { border-bottom: 0; }
.mobile-nav > a.mobile-nav__cta {
  margin-top: 12px;
  text-align: center;
  background: var(--accent-solid);
  color: #fff;
  padding: 15px;
  border-radius: 100px;
  border-bottom: 0;
  font-weight: 700;
}
.mobile-nav__cta:hover { color: #fff; }
.mobile-nav__theme {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1.5px solid var(--line);
  background: transparent;
  padding: 14px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  grid-template-columns: 1.08fr .92fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 7px 15px 7px 9px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 30px;
}
.badge__tag {
  background: var(--accent-solid);
  color: #fff;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .06em;
}

.hero__title {
  font-family: Newsreader, Georgia, serif;
  font-weight: 500;
  font-size: clamp(40px, 5.1vw, 74px);
  line-height: 1.02;
  letter-spacing: -.028em;
  text-wrap: balance;
  margin-bottom: 26px;
}
.hero__title em { font-style: italic; color: var(--accent-text); }

.hero__lead {
  font-size: 18.5px;
  line-height: 1.62;
  color: var(--muted);
  max-width: 560px;
  text-wrap: pretty;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 42px;
}

.hero__note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--muted2);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}
.hero__note svg { flex: none; margin-top: 2px; }

.hero__media { position: relative; }
.hero__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: var(--line2);
  box-shadow: 0 34px 70px -34px rgba(26, 26, 26, .42);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }

.hero__card {
  position: absolute;
  left: -24px;
  bottom: 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 22px 44px -22px rgba(26, 26, 26, .35);
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__card-text { display: flex; flex-direction: column; line-height: 1.3; }
.hero__card-title { font-size: 15px; font-weight: 800; }
.hero__card-sub { font-size: 12.5px; color: var(--muted2); }

.pulse { position: relative; width: 11px; height: 11px; flex: none; }
.pulse__core, .pulse__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
}
.pulse__ring { animation: om-pulse 2s ease-out infinite; }

/* --------------------------------------------------------------------------
   8. Kayan şerit
   -------------------------------------------------------------------------- */

.marquee {
  margin-top: 74px;
  background: var(--ink);
  color: #EFEBE5;
  overflow: hidden;
  padding: 15px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: om-marquee 34s linear infinite;
}
.marquee__row {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-right: 42px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__sep { color: var(--accent-text); }

/* --------------------------------------------------------------------------
   9. Sayılar
   -------------------------------------------------------------------------- */

.stats {
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.stat { background: var(--bg); padding: 34px 30px; }
.stat--ink { background: var(--ink); color: #F7F5F2; }
.stat__value {
  font-family: Newsreader, Georgia, serif;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1;
}
.stat__value--accent { color: var(--accent-text); }
.stat__label {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
}
.stat--ink .stat__label { color: var(--on-ink-soft2); }

/* --------------------------------------------------------------------------
   10. Görsel kartlar (Kimler için)
   -------------------------------------------------------------------------- */

.media-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.media-card:hover { box-shadow: 0 26px 50px -28px rgba(26, 26, 26, .4); }
.media-card img { width: 100%; height: 190px; object-fit: cover; }
.media-card__body { padding: 26px 26px 30px; }
.media-card__title {
  font-family: Newsreader, Georgia, serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -.015em;
  margin-bottom: 10px;
}
.media-card__text { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* --------------------------------------------------------------------------
   11. Hizmet döşemeleri
   -------------------------------------------------------------------------- */

.tiles {
  gap: 1px;
  background: var(--on-ink-line);
  border: 1px solid var(--on-ink-line);
  border-radius: 20px;
  overflow: hidden;
}
.tile {
  background: var(--ink);
  padding: 32px 28px 36px;
  transition: background .3s ease;
}
.tile:hover { background: #232321; }
.tile__num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--accent-text);
  margin-bottom: 22px;
}
.tile__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.tile__text { font-size: 14.5px; line-height: 1.6; color: var(--on-ink-dim); }

.checks { margin-top: 44px; gap: 22px; }
.check { display: flex; gap: 13px; align-items: flex-start; }
.check svg { flex: none; margin-top: 2px; }
.check span {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--on-ink-soft);
}

/* --------------------------------------------------------------------------
   12. Araç galerisi
   -------------------------------------------------------------------------- */

.shot {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--line2);
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(26, 26, 26, .86);
  color: #fff;
  padding: 8px 15px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   13. Durum kartları
   -------------------------------------------------------------------------- */

.case {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 28px;
}
.case:hover { box-shadow: 0 26px 50px -28px rgba(26, 26, 26, .35); }
.case__title {
  font-size: 18.5px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.012em;
  margin-bottom: 12px;
}
.case__text { font-size: 15px; line-height: 1.65; color: var(--muted); }

/* --------------------------------------------------------------------------
   14. Süreç adımları
   -------------------------------------------------------------------------- */

.step { border-top: 2px solid var(--text); padding-top: 22px; }
.step__num {
  font-family: Newsreader, Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--accent-text);
  line-height: 1;
  margin-bottom: 14px;
}
.step__title { font-size: 18px; font-weight: 700; margin-bottom: 9px; }
.step__text { font-size: 14.5px; line-height: 1.62; color: var(--muted); }

/* --------------------------------------------------------------------------
   15. Bilgi panelleri (saatler / yerler)
   -------------------------------------------------------------------------- */

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 42px 40px;
}
.panel__head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}
.panel__title {
  font-family: Newsreader, Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.02em;
}
.panel__text {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--muted);
  text-wrap: pretty;
  margin-bottom: 24px;
}
.panel__img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}
.panel__foot { font-size: 14px; line-height: 1.6; color: var(--muted2); }
.slots + .panel__foot { margin-top: 20px; }

.slots {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.slot {
  background: var(--field);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.slot__time { font-size: 14.5px; font-weight: 700; }
.slot__note { font-size: 13.5px; color: var(--muted); }

/* --------------------------------------------------------------------------
   16. Hizmet bölgeleri
   -------------------------------------------------------------------------- */

.region {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
}
.region__title { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
.region__text { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* --------------------------------------------------------------------------
   17. Fiyat kartları
   -------------------------------------------------------------------------- */

.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.plan:hover { box-shadow: 0 26px 50px -28px rgba(26, 26, 26, .35); }
.plan__title { font-size: 18px; font-weight: 700; line-height: 1.35; }
.plan__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}
.plan__price {
  font-family: Newsreader, Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.02em;
}
.plan__cta {
  text-align: center;
  border: 1.5px solid var(--text);
  padding: 12px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}
.plan__cta:hover { background: var(--ink); color: #fff; }

.plan--featured {
  position: relative;
  background: var(--ink);
  color: var(--on-ink);
  border-color: var(--text);
}
.plan--featured:hover { box-shadow: 0 30px 56px -28px rgba(26, 26, 26, .6); }
.plan--featured .plan__text { color: var(--on-ink-muted); }
.plan--featured .plan__price { color: var(--accent-text); }
.plan__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent-solid);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 100px;
}
.plan__cta--accent {
  background: var(--accent-solid);
  color: #fff;
  border: 0;
  padding: 13.5px;
  transition: filter .2s ease;
}
.plan__cta--accent:hover {
  background: var(--accent-solid);
  color: #fff;
  filter: brightness(1.12);
}

/* --------------------------------------------------------------------------
   18. Eğitmenler
   -------------------------------------------------------------------------- */

.teachers {
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.teachers__text {
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--muted);
  text-wrap: pretty;
  margin-bottom: 20px;
}
.teachers__text:last-of-type { margin-bottom: 0; }

.teacher {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.teacher__body { padding: 34px 30px 32px; text-align: center; }
.teacher__name {
  font-family: Newsreader, Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.018em;
}
.teacher__role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin: 7px 0 16px;
}
.teacher__tel {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   19. Yorumlar
   -------------------------------------------------------------------------- */

.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 30px;
}
.quote blockquote {
  font-family: Newsreader, Georgia, serif;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -.012em;
  margin-bottom: 22px;
}
.quote figcaption {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   20. Hızlı bilgi tablosu
   -------------------------------------------------------------------------- */

.facts { margin: 40px 0 0; }
.fact {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.fact dt {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}
.fact dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

/* --------------------------------------------------------------------------
   21. Trafik işaretleri
   -------------------------------------------------------------------------- */

.sign {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.sign__label { font-size: 14.5px; font-weight: 700; line-height: 1.4; }

/* --------------------------------------------------------------------------
   22. Rehber kartları
   -------------------------------------------------------------------------- */

.guide {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.guide:hover {
  color: inherit;
  box-shadow: 0 26px 50px -28px rgba(26, 26, 26, .35);
}
.guide__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.guide__title {
  font-family: Newsreader, Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.018em;
  line-height: 1.2;
}
.guide__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}
.guide__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   23. Sıkça sorulan sorular
   -------------------------------------------------------------------------- */

.grid--split-faq {
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.faq__intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--on-ink-muted);
  margin-bottom: 26px;
}

.faq { border-top: 1px solid var(--on-ink-line2); }
.faq__item { border-bottom: 1px solid var(--on-ink-line2); }
.faq__h { font-size: inherit; font-weight: inherit; }
.faq__head {
  width: 100%;
  background: none;
  border: 0;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  cursor: pointer;
  color: inherit;
}
/* Kaynakta yazı biçimi butonda değil, içindeki metin span'indedir. */
.faq__head > span:first-child {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.faq__icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--on-ink-line3);
  display: grid;
  place-items: center;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.faq__head[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent-text);
}
.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}
.faq__body p {
  font-size: 16px;
  line-height: 1.68;
  color: var(--on-ink-muted);
  padding-bottom: 28px;
  max-width: 62ch;
}

/* --------------------------------------------------------------------------
   24. İletişim
   -------------------------------------------------------------------------- */

.contact { align-items: start; }
.contact__list { display: grid; gap: 14px; margin-bottom: 20px; }
.contact__row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
  transition: border-color .2s ease, transform .2s ease;
}
.contact__row:hover {
  border-color: var(--text);
  color: var(--text);
  transform: translateX(3px);
}
.contact__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg2);
  display: grid;
  place-items: center;
  flex: none;
}
.contact__text { display: flex; flex-direction: column; line-height: 1.35; }
.contact__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted2);
}
.contact__value { font-size: 19px; font-weight: 800; letter-spacing: -.01em; }

.address {
  background: var(--ink);
  color: var(--on-ink);
  border-radius: 20px;
  padding: 30px 32px;
  margin-bottom: 14px;
}
.address__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 16px;
}
.address__text { font-size: 17px; line-height: 1.6; margin-bottom: 20px; }
.address__mail {
  font-size: 15px;
  font-weight: 700;
  color: var(--on-ink);
  border-bottom: 1px solid var(--on-ink-line3);
  padding-bottom: 2px;
}

.map {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  background: var(--line2);
}
.map iframe { border: 0; display: block; }

/* --------------------------------------------------------------------------
   25. Ön kayıt formu
   -------------------------------------------------------------------------- */

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 38px;
  position: sticky;
  top: 100px;
}
.form__title {
  font-family: Newsreader, Georgia, serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.form__lead {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
}
.form__fields { display: grid; gap: 18px; }

.field { display: grid; gap: 8px; }
.field__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  background: var(--field);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent-text);
  background: var(--surface);
}
.field select { appearance: none; cursor: pointer; }
.field textarea { resize: vertical; font-family: inherit; }

.consent {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13.5px;
  color: var(--muted);
}
.consent input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent-text);
  flex: none;
}

.form__submit {
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 17px;
  border-radius: 100px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background .22s ease, transform .22s ease;
}
.form__submit:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.form__submit[disabled] {
  opacity: .6;
  cursor: progress;
  transform: none;
}

/* Gönderim sonucu — sunucudan dönen ya da betiğin yazdığı bildirim */

.form__durum,
.form__not {
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14.5px;
  line-height: 1.55;
  border: 1px solid;
}

.form__durum { margin-bottom: 20px; }
.form__not { margin-top: 4px; }

.form__durum--ok,
.form__not--ok {
  color: #1F7A44;
  border-color: #1F7A44;
  background: rgba(31, 122, 68, .07);
}

.form__durum--hata,
.form__not--hata {
  color: #C81E1E;
  border-color: #C81E1E;
  background: rgba(200, 30, 30, .07);
}

:root[data-theme="dark"] .form__durum--ok,
:root[data-theme="dark"] .form__not--ok { color: #55C98A; border-color: #55C98A; }

:root[data-theme="dark"] .form__durum--hata,
:root[data-theme="dark"] .form__not--hata { color: #F0736F; border-color: #F0736F; }

/* Alan bazlı hata vurgusu */

.field--hatali input,
.field--hatali select,
.field--hatali textarea { border-color: #C81E1E; }

.field__hata {
  font-size: 13px;
  font-weight: 600;
  color: #C81E1E;
}

:root[data-theme="dark"] .field__hata { color: #F0736F; }

/* Bot tuzağı — ekranda görünmez ama ekran okuyucudan da gizli tutulur */

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

/* --------------------------------------------------------------------------
   26. Alt bilgi
   -------------------------------------------------------------------------- */

.footer {
  background: var(--ink);
  color: var(--on-ink-muted);
  padding-top: 72px;
  padding-bottom: 34px;
}
.footer__top {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--on-ink-line);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer__mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #F2EEE8;
  display: grid;
  place-items: center;
  flex: none;
}
.footer__name {
  font-family: Newsreader, Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--on-ink);
  letter-spacing: -.01em;
}
.footer__about { font-size: 14.5px; line-height: 1.65; max-width: 34ch; }
.footer__heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-ink);
  margin-bottom: 18px;
}
.footer__list { display: grid; gap: 11px; font-size: 14.5px; }
.footer__list--plain { line-height: 1.45; }
.footer__list--wide { line-height: 1.5; }
.footer__bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   27. Sabit arama düğmeleri
   -------------------------------------------------------------------------- */

.fabs {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}
.fab--wa {
  background: var(--ink);
  box-shadow: 0 14px 30px -12px rgba(26, 26, 26, .6);
  transition: transform .22s ease, background .22s ease;
}
.fab--wa:hover {
  background: var(--accent-solid);
  color: #fff;
  transform: scale(1.07);
}
.fab--call {
  background: var(--accent);
  box-shadow: 0 14px 30px -12px rgba(255, 90, 31, .85);
  transition: transform .22s ease;
}
.fab--call:hover { color: #fff; transform: scale(1.07); }

/* --------------------------------------------------------------------------
   28. Duyarlı düzen — kaynak tasarımdaki kırılma noktaları
   -------------------------------------------------------------------------- */

/* dizüstü */
@media (max-width: 1040px) {
  .grid--4,
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* tablet */
@media (max-width: 980px) {
  .hide-sm { display: none !important; }
  .only-sm { display: grid !important; }

  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--2,
  .grid--split { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .grid--split > * { justify-self: start; max-width: 62ch; }
  /* Yukarıdaki kural, ".section--who .head__lead"in max-width:none değerini
     özgüllük nedeniyle ezemiyordu; kaynakta !important ile eziliyor. */
  .section--who .head__lead { max-width: 62ch; }
  .grid--signs { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .wrap { padding-left: 20px; padding-right: 20px; }
  .pad { padding: 30px 26px; }
  .hero__card { left: 16px; bottom: 16px; }
}

/* büyük telefon / küçük tablet */
@media (max-width: 760px) {
  .grid--3 { grid-template-columns: minmax(0, 1fr); }
  .grid--signs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact { grid-template-columns: minmax(0, 1fr); gap: 5px; }
  .hero__frame { aspect-ratio: 4 / 3; }
}

/* telefon */
@media (max-width: 560px) {
  .grid--4,
  .footer__top { grid-template-columns: minmax(0, 1fr); }
  .section { padding-top: 60px; padding-bottom: 60px; }
  .footer { padding-top: 60px; padding-bottom: 60px; }
  .logo__sub { display: none; }
  .pad { padding: 26px 20px; }
}

@media (max-width: 400px) {
  .wrap { padding-left: 15px; padding-right: 15px; }
  .hero__card { padding: 14px 16px; }
}

/* --------------------------------------------------------------------------
   29. Hareket azaltma tercihi
   -------------------------------------------------------------------------- */

/* Kaynak tasarım, kayan şeridi ve nabız noktasını hareket azaltma tercihinde de
   çalıştırır; sürekli dönen bu iki süsleme tasarımın parçası olduğu için burada
   durdurulmuyor. Hareket azaltma yalnızca JS tarafında (görünürlük animasyonları
   ve sayaçlar) dikkate alınır — bu da kaynakla birebir aynı davranıştır. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Koyu zeminli bağlamlarda marka turuncusuna geri dönülür

   --accent-text açık zemin için kısılmış bir ton (#BD3B06). Koyu zeminde bu
   ton okunmuyor: ölçtüğümüzde .address içindeki etiket #BD3B06 / #1A1A1A
   üzerinde AA sınırının çok altında kaldı. Koyu kapsayıcılarda #FF5A1F
   zaten 5.47-6.01:1 veriyor, yani hem markaya sadık hem geçiyor.

   Liste `background: var(--ink)` kullanan TÜM kapsayıcılardan türetildi.
   Yeni bir koyu bileşen eklenirse buraya da eklenmeli.
   DİKKAT: .hero__card koyu DEĞİL (--surface) — bilerek listede yok.
   -------------------------------------------------------------------------- */

.skip-link,
.topbar,
.section--ink,
.marquee,
.stat--ink,
.tile,
.plan--featured,
.address,
.btn--ink,
.form__submit,
.footer,
.cta-box,
.cmp__row--head,
.side__cta {
  --accent-text: #FF5A1F;
}

/* --------------------------------------------------------------------------
   30. Bölge kartları — artık ilçe sayfalarına bağlantı
   -------------------------------------------------------------------------- */

/* Kart <div> iken <a> oldu: global a:hover kartın tüm metnini turuncuya
   çevirmesin diye rengi sabitliyoruz, yerine kaldırma efekti veriyoruz. */
a.region {
  display: block;
  transition: transform .3s ease, box-shadow .3s ease, border-color .2s ease;
}
a.region:hover {
  color: inherit;
  transform: translateY(-3px);
  border-color: var(--text);
  box-shadow: 0 20px 40px -26px rgba(26, 26, 26, .35);
}


/* ---------------------------------------------------------------------------
   Yardımcı sınıflar — İÇERİK GÜVENLİK POLİTİKASI İÇİN.

   Bu değerler eskiden style="" özniteliğiyle yazılıydı. CSP'de satır içi stile
   izin vermek `style-src 'unsafe-inline'` demek; o da CSS enjeksiyonuna ve
   veri sızdırmaya (arka plan URL'siyle içerik dışarı taşıma) kapı açar.
   Dokuz özniteliği sınıfa çevirmek `style-src 'self'` yazmayı mümkün kıldı.
--------------------------------------------------------------------------- */
/* Sınıf adı BİLEREK iki kez yazıldı: `.u-kucuk.u-kucuk` özgüllüğü (0,0,2,0)
   yapar ve `.callout p` gibi (0,0,1,1) kurallara karşı kazanır. Satır içi stil
   zaten her şeyi yeniyordu; sınıfa taşırken görünüm değişmesin diye aynı ağırlık
   korunuyor. `!important` yerine bu tercih edildi — o, sonradan gelen meşru bir
   kuralın da önünü keserdi. */
.u-dar-sol.u-dar-sol { max-width: 60ch; justify-self: start; }
.u-ust-14.u-ust-14   { margin-top: 14px; }
.u-ust-24.u-ust-24   { margin-top: 24px; }
.u-ust-32.u-ust-32   { margin-top: 32px; }
.u-ust-56.u-ust-56   { margin-top: 56px; }
.u-soluk.u-soluk     { color: var(--muted); }
.u-kucuk.u-kucuk     { font-size: 15px; }
