/* ==========================================================================
   ATALAY MEKANİK — Ana Stil Dosyası
   Bursa · Endüstriyel Doğalgaz, Mekanik Tesisat ve İklimlendirme
   --------------------------------------------------------------------------
   TASARIM İLKELERİ (bilinçli kararlar — lütfen bozmayın)
     · Tema baştan sona KOYU. Sitede beyaz alan yoktur; zeminler açılış
       videosunun kendi renginden türetildi, geçiş kesintisiz olsun diye.
     · Marka yeşili YALNIZCA vurgu. Logodaki #056839 koyu zeminde kontrast
       veremediği için açılmış türevi (#35C57E) kullanılır.
     · Gölge yok, glow yok, gradyan yok. Derinlik saç teli çizgilerle kurulur.
     · Köşe yarıçapı en fazla 3px. Yuvarlak "pofuduk" kart yok.
     · Simgeler emoji değil; inc/icons.php içindeki 1.5px çizgi SVG'ler.
     · Başlıklar serif (Source Serif 4), gövde teknik sans (IBM Plex Sans),
       ölçüm/etiket/rakam ise mono (IBM Plex Mono) — mühendislik dosyası hissi.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TASARIM JETONLARI
   -------------------------------------------------------------------------- */
:root {
  /* --- KOYU TEMA ---------------------------------------------------------
     Site baştan sona koyu. Zeminler videonun kendi renginden (koyu yeşil-
     lacivert mermer) türetildi ki hero'dan gövdeye geçiş kesintisiz olsun.
     Beyaz alan yoktur; ayrımlar zemin tonu ve saç teli çizgilerle kurulur. */

  /* Zeminler — koyu merdiven */
  --paper:      #0C1311;   /* ana zemin, videonun ortalama tonu */
  --paper-2:    #101815;   /* dönüşümlü bant */
  --paper-3:    #16211D;   /* alan içi / girinti */
  --white:      #131C19;   /* eskiden beyaz olan yüzeyler (kart, form) */

  /* Daha da koyu bantlar */
  --steel:      #070C0B;
  --steel-2:    #0A100E;
  --steel-3:    #16211D;

  /* Mürekkep — koyu zeminde açık metin */
  --ink:        #EEF2F0;   /* ana metin */
  --ink-2:      #A8B4AF;   /* ikincil metin */
  --ink-3:      #8A9992;   /* soluk etiket — koyu zeminde 4.5:1 eşiğini geçecek kadar açık */
  --ink-invert: #EEF2F0;
  --ink-invert-2: #A8B4AF;

  /* Marka — koyu zeminde okunması için logodan açılmış türev.
     #056839 koyu zeminde kontrast veremiyordu (WCAG altı kalıyordu). */
  --brand:      #35C57E;
  --brand-ink:  #56D394;   /* koyu temada "hover" daha AÇIK olmalı */
  --brand-lift: #8FE3B6;
  --brand-wash: rgba(53,197,126,.10);

  /* Durum renkleri — koyu zemine göre */
  --warn:       #E0B457;
  --warn-wash:  rgba(224,180,87,.10);
  --danger:     #E8736A;
  --danger-wash:rgba(232,115,106,.10);

  /* Saç teli çizgiler — koyu zeminde açık, düşük opaklıkta */
  --rule:       rgba(255,255,255,.10);
  --rule-2:     rgba(255,255,255,.20);
  --rule-dark:  rgba(255,255,255,.14);

  /* Tipografi */
  --serif: "Source Serif 4", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  /* Ölçü */
  --radius: 3px;
  --gutter: 24px;
  --maxw: 1240px;
  --maxw-narrow: 760px;
  --header-h: 76px;

  /* Geçiş */
  --ease: cubic-bezier(.22,.61,.36,1);
  --t-fast: .18s var(--ease);
  --t: .32s var(--ease);
}

/* Tarayıcı arayüzü (kaydırma çubuğu, form denetimleri) de koyu olsun */
:root { color-scheme: dark; }

/* --------------------------------------------------------------------------
   2. TEMEL
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

/* --------------------------------------------------------------------------
   [hidden] HER ZAMAN GİZLER
   --------------------------------------------------------------------------
   Tarayıcının [hidden] için verdiği display:none, sınıfa yazdığımız
   display:flex/grid tarafından eziliyordu; bu yüzden gizli olması gereken
   öğeler (Caps Lock uyarısı, video durdurma düğmesi) görünüyordu.
   Tek bir yerde kesin olarak çözülür.
   -------------------------------------------------------------------------- */
[hidden] { display: none !important; }


html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--brand); color: #06120C; }

/* Klavye odağı — her zaman görünür */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--paper);
  padding: 14px 22px; font-size: .9rem; font-weight: 500;
}
.skip-link:focus { left: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--maxw-narrow); }

.ico { flex: none; vertical-align: middle; }

/* Yalnızca ekran okuyucu */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. TİPOGRAFİK ÖLÇEK
   -------------------------------------------------------------------------- */
