@charset "UTF-8";
/* =========================================================================
   ZT İş Güvenliği — Ana Sayfa
   Mimari : Bootstrap 5 (grid/offcanvas altyapı) + tamamen özel tasarım katmanı
   Yöntem : Mobile-first. Tüm medya sorguları min-width.
   ========================================================================= */

@import url("../fonts/fonts.css");

/* =========================================================
   1. TASARIM TOKENLARI
   ========================================================= */
:root {
  /* Renk */
  --navy-900: #061a30;
  --navy-800: #0a2540;
  --navy-700: #12304f;
  --navy-600: #1b3e63;
  --orange:   #e8590c;
  --orange-600:#d24e06;
  --orange-700:#b84305;
  --cream:    #faf8f5;
  --surface:  #ffffff;
  --muted:    #f7f7f5;
  --line:     #e7e6e1;
  --line-2:   #efeeea;
  --ink:      #0a2540;
  --ink-2:    #59636f;
  --ink-3:    #6e7885;      /* WCAG AA: küçük metinlerde 4.6:1 kontrast */
  --on-dark:  rgba(255,255,255,.78);
  --on-dark-2:rgba(255,255,255,.60);
  --line-dark:rgba(255,255,255,.14);

  /* Tipografi */
  --f-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --f-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Ölçü */
  --gutter: 16px;
  --container-max: 1240px;
  --radius: 4px;
  --radius-lg: 6px;
  --header-h: 58px;

  /* Bölüm boşluğu */
  --sec-y: 40px;

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

  /* Tam kenar taşması (sağa akan görseller için) */
  --bleed: calc(-1 * max(0px, (100vw - var(--container-max)) / 2));
}

@media (min-width: 576px) { :root { --gutter: 24px; --sec-y: 52px; --header-h: 64px; } }
@media (min-width: 768px) { :root { --sec-y: 60px; } }
@media (min-width: 992px) { :root { --sec-y: 68px; --header-h: 76px; } }
@media (min-width: 1200px){ :root { --gutter: 28px; --sec-y: 76px; } }
@media (min-width: 1400px){ :root { --container-max: 1320px; } }

/* =========================================================
   2. TEMEL / RESET KATMANI
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--surface);
  overflow-x: hidden;           /* güvenlik ağı: hiçbir koşulda yatay scroll yok */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 992px) { body { font-size: 16px; } }

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

h1, h2, h3, h4 {
  font-family: var(--f-head);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.015em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }

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

button { font: inherit; color: inherit; }

