/* ==========================================================================
   Light Yapım — Tasarım Sistemi
   Notr studyo beyazi + logodan gelen marka turuncusu. Acik, sade, kurumsal.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Yüzeyler — temiz stüdyo beyazı.
     Önceki sıcak krem zemin turuncuyla birleşince ağır duruyordu;
     nötr beyaz, turuncunun tek vurgu olarak öne çıkmasını sağlıyor. */
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --surface: #ffffff;
  --surface-2: #f2f4f7;
  --surface-sunk: #eceff3;

  /* Metin */
  --ink: #15181e;
  --ink-soft: #4a515e;
  --ink-mute: #848c9a;
  --ink-invert: #ffffff;

  /* Vurgu — logodan örneklenen marka turuncusu */
  --brand: #f2600c;
  --brand-light: #ff7a2e;
  --brand-deep: #c2490a;   /* kucuk metinlerde AA kontrasti icin koyu ton */
  --brand-wash: #fff4ed;

  /* Cizgi */
  --line: #e4e7ec;
  --line-soft: #eef0f3;
  --line-strong: #cfd4dc;

  /* Golge — notr, dusuk yogunluklu */
  --shadow-xs: 0 1px 2px rgba(16, 24, 40, .04);
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, .06), 0 1px 2px rgba(16, 24, 40, .04);
  --shadow-md: 0 4px 12px rgba(16, 24, 40, .07);
  --shadow-lg: 0 12px 32px rgba(16, 24, 40, .09);
  --shadow-brand: 0 6px 18px rgba(242, 96, 12, .22);

  /* Tipografi */
  --font-display: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;

  /* Olcek */
  --step--1: clamp(.82rem, .79rem + .12vw, .89rem);
  --step-0: clamp(1rem, .96rem + .18vw, 1.09rem);
  --step-1: clamp(1.2rem, 1.13rem + .34vw, 1.42rem);
  --step-2: clamp(1.5rem, 1.36rem + .68vw, 1.95rem);
  --step-3: clamp(1.9rem, 1.63rem + 1.32vw, 2.75rem);
  --step-4: clamp(2.4rem, 1.9rem + 2.44vw, 4rem);
  --step-5: clamp(2.9rem, 2rem + 4.4vw, 5.6rem);

  /* Ritim */
  --gutter: clamp(1.15rem, .8rem + 1.7vw, 2.25rem);
  --section-y: clamp(4rem, 2.8rem + 6vw, 8rem);
  --maxw: 1200px;
  --maxw-narrow: 780px;

  /* Yuvarlaklik */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Hareket */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .45s;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select { font: inherit; color: inherit; }

button { background: none; border: 0; cursor: pointer; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

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

::selection { background: var(--brand-wash); color: var(--brand-deep); }

/* --------------------------------------------------------------------------
   3. Layout yardımcıları
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section-y); }

/* Sayfa başlığından hemen sonra gelen bölüm daha yakın dursun —
   iki blok arka arkaya tam boşluk alınca arada boş bir ekran oluşuyordu. */
.page-hero + .section { padding-top: clamp(2.25rem, 1.6rem + 2.4vw, 3.5rem); }

.section--alt { background: var(--bg-alt); }

.section--warm {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-2) 100%);
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--ink);
  color: var(--ink-invert);
  padding: .75rem 1.5rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  transition: top .2s;
}

.skip-link:focus { top: 0; }

/* Bölüm başlığı bloğu */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow { justify-content: center; }

.section-title {
  font-size: var(--step-3);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: normal;
  color: var(--brand-deep);
}

.section-lede {
  font-size: var(--step-1);
  color: var(--ink-soft);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   4. Butonlar
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-0);
  letter-spacing: .01em;
  padding: .9rem 1.8rem;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background-color .25s, color .25s, border-color .25s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--brand);
  /* Turuncu uzerinde beyaz metin AA'yi geciyor (3.3:1);
     koyu metin 5.4:1 veriyor ve daha keskin duruyor. */
  color: #26140a;
  box-shadow: var(--shadow-brand);
}

.btn--primary:hover { background: var(--brand-light); }

.btn--primary:hover {
  box-shadow: 0 10px 24px rgba(242, 96, 12, .30);
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: var(--surface);
}

.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
  box-shadow: var(--shadow-sm);
}