.display  { font-size: clamp(2.6rem, 6.4vw, 4.6rem); line-height: 1.04; letter-spacing: -.022em; }
.h-xl     { font-size: clamp(2.1rem, 4.2vw, 3.1rem); line-height: 1.12; letter-spacing: -.018em; }
.h-lg     { font-size: clamp(1.55rem, 2.6vw, 2.05rem); line-height: 1.2; }
.h-md     { font-size: 1.24rem; line-height: 1.3; }

.lead {
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 62ch;
}

/* Mono etiket — bölüm numarası, teknik veri, göz kırpma metni */
.label {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.label-brand { color: var(--brand); }

/* Bölüm başlığı bloğu: "01 — Başlık" + saç teli ayraç */
.sec-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.15fr);
  gap: 20px 48px;
  align-items: end;
  padding-bottom: 28px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.sec-num {
  font-family: var(--serif);
  font-size: .95rem;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--brand);
  display: block;
  margin-bottom: 10px;
}
.sec-num::after { content: ""; display: inline-block; width: 26px; height: 1px; background: var(--rule-2); vertical-align: middle; margin-left: 10px; }

.section { padding: clamp(64px, 9vw, 118px) 0; }
.section-alt { background: var(--paper-2); }
.section-rule { border-top: 1px solid var(--rule); }

/* --------------------------------------------------------------------------
   4. DÜĞMELER
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans);
  font-size: .93rem; font-weight: 500; letter-spacing: .005em;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  line-height: 1;
  text-align: left;
}
.btn-primary { background: var(--brand); color: #06120C; font-weight: 600; }
.btn-primary:hover { background: var(--brand-ink); color: #06120C; }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--rule-2); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #0C1311; }

.btn-onDark { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-onDark:hover { background: #fff; color: #0C1311; border-color: #fff; }

.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* Metin bağlantısı — altı çizili, hover'da yeşil */
.link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .93rem; font-weight: 500;
  border-bottom: 1px solid var(--rule-2);
  padding-bottom: 2px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.link:hover { color: var(--brand); border-color: var(--brand); }
.link .ico { transition: transform var(--t-fast); }
.link:hover .ico { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(12,19,17,0);
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t), backdrop-filter var(--t);
}
/* Kaydırınca kâğıt zemine oturur (hero zaten açık renk olduğu için yazı hep koyu) */
.site-header.is-solid {
  background: rgba(9,15,13,.88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--rule);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; }
.brand img { height: 46px; width: auto; }
.brand-text {
  font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: -.01em;
}
/* Tema baştan sona koyu olduğu için menü her yerde açık renktedir.
   Logonun koyu tema sürümü (logo-light.png) zaten amblemi renkli,
   yazıyı beyaz taşıyor; bu yüzden filtreyle beyaza çevirMİYORUZ —
   çevirseydik markanın yeşil/mavi ayrımı kaybolurdu. */
.site-header .main-nav a { color: var(--ink-2); }
.site-header .main-nav a:hover,
.site-header .main-nav a[aria-current="page"] { color: var(--ink); }
.site-header .main-nav a[aria-current="page"]::after { transform: scaleX(1); background: var(--brand); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: .9rem; font-weight: 450; position: relative; padding: 4px 0;
  transition: color var(--t-fast);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-fast);
}
.main-nav a:hover::after, .main-nav a[aria-current="true"]::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .85rem; letter-spacing: .01em;
}
.site-header.is-solid .header-phone { color: var(--ink); }

.nav-toggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: none; border: 1px solid currentColor; border-radius: var(--radius);
  color: inherit; cursor: pointer; opacity: .8;
}
.nav-toggle:hover { opacity: 1; }

/* Mobil çekmece */
.mobile-nav {
  position: fixed; inset: 0; z-index: 95;
  background: var(--paper);
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
  padding: 20px var(--gutter) 40px;
  overflow-y: auto;
  visibility: hidden;
}
.mobile-nav.open { transform: translateY(0); visibility: visible; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; height: calc(var(--header-h) - 20px); }
.mobile-nav-head img { height: 42px; }
.mobile-nav nav { display: flex; flex-direction: column; margin-top: 24px; border-top: 1px solid var(--rule); }
.mobile-nav nav a {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--serif); font-size: 1.5rem;
  padding: 18px 0; border-bottom: 1px solid var(--rule);
}
.mobile-nav nav a .ico { color: var(--brand); }
.mobile-nav-foot { margin-top: 28px; display: grid; gap: 10px; }

/* --------------------------------------------------------------------------
   6. AÇILIŞ FİLMİ — KAYDIRDIKÇA OYNAR
   --------------------------------------------------------------------------
   .hero-scroll  yüksek kap; kaydırma mesafesini o verir
     .hero-stage yapışkan ekran; ekranda sabit kalır
   js/main.js kaydırma oranını videonun saniyesine çevirir. Otomatik
   oynatma yoktur: kaydırmazsanız görüntü de durur.
   -------------------------------------------------------------------------- */