/* Odak görünürlüğü (erişilebilirlik) */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}
.footer :focus-visible,
.ctaband :focus-visible,
.quote :focus-visible,
.mobilenav :focus-visible { outline-color: #ff8f4d; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--navy-800); color: #fff;
  padding: 10px 18px; border-radius: var(--radius);
  font-family: var(--f-head); font-weight: 500; font-size: 14px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.ico { width: 1em; height: 1em; flex: none; fill: none; stroke: currentColor; }

/* Kelime kırılması güvenliği — uzun Türkçe başlıklar için */
h1, h2, h3, h4, p, li, a, span, label { overflow-wrap: break-word; }

/* =========================================================
   3. LAYOUT — Container (Bootstrap .container üzerine yazılır)
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--sec-y); }
.section--tight { padding-block: calc(var(--sec-y) * .78); }
.section--flush { padding-block: calc(var(--sec-y) * .5); }

/* Bölüm başlığı */
.sec-head { margin-bottom: 20px; }
.sec-title {
  font-size: clamp(21px, 4.4vw, 32px);
  line-height: 1.18;
  font-weight: 600;
}
.sec-head--split {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 8px 16px; flex-wrap: wrap;
}
.sec-eyebrow {
  display: block;
  font-family: var(--f-head); font-size: 11.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 7px;
}
.sec-sub {
  margin-top: 10px; max-width: 62ch;
  font-size: 14.5px; line-height: 1.6; color: var(--ink-2);
}
@media (min-width: 992px) { .sec-sub { font-size: 15.5px; } }
.sec-link {
  font-family: var(--f-head); font-size: 14px; font-weight: 500;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding-block: 6px;   /* dokunma hedefi */
  transition: color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.sec-link .ico { width: 16px; height: 16px; }
.sec-link:hover { color: var(--orange); gap: 12px; }

@media (min-width: 768px) { .sec-head { margin-bottom: 26px; } }

/* =========================================================
   3b. BREADCRUMB (tüm iç sayfalarda ortak)
   ========================================================= */
.crumbs {
  background: var(--muted);
  border-bottom: 1px solid var(--line-2);
}
.crumbs__list {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 4px 6px;
  padding-block: 12px;
  font-size: 12.5px;
}
.crumbs__list li { display: inline-flex; align-items: center; gap: 6px; min-width: 0; }
.crumbs__list li + li::before {
  content: ""; flex: none;
  width: 5px; height: 5px; margin-right: 2px;
  border-right: 1.4px solid var(--ink-3);
  border-top: 1.4px solid var(--ink-3);
  transform: rotate(45deg);
}
.crumbs__list a {
  color: var(--ink-2);
  display: inline-flex; align-items: center; min-height: 32px; padding-block: 6px;
  transition: color var(--dur) var(--ease);
}
.crumbs__list a:hover { color: var(--orange); }
.crumbs__list [aria-current] {
  color: var(--navy-800); font-weight: 500;
  /* uzun ürün adı dar ekranda taşmasın */
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%;
}

/* Dar ekranda ara adımlar gizlenir: sadece bir üst kategori + mevcut sayfa.
   Ekran okuyucu için tam yol DOM'da duruyor. */
@media (max-width: 575.98px) {
  .crumbs__list { flex-wrap: nowrap; }
  .crumbs__list li:nth-child(1),
  .crumbs__list li:nth-child(2) { display: none; }
  .crumbs__list li:nth-child(3)::before {
    transform: rotate(-135deg); margin-right: 4px;
  }
}
@media (min-width: 768px) { .crumbs__list { padding-block: 14px; font-size: 13px; } }

/* =========================================================
   4. BUTONLAR
   ========================================================= */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  min-height: 48px;                     /* dokunma hedefi */
  padding: 12px 24px;
  font-family: var(--f-head);
  font-size: 15px; font-weight: 600; line-height: 1.2;
  letter-spacing: -.005em;
  text-align: center;
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  --btn-bg: var(--orange); --btn-fg: #fff; --btn-bd: var(--orange);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.btn-primary:hover, .btn-primary:focus-visible {
  --btn-bg: var(--orange-600); --btn-bd: var(--orange-600); color: #fff;
}

.btn-ghost {
  --btn-fg: var(--ink); --btn-bd: #c9cbc7; --btn-bg: transparent;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  --btn-bd: var(--navy-800); --btn-bg: var(--navy-800); --btn-fg: #fff;
}

.btn-outline-light {
  --btn-fg: #fff; --btn-bd: rgba(255,255,255,.45); --btn-bg: transparent;
}
.btn-outline-light:hover, .btn-outline-light:focus-visible {
  --btn-bg: #fff; --btn-fg: var(--navy-800); --btn-bd: #fff;
}

.btn-sm { min-height: 40px; padding: 9px 20px; font-size: 14px; }
.btn-block { width: 100%; }

@media (min-width: 992px) {
  .btn { font-size: 15px; padding: 13px 26px; }
  .btn-sm { min-height: 42px; padding: 10px 22px; }
}

/* =========================================================
   5. MARKA (logo)
   ========================================================= */
/* Logo: şeffaf PNG, çevresindeki boş alan kırpıldı (548×162 = 3.38:1),
   böylece verilen yükseklik doğrudan görünür logo yüksekliği oluyor. */
.brand { display: inline-flex; align-items: center; gap: 8px; }
.brand img { width: auto; height: 34px; }
.site-header .brand { padding-block: 7px; }   /* ≥44px dokunma hedefi */
.mobilenav__head .brand img { height: 34px; }
.brand--footer img { height: 50px; margin-bottom: 4px; }

@media (min-width: 400px) { .brand img { height: 37px; } }
@media (min-width: 576px) { .brand img { height: 40px; } .brand--footer img { height: 54px; } }
@media (min-width: 992px) {
  .brand img { height: 46px; }
  .site-header .brand { padding-block: 10px; }
  .brand--footer img { height: 58px; }
}
@media (min-width: 1400px) { .brand img { height: 50px; } .brand--footer img { height: 60px; } }

/* Görsel yüklenemezse devreye giren yazı tabanlı yedek */
.brand__mark {
  font-family: var(--f-head); font-weight: 700;
  font-size: 26px; line-height: 1; letter-spacing: -.02em;
  color: var(--navy-800);
  position: relative;
}
.brand__mark::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px;
  height: 3px; background: var(--orange); border-radius: 1px;
  transform: scaleX(0); transform-origin: left; opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
a.brand:hover .brand__mark::after { transform: scaleX(1); opacity: 1; }
.brand__text {
  font-family: var(--f-head); font-weight: 500;
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
}
.brand--light .brand__mark { color: #fff; }
.brand--light .brand__text { color: var(--on-dark-2); }

@media (min-width: 576px) { .brand__mark { font-size: 29px; } .brand__text { font-size: 11px; } }
@media (min-width: 992px) { .brand__mark { font-size: 32px; } .brand__text { font-size: 11.5px; } }

/* =========================================================
   6. TOP BAR
   ========================================================= */
.topbar { display: none; background: var(--navy-900); color: var(--on-dark); }
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 40px;
}
.topbar__nav { display: flex; gap: 26px; }
.topbar__nav a,
.topbar__contact a {
  font-size: 12.5px; letter-spacing: .01em; color: var(--on-dark);
  transition: color var(--dur) var(--ease);
}
.topbar__nav a:hover, .topbar__contact a:hover { color: #fff; }
.topbar__contact { display: flex; align-items: center; gap: 18px; }
.topbar__contact a { display: inline-flex; align-items: center; gap: 8px; }
.topbar__contact .ico { width: 15px; height: 15px; }
.topbar__sep { width: 1px; height: 16px; background: var(--line-dark); }

@media (min-width: 992px) { .topbar { display: block; } }

/* =========================================================
   7. HEADER + NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 1030;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 24px -12px rgba(6,26,48,.28); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: var(--header-h);
}
.site-header__actions { display: flex; align-items: center; gap: 10px; }

.mainnav { display: none; }
.mainnav ul { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 30px); }
.mainnav a {
  font-family: var(--f-head); font-size: 14px; font-weight: 500;
  color: var(--ink); white-space: nowrap; position: relative;
  padding-block: 6px;
  transition: color var(--dur) var(--ease);
}
.mainnav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: center;
  transition: transform var(--dur) var(--ease);
}
.mainnav a:hover, .mainnav a.is-active { color: var(--navy-800); }
.mainnav a:hover::after, .mainnav a.is-active::after { transform: scaleX(1); }

@media (min-width: 992px) { .mainnav { display: block; } }
@media (min-width: 1200px) { .mainnav a { font-size: 15px; } }

/* Hamburger */
.navtoggle {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--line); border-radius: var(--radius);
  cursor: pointer; transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.navtoggle:hover { border-color: var(--navy-800); }
.navtoggle__bars { display: block; width: 21px; height: 14px; position: relative; }
.navtoggle__bars i {
  position: absolute; left: 0; right: 0; height: 2px; border-radius: 2px;
  background: var(--navy-800); transition: transform .32s var(--ease), opacity .2s var(--ease);
}
.navtoggle__bars i:nth-child(1) { top: 0; }
.navtoggle__bars i:nth-child(2) { top: 6px; }
.navtoggle__bars i:nth-child(3) { top: 12px; }
.navtoggle[aria-expanded="true"] .navtoggle__bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navtoggle[aria-expanded="true"] .navtoggle__bars i:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] .navtoggle__bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   8. MOBİL MENÜ (offcanvas)
   ========================================================= */
.mobilenav {
  --bs-offcanvas-width: min(88vw, 380px);
  width: var(--bs-offcanvas-width);
  max-width: 100vw;
  background: var(--navy-800);
  color: #fff;
  border: 0;
}
.mobilenav__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--line-dark);
  min-height: var(--header-h);
}
.mobilenav__close {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--line-dark);
  border-radius: var(--radius); color: #fff; cursor: pointer;
  transition: background-color var(--dur) var(--ease);
}
.mobilenav__close:hover { background: rgba(255,255,255,.08); }
.mobilenav__close svg { width: 20px; height: 20px; }
.mobilenav__body {
  padding: 8px var(--gutter) calc(28px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column;
}
.mobilenav__list { margin-bottom: 22px; }
.mobilenav__list li + li { border-top: 1px solid var(--line-dark); }
.mobilenav__list a {
  display: flex; align-items: center; min-height: 54px;
  font-family: var(--f-head); font-size: 16px; font-weight: 500; color: #fff;
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.mobilenav__list a:hover, .mobilenav__list a:active { color: #ff9a5c; padding-left: 6px; }
.mobilenav__cta { margin-bottom: 24px; }
.mobilenav__contact { display: grid; gap: 12px; }
.mobilenav__contact a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--on-dark); min-height: 32px;
}
.mobilenav__contact .ico { width: 17px; height: 17px; color: var(--orange); }
.offcanvas-backdrop.show { opacity: .55; }

/* =========================================================
   9. HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-2);
  /* Fotoğrafın beton zemini ile birebir buluşan sıcak krem geçiş.
     Görselin sol kenarı maskeyle bunun içinde eriyor — sert dikdörtgen kenar yok. */
  background:
    linear-gradient(100deg,
      #fdfcfa 0%,
      var(--cream) 34%,
      #f4efe7 62%,
      #ece5da 88%,
      #e7dfd3 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(130% 100% at 8% 0%, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 58%),
    radial-gradient(80% 70% at 96% 108%, rgba(10,37,64,.07) 0%, rgba(10,37,64,0) 72%);
}
.hero__inner { position: relative; z-index: 1; padding-block: 28px 0; }
.hero__copy { position: relative; z-index: 2; }

.hero__title {
  font-size: clamp(27px, 3.2vw + 12px, 50px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--navy-800);
  margin-bottom: 14px;
  text-wrap: pretty;
}
.hero__title span { display: block; }
.hero__lead {
  font-size: clamp(14.5px, 1.1vw + 11px, 17px);
  line-height: 1.62;
  color: var(--ink-2);
  max-width: 34ch;
  margin-bottom: 22px;
}
/* Butonlar içeriğe göre daralır — mockup'taki gibi sola yaslı,
   böylece sağdaki ürün görseliyle asla çakışmaz. */
.hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.hero__actions .btn { width: auto; max-width: 100%; }

/* Hero güven satırı — somut vaatler, rakam uydurmadan */
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  margin-top: 22px;
}
.hero__trust li {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; line-height: 1.35; color: var(--ink-2);
}
.hero__trust .ico { width: 15px; height: 15px; color: var(--orange); stroke-width: 2.6; }

@media (min-width: 992px) {
  .hero__trust { margin-top: 28px; gap: 10px 24px; }
  .hero__trust li { font-size: 13.5px; }
}

.hero__media { position: relative; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 52% 58%;
  user-select: none; -webkit-user-drag: none;
}

/* --- 0–359px: butonlara yer kalmadığı için ürün alta iner -------------------
   Bu kadar dar ekranda yan yana düzen butonu iki satıra kırardı.            */
@media (max-width: 359.98px) {
  .hero__inner { padding-bottom: 0; }
  .hero__media {
    margin: 22px calc(-1 * var(--gutter)) 0;
    aspect-ratio: 4 / 3;
  }
  .hero__media img {
    object-position: 50% 64%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.55) 8%, #000 26%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.55) 8%, #000 26%);
  }
}

/* --- 360–767px: mockup'taki telefon düzeni ---------------------------------
   Metin ve butonlar solda, ürün fotoğrafı sağ-altta, sağ kenardan taşarak.
   Sol ve üst kenarları çift maskeyle krem zemine eriyor: kutu kenarı yok.
   Fotoğrafın kendi oranı korunuyor (kırpma yok), sadece kenarları siliniyor. */