.btn--dark {
  background: var(--ink);
  color: var(--ink-invert);
}

.btn--dark:hover { box-shadow: var(--shadow-lg); }

.btn--sm { padding: .6rem 1.25rem; font-size: var(--step--1); }
.btn--lg { padding: 1.05rem 2.3rem; font-size: var(--step-1); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

/* Metin bağlantısı — ok animasyonlu */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step--1);
  color: var(--brand-deep);
  letter-spacing: .02em;
}

.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Header / navigasyon
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .80);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background-color .3s;
}

.site-header.is-stuck {
  border-bottom-color: var(--line-soft);
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, .94);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
  margin-right: auto;
}

.brand img {
  height: 46px;
  width: auto;
  transition: transform .3s var(--ease);
}

.brand:hover img { transform: scale(1.03); }

/* Logo zaten kelime markasını içeriyor — metin yalnızca ekran okuyucular için */
.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Menü */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .93rem;
  padding: .55rem .8rem;
  border-radius: var(--r-pill);
  color: var(--ink-soft);
  transition: color .2s, background-color .2s;
}

.nav-link:hover,
.nav-item:focus-within > .nav-link { color: var(--ink); background: var(--surface-2); }

.nav-link[aria-current="page"] {
  color: var(--brand-deep);
  font-weight: 600;
}

.nav-link .caret { transition: transform .25s var(--ease); }
.nav-item:hover > .nav-link .caret,
.nav-item:focus-within > .nav-link .caret { transform: rotate(180deg); }

/* Açılır menü */
.submenu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 262px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}

.nav-item:hover > .submenu,
.nav-item:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: block;
  padding: .6rem .85rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: var(--ink-soft);
  transition: background-color .18s, color .18s, padding-left .18s;
}

.submenu a:hover {
  background: var(--brand-wash);
  color: var(--brand-deep);
  padding-left: 1.1rem;
}

.submenu-group + .submenu-group {
  border-top: 1px solid var(--line);
  margin-top: .45rem;
  padding-top: .45rem;
}

/* Ana hizmet — kalın, koyu, turuncu işaretli ve tıklanabilir.
   Özgüllük `.submenu a` kuralını geçmek zorunda, o yüzden a.<class> yazılıyor. */
.submenu a.submenu-main {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .94rem;
  font-weight: 700;
  letter-spacing: -.005em;
  color: var(--ink);
}

.submenu a.submenu-main::before {
  content: "";
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  flex-shrink: 0;
  transition: width .25s var(--ease);
}

.submenu a.submenu-main:hover {
  color: var(--brand-deep);
  padding-left: 1.1rem;
}

.submenu a.submenu-main:hover::before { width: 20px; }

/* Alt hizmet — daha ince ve içeride */
.submenu a.submenu-sub {
  padding-left: 2.3rem;
  font-size: .87rem;
  color: var(--ink-soft);
}

.submenu a.submenu-sub:hover { padding-left: 2.55rem; }

/* Sağ üst blok: sosyal ikonlar + Teklif Al */
.nav-actions {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}

.nav-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: background-color .2s, color .2s, transform .25s var(--ease);
}

.nav-social:hover {
  background: var(--brand-wash);
  color: var(--brand-deep);
  transform: translateY(-1px);
}

.nav-actions .btn { margin-left: .35rem; }

/* Menü içindeki CTA yalnızca mobilde görünür */
.nav-menu > .nav-cta { display: none; }

.nav-cta-social {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.25rem;
}

.nav-cta-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: background-color .2s, color .2s, border-color .2s;
}

.nav-cta-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #26140a;
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 2rem + 7vw, 7rem) clamp(4rem, 2.5rem + 7vw, 7.5rem);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero::before {
  width: 520px; height: 520px;
  top: -180px; right: -140px;
  background: radial-gradient(circle, rgba(242, 96, 12, .07), transparent 70%);
}

.hero::after {
  width: 420px; height: 420px;
  bottom: -180px; left: -120px;
  background: radial-gradient(circle, rgba(21, 24, 30, .04), transparent 70%);
}

.hero .wrap { position: relative; z-index: 1; }

.hero-title {
  font-size: var(--step-5);
  font-weight: 800;
  letter-spacing: -.035em;
  margin-bottom: 1.35rem;
  max-width: 15ch;
}