.hero-scroll {
  position: relative;
  height: var(--hero-len, 460vh);
  background: var(--paper);
}

.hero-stage {
  position: sticky; top: 0;
  height: 100svh; min-height: 520px;
  overflow: hidden;
  background: #070D0B;
}

.hero-stage video,
.hero-stage .hero-still {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

/* Video hazır olana kadar duran kare */
.hero-stage .hero-still { transition: opacity .5s var(--ease); }
.hero-stage.video-ready .hero-still { opacity: 0; }

/* Sol karartma — yazının okunması için. Yazıyla birlikte açılıp kapanır. */
.hero-stage::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg,
    rgba(4,10,8,.88) 0%, rgba(4,10,8,.74) 26%,
    rgba(4,10,8,.36) 50%, rgba(4,10,8,0) 72%);
  opacity: 0; transition: opacity .7s var(--ease);
}
.hero-stage.copy-on::before { opacity: 1; }

/* Alt kenar — sayfanın gövdesine yumuşak geçiş */
.hero-stage::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 26%; z-index: 3;
  background: linear-gradient(180deg, rgba(12,19,17,0) 0%, var(--paper) 100%);
  pointer-events: none;
}

/* --- Video üzerindeki yazı --------------------------------------------
   Görünürlüğü kaydırma oranına bağlıdır: amblem kadrajın ortasındayken
   gizli, sağa geçtiğinde solda belirir. DOM'da her zaman durur, yalnızca
   opaklığı değişir; arama motorları H1'i her hâlükârda görür. */
.hero-copy {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center;
  pointer-events: none;
}
.hero-copy-inner {
  max-width: 47ch; color: #fff;
  opacity: 0; transform: translateY(16px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.hero-stage.copy-on .hero-copy-inner { opacity: 1; transform: none; }
.hero-copy-inner > * { pointer-events: auto; }

.hero-copy .hero-eyebrow { color: #fff; opacity: .8; margin-bottom: 20px; }
.hero-copy .hero-eyebrow::before { background: rgba(255,255,255,.55); }

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.06;
  letter-spacing: -.022em; margin-bottom: 20px;
  text-shadow: 0 1px 24px rgba(0,0,0,.4);
}
.hero-copy h1 .accent { font-style: italic; color: var(--brand-lift); }

.hero-copy p {
  font-size: clamp(.98rem, 1.2vw, 1.1rem);
  color: rgba(255,255,255,.86); max-width: 44ch; margin-bottom: 28px;
}
.hero-copy-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-copy-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,.42); }
.hero-copy-actions .btn-outline:hover { background: #fff; color: #0C1311; border-color: #fff; }

/* Kaydırma ipucu — ince bir çizgi, kaydırma başlayınca kaybolur */
.hero-scroll-cue {
  position: absolute; left: 50%; bottom: 30px; z-index: 4;
  transform: translateX(-50%);
  width: 1px; height: 46px; overflow: hidden;
  background: rgba(255,255,255,.22);
  transition: opacity var(--t);
}
.hero-scroll-cue::after {
  content: ""; position: absolute; inset: 0; background: #fff;
  animation: cue 2.4s var(--ease) infinite;
}
.hero-stage.scrolled .hero-scroll-cue { opacity: 0; }
@keyframes cue {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* Video indirme göstergesi — 5,3 MB indirilirken kullanıcı bekliyor olmasın */
.hero-load {
  position: absolute; left: 0; bottom: 0; height: 2px; z-index: 5;
  background: var(--brand); width: 0; transition: width .25s linear;
}

/* --------------------------------------------------------------------------
   6b. KÜNYE ŞERİDİ
   -------------------------------------------------------------------------- */
.intro { padding: 0; border-bottom: 1px solid var(--rule); background: var(--paper-2); }
.intro-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 0; }
.hero-spec { padding: 26px 28px 26px 0; border-right: 1px solid var(--rule); }
.hero-spec:last-child { border-right: 0; }
.hero-spec:not(:first-child) { padding-left: 28px; }
.hero-spec b {
  display: block;
  font-family: var(--serif); font-size: clamp(1.7rem, 2.4vw, 2.2rem); font-weight: 600;
  font-variant-numeric: lining-nums tabular-nums; line-height: 1; margin-bottom: 7px;
  color: var(--ink);
}
.hero-spec span {
  font-family: var(--mono); font-size: .67rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3);
}

/* --------------------------------------------------------------------------
   6c. ALT SAYFA BAŞLIĞI
   -------------------------------------------------------------------------- */