@media (min-width: 360px) and (max-width: 767.98px) {
  .hero__inner {
    min-height: clamp(492px, 126vw, 660px);
    padding-block: 28px 22px;
  }
  /* Sol kenar maskesi kapsayıcıda, üst kenar maskesi görselde.
     İki maskeyi iç içe uygulamak `mask-composite`e gerek bırakmıyor —
     her tarayıcıda birebir aynı sonucu veriyor. */
  .hero__media {
    position: absolute;
    right: var(--bleed); bottom: 0;
    width: 62%; max-width: 420px;
    aspect-ratio: 1 / 1;
    z-index: 0;
    -webkit-mask-image: linear-gradient(96deg, transparent 0%, rgba(0,0,0,.20) 14%, rgba(0,0,0,.78) 36%, #000 52%);
    mask-image: linear-gradient(96deg, transparent 0%, rgba(0,0,0,.20) 14%, rgba(0,0,0,.78) 36%, #000 52%);
  }
  /* Üstte ve altta yumuşak geçiş: fotoğrafın zemini krem arka planla
     birleşiyor, hiçbir kenarda dikiş izi kalmıyor. */
  .hero__media img {
    object-position: 52% 58%;
    -webkit-mask-image: linear-gradient(180deg,
      transparent 0%, rgba(0,0,0,.4) 7%, #000 20%,
      #000 88%, rgba(0,0,0,.45) 96%, transparent 100%);
    mask-image: linear-gradient(180deg,
      transparent 0%, rgba(0,0,0,.4) 7%, #000 20%,
      #000 88%, rgba(0,0,0,.45) 96%, transparent 100%);
  }
  /* Metin bloğu fotoğrafın görünür kısmına girmesin diye daraltılıyor */
  .hero__title { font-size: clamp(26px, 7vw, 34px); }
  .hero__lead { max-width: 26ch; margin-bottom: 20px; }
  .hero__actions .btn { font-size: 13.5px; padding: 12px 17px; }
  /* Güven satırı da fotoğrafın görünür kısmına girmemeli:
     tek sütun ve sınırlı genişlik. */
  .hero__trust {
    flex-direction: column; gap: 7px;
    max-width: 62%; margin-top: 18px;
  }
  .hero__trust li { font-size: 12px; }
}

@media (min-width: 480px) and (max-width: 767.98px) {
  .hero__inner { min-height: clamp(500px, 88vw, 620px); }
  .hero__media { width: 56%; }
  .hero__lead { max-width: 30ch; }
  /* Butonlar mockup'taki gibi alt alta kalıyor: yan yana dizilince
     sağdaki ürün fotoğrafının üstüne binerlerdi. */
  .hero__actions .btn { font-size: 14.5px; padding: 13px 20px; }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .hero__inner { padding-block: 40px 32px; }
  .hero__media { width: 54%; }
  .hero__title { font-size: clamp(32px, 5.4vw, 40px); }
}

/* --- 768px+: masaüstü — görsel sağda tam bleed, sola doğru krem içinde erir --- */
@media (min-width: 768px) {
  .hero__inner {
    display: flex; align-items: center;
    padding-block: 52px;
    min-height: 430px;
  }
  .hero__copy { width: 58%; }
  .hero__media {
    position: absolute;
    top: 0; bottom: 0; right: var(--bleed);
    width: 62%;
    z-index: 0;
  }
  .hero__media img {
    -webkit-mask-image: linear-gradient(96deg, transparent 0%, rgba(0,0,0,.22) 9%, rgba(0,0,0,.80) 26%, #000 44%);
    mask-image: linear-gradient(96deg, transparent 0%, rgba(0,0,0,.22) 9%, rgba(0,0,0,.80) 26%, #000 44%);
  }
}

@media (min-width: 992px) {
  .hero__inner { padding-block: 62px; min-height: 500px; }
  .hero__copy { width: 54%; }
  .hero__title { margin-bottom: 18px; }
  .hero__lead { margin-bottom: 30px; max-width: 38ch; }
  .hero__actions { flex-direction: row; align-items: center; gap: 14px; flex-wrap: wrap; }
  .hero__media { width: 60%; }
}

@media (min-width: 1200px) {
  .hero__inner { min-height: 560px; padding-block: 74px; }
  .hero__copy { width: 52%; }
  .hero__media { width: 58%; }
}

@media (min-width: 1600px) {
  .hero__inner { min-height: 620px; }
  .hero__media { width: 56%; }
}

/* =========================================================
   10. ÖNE ÇIKAN ŞERİT
   ========================================================= */
.featstrip {
  background: var(--muted);
  border-bottom: 1px solid var(--line-2);
  padding-block: 26px;
}
.featstrip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 16px;
}
.feat { display: flex; align-items: flex-start; gap: 11px; }
.feat__icon {
  width: 30px; height: 30px; flex: none; margin-top: 1px;
  color: var(--navy-800); stroke: currentColor; fill: none;
}
.feat__title {
  font-size: 13.5px; font-weight: 600; line-height: 1.3;
  color: var(--navy-800); margin-bottom: 4px;
}
.feat__text { font-size: 12.5px; line-height: 1.5; color: var(--ink-2); }

@media (max-width: 359.98px) {
  .featstrip__grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
}

@media (min-width: 576px) {
  .featstrip { padding-block: 30px; }
  .featstrip__grid { gap: 26px 28px; }
  .feat__icon { width: 34px; height: 34px; }
  .feat__title { font-size: 15px; }
  .feat__text { font-size: 13.5px; }
}

@media (min-width: 992px) {
  .featstrip { padding-block: 26px; }
  .featstrip__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
  .feat { padding-inline: 26px; }
  .feat:first-child { padding-left: 0; }
  .feat:last-child { padding-right: 0; }
  .feat + .feat { border-left: 1px solid var(--line); }
  .feat__icon { width: 36px; height: 36px; }
  .feat__text { font-size: 13px; }
}

@media (min-width: 1200px) {
  .feat { gap: 14px; padding-inline: 32px; }
}

/* =========================================================
   11. ÇÖZÜM GRUPLARI
   ========================================================= */
.cg-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.cgcard {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-800);
  isolation: isolate;
  /* aspect-ratio'lu bir grid item, justify-items:normal altında "start" gibi
     davranır ve genişliğini min-height'tan türeterek kolonu taşırır.
     width:100% + justify-self:stretch bunu kesin olarak engeller. */
  width: 100%;
  justify-self: stretch;
  min-width: 0;
  min-height: 200px;
  aspect-ratio: 1000 / 620;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cgcard.cgcard--lg { min-height: 230px; aspect-ratio: 1400 / 620; }

.cgcard__img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 74% center;
  transition: transform .6s var(--ease);
}
.cgcard::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(96deg,
    rgba(6,26,48,.97) 0%,
    rgba(6,26,48,.93) 30%,
    rgba(6,26,48,.72) 52%,
    rgba(6,26,48,.34) 74%,
    rgba(6,26,48,.18) 100%);
}
.cgcard__body {
  position: relative;
  height: 100%;
  display: flex; flex-direction: column;
  padding: 18px;
  max-width: 68%;
}
.cgcard__title {
  font-size: clamp(16px, 4.4vw, 20px);
  line-height: 1.22; font-weight: 600; color: #fff;
  margin-bottom: 8px;
}
.cgcard__text {
  font-size: 12.5px; line-height: 1.5; color: var(--on-dark);
  margin-bottom: auto;
}
.cgcard__link {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 14px;
  font-family: var(--f-head); font-size: 13.5px; font-weight: 500; color: #fff;
  transition: gap var(--dur) var(--ease);
}
.cgcard__link .ico { width: 17px; height: 17px; color: var(--orange); }

.cgcard:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(6,26,48,.65); }
.cgcard:hover .cgcard__img { transform: scale(1.05); }
.cgcard:hover .cgcard__link { gap: 14px; }

@media (min-width: 420px) {
  .cg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cgcard--lg { grid-column: span 2; }
  .cgcard { min-height: 210px; }
}

@media (min-width: 576px) {
  .cg-grid { gap: 14px; }
  .cgcard__body { padding: 22px; max-width: 66%; }
  .cgcard__text { font-size: 13px; }
  .cgcard.cgcard--lg { min-height: 260px; aspect-ratio: 1400/560; }
  .cgcard--lg .cgcard__body { max-width: 52%; }
}

@media (min-width: 768px) {
  .cgcard--lg { grid-column: span 1; }
  .cgcard { min-height: 200px; }
  .cgcard.cgcard--lg { min-height: 230px; }
  .cgcard--lg .cgcard__body { max-width: 60%; }
}

@media (min-width: 992px) {
  .cg-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
  .cgcard.cgcard--lg { grid-column: span 2; aspect-ratio: 1400/560; min-height: 200px; }
  .cgcard { aspect-ratio: 1000/620; min-height: 178px; }
  .cgcard__body { padding: 22px; max-width: 76%; }
  .cgcard--lg .cgcard__body { max-width: 50%; padding: 28px; }
  .cgcard__title { font-size: 17px; margin-bottom: 7px; }
  .cgcard__text { font-size: 12.5px; }
  .cgcard__link { margin-top: 12px; }
  .cgcard--lg .cgcard__title { font-size: clamp(20px, 1.9vw, 25px); margin-bottom: 8px; }
  .cgcard--lg .cgcard__text { font-size: 13.5px; }
}

@media (min-width: 1200px) {
  .cgcard__body { padding: 24px; }
  .cgcard--lg .cgcard__body { padding: 32px; }
  .cgcard__title { font-size: 18px; }
  .cgcard__text { font-size: 13px; }
}

/* =========================================================
   12. KURUMSAL TEDARİK SÜRECİ
   ========================================================= */
/* Mobil: dikey zaman çizelgesi — düğümler soldaki rayın üstünde durur.
   Tablet: ray kalkar, 2–3 kolonluk kart ızgarası.
   Masaüstü: 5 adım yan yana, aralarında yatay bağlantı rayı.               */
.process {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  counter-reset: zt-step;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 15px;
  padding-bottom: 26px;
}
.step:last-child { padding-bottom: 0; }

/* dikey ray */
.step::after {
  content: "";
  position: absolute; left: 23px; top: 54px; bottom: 4px; width: 2px;
  background: var(--line);
  transform: scaleY(0); transform-origin: top;
  transition: transform .55s var(--ease) .1s;
}
.step:last-child::after { display: none; }
.step.is-in::after { transform: scaleY(1); }

.step__node {
  position: relative;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--navy-800);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.step__icon { width: 24px; height: 24px; stroke: currentColor; fill: none; }
.step__num {
  position: absolute; top: -7px; right: -9px;
  min-width: 23px; height: 23px; padding-inline: 5px;
  border-radius: 12px;
  background: var(--orange); color: #fff;
  font-family: var(--f-head); font-size: 10.5px; font-weight: 600;
  line-height: 23px; text-align: center; letter-spacing: .02em;
  box-shadow: 0 0 0 3px var(--surface);
}
.step__body { padding-top: 5px; }
.step__title {
  font-size: 15px; font-weight: 600; line-height: 1.3;
  color: var(--navy-800); margin-bottom: 6px;
}
.step__sr {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
.step__text { font-size: 13.5px; line-height: 1.55; color: var(--ink-2); }

.step:hover .step__node {
  border-color: var(--orange); color: var(--orange);
  box-shadow: 0 10px 24px -14px rgba(232,89,12,.75);
}

/* --- Tablet: kart ızgarası, ray yok --- */
@media (min-width: 600px) {
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 26px; }
  .step { grid-template-columns: minmax(0, 1fr); gap: 14px; padding-bottom: 0; }
  .step::after { display: none; }
  .step__body { padding-top: 0; }
}

@media (min-width: 768px) {
  .process { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 28px; }
  .step__node { width: 52px; height: 52px; }
  .step__icon { width: 26px; height: 26px; }
}

/* --- Masaüstü: 5 adım + yatay ray --- */
@media (min-width: 1200px) {
  .process { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0 24px; }
  .step { padding-right: 24px; }
  .step::after {
    display: block;
    left: 62px; right: -12px; top: 25px; bottom: auto;
    width: auto; height: 2px;
    transform: scaleX(0); transform-origin: left;
    transition: transform .6s var(--ease) .12s;
  }
  .step:last-child::after { display: none; }
  .step.is-in::after { transform: scaleX(1); }
  .step__title { font-size: 15.5px; }
  .step__text { font-size: 13px; }
}

@media (min-width: 1400px) {
  .step::after { left: 66px; }
  .step__node { width: 56px; height: 56px; }
  .step__icon { width: 28px; height: 28px; }
}

/* =========================================================
   13. ÖLÇEK BANDI
   ========================================================= */
.scale { position: relative; background: var(--cream); overflow: hidden; }
.scale__media { position: relative; z-index: 0; line-height: 0; }
.scale__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.scale__inner { position: relative; z-index: 2; }
.scale__copy { padding-block: 34px; display: flex; flex-direction: column; align-items: flex-start; }
.scale__title {
  font-size: clamp(24px, 6.4vw, 40px);
  line-height: 1.14; font-weight: 600; letter-spacing: -.022em;
  color: var(--navy-800); margin-bottom: 14px;
}
.scale__text {
  font-size: 14.5px; line-height: 1.65; color: var(--ink-2);
  max-width: 46ch; margin-bottom: 24px;
}

@media (max-width: 767.98px) {
  .scale__media { aspect-ratio: 16 / 9; }
  .scale__media::after {
    content: ""; position: absolute; inset: auto 0 0 0; height: 34%;
    background: linear-gradient(180deg, rgba(250,248,245,0) 0%, var(--cream) 100%);
  }
}

@media (min-width: 768px) {
  .scale { display: block; }
  .scale__media {
    position: absolute; inset: 0 0 0 auto;
    width: 66%; height: 100%;
  }
  .scale__media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg,
      var(--cream) 0%,
      rgba(250,248,245,.94) 18%,
      rgba(250,248,245,.55) 40%,
      rgba(250,248,245,0) 72%);
  }
  .scale__copy {
    padding-block: 56px;
    width: 58%;
    min-height: 320px;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .scale__media { width: 64%; }
  .scale__copy { padding-block: 70px; width: 50%; min-height: 340px; }
  .scale__text { font-size: 16px; margin-bottom: 30px; }
}

@media (min-width: 1200px) {
  .scale__copy { padding-block: 84px; min-height: 380px; width: 46%; }
}

/* =========================================================
   14. SEKTÖREL ÇÖZÜMLER
   ========================================================= */
.sek-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}
.sek-grid + .sek-grid { margin-top: 12px; }
.sek-grid--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.sek {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius); background: var(--navy-800);
  isolation: isolate;
  width: 100%; justify-self: stretch; min-width: 0;   /* bkz. .cgcard notu */
  aspect-ratio: 1200 / 640; min-height: 170px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.sek--sm { aspect-ratio: 1100 / 480; min-height: 88px; }