.hero-title .accent {
  background: linear-gradient(120deg, var(--brand-deep), var(--brand-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  font-size: var(--step-1);
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.hero-actions { margin-bottom: clamp(3rem, 6vw, 4.5rem); }

/* İstatistik şeridi */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Dar sütunlarda (ör. split içinde) tek sütuna zorla */
.stats--stack { grid-template-columns: 1fr; }

.stat {
  background: var(--surface);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.stats--stack .stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  text-align: left;
  padding: 1.4rem 1.75rem;
}

.stats--stack .stat-num { margin-bottom: 0; }
.stats--stack .stat-label { text-align: right; }

.stat-num {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 800;
  line-height: 1;
  color: var(--brand-deep);
  letter-spacing: -.03em;
  display: block;
  margin-bottom: .4rem;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: var(--step--1);
  color: var(--ink-mute);
  font-weight: 500;
  letter-spacing: .04em;
}

/* Sayfa başlığı (iç sayfalar) */
.page-hero {
  position: relative;
  padding-block: clamp(3rem, 2rem + 5vw, 5.5rem) clamp(2.5rem, 1.8rem + 4vw, 4.5rem);
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  top: -220px; right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 96, 12, .06), transparent 72%);
  filter: blur(60px);
  pointer-events: none;
}

.page-hero .wrap { position: relative; z-index: 1; }

.page-title {
  font-size: var(--step-4);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
  max-width: 18ch;
}

.page-lede {
  font-size: var(--step-1);
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.6;
}

/* Breadcrumb */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  font-size: var(--step--1);
  color: var(--ink-mute);
  margin-bottom: 1.35rem;
}

.crumbs a { transition: color .2s; }
.crumbs a:hover { color: var(--brand-deep); }
.crumbs li { display: flex; align-items: center; gap: .45rem; }
.crumbs li + li::before { content: "/"; color: var(--line-strong); }
.crumbs [aria-current="page"] { color: var(--ink-soft); font-weight: 500; }

/* --------------------------------------------------------------------------
   7. Kartlar
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 1.2rem + 1vw, 2.15rem);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}

.card-num {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--brand);
  margin-bottom: 1rem;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: var(--brand-wash);
  color: var(--brand-deep);
  margin-bottom: 1.35rem;
  flex-shrink: 0;
  transition: background-color .3s, transform .3s var(--ease);
}

.card:hover .card-icon {
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  color: #ffffff;
  transform: scale(1.06) rotate(-4deg);
}

.card-icon svg { width: 26px; height: 26px; }

.card-title {
  font-size: var(--step-1);
  margin-bottom: .7rem;
}

.card-text {
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.35rem;
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .92rem;
  color: var(--ink-soft);
}

.card-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: .58rem;
  border-radius: 50%;
  background: var(--brand);
}

.card-foot { margin-top: auto; }

/* Hizmet sayfalarındaki kenar kartı — içeriği kadar yükseklik, kaydırmada sabit */
.card--aside {
  height: auto;
  align-self: start;
}

@media (min-width: 768px) {
  .card--aside {
    position: sticky;
    top: 96px;
  }
}

/* Anasayfa referans şeridi */
.ref-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.ref-chip {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 1.1rem 1.3rem;
  transition: border-color .25s, transform .3s var(--ease), box-shadow .3s;
}

.ref-chip:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ref-chip-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: var(--brand-wash);
  color: var(--brand-deep);
}

.ref-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.3;
}

.ref-chip em {
  display: block;
  font-style: normal;
  font-size: .78rem;
  color: var(--ink-mute);
  margin-top: .15rem;
}

/* Referans kartı */
.ref-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color .3s;
}

.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}

.ref-head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.15rem;
}

.ref-head .card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
}

.ref-head .card-icon svg { width: 21px; height: 21px; }

.ref-sector {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.ref-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.35rem;
}

.ref-tags li {
  font-size: .76rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--brand-deep);
  background: var(--brand-wash);
  border-radius: var(--r-pill);
  padding: .3rem .7rem;
}

/* Grid'ler */
.grid {
  display: grid;
  gap: clamp(1rem, .8rem + .8vw, 1.6rem);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* --------------------------------------------------------------------------
   8. Süreç adımları
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(1.25rem, 1rem + 1.2vw, 2.25rem);
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 3.5rem;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 800;
  line-height: 1;
  color: var(--brand);
  opacity: .38;
  letter-spacing: -.04em;
}