.page-hero {
  padding: calc(var(--header-h) + 72px) 0 56px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
}
.page-hero .label { margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero .lead { max-width: 60ch; }

/* --------------------------------------------------------------------------
   6d. ANA SAYFADAKİ SAYFA KAPILARI
   -------------------------------------------------------------------------- */
.gateway {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.gate {
  display: block;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 34px 32px 30px;
  transition: background var(--t-fast);
}
.gate:hover, .gate:focus-visible { background: var(--paper-2); }
.gate-ico { display: block; color: var(--brand); margin-bottom: 20px; }
.gate h3 { font-size: 1.3rem; margin-bottom: 12px; }
.gate p { font-size: .93rem; color: var(--ink-2); line-height: 1.6; margin-bottom: 18px; }
.gate-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3);
}
.gate:hover .gate-more { color: var(--brand); }
.gate:hover .gate-more .ico { transform: translateX(3px); }
.gate-more .ico { transition: transform var(--t-fast); }

/* --------------------------------------------------------------------------
   7. KAYDIRMA İLE BELİRME
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .07s; }
.reveal-d2 { transition-delay: .14s; }
.reveal-d3 { transition-delay: .21s; }

/* --------------------------------------------------------------------------
   8. HİZMETLER — saç teli ızgara
   -------------------------------------------------------------------------- */
.grid-rule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.grid-rule > * {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 36px 32px;
  background: transparent;
}

.svc { position: relative; transition: background var(--t-fast); cursor: pointer; }
.svc:hover, .svc:focus-visible { background: var(--white); }
.svc-ico { color: var(--brand); margin-bottom: 22px; }
.svc h3 { font-size: 1.3rem; margin-bottom: 14px; }
.svc ul { list-style: none; padding: 0; margin: 0 0 22px; }
.svc li {
  position: relative; padding-left: 18px; font-size: .93rem; color: var(--ink-2);
  line-height: 1.55; margin-bottom: 7px;
}
.svc li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 1px; background: var(--brand);
}
.svc-more { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
.svc:hover .svc-more { color: var(--brand); }
.svc.is-lead { background: var(--brand-wash); }
.svc.is-lead:hover { background: var(--white); }

/* --------------------------------------------------------------------------
   9. KURUCU / CEO
   -------------------------------------------------------------------------- */
.ceo { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(32px, 6vw, 88px); align-items: start; }
.ceo-portrait { position: relative; }
.ceo-portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(1) contrast(1.05); border-radius: var(--radius); }
.ceo-portrait figcaption {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--rule);
}
.ceo-name { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; display: block; }
.ceo-role { font-family: var(--mono); font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; color: var(--ink-3); }

.ceo-quote { position: relative; }
.ceo-quote .ico-quote { color: var(--brand); opacity: .32; margin-bottom: 20px; }
.ceo-quote blockquote {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.1vw, 1.72rem);
  line-height: 1.42;
  letter-spacing: -.012em;
}
.ceo-body { column-gap: 44px; }
.ceo-body p { color: var(--ink-2); font-size: .98rem; }
.ceo-sign { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--rule); display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.ceo-sign img { height: 56px; width: auto; opacity: .82; }