.sek__img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.sek::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
    rgba(6,26,48,.10) 0%,
    rgba(6,26,48,.28) 40%,
    rgba(6,26,48,.86) 78%,
    rgba(6,26,48,.95) 100%);
}
.sek--sm::after {
  background: linear-gradient(90deg,
    rgba(6,26,48,.92) 0%, rgba(6,26,48,.68) 40%, rgba(6,26,48,.28) 74%, rgba(6,26,48,.14) 100%);
}
.sek__body {
  position: relative; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 14px;
}
.sek--sm .sek__body { justify-content: center; }
.sek__title {
  font-size: clamp(15px, 4vw, 19px); font-weight: 600; color: #fff; line-height: 1.2;
}
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.chips li {
  font-family: var(--f-head); font-size: 10.5px; font-weight: 500;
  color: #eef1f4;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 3px;
  padding: 4px 8px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.sek:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(6,26,48,.65); }
.sek:hover .sek__img { transform: scale(1.05); }

@media (min-width: 576px) {
  .sek-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .sek-grid + .sek-grid { margin-top: 14px; }
  .sek-grid--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sek__body { padding: 18px; }
  .chips li { font-size: 11px; padding: 4px 9px; }
}

@media (min-width: 768px) {
  .sek-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sek-grid--wide { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sek--sm { min-height: 96px; }
}

@media (min-width: 992px) {
  .sek-grid { gap: 16px; }
  .sek-grid + .sek-grid { margin-top: 16px; }
  .sek__body { padding: 22px; }
  .sek--sm .sek__body { padding-inline: 24px; }
  .sek--sm { min-height: 104px; }
}

/* =========================================================
   15. BASKI & NAKIŞ
   ========================================================= */
.brandrow { display: grid; gap: 28px; }
.brandrow__text {
  font-size: 14.5px; line-height: 1.65; color: var(--ink-2);
  margin: 12px 0 20px; max-width: 46ch;
}
.ticks { display: grid; gap: 12px; }
.ticks li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14px; color: var(--ink); line-height: 1.45;
}
.ticks .ico { width: 17px; height: 17px; color: var(--orange); margin-top: 2px; stroke-width: 2.4; }