.step::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 4.25rem;
  right: -1.5rem;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
}

.step:last-child::after { display: none; }

.step-title {
  font-size: var(--step-1);
  margin-bottom: .65rem;
}

.step-text {
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .step::after { display: none; }
}

/* --------------------------------------------------------------------------
   9. Split (metin + görsel)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 1.5rem + 3vw, 4.5rem);
  align-items: center;
}

.split--reverse > :first-child { order: 2; }

@media (max-width: 767px) {
  .split--reverse > :first-child { order: 0; }
}

.prose > * + * { margin-top: 1.15rem; }

.prose p { color: var(--ink-soft); line-height: 1.72; }

.prose strong { color: var(--ink); font-weight: 600; }

.prose h2 { font-size: var(--step-2); margin-top: 2.5rem; }
.prose h3 { font-size: var(--step-1); margin-top: 2rem; }

.prose ul { display: flex; flex-direction: column; gap: .65rem; }

.prose ul li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: var(--ink-soft);
}

.prose ul li::before {
  content: "";
  flex-shrink: 0;
  width: 7px; height: 7px;
  margin-top: .62rem;
  border-radius: 50%;
  background: var(--brand);
}

/* Alıntı */
.quote {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--brand);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 1.2rem + 1.4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.quote p {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 1rem;
}

.quote footer {
  font-size: var(--step--1);
  color: var(--ink-mute);
  font-weight: 600;
  letter-spacing: .05em;
}

/* --------------------------------------------------------------------------
   10. Ekip
   -------------------------------------------------------------------------- */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  max-width: 880px;
  margin-inline: auto;
}

.member {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.member:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* Portre çerçevesi — hem vesikalık hem tam boy kesim fotoğrafı taşır */
.member-photo {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 4 / 5;
  margin: 0 auto 1.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 100%, var(--surface-sunk) 0%, transparent 64%),
    linear-gradient(165deg, var(--surface-2) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--line-soft);
}

/* Zemindeki yumuşak ışık halesi */
.member-photo::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18%;
  width: 78%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 24, 30, .07), transparent 70%);
  filter: blur(18px);
}

.member-photo img,
.member-photo .initials {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: transform var(--dur) var(--ease);
}

.member:hover .member-photo img { transform: scale(1.03); }

/* Şeffaf arka planlı tam boy kesim fotoğrafları için */
.member-photo--cutout img {
  object-fit: contain;
  object-position: center bottom;
}

.member:hover .member-photo--cutout img { transform: translateY(-4px); }

.member-photo .initials {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.2rem);
  font-weight: 700;
  color: var(--brand-deep);
  letter-spacing: .02em;
  opacity: .55;
}

.member-name { font-size: var(--step-2); margin-bottom: .3rem; }

.member-role {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.member-links {
  display: flex;
  justify-content: center;
  gap: .55rem;
}

.member-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  color: var(--ink-soft);
  transition: background-color .25s, color .25s, transform .25s var(--ease);
}

.member-links a:hover {
  background: var(--brand);
  color: #ffffff;
  transform: translateY(-2px);
}

.member-links svg { width: 17px; height: 17px; }

/* --------------------------------------------------------------------------
   10b. Blog
   -------------------------------------------------------------------------- */
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.75rem;
}

.blog-cats li {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: .35rem .9rem;
}

.post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color .3s;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  font-size: .78rem;
  color: var(--ink-mute);
}

.post-cat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-wash);
  border-radius: var(--r-pill);
  padding: .28rem .7rem;
}

.post-read { color: var(--ink-mute); font-size: .78rem; }

.post-card-title {
  font-size: var(--step-1);
  line-height: 1.25;
  margin-bottom: .7rem;
}

.post-card-title a { transition: color .2s; }
.post-card-title a:hover { color: var(--brand-deep); }

.post-card .card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Yazı sayfası */
.page-hero--post { padding-bottom: clamp(2rem, 1.5rem + 2vw, 3rem); }

.toc {
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}

.toc-title {
  display: block;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: .9rem;
}

.toc ol {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.toc li {
  counter-increment: toc;
  display: flex;
  gap: .65rem;
  font-size: .93rem;
}

.toc li::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--brand);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  flex-shrink: 0;
  padding-top: .12rem;
}