.ceo-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px,1fr)); gap: 1px; background: var(--rule); margin-top: 40px; border: 1px solid var(--rule); }
.ceo-fact { background: var(--paper); padding: 20px 18px; }
.ceo-fact b { display: block; font-family: var(--serif); font-size: 1.75rem; font-variant-numeric: lining-nums tabular-nums; line-height: 1; margin-bottom: 6px; }
.ceo-fact span { font-family: var(--mono); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.section-alt .ceo-fact { background: var(--paper-2); }

/* --------------------------------------------------------------------------
   10. SÜREÇ — yatay numaralı akış
   -------------------------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(228px,1fr)); gap: 0; border-top: 1px solid var(--rule); }
.process-step { padding: 34px 30px 34px 0; border-right: 1px solid var(--rule); position: relative; }
.process-step:last-child { border-right: 0; }
.process-step:not(:first-child) { padding-left: 30px; }
.process-step::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 42px; height: 2px; background: var(--brand);
}
.process-num { font-family: var(--serif); font-size: 2.5rem; font-variant-numeric: lining-nums; color: var(--rule-2); line-height: 1; display: block; margin-bottom: 18px; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { font-size: .91rem; color: var(--ink-2); line-height: 1.6; }

/* --------------------------------------------------------------------------
   11. BİREYSEL BÖLÜM
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: clamp(32px, 5.5vw, 78px); align-items: center; }
.split-visual { position: relative; }
.split-visual img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius); }
.split-badge {
  position: absolute; left: 0; bottom: 0;
  background: var(--paper); border: 1px solid var(--rule); border-left: 0; border-bottom: 0;
  padding: 18px 24px; display: flex; align-items: center; gap: 14px;
}
.split-badge .ico { color: var(--brand); }
.split-badge b { display: block; font-size: .95rem; font-weight: 600; }
.split-badge span { font-family: var(--mono); font-size: .67rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); }
.checklist { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 0; }
.checklist li {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 13px 0; border-bottom: 1px solid var(--rule);
  font-size: .95rem;
}
.checklist li:first-child { border-top: 1px solid var(--rule); }
.checklist .ico { color: var(--brand); margin-top: 2px; }

/* --------------------------------------------------------------------------
   12. ÜRÜNLER
   -------------------------------------------------------------------------- */
.tabs { display: flex; gap: 0; flex-wrap: wrap; border-bottom: 1px solid var(--rule); margin-bottom: 44px; }
.tab-btn {
  background: none; border: 0; border-bottom: 2px solid transparent;
  font-family: var(--sans); font-size: .93rem; font-weight: 500; color: var(--ink-3);
  padding: 14px 22px 14px 0; margin-right: 26px; margin-bottom: -1px;
  cursor: pointer; transition: color var(--t-fast), border-color var(--t-fast);
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { color: var(--ink); border-bottom-color: var(--brand); }


.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.product {
  background: var(--paper); padding: 0 0 24px; cursor: pointer;
  transition: background var(--t-fast);
}
.section-alt .product { background: var(--paper-2); }
.product:hover, .section-alt .product:hover { background: var(--white); }
.product img { width: 100%; aspect-ratio: 4/3; object-fit: cover; margin-bottom: 20px; }
.product-body { padding: 0 22px; }
.product h4 { font-size: 1.08rem; margin-bottom: 5px; }
.product p { font-size: .87rem; color: var(--ink-3); margin: 0; }
.product-price { font-family: var(--mono); font-size: .88rem; color: var(--brand); margin-top: 10px; font-weight: 500; }

/* --------------------------------------------------------------------------
   13. REFERANSLAR
   -------------------------------------------------------------------------- */
.refs { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.ref {
  background: var(--paper); padding: 26px 24px; cursor: pointer; min-height: 190px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background var(--t-fast);
}
.section-alt .ref { background: var(--paper-2); }
.ref:hover, .section-alt .ref:hover { background: var(--white); }
.ref img { height: 54px; width: auto; max-width: 150px; object-fit: contain; object-position: left; filter: grayscale(1); opacity: .74; transition: filter var(--t-fast), opacity var(--t-fast); margin-bottom: 22px; }
.ref:hover img { filter: none; opacity: 1; }
.ref h4 { font-size: 1.02rem; line-height: 1.32; }
.ref-more { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: 12px; display: flex; align-items: center; gap: 6px; }
.ref:hover .ref-more { color: var(--brand); }

/* --------------------------------------------------------------------------
   14. BELGELER / YETKİLER
   -------------------------------------------------------------------------- */
.certs { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.cert { background: var(--paper); padding: 26px 22px; display: flex; flex-direction: column; gap: 12px; }
.section-alt .cert { background: var(--paper-2); }
.cert .ico { color: var(--brand); }
.cert b { font-size: .97rem; font-weight: 600; }
.cert span { font-family: var(--mono); font-size: .7rem; letter-spacing: .07em; color: var(--ink-3); }

/* --------------------------------------------------------------------------
   15. BLOG
   -------------------------------------------------------------------------- */
.posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 0; border-top: 1px solid var(--rule); }
.post {
  padding: 32px 34px 32px 0; border-right: 1px solid var(--rule); cursor: pointer;
  transition: opacity var(--t-fast);
}
.post:last-child { border-right: 0; }
.post:not(:first-child) { padding-left: 34px; }
.post:hover { opacity: .62; }
.post h3 { font-size: 1.2rem; margin-bottom: 12px; }
.post p { font-size: .92rem; color: var(--ink-2); }
.post-more { font-family: var(--mono); font-size: .69rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); display: flex; align-items: center; gap: 6px; }

/* --------------------------------------------------------------------------
   16. S.S.S.
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 26px 0; text-align: left;
  font-family: var(--serif); font-size: clamp(1.05rem, 1.7vw, 1.25rem); font-weight: 600; color: var(--ink);
  line-height: 1.35;
}
.faq-q .ico { color: var(--brand); margin-top: 3px; transition: transform var(--t); }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { overflow: hidden; height: 0; transition: height var(--t); }
.faq-a-inner { padding: 0 0 28px; max-width: 72ch; }
.faq-a p { color: var(--ink-2); font-size: .97rem; }

/* --------------------------------------------------------------------------
   17. İLETİŞİM + TEKLİF FORMU
   -------------------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(32px, 5vw, 74px); align-items: start; }

.contact-list { border-top: 1px solid var(--rule); }
.contact-row { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--rule); }
.contact-row .ico { color: var(--brand); margin-top: 3px; flex: none; }
.contact-row h3 { font-family: var(--mono); font-size: .71rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.contact-row a, .contact-row p { display: block; font-size: 1rem; margin: 0 0 4px; }
.contact-row a:hover { color: var(--brand); }
.contact-row .mono { font-family: var(--mono); font-size: .97rem; }

.form-card { background: var(--white); border: 1px solid var(--rule); padding: clamp(26px, 3.4vw, 40px); border-radius: var(--radius); }
.form-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.form-card > .lead { font-size: .93rem; margin-bottom: 30px; }

.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--mono); font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.field .req { color: var(--brand); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: .97rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--rule-2); border-radius: var(--radius);
  padding: 13px 14px; transition: border-color var(--t-fast), background var(--t-fast);
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: var(--white); }
.field input:disabled { opacity: .55; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 0 18px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field-msg { font-size: .82rem; color: var(--danger); margin-top: 6px; display: none; }
.field.has-error .field-msg { display: block; }

/* Bal küpü — insan görmez, bot doldurur */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

/* KVKK onay kutusu */
.consent {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 16px 18px; margin-bottom: 20px;
}
.consent input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px; flex: none; margin: 1px 0 0;
  border: 1px solid var(--rule-2); border-radius: 2px; background: var(--white); cursor: pointer;
  display: grid; place-content: center; transition: background var(--t-fast), border-color var(--t-fast);
}
.consent input[type="checkbox"]::after {
  content: ""; width: 10px; height: 6px; border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0); transition: transform var(--t-fast);
}
.consent input[type="checkbox"]:checked { background: var(--brand); border-color: var(--brand); }
.consent input[type="checkbox"]:checked::after { transform: rotate(-45deg) scale(1); }
.consent label { font-size: .85rem; line-height: 1.55; color: var(--ink-2); cursor: pointer; }
.consent a { color: var(--brand); border-bottom: 1px solid currentColor; }
.consent.has-error { border-color: var(--danger); background: var(--danger-wash); }