.brandrow__cta { margin-top: 24px; }
.brandrow__note {
  margin-top: 10px; font-size: 12.5px; line-height: 1.5; color: var(--ink-3);
}
@media (min-width: 992px) { .brandrow__cta { margin-top: 30px; } .brandrow__note { font-size: 13px; } }

/* --- Önce / Sonra sürüklenebilir karşılaştırma --- */
/* --pos'un yumuşak animasyonu için tip tanımı (desteklemeyen tarayıcıda kademeli çalışır) */
@property --pos {
  syntax: "<percentage>";
  inherits: true;      /* alt katmanlar (kırpma + ayırıcı) da bu değeri okumalı */
  initial-value: 50%;
}

.brandrow__visual { display: grid; gap: 14px; min-width: 0; }

.compare { margin: 0; }

.compare__frame {
  --pos: 50%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  background: var(--muted);
  border: 1px solid var(--line);
  box-shadow: 0 26px 60px -38px rgba(6,26,48,.6);
  touch-action: pan-y;              /* yatay sürükleme slider'a, dikey scroll sayfaya */
}
.compare__frame:has(.compare__range:focus-visible) {
  outline: 2px solid var(--orange); outline-offset: 3px;
}

.compare__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  user-select: none; -webkit-user-drag: none; pointer-events: none;
}
.compare__img--before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.compare__tag {
  position: absolute; top: 12px; z-index: 4;
  font-family: var(--f-head); font-size: 10.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 3px;
  color: #fff; pointer-events: none;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.compare__tag--before { left: 12px; background: rgba(6,26,48,.78); }
.compare__tag--after  { right: 12px; background: var(--orange); }

/* Ayırıcı: turuncu montun ve krem zeminin ikisinde de okunması için
   lacivert çekirdek + beyaz dış hat. */
.compare__divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 3px; margin-left: -1.5px; z-index: 5;
  background: var(--navy-800);
  box-shadow: 0 0 0 1.5px rgba(255,255,255,.9), 0 0 22px rgba(6,26,48,.35);
  pointer-events: none;
}
.compare__grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--navy-800);
  display: grid; place-items: center;
  box-shadow: 0 0 0 3px var(--orange), 0 12px 28px -10px rgba(6,26,48,.7);
}
.compare__grip svg { width: 22px; height: 22px; }

/* Nakışı işaretleyen rozet — "Önce" katmanının altında durur,
   çubuk sola geçince kendiliğinden ortaya çıkar. */
.compare__marker {
  position: absolute; z-index: 1;
  left: 64.5%; top: 40%;
  display: flex; align-items: center; gap: 8px;
  pointer-events: none;
}
.compare__dot {
  position: relative; flex: none;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 0 3px rgba(255,255,255,.85);
}
.compare__dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1.5px solid var(--orange);
  animation: ztPulse 2.4s var(--ease) infinite;
}
@keyframes ztPulse {
  0%   { transform: scale(.7); opacity: .9; }
  70%  { transform: scale(2.1); opacity: 0; }
  100% { transform: scale(2.1); opacity: 0; }
}
.compare__note {
  display: none;                    /* dar ekranda sadece nokta kalır, çakışma olmaz */
  font-family: var(--f-head); font-size: 10.5px; font-weight: 600;
  letter-spacing: .02em; white-space: nowrap;
  color: #fff; background: rgba(6,26,48,.86);
  padding: 4px 9px; border-radius: 3px;
}
@media (min-width: 576px) { .compare__note { display: block; } }

/* Teknik vitrini */
.tech { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.tech__item {
  display: flex; align-items: center; gap: 12px; min-width: 0;
  padding: 10px; border: 1px solid var(--line-2); border-radius: var(--radius);
  background: var(--surface);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tech__item:hover { border-color: var(--line); box-shadow: 0 12px 28px -22px rgba(6,26,48,.6); }
.tech__thumb {
  flex: none; width: 68px; aspect-ratio: 1 / 1;
  border-radius: 3px; overflow: hidden; background: var(--muted);
}
.tech__thumb img { width: 100%; height: 100%; object-fit: cover; }
.tech__body { display: grid; gap: 2px; min-width: 0; }
.tech__body strong {
  font-family: var(--f-head); font-size: 13px; font-weight: 600; color: var(--navy-800);
  line-height: 1.25;
}
.tech__body span { font-size: 11.5px; line-height: 1.45; color: var(--ink-2); }

@media (max-width: 419.98px) {
  .tech { grid-template-columns: minmax(0, 1fr); }
}

/* Görünmez ama tamamen işlevsel: dokunma, fare sürükleme ve klavye ok tuşları */
.compare__range {
  position: absolute; inset: 0; z-index: 6;
  width: 100%; height: 100%; margin: 0; padding: 0;
  -webkit-appearance: none; appearance: none;
  background: transparent; border: 0;
  opacity: 0; cursor: ew-resize;
}
.compare__range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 2px; height: 100%; background: transparent; border: 0;
}
.compare__range::-moz-range-thumb { width: 2px; height: 100%; background: transparent; border: 0; }
.compare__range::-moz-range-track { background: transparent; border: 0; }

/* Tek seferlik tanıtım hareketi. Kullanıcı dokunur dokunmaz iptal olur ki
   sürükleme birebir parmağı/fareyi takip etsin — hiçbir gecikme kalmasın. */
@keyframes ztCompareTease {
  0%, 10%   { --pos: 50%; }
  40%       { --pos: 76%; }
  70%       { --pos: 28%; }
  95%, 100% { --pos: 50%; }
}
.compare.is-teasing .compare__frame {
  animation: ztCompareTease 3.6s var(--ease) 1 both;
}
.compare.is-touched .compare__frame { animation: none !important; }

.compare__hint {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px;
  font-size: 12.5px; color: var(--ink-3);
  text-align: center;
  transition: opacity var(--dur) var(--ease);
}
.compare__hint .ico { width: 16px; height: 16px; color: var(--orange); }
.compare.is-touched .compare__hint { opacity: 0; }

@media (min-width: 576px) {
  .compare__frame { aspect-ratio: 3 / 2; }
  .compare__tag { font-size: 11px; padding: 6px 12px; top: 14px; }
  .compare__tag--before { left: 14px; }
  .compare__tag--after { right: 14px; }
  .compare__grip { width: 50px; height: 50px; }
  .compare__note { font-size: 11px; padding: 5px 10px; }
  .tech__thumb { width: 76px; }
  .tech__body strong { font-size: 13.5px; }
  .tech__body span { font-size: 12px; }
}

@media (min-width: 992px) {
  .brandrow {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 44px; align-items: center;
  }
  .brandrow__text { font-size: 16px; margin: 16px 0 26px; }
  .ticks { gap: 14px; }
  .ticks li { font-size: 15px; }
  .brandrow__visual { gap: 16px; }
  .compare__frame { aspect-ratio: 900 / 620; }
  .compare__grip { width: 56px; height: 56px; }
  .compare__grip svg { width: 26px; height: 26px; }
  .compare__hint { font-size: 13px; margin-top: 14px; }
  .tech__item { padding: 12px; gap: 14px; }
  .tech__thumb { width: 84px; }
}

@media (min-width: 1200px) {
  .brandrow { gap: 60px; }
}

/* =========================================================
   15b. GÜVEN BANDI — rakamlar + müşteri görüşü
   ========================================================= */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

/* İnce rakam şeridi — tek satır, fotoğrafsız, minimum yer kaplar */
.factsband { background: var(--navy-800); }

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.fact {
  min-width: 0;
  padding: 18px 14px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.10);
  border-left: 1px solid rgba(255,255,255,.10);
}
.fact:nth-child(-n+2) { border-top: 0; }
.fact:nth-child(odd) { border-left: 0; }