.toc a { color: var(--ink-soft); transition: color .2s; }
.toc a:hover { color: var(--brand-deep); text-decoration: underline; }

.post-body { font-size: 1.06rem; }
.post-body p { line-height: 1.8; }

.post-body h2 {
  font-size: var(--step-2);
  margin-top: 2.75rem;
  scroll-margin-top: 100px;
}

.post-body h2 + p { margin-top: 1rem; }

.post-body code {
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  font-size: .88em;
  background: var(--surface-2);
  border-radius: 5px;
  padding: .14em .42em;
}

.post-body .quote { margin-block: 2rem; }
.post-body .quote p { font-size: var(--step-1); margin-bottom: 0; }

.post-body a:not(.btn):not(.link-arrow) {
  color: var(--brand-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-foot {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.post-author {
  font-size: .93rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.post-author a { color: var(--brand-deep); font-weight: 600; }

/* --------------------------------------------------------------------------
   11. SSS akordiyon
   -------------------------------------------------------------------------- */
.faq { max-width: 840px; margin-inline: auto; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  margin-bottom: .85rem;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}

.faq-item[open] {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-0);
  list-style: none;
  transition: color .2s;
}

.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--brand-deep); }

.faq-q .q-num {
  font-size: var(--step--1);
  color: var(--brand);
  font-weight: 700;
  letter-spacing: .08em;
  flex-shrink: 0;
}

.faq-q .q-icon {
  margin-left: auto;
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--brand-wash);
  color: var(--brand-deep);
  display: grid;
  place-items: center;
  transition: transform .3s var(--ease), background-color .25s;
}

.faq-item[open] .q-icon {
  transform: rotate(45deg);
  background: var(--brand);
  color: #ffffff;
}

.faq-a {
  padding: 0 1.5rem 1.4rem calc(1.5rem + 2.4rem);
  color: var(--ink-soft);
  line-height: 1.72;
  font-size: .96rem;
}

@media (max-width: 560px) {
  .faq-a { padding-left: 1.5rem; }
}

/* --------------------------------------------------------------------------
   12. Portfolyo
   -------------------------------------------------------------------------- */
/* Instagram Reels ızgarası.
   Instagram embed'i kendi genişliğini yönetir (min 326px), bu yüzden
   sütun genişliğini ona göre veriyoruz. */
.reels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(326px, 1fr));
  gap: clamp(1rem, .8rem + 1vw, 1.75rem);
  justify-items: center;
  align-items: start;
}

.reel {
  position: relative;
  width: 100%;
  max-width: 400px;
}

/* Embed gelene kadar yer tutucu kutunun yüksekliği sabit kalsın —
   hem düzen kaymasını (CLS) önler hem ızgara hizalı durur. */
.reel:not(.is-loaded) { aspect-ratio: 400 / 660; }

/* Yer tutucu kart */
.reel-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: linear-gradient(165deg, var(--bg-alt) 0%, var(--surface-2) 100%);
  transition: opacity .4s var(--ease), border-color .25s;
}

.reel-ph:hover { border-color: var(--brand); }

.reel-ph-icon {
  color: var(--brand);
  opacity: .55;
  margin-bottom: .5rem;
  transition: opacity .25s, transform .3s var(--ease);
}

.reel-ph:hover .reel-ph-icon { opacity: .95; transform: scale(1.1); }

.reel-ph-text {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.reel-ph-sub {
  font-size: .78rem;
  color: var(--ink-mute);
}

/* Yükleme sırasında hafif nabız */
.reel.is-loading .reel-ph { animation: reelPulse 1.4s ease-in-out infinite; }

@keyframes reelPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .55; }
}

/* Embed geldiğinde yer tutucu kaybolur */
.reel.is-loaded .reel-ph {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .reel.is-loading .reel-ph { animation: none; }
}

/* Instagram embed'i yerleşimi bozmasın */
.reels .instagram-media {
  margin: 0 auto !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: var(--r-md) !important;
  box-shadow: var(--shadow-sm) !important;
  border-color: var(--line-soft) !important;
}

.reels-note {
  text-align: center;
  margin-top: 3rem;
  color: var(--ink-mute);
  font-size: .92rem;
  line-height: 1.8;
}