.form-note { font-size: .8rem; color: var(--ink-3); margin-top: 16px; line-height: 1.55; }
.form-status { padding: 14px 16px; border-radius: var(--radius); font-size: .9rem; margin-bottom: 20px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: var(--brand-wash); color: var(--brand-ink); border: 1px solid #C9DED2; }
.form-status.err { background: var(--danger-wash); color: var(--danger); border: 1px solid #F0D3D1; }

.form-success { text-align: center; padding: 30px 10px; }
.form-success .ico { color: var(--brand); margin: 0 auto 18px; }
.form-success h3 { margin-bottom: 10px; }

/* Alternatif kanallar */
.contact-alt { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; padding-top: 20px; border-top: 1px solid var(--rule); }

/* Harita */
.map-wrap { margin-top: 54px; border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; background: var(--paper-3); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(1) contrast(1.05); }

/* --------------------------------------------------------------------------
   18. KOYU KAPANIŞ BANDI (CTA)
   -------------------------------------------------------------------------- */
.cta-band { background: var(--steel); color: var(--ink-invert); padding: clamp(56px, 7vw, 92px) 0; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band .lead { color: var(--ink-invert-2); margin-bottom: 32px; }
.cta-inner { display: grid; grid-template-columns: minmax(0,1.2fr) auto; gap: 40px; align-items: center; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--steel); color: var(--ink-invert-2); padding: clamp(52px, 6vw, 78px) 0 0; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0,1.5fr) repeat(auto-fit, minmax(150px,1fr)); gap: 44px; padding-bottom: 52px; }
.footer-brand img { height: 46px; width: auto; opacity: .92; margin-bottom: 20px; }
.footer-brand p { max-width: 42ch; line-height: 1.7; font-size: .89rem; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px; display: grid; place-content: center;
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.footer-social a:hover { background: #fff; color: #0C1311; border-color: #fff; }

.site-footer h4 { font-family: var(--mono); font-size: .7rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; padding: 5px 0; transition: color var(--t-fast); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.13); padding: 24px 0 30px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.5);
}
.footer-legal { display: flex; gap: 4px 20px; flex-wrap: wrap; }
/* Dokunma hedefi en az 24px yüksekliğinde olmalı (WCAG 2.5.8).
   Ölçtük: bu bağlantılar 22px kalıyordu, parmakla ıskalanıyordu. */
.footer-legal a { display: inline-flex; align-items: center; gap: 6px; min-height: 26px; padding: 2px 0; }
.footer-legal a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   20. SABİT ÖĞELER
   -------------------------------------------------------------------------- */
.fab-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--brand); color: #fff; display: grid; place-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.fab-wa:hover { background: var(--brand-ink); transform: translateY(-2px); }