.fact__num {
  display: flex; align-items: baseline; justify-content: center; gap: 3px;
  font-family: var(--f-head); font-weight: 600;
  font-size: clamp(21px, 4.6vw, 26px); line-height: 1.1;
  letter-spacing: -.02em; color: #fff;
  font-variant-numeric: tabular-nums;
}
.fact__suffix { color: var(--orange); }
.fact__unit { font-size: .54em; font-weight: 500; letter-spacing: 0; color: var(--on-dark); }
.fact__label {
  display: block; margin-top: 5px;
  font-size: 11.5px; line-height: 1.4; color: var(--on-dark-2);
}

@media (min-width: 768px) {
  .facts { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .fact { padding: 24px 18px; border-top: 0; }
  .fact:first-child { border-left: 0; }
  .fact__label { font-size: 12.5px; }
}
@media (min-width: 1200px) { .fact { padding: 28px 22px; } }

/* Referans — marka duvarının altında kompakt alıntı */
.testimonial {
  margin: 26px auto 0; max-width: 720px;
  text-align: center;
  padding: 22px 18px 0;
  border-top: 1px solid var(--line-2);
}
.testimonial__stars { display: flex; justify-content: center; gap: 3px; margin-bottom: 12px; }
.testimonial__stars svg { width: 15px; height: 15px; fill: var(--orange); }
.testimonial__text {
  margin: 0;
  font-family: var(--f-head); font-weight: 500;
  font-size: clamp(14.5px, 2vw, 17px); line-height: 1.55;
  letter-spacing: -.01em; color: var(--navy-800);
  text-wrap: pretty;
}
.testimonial__by {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 5px 9px; margin-top: 14px;
}
.testimonial__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy-800); color: #fff;
  font-family: var(--f-head); font-size: 11px; font-weight: 600; letter-spacing: .02em;
}
.testimonial__name { font-family: var(--f-head); font-size: 13px; font-weight: 600; color: var(--navy-800); }
.testimonial__role { font-size: 12.5px; color: var(--ink-3); }
.testimonial__role::before { content: "· "; }

@media (min-width: 768px) { .testimonial { margin-top: 32px; padding-top: 26px; } }

/* =========================================================
   16. TEKLİF ASİSTANI
   ========================================================= */
.quote {
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  position: relative; overflow: hidden;
}
.quote::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(90% 140% at 100% 0%, rgba(232,89,12,.16) 0%, rgba(232,89,12,0) 55%);
}
.quote__head { position: relative; margin-bottom: 20px; }
.quote__title {
  font-size: clamp(19px, 4.6vw, 26px); font-weight: 600; color: #fff;
  margin-bottom: 6px;
}
.quote__sub { font-size: 13.5px; line-height: 1.5; color: var(--on-dark); }

.quote__form { position: relative; display: grid; gap: 12px; }

.quote__legend {
  font-family: var(--f-head); font-size: 11.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: #ff9a5c;
  margin-top: 4px;
}
.quote__legend:first-child { margin-top: 0; }
.quote__row { display: grid; gap: 12px; }