.reels-note a { color: var(--brand-deep); font-weight: 600; }
.reels-note a:hover { text-decoration: underline; }

.folio {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(180px, 22vw, 260px), 1fr));
  gap: clamp(.75rem, .6rem + .6vw, 1.15rem);
}

.folio-item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(150deg, var(--surface-2), var(--brand-wash));
  border: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.folio-item:hover { transform: translateY(-4px) scale(1.015); box-shadow: var(--shadow-lg); }

.folio-item img { width: 100%; height: 100%; object-fit: cover; }

.folio-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  text-align: center;
  padding: 1rem;
}

.folio-ph .ph-icon {
  color: var(--brand);
  opacity: .5;
  margin-bottom: .5rem;
  transition: opacity .3s, transform .3s var(--ease);
}

.folio-item:hover .ph-icon { opacity: .9; transform: scale(1.12); }

.folio-ph .ph-mark {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-deep);
  opacity: .75;
}

.folio-ph .ph-num {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 800;
  color: var(--ink);
  opacity: .3;
  letter-spacing: -.03em;
}

.folio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 37, 32, .55), transparent 55%);
  opacity: 0;
  transition: opacity .3s;
}

.folio-item:hover::after { opacity: 1; }

.folio-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity .3s, transform .3s var(--ease);
}

.folio-item:hover .folio-cap { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   13. Logo şeridi / referanslar
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  padding-block: 1.5rem;
  border-block: 1px solid var(--line-soft);
  background: var(--surface);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: slide 34s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-mute);
  white-space: nowrap;
  opacity: .55;
  transition: opacity .25s, color .25s;
}

.marquee-item:hover { opacity: 1; color: var(--brand-deep); }

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Sektör kartları */
.sector {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 1.15rem 1.35rem;
  transition: border-color .25s, transform .3s var(--ease), box-shadow .3s;
}

.sector:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sector-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: var(--brand-wash);
  color: var(--brand-deep);
}

.sector-icon svg { width: 21px; height: 21px; }

.sector-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
}

/* --------------------------------------------------------------------------
   14. CTA bloğu
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  background: linear-gradient(150deg, #15181e 0%, #1d222b 55%, #262c37 100%);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 2rem + 3vw, 4.5rem) clamp(1.5rem, 1.2rem + 2.5vw, 4rem);
  text-align: center;
  overflow: hidden;
  color: var(--ink-invert);
}

.cta::before {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  top: -220px; right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 96, 12, .20), transparent 70%);
  filter: blur(50px);
}

.cta > * { position: relative; z-index: 1; }

.cta .eyebrow { color: var(--brand-light); }
.cta .eyebrow::before { background: var(--brand-light); }

.cta-title {
  font-size: var(--step-3);
  margin-bottom: 1rem;
  color: #fff;
}

.cta-text {
  font-size: var(--step-1);
  color: rgba(255, 255, 255, .76);
  max-width: 58ch;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
}

.cta .btn-row { justify-content: center; }

.cta .btn--ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .26);
  color: var(--ink-invert);
}

.cta .btn--ghost:hover {
  background: rgba(255, 255, 255, .16);
  border-color: var(--brand-light);
  color: var(--brand-light);
}

/* --------------------------------------------------------------------------
   15. İletişim
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 1.2rem + 2vw, 3rem);
  align-items: start;
}

.info-card {
  display: flex;
  gap: 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  transition: border-color .25s, box-shadow .3s, transform .3s var(--ease);
}

.info-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.info-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: var(--brand-wash);
  color: var(--brand-deep);
}

.info-icon svg { width: 22px; height: 22px; }

/* Kart gövdesi: etiket / değer / not alt alta */
.info-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.info-label {
  display: block;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: .35rem;
}

.info-value {
  display: block;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.info-value a { transition: color .2s; }
.info-value a:hover { color: var(--brand-deep); }

.info-note {
  display: block;
  font-size: .87rem;
  color: var(--ink-mute);
  margin-top: .35rem;
  line-height: 1.5;
}

/* Form */
.form {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 1.2rem + 1.6vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.field { margin-bottom: 1.15rem; }

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 600;
  margin-bottom: .45rem;
  color: var(--ink);
}

.field .req { color: var(--brand-deep); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg);
  font-size: .96rem;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--brand-wash);
}

.field textarea { resize: vertical; min-height: 128px; }