.to-top {
  position: fixed; right: 22px; bottom: 86px; z-index: 70;
  width: 42px; height: 42px; border-radius: var(--radius);
  background: var(--white); color: var(--ink); border: 1px solid var(--rule-2);
  display: grid; place-content: center; cursor: pointer;
  opacity: 0; pointer-events: none; transition: opacity var(--t), background var(--t-fast);
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* --------------------------------------------------------------------------
   21. DETAY PENCERESİ (ürün / referans / blog / hizmet)
   -------------------------------------------------------------------------- */
.sheet-back {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(20,23,28,.55);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity var(--t), visibility var(--t);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.sheet-back.open { opacity: 1; visibility: visible; }
.sheet {
  background: var(--paper); width: 100%; max-width: 660px; max-height: 86vh;
  border-radius: var(--radius); display: flex; flex-direction: column;
  transform: translateY(14px); transition: transform var(--t);
  border: 1px solid var(--rule);
}
.sheet-back.open .sheet { transform: none; }
.sheet-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 26px 28px 20px; border-bottom: 1px solid var(--rule);
}
.sheet-head h3 { font-size: 1.42rem; }
.sheet-x {
  background: none; border: 1px solid var(--rule-2); border-radius: var(--radius);
  width: 38px; height: 38px; display: grid; place-content: center; cursor: pointer; flex: none;
  color: var(--ink-2); transition: background var(--t-fast), color var(--t-fast);
}
.sheet-x:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.sheet-body { padding: 26px 28px 30px; overflow-y: auto; }
.sheet-body p { color: var(--ink-2); }
.sheet-body ul { list-style: none; padding: 0; margin: 0; }
.sheet-body li { position: relative; padding-left: 20px; margin-bottom: 10px; color: var(--ink-2); font-size: .95rem; }
.sheet-body li::before { content: ""; position: absolute; left: 0; top: .68em; width: 8px; height: 1px; background: var(--brand); }
.sheet-body h4 { font-family: var(--mono); font-size: .71rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin: 24px 0 14px; font-weight: 500; }
.sheet-body h4:first-child { margin-top: 0; }
.sheet-foot { padding: 20px 28px; border-top: 1px solid var(--rule); display: flex; gap: 10px; flex-wrap: wrap; }
body.sheet-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   22. ÇEREZ ONAYI (KVKK)
   -------------------------------------------------------------------------- */
.cookie {
  position: fixed; left: 22px; bottom: 22px; z-index: 130;
  width: min(430px, calc(100vw - 44px));
  background: var(--white); border: 1px solid var(--rule-2); border-radius: var(--radius);
  padding: 24px; font-size: .87rem; line-height: 1.6;
  transform: translateY(18px); opacity: 0; visibility: hidden;
  transition: transform var(--t), opacity var(--t), visibility var(--t);
}
.cookie.show { transform: none; opacity: 1; visibility: visible; }
.cookie h4 { font-family: var(--serif); font-size: 1.08rem; font-weight: 600; margin-bottom: 8px; letter-spacing: 0; text-transform: none; color: var(--ink); }
.cookie p { color: var(--ink-2); margin-bottom: 16px; }
.cookie a { color: var(--brand); border-bottom: 1px solid currentColor; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 18px; font-size: .86rem; }
.cookie-detail { border-top: 1px solid var(--rule); margin-top: 16px; padding-top: 16px; display: none; }
.cookie-detail.show { display: block; }
.cookie-opt { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--rule); }
.cookie-opt:last-child { border-bottom: 0; }
.cookie-opt input { margin-top: 3px; accent-color: var(--brand); width: 17px; height: 17px; }
.cookie-opt b { display: block; font-size: .87rem; }
.cookie-opt span { font-size: .78rem; color: var(--ink-3); }
/* Bağımsız bir düğme olduğu için 24px asgari dokunma hedefini karşılamalı;
   ölçümde 15px kalıyordu. */
.cookie-toggle {
  background: none; border: 0; color: var(--ink-3);
  font-family: var(--mono); font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; cursor: pointer;
  padding: 6px 0; margin-top: 8px; min-height: 28px; display: inline-flex; align-items: center;
}
.cookie-toggle:hover { color: var(--brand); }

/* --------------------------------------------------------------------------
   23. YASAL METİN SAYFALARI
   -------------------------------------------------------------------------- */
.legal-hero { padding: calc(var(--header-h) + 64px) 0 52px; border-bottom: 1px solid var(--rule); }
.legal-body { padding: 60px 0 100px; }
.legal-body h2 { font-size: 1.42rem; margin: 46px 0 16px; padding-top: 26px; border-top: 1px solid var(--rule); }
.legal-body h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-body h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.legal-body p, .legal-body li { color: var(--ink-2); font-size: .97rem; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin: 0 0 18px; }
.legal-body li { margin-bottom: 8px; }
.legal-body table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: .9rem; }
.legal-body th, .legal-body td { text-align: left; padding: 12px 14px; border: 1px solid var(--rule); vertical-align: top; }
.legal-body th { background: var(--paper-2); font-family: var(--mono); font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; font-weight: 500; color: var(--ink-2); }
.legal-toc { background: var(--paper-2); border: 1px solid var(--rule); border-radius: var(--radius); padding: 24px 26px; margin-bottom: 44px; }
.legal-toc ol { margin: 0; padding-left: 20px; }
.legal-toc li { margin-bottom: 6px; font-size: .93rem; }
.legal-toc a:hover { color: var(--brand); }
.legal-meta { font-family: var(--mono); font-size: .75rem; color: var(--ink-3); letter-spacing: .04em; }

/* Yasal sayfalarda header her zaman katı zeminli */
body.page-inner { padding-top: 0; }

/* --------------------------------------------------------------------------
   24. 404
   -------------------------------------------------------------------------- */