.field { display: block; min-width: 0; }
.field__label {
  display: block;
  font-family: var(--f-head); font-size: 11.5px; font-weight: 500;
  letter-spacing: .01em; color: var(--ink-3);
  margin-bottom: 4px;
}
.select { position: relative; }
.select select {
  -webkit-appearance: none; appearance: none;
  width: 100%; min-height: 48px;
  padding: 11px 40px 11px 14px;
  font-family: var(--f-body); font-size: 15px; color: var(--ink);
  background: #fff;
  border: 1px solid #fff; border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-overflow: ellipsis;
}
.select select:invalid { color: var(--ink-3); }
.select select:hover { border-color: #ffd9c2; }
.select select:focus-visible { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,89,12,.35); }
.select__chev {
  position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; pointer-events: none;
  color: var(--ink-3); stroke: currentColor; fill: none;
}
.field.is-invalid .select select,
.field.is-invalid .input { border-color: #ff8b57; box-shadow: 0 0 0 3px rgba(255,139,87,.28); }

/* Metin alanları — select ile birebir aynı görsel dil */
.input {
  width: 100%; min-height: 48px;
  padding: 11px 14px;
  font-family: var(--f-body); font-size: 15px; color: var(--ink);
  background: #fff;
  border: 1px solid #fff; border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.input::placeholder { color: var(--ink-3); }
.input:hover { border-color: #ffd9c2; }
.input:focus-visible { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,89,12,.35); }

/* KVKK onayı */
.quote__foot {
  display: grid; gap: 16px; align-items: center;
  margin-top: 4px;
}
.consent {
  display: flex; align-items: flex-start; gap: 11px;
  cursor: pointer; min-height: 44px; padding-block: 4px;
}
.consent input {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  overflow: hidden; clip-path: inset(50%);
}
.consent__box {
  flex: none; width: 21px; height: 21px; margin-top: 1px;
  display: grid; place-items: center;
  border: 1.5px solid rgba(255,255,255,.4); border-radius: 3px;
  background: rgba(255,255,255,.06);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.consent__box svg { width: 13px; height: 13px; stroke: #fff; fill: none; opacity: 0; transform: scale(.6); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.consent input:checked + .consent__box { background: var(--orange); border-color: var(--orange); }
.consent input:checked + .consent__box svg { opacity: 1; transform: none; }
.consent input:focus-visible + .consent__box { outline: 2px solid #ff9a5c; outline-offset: 3px; }
.consent__text { font-size: 12.5px; line-height: 1.5; color: var(--on-dark); }
.consent__text a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.consent__text a:hover { color: #ff9a5c; }
.field.is-invalid .consent__box,
.consent.is-invalid .consent__box { border-color: #ff8b57; box-shadow: 0 0 0 3px rgba(255,139,87,.28); }

/* alan etiketini input üzerine bindirme (geniş ekranda mockup görünümü) */
@media (min-width: 992px) {
  .field { position: relative; }
  .field__label {
    position: absolute; z-index: 2; top: 7px; left: 15px;
    margin: 0; font-size: 11px; color: var(--ink-3);
    pointer-events: none;
    max-width: calc(100% - 44px);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .select select { min-height: 62px; padding: 26px 40px 10px 14px; font-size: 15px; }
  .select__chev { top: 60%; }
}

.quote__submit { width: 100%; }
.quote__status {
  position: relative;
  margin-top: 14px; font-size: 14px; line-height: 1.5;
  color: #ffd7bf; min-height: 0;
}
.quote__status.is-ok { color: #b9f0cd; }
.quote__status.is-err { color: #ffb894; }
.quote__status:empty { margin-top: 0; }

/* Formu doldurmak istemeyen için doğrudan iletişim */
.quote__alt {
  position: relative;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13.5px; line-height: 1.7; color: var(--on-dark-2);
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px;
}
.quote__alt a {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-head); font-weight: 600; color: #fff;
  min-height: 32px;
  transition: color var(--dur) var(--ease);
}
.quote__alt a:hover { color: #ff9a5c; }
.quote__alt .ico { width: 16px; height: 16px; color: var(--orange); }
.quote__alt .ico--wa { fill: #25d366; stroke: none; color: #25d366; }
.quote__alt span { color: rgba(255,255,255,.25); }

@media (min-width: 992px) { .quote__alt { margin-top: 20px; padding-top: 18px; font-size: 14px; } }

.hp {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; white-space: nowrap;
  clip: rect(0 0 0 0); clip-path: inset(50%);
}

@media (min-width: 576px) {
  .quote { padding: 30px 26px; }
  .quote__row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .quote__sub { font-size: 14px; }
}

@media (min-width: 768px) {
  .quote__foot {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px 28px;
  }
  .quote__submit { min-width: 230px; }
}

@media (min-width: 992px) {
  .quote { padding: 36px 32px; }
  .quote__head { margin-bottom: 24px; }
  .quote__row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .quote__legend { margin-top: 10px; }
  .quote__legend:first-child { margin-top: 0; }
  .input { min-height: 62px; padding: 26px 14px 10px; }
  .quote__submit { min-height: 56px; }
  .consent__text { font-size: 13px; }
}

/* =========================================================
   17. NEDEN ZT
   ========================================================= */
.whygrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}
.why {
  position: relative;
  min-width: 0;
  padding: 20px 18px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.why::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.why:hover { border-color: var(--line); transform: translateY(-3px); box-shadow: 0 20px 40px -28px rgba(6,26,48,.75); }
.why:hover::after { transform: scaleX(1); }

.why__icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin-bottom: 14px;
  border-radius: var(--radius);
  background: rgba(232,89,12,.09);
  color: var(--orange);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.why__icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }
.why:hover .why__icon { background: var(--orange); color: #fff; }

.why__title {
  font-size: 15px; font-weight: 600; line-height: 1.3;
  color: var(--navy-800); margin-bottom: 7px;
}
.why__text { font-size: 13px; line-height: 1.55; color: var(--ink-2); }

@media (min-width: 480px) {
  .whygrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 576px) { .whygrid { gap: 14px; } .why { padding: 22px 20px; } }
@media (min-width: 992px) {
  .whygrid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .why { padding: 26px 24px; }
  .why__icon { width: 50px; height: 50px; margin-bottom: 16px; }
  .why__icon svg { width: 26px; height: 26px; }
  .why__title { font-size: 16px; }
  .why__text { font-size: 13.5px; }
}
@media (min-width: 1200px) { .why { padding: 30px 28px; } }

/* =========================================================
   17b. STANDARTLAR & SERTİFİKALAR
   ========================================================= */
.standards { background: var(--muted); }

.stdgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.std {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 16px 14px;
  display: grid; gap: 3px; min-width: 0;
  position: relative; overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.std:hover { border-color: var(--line); transform: translateY(-3px); box-shadow: 0 18px 36px -26px rgba(6,26,48,.75); }

/* Rozet: kalkan biçimli, içinde piktogram */
.std__badge {
  position: relative;
  width: 46px; height: 52px; margin-bottom: 12px;
  display: grid; place-items: center;
  color: var(--navy-800);
  background: linear-gradient(180deg, #f2f4f6 0%, #e8ebee 100%);
  clip-path: polygon(50% 0%, 100% 15%, 100% 62%, 50% 100%, 0% 62%, 0% 15%);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.std__badge svg { width: 24px; height: 24px; stroke: currentColor; fill: none; margin-top: -2px; }
.std:hover .std__badge {
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-600) 100%);
  color: #fff;
}

.std__code {
  font-family: var(--f-head); font-size: 11px; font-weight: 700;
  letter-spacing: .06em; color: var(--orange); text-transform: uppercase;
}
.std__name {
  font-family: var(--f-head); font-size: 14.5px; font-weight: 600;
  color: var(--navy-800); line-height: 1.25; margin-bottom: 2px;
}
.std__desc { font-size: 12px; line-height: 1.5; color: var(--ink-2); }

/* CE şeridi */
.cebar {
  display: grid; gap: 16px; align-items: center;
  margin-top: 16px; padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
}
.cebar__mark { width: 62px; height: auto; flex: none; }
.cebar__title {
  font-size: 15.5px; font-weight: 600; color: var(--navy-800);
  margin-bottom: 6px; line-height: 1.3;
}
.cebar__text { font-size: 13px; line-height: 1.6; color: var(--ink-2); }
.cebar__text strong { color: var(--navy-800); font-weight: 600; }
.cebar__cta { justify-self: start; }

@media (min-width: 576px) {
  .stdgrid { gap: 12px; }
  .std { padding: 18px 16px; }
  .cebar { padding: 24px; }
}
@media (min-width: 768px) {
  .stdgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .std__desc { font-size: 12.5px; }
  .cebar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px; padding: 24px 28px;
  }
  .cebar__mark { width: 70px; }
  .cebar__cta { justify-self: end; }
}
@media (min-width: 1200px) {
  .stdgrid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
  .std { padding: 22px 20px; }
  .std__name { font-size: 15px; }
  .cebar { margin-top: 20px; padding: 28px 32px; gap: 30px; }
  .cebar__mark { width: 78px; }
  .cebar__title { font-size: 17px; }
  .cebar__text { font-size: 13.5px; }
}

/* =========================================================
   18. ÇALIŞTIĞIMIZ MARKALAR + SEKTÖR ŞERİDİ
   ========================================================= */
.brands {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-2);            /* hücre araları ince çizgi olur */
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
}
.brandcell {
  display: grid; place-items: center;
  min-height: 86px; padding: 16px 14px;
  background: var(--surface);
  min-width: 0;
  transition: background-color var(--dur) var(--ease);
}
.brandcell:hover { background: var(--muted); }

/* Markalar farklı oran ve renklerde geliyor; ortak bir görsel ağırlığa
   oturtmak için yükseklik sınırlanıp grileştiriliyor, hover'da renkleniyor. */
.brandcell img {
  max-width: 100%; max-height: 34px;
  width: auto; height: auto;
  object-fit: contain;
  /* Farklı kaynaklardan gelen logolar ortak bir ağırlığa oturuyor:
     multiply beyaz zeminli rasterları saydamlaştırır, contrast açık
     tonlu logoları okunur kılar. Hover'da özgün renk geri gelir. */
  mix-blend-mode: multiply;
  filter: grayscale(1) opacity(.62);
  transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.brandcell:hover img { filter: none; transform: scale(1.05); }
/* kare/dikey oranlı markalar biraz daha büyük durabilir */
.brandcell img[alt="YDS"], .brandcell img[alt="Mekap"] { max-height: 42px; }

@media (min-width: 480px) { .brands { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 768px) {
  .brands { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .brandcell { min-height: 104px; }
  .brandcell img { max-height: 40px; }
  .brandcell img[alt="YDS"], .brandcell img[alt="Mekap"] { max-height: 50px; }
}
@media (min-width: 1200px) {
  .brands { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .brandcell { min-height: 112px; padding: 18px 14px; }
}

/* Sektör şeridi */
.sectorline {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 8px;
  margin-top: 22px;
}
.sectorline li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line); border-radius: 100px;
  background: var(--surface);
  font-family: var(--f-head); font-size: 12.5px; font-weight: 500; color: var(--navy-800);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.sectorline li:hover { border-color: var(--navy-800); }
.sectorline__icon { width: 19px; height: 19px; flex: none; stroke: currentColor; fill: none; color: var(--orange); }

@media (min-width: 768px) { .sectorline { margin-top: 26px; gap: 12px; } .sectorline li { font-size: 13.5px; padding: 9px 16px; } }

/* =========================================================
   19. REHBER (blog)
   ========================================================= */
.postgrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px 14px;
}
.post { min-width: 0; }
.post__link { display: block; }
.post__thumb {
  display: block; overflow: hidden; border-radius: var(--radius);
  background: var(--muted); aspect-ratio: 2 / 1;
}
.post__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post__title {
  font-size: 14.5px; font-weight: 600; line-height: 1.35;
  color: var(--navy-800); margin-top: 12px;
  transition: color var(--dur) var(--ease);
}
.post__link:hover .post__thumb img { transform: scale(1.05); }
.post__link:hover .post__title { color: var(--orange); }

@media (min-width: 360px) { .postgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 576px) { .postgrid { gap: 24px 18px; } }
@media (min-width: 992px) {
  .postgrid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
  .post__title { font-size: 15px; margin-top: 14px; }
}

/* =========================================================
   20. CTA BANDI
   ========================================================= */
.ctaband { position: relative; background: var(--navy-800); overflow: hidden; }
.ctaband__media { position: absolute; inset: 0; z-index: 0; }
.ctaband__media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.ctaband__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,26,48,.90) 0%, rgba(6,26,48,.82) 100%);
}
.ctaband__inner { position: relative; z-index: 2; }
.ctaband__copy { padding-block: 38px; }
.ctaband__title {
  font-size: clamp(22px, 6vw, 38px); line-height: 1.15; font-weight: 600;
  letter-spacing: -.022em; color: #fff; margin-bottom: 22px;
}
.ctaband__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ctaband__actions .btn { flex: 1 1 auto; min-width: 150px; max-width: 100%; }

@media (min-width: 480px) {
  .ctaband__actions .btn { flex: 0 1 auto; min-width: 170px; }
}

@media (min-width: 768px) {
  .ctaband__media::after {
    background: linear-gradient(90deg,
      rgba(6,26,48,.97) 0%, rgba(6,26,48,.94) 34%, rgba(6,26,48,.72) 58%, rgba(6,26,48,.30) 100%);
  }
  .ctaband__copy { padding-block: 56px; max-width: 62%; }
}

@media (min-width: 992px) {
  .ctaband__copy { padding-block: 70px; max-width: 56%; }
  .ctaband__title { margin-bottom: 28px; }
}

@media (min-width: 1200px) { .ctaband__copy { padding-block: 82px; max-width: 52%; } }

/* =========================================================
   21. FOOTER
   ========================================================= */
.footer {
  background: var(--navy-900);
  color: var(--on-dark);
  padding-top: 40px;
  font-size: 13.5px;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  padding-bottom: 32px;
}
.footer__brand .brand { margin-bottom: 14px; }
.footer__about { font-size: 13px; line-height: 1.65; color: var(--on-dark-2); max-width: 42ch; }
.social { display: flex; gap: 12px; margin-top: 18px; }
.social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  color: #fff;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.social a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }

.footer__title {
  font-family: var(--f-head); font-size: 14.5px; font-weight: 600; color: #fff;
  margin-bottom: 14px;
}
.footer__col ul { display: grid; gap: 9px; }
.footer__col a {
  color: var(--on-dark-2); font-size: 13px; line-height: 1.45;
  display: inline-block; padding-block: 2px;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer__col a:hover { color: #fff; transform: translateX(3px); }

.footer__contact { display: grid; gap: 14px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 11px; }
.footer__contact .ico { width: 17px; height: 17px; color: var(--orange); margin-top: 3px; }
.footer__contact address { font-size: 13px; line-height: 1.55; color: var(--on-dark-2); }
.footer__hours { display: grid; gap: 3px; font-size: 12.5px; line-height: 1.5; color: var(--on-dark-2); }
.footer__contact a { color: var(--on-dark-2); font-size: 12.8px; overflow-wrap: anywhere; transition: color var(--dur) var(--ease); }
.footer__contact a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 18px calc(18px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start;
}
.footer__copy { font-size: 12.5px; color: var(--on-dark-2); }
.footer__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
.footer__legal li { position: relative; }
.footer__legal li + li::before {
  content: ""; position: absolute; left: -8px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 11px; background: var(--line-dark);
}
.footer__legal a { font-size: 12.5px; color: var(--on-dark-2); transition: color var(--dur) var(--ease); }
.footer__legal a:hover { color: #fff; }

@media (min-width: 480px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
  .footer__brand { grid-column: span 2; }
}

@media (min-width: 768px) {
  .footer { padding-top: 48px; }
  .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 24px; }
  .footer__brand { grid-column: span 3; max-width: 640px; }
}

@media (min-width: 992px) {
  .footer { padding-top: 56px; }
  .footer__grid {
    grid-template-columns: minmax(0, 1.5fr) repeat(4, minmax(0, 1fr)) minmax(0, 1.55fr);
    gap: 30px 22px;
    padding-bottom: 40px;
  }
  .footer__brand { grid-column: auto; max-width: none; }
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 1200px) { .footer__grid { gap: 30px 30px; } }

/* =========================================================
   22. SABİT CTA KATMANI
       Mobil : alt aksiyon barı (Ara / WhatsApp / Teklif Al)
       Masaüstü : sağ altta yüzen iletişim rayı
   ========================================================= */
:root { --wa: #25d366; --wa-600: #1eb955; --actionbar-h: 60px; }

/* --- Mobil alt bar --- */
.actionbar {
  position: fixed; z-index: 1035;
  left: 0; right: 0; bottom: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px -14px rgba(6,26,48,.45);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(102%);
  transition: transform .34s var(--ease);
}
.actionbar.is-visible { transform: none; }
.actionbar.is-hidden { transform: translateY(102%); }

.actionbar__btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  min-height: var(--actionbar-h); padding: 8px 4px;
  font-family: var(--f-head); font-size: 11.5px; font-weight: 600; line-height: 1.15;
  color: var(--navy-800);
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transition: background-color var(--dur) var(--ease);
}
.actionbar__btn + .actionbar__btn { border-left: 1px solid var(--line-2); }
.actionbar__btn svg { width: 21px; height: 21px; }
.actionbar__btn .ico { stroke-width: 1.7; }
.actionbar__btn:active { background: var(--muted); }

.actionbar__btn--wa { color: #0d8a3f; }
.actionbar__btn--wa svg { fill: currentColor; stroke: none; }
.actionbar__btn--cta { background: var(--orange); color: #fff; border-left-color: var(--orange); }
.actionbar__btn--cta:active { background: var(--orange-600); }

/* Bar sayfanın altını kapatmasın.
   Boşluğu body'ye değil footer'a veriyoruz; aksi hâlde barın arkasında
   beyaz bir şerit kalıyor. Böylece lacivert zemin ekranın dibine kadar iniyor. */
@media (max-width: 991.98px) {
  .footer__bottom {
    padding-bottom: calc(18px + var(--actionbar-h) + env(safe-area-inset-bottom));
  }
}
@media (min-width: 992px) { .actionbar { display: none; } }

/* Mobil menü açıkken bar gizlensin */
body.zt-nav-open .actionbar { transform: translateY(102%); }

/* --- Masaüstü yüzen ray --- */
.floatcta {
  position: fixed; z-index: 1020;
  right: 20px; bottom: 22px;
  display: none;
  flex-direction: column; gap: 10px;
  align-items: flex-end;
  /* Hero'nun üstünde görünmez; sayfa aşağı inince belirir. */
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s var(--ease);
}
.floatcta.is-visible { opacity: 1; visibility: visible; transform: none; }
@media (min-width: 992px) { .floatcta { display: flex; } }

.floatcta__btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  border: 0; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  box-shadow: 0 12px 30px -12px rgba(6,26,48,.75);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              width var(--dur) var(--ease), border-radius var(--dur) var(--ease);
}
.floatcta__btn svg { width: 22px; height: 22px; flex: none; }
.floatcta__btn:hover { transform: translateY(-2px); }

.floatcta__btn--wa { background: var(--wa); }
.floatcta__btn--wa svg { fill: currentColor; stroke: none; }
.floatcta__btn--wa:hover { background: var(--wa-600); }
.floatcta__btn--tel:hover { background: var(--orange); }
.floatcta__btn--top { background: var(--surface); color: var(--navy-800); border: 1px solid var(--line); }
.floatcta__btn--top:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

/* Üzerine gelince açılan etiket */
.floatcta__label {
  position: absolute; right: calc(100% + 10px);
  white-space: nowrap;
  font-family: var(--f-head); font-size: 13px; font-weight: 600;
  padding: 8px 13px; border-radius: var(--radius);
  background: var(--navy-800); color: #fff;
  box-shadow: 0 10px 24px -14px rgba(6,26,48,.8);
  opacity: 0; transform: translateX(6px); pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.floatcta__btn:hover .floatcta__label,
.floatcta__btn:focus-visible .floatcta__label { opacity: 1; transform: none; }

/* Başa dön yalnız aşağı inince görünür */
.floatcta__btn--top {
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease),
              visibility var(--dur) var(--ease), background-color var(--dur) var(--ease),
              color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.floatcta__btn--top.is-visible { opacity: 1; visibility: visible; transform: none; }

@media (min-width: 1400px) {
  .floatcta { right: 28px; bottom: 28px; gap: 12px; }
  .floatcta__btn { width: 54px; height: 54px; }
}

/* =========================================================
   23. GİRİŞ ANİMASYONU
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* =========================================================
   24. 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;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .topbar, .site-header, .totop, .mobilenav, .quote__form, .ctaband__media { display: none !important; }
  body { color: #000; }
  .cgcard, .sek { break-inside: avoid; }
}

/* =========================================================================
   MOBİL DOKUNMA HEDEFLERİ
   Parmakla rahat basılabilmesi için bağımsız bağlantılara en az 44px
   yükseklik verilir (WCAG 2.5.5). Cümle içindeki bağlantılar satır akışını
   bozmadan biraz büyütülür.
   ========================================================================= */
@media (max-width: 767.98px) {
  /* 404 sayfasındaki kategori listesi */
  .errpage__links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 4px 14px;
  }

  /* iletişim sayfasında telefon / e-posta / WhatsApp — aranabilir olmalı */
  .contact__list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .contact__list li { padding: 2px 0; }

  /* alt bilgideki iletişim bağlantıları */
  .footer__contact a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }

  /* onay metni içindeki KVKK bağlantısı: satır içi kalsın ama alanı büyüsün */
  .consent__text a {
    display: inline-block;
    padding: 6px 2px;
    margin: -6px 0;
  }
  .consent__text { line-height: 1.75; }
}