.field-check {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .87rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.field-check input { width: auto; margin-top: .25rem; accent-color: var(--brand); flex-shrink: 0; }

.field-check a { color: var(--brand-deep); text-decoration: underline; }

.form-note {
  font-size: .84rem;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 1rem;
}

.form-status {
  margin-top: 1rem;
  padding: .85rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  display: none;
}

.form-status.is-visible { display: block; }
.form-status.is-ok { background: var(--brand-wash); color: var(--brand-deep); border: 1px solid var(--brand); }

/* Harita */
.map-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  line-height: 0;
}

.map-frame iframe { width: 100%; height: 420px; border: 0; }

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 2.2rem + 3vw, 4.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.75rem, 1.4rem + 2vw, 3rem);
  padding-bottom: clamp(2.5rem, 2rem + 2vw, 3.5rem);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

.footer-brand img { height: 46px; margin-bottom: 1.1rem; }

.footer-about {
  color: var(--ink-soft);
  font-size: .93rem;
  line-height: 1.7;
  max-width: 38ch;
  margin-bottom: 1.35rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.15rem;
}

.footer-list { display: flex; flex-direction: column; gap: .6rem; }

.footer-list a,
.footer-list li {
  font-size: .92rem;
  color: var(--ink-soft);
  transition: color .2s, transform .2s var(--ease);
}

.footer-list a { display: inline-block; }
.footer-list a:hover { color: var(--brand-deep); transform: translateX(3px); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  line-height: 1.6;
}

.footer-contact svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: .3rem;
  color: var(--brand);
}

.socials { display: flex; gap: .6rem; }

.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: background-color .25s, color .25s, transform .25s var(--ease), border-color .25s;
}

.socials a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
  transform: translateY(-3px);
}

.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  font-size: .87rem;
  color: var(--ink-mute);
}

.footer-bottom a { transition: color .2s; }
.footer-bottom a:hover { color: var(--brand-deep); }

.footer-legal { display: flex; gap: 1.15rem; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   17. Yüzen aksiyonlar (WhatsApp / yukarı)
   -------------------------------------------------------------------------- */
.floats {
  position: fixed;
  right: clamp(.85rem, 2vw, 1.6rem);
  bottom: clamp(.85rem, 2vw, 1.6rem);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform .3s var(--ease), opacity .3s, visibility .3s;
}

.float-btn:hover { transform: scale(1.08); }

.float-btn--wa { background: #25d366; color: #fff; }
.float-btn--wa svg { width: 27px; height: 27px; }

.float-btn--top {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
}

.float-btn--top.is-visible { opacity: 1; visibility: visible; }
.float-btn--top svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   18. Scroll reveal
   -------------------------------------------------------------------------- */
/* Yalnızca JS çalışıyorsa gizle — JS başarısız olursa içerik görünür kalır */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-in { opacity: 1; transform: none; }

.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal-stagger.is-in > * { opacity: 1; transform: none; }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   19. Mobil navigasyon
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    inset: 76px 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    padding: 1.25rem var(--gutter) 2.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .38s var(--ease);
    border-top: 1px solid var(--line-soft);
  }

  .nav-menu.is-open { transform: translateX(0); }

  .nav-item { border-bottom: 1px solid var(--line-soft); }

  .nav-link {
    justify-content: space-between;
    padding: 1rem .25rem;
    font-size: 1.05rem;
    border-radius: 0;
    width: 100%;
  }

  .nav-link:hover { background: none; }

  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0 0 .75rem .75rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease), padding .35s var(--ease);
  }

  .nav-item.is-open > .submenu { max-height: 640px; }
  .nav-item.is-open > .nav-link .caret { transform: rotate(180deg); }

  .submenu a { padding: .55rem .5rem; }
  .submenu a:hover { padding-left: .8rem; }

  /* Masaüstü sağ blok mobilde gizlenir, menü içine taşınır */
  .nav-actions { display: none; }

  .nav-menu > .nav-cta {
    display: block;
    margin-top: 1.5rem;
    border-bottom: 0;
  }

  .nav-menu > .nav-cta .btn { width: 100%; }

  body.nav-open { overflow: hidden; }
}

@media (max-width: 480px) {
  .brand img { height: 38px; }
  .btn-row .btn { width: 100%; }
  .hero-title { max-width: none; }
}