.err-page { min-height: 78vh; display: flex; align-items: center; padding: calc(var(--header-h) + 40px) 0 80px; }
.err-code { font-family: var(--serif); font-size: clamp(5rem, 16vw, 11rem); line-height: .88; color: var(--rule-2); font-variant-numeric: lining-nums; }

/* --------------------------------------------------------------------------
   25. DUYARLI DÜZEN
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .ceo, .contact { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .sec-head { grid-template-columns: 1fr; align-items: start; }
  .posts, .process { grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); }
}

@media (max-width: 900px) {
  .main-nav, .header-cta .header-phone { display: none; }
  .nav-toggle { display: flex; }

  /* --- MOBİL AÇILIŞ ---
     Mobilde video yok, fotoğraf var. Yazıyı fotoğrafın ÜSTÜNE koymuyoruz:
     ölçtük, amblem y 298-425 aralığında duruyor ve yazı bloğu y 248-669'u
     kapladığı için amblem tamamen yazının arkasında kalıyordu — yani
     "mobilde fotoğraf" isteği fiilen boşa çıkıyordu.

     Bunun yerine fotoğraf kendi bandında tam görünür, yazı hemen altında
     koyu zeminde durur. Hem amblem net görünür hem metin kesin okunur. */
  .hero-scroll { height: auto !important; }
  .hero-stage {
    position: static; height: auto; min-height: 0; max-height: none;
    display: block; overflow: visible;
  }
  .hero-stage .hero-still {
    position: relative; height: 56svh; min-height: 300px; max-height: 460px;
    object-position: center 46%;   /* amblemi bandın ortasına getirir */
  }
  .hero-stage video { display: none; }

  /* Karartma yalnızca bandın alt kenarında — geçiş yumuşasın diye,
     amblemin üstünü kapatmadan. */
  .hero-stage::before {
    opacity: 1; inset: auto 0 0 0; height: 0;   /* aşağıda hero-still üzerinden verilir */
    background: none;
  }
  /* Fotoğrafın alt kenarındaki yumuşak geçiş */
  .logo3d-wrap, .hero-scroll-cue { display: none; }
  .hero-stage .hero-still + video + .hero-copy { position: relative; }
  .hero-stage { position: relative; }
  .hero-stage .hero-still { display: block; }
  .hero-stage::after { display: none; }

  .hero-copy {
    position: static; display: block; padding: 26px 0 8px;
    background: var(--paper);
  }
  .hero-copy-inner { opacity: 1; transform: none; max-width: none; }
  .hero-copy h1 { text-shadow: none; }
  .hero-copy-actions .btn { flex: 1 1 auto; justify-content: center; }
  .intro-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-spec { padding: 20px 16px 20px 0 !important; border-bottom: 1px solid var(--rule); }
  .hero-spec:nth-child(2n) { border-right: 0; padding-left: 16px !important; }
}

@media (max-width: 560px) {
  /* "Keşif Talebi" düğmesi mobil menüde zaten var; başlıkta yer kaplamasın. */
  .header-cta .btn-primary { display: none; }
  .brand img { height: 38px !important; }
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; --gutter: 18px; }
  /* Yükseklik 900px bloğunda height:auto yapıldı; burada TEKRAR sabitlemiyoruz —
     aksi hâlde yazı bloğu taşıp overflow:hidden ile kırpılıyordu. */
  .hero-scroll-cue { display: none; }
  .hero-copy h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .hero-copy p { font-size: .97rem; }
  .grid-rule > *, .process-step, .post { padding-left: 0 !important; padding-right: 0 !important; }
  .grid-rule { border-left: 0; }
  .grid-rule > * { border-right: 0; padding: 28px 0; }
  .process-step, .post { border-right: 0; border-bottom: 1px solid var(--rule); }
  .process-step:last-child, .post:last-child { border-bottom: 0; }
  .split-badge { position: static; border: 1px solid var(--rule); border-top: 0; }
  .footer-grid { gap: 34px; }
  .cookie { left: 12px; right: 12px; bottom: 12px; width: auto; padding: 20px; }
  .fab-wa { right: 14px; bottom: 14px; }
  .to-top { right: 14px; bottom: 78px; }
  .sheet-back { padding: 0; align-items: flex-end; }
  .sheet { max-width: none; max-height: 90vh; border-radius: var(--radius) var(--radius) 0 0; }
}

/* --------------------------------------------------------------------------
   26. HAREKET AZALTMA / YAZDIRMA
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  /* Hareket azaltma tercihinde video oynatılmaz; sabit kare kalır. */
  .hero-film video { display: none; }
  .hero-film .hero-still { opacity: 1 !important; }
  .hero-scroll-cue::after { animation: none; }
}

@media print {
  .site-header, .mobile-nav, .fab-wa, .to-top, .cookie, .sheet-back, .hero-film { display: none !important; }
  body { background: #fff; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; color: #666; }
}

/* Yüksek kontrast tercihi */
@media (prefers-contrast: more) {
  :root { --ink-2: #2A2F36; --ink-3: #545A62; --rule: #C8C8C0; --rule-2: #A8A8A0; }
}
