/* ============================================================
   KURUMSAL FİLO ARAÇ KİRALAMA — TASARIM SİSTEMİ
   Light mode · siyah + kırmızı · Archivo / Inter / JetBrains Mono
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --ink:      #0B0C0E;
  --ink-2:    #3A3E45;
  --ink-3:    #767C86;
  --ink-4:    #9CA3AE;

  --red:      #E11D2A;
  --red-2:    #B8141F;
  --red-deep: #A5121C;   /* header üst katmanı */
  --red-soft: #FFF1F2;

  --bg:       #FFFFFF;
  --bg-2:     #F5F6F8;
  --bg-3:     #ECEEF2;
  --line:     #E3E6EB;
  --line-2:   #D3D8E0;

  --green:    #16A34A;

  --max:      1240px;
  --r:        16px;
  --r-sm:     10px;
  --r-pill:   999px;

  --shadow-1: 0 1px 2px rgba(11,12,14,.05);
  --shadow-2: 0 8px 24px -8px rgba(11,12,14,.14), 0 2px 6px rgba(11,12,14,.05);
  --shadow-3: 0 28px 60px -20px rgba(11,12,14,.26), 0 8px 20px -8px rgba(11,12,14,.10);
  --shadow-red: 0 14px 34px -12px rgba(225,29,42,.50);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --head: "Archivo", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--head);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 800;
}

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

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

.skip-link {
  position: fixed; top: -80px; left: 16px; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 20px;
  border-radius: var(--r-sm); font-weight: 600;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- LAYOUT ---------- */
.wrap { width: min(100% - 40px, var(--max)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tint { background: var(--bg-2); }

/* flex-shrink: 0 şart — yoksa dar satırlarda ikonlar 0px'e sıkışıp kayboluyor */
.lucide, [data-lucide] { width: 1em; height: 1em; stroke-width: 2; flex: 0 0 auto; }

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed; inset: 0 auto auto 0; z-index: 200;
  height: 3px; width: 100%;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,.55));
  transform: scaleX(0); transform-origin: 0 50%;
  will-change: transform;
}

/* ---------- HEADER (iki katmanlı kırmızı bar) ---------- */
.site-header { position: sticky; top: 0; z-index: 150; }
.site-header.scrolled { box-shadow: 0 10px 32px -14px rgba(11,12,14,.4); }

/* --- üst katman: koyu kırmızı, logo + hap butonlar --- */
.hdr-top {
  background: var(--red-deep);
  height: 78px; overflow: hidden;
  transition: height .32s var(--ease), opacity .28s var(--ease);
}
.hdr-top-inner {
  width: min(100% - 40px, var(--max)); margin-inline: auto;
  height: 78px; display: flex; align-items: center; gap: 28px;
}
/* kaydırınca üst katman toplanır, sadece nav şeridi kalır */
.site-header.scrolled .hdr-top { height: 0; opacity: 0; }

.hdr-brand { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.hb-name {
  font-family: var(--head); font-weight: 900; font-size: 29px;
  letter-spacing: -.035em; text-transform: uppercase; color: #fff;
}
.hb-sub {
  margin-top: 5px;
  font-size: 9.5px; font-weight: 650; letter-spacing: .34em;
  text-transform: uppercase; color: rgba(255,255,255,.62);
}

.hdr-pills { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 22px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.13);
  font-size: 14px; font-weight: 600; color: #fff; white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.pill i { font-size: 16px; opacity: .9; }
.pill:hover { background: #fff; color: var(--red-deep); transform: translateY(-1px); }
.pill-solid {
  background: #fff; color: var(--red-deep); font-weight: 700;
}
.pill-solid:hover { background: var(--ink); color: #fff; }

/* --- alt katman: parlak kırmızı nav şeridi, hücreler ayraçlı --- */
.hdr-nav { background: var(--red); }
.hdr-nav-inner { width: min(100% - 40px, var(--max)); margin-inline: auto; }

.nav { display: flex; align-items: stretch; }
.nav a {
  position: relative; flex: 1 1 0; min-width: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 19px 12px; text-align: center;
  font-size: 15px; font-weight: 600; color: #fff; white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.17);
  transition: background .25s var(--ease);
}
.nav a:first-child { border-left: 1px solid rgba(255,255,255,.17); }
.nav a::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: #fff;
  transform: scaleX(0); transition: transform .32s var(--ease-out);
}
.nav a:hover { background: rgba(0,0,0,.14); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { background: rgba(0,0,0,.14); }

.menu-toggle {
  display: none; width: 44px; height: 44px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.13); place-items: center; font-size: 20px; color: #fff;
  transition: background .2s var(--ease);
}
.menu-toggle:hover { background: #fff; color: var(--red-deep); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 190;
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  padding: 32px 28px;
  opacity: 0; visibility: hidden;
  clip-path: circle(0% at calc(100% - 46px) 46px);
  transition: clip-path .6s var(--ease-out), opacity .3s, visibility .3s;
}
.mobile-nav.open { opacity: 1; visibility: visible; clip-path: circle(150% at calc(100% - 46px) 46px); }
.mobile-nav a {
  font-family: var(--head); font-weight: 700; font-size: clamp(28px, 8vw, 40px);
  letter-spacing: -.035em; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  opacity: 0; transform: translateY(22px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), color .2s;
}
.mobile-nav.open a { opacity: 1; transform: none; }
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .mn-foot {
  margin-top: 34px; display: flex; flex-direction: column; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,.6);
  opacity: 0; transform: translateY(22px);
  transition: opacity .5s var(--ease-out) .35s, transform .5s var(--ease-out) .35s;
}
.mobile-nav.open .mn-foot { opacity: 1; transform: none; }
.mobile-nav .mn-foot a { font-family: var(--body); font-size: 15px; border: 0; padding: 0; }
.mn-close {
  position: absolute; top: 26px; right: 26px; width: 46px; height: 46px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  display: grid; place-items: center; font-size: 22px; color: #fff;
  transition: background .2s, transform .3s var(--ease);
}
.mn-close:hover { background: var(--red); transform: rotate(90deg); border-color: var(--red); }

/* ---------- BUTTONS ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: var(--r-pill);
  font-family: var(--body); font-size: 15px; font-weight: 650; letter-spacing: -.01em;
  cursor: pointer; white-space: nowrap; isolation: isolate;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn i { font-size: 17px; transition: transform .35s var(--ease-out); }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ink); transform: translateY(101%);
  transition: transform .45s var(--ease-out);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { box-shadow: 0 18px 40px -14px rgba(11,12,14,.5); }
.btn-primary:hover i { transform: translateX(3px); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark::before { background: var(--red); }

.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-outline:hover { color: #fff; border-color: var(--ink); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light::before { background: var(--red); }
.btn-light:hover { color: #fff; }

.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost-light::before { background: #fff; }
.btn-ghost-light:hover { color: var(--ink); border-color: #fff; }

.btn-muted {
  background: var(--bg-3); color: var(--ink-4); cursor: not-allowed;
  box-shadow: none;
}
.btn-muted::before { display: none; }
.btn-muted:hover { transform: none; }

.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-lg { padding: 17px 34px; font-size: 16.5px; }

/* ---------- EYEBROW / SECTION HEAD ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11.5px; font-weight: 750; letter-spacing: .19em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px;
}

/* ---------- HERO (tam ekran arka plan görseli + koyu katman) ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(520px, 64vh, 700px);
  display: flex; align-items: center;
  padding: 72px 0;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 68% center;
  will-change: transform;
}
/* soldan sağa açılan karartma — metin tarafı koyu, araç tarafı açık */
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(96deg,
      rgba(11,12,14,.94) 0%,
      rgba(11,12,14,.86) 30%,
      rgba(11,12,14,.62) 52%,
      rgba(11,12,14,.30) 74%,
      rgba(11,12,14,.16) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: min(100% - 40px, var(--max)); margin-inline: auto;
  max-width: min(100% - 40px, var(--max));
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  max-width: 100%;
  padding: 9px 20px 9px 16px; border-radius: 22px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(6px);
  color: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; line-height: 1.45;
}
.hero-tag .t { min-width: 0; }
.hero-tag .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  position: relative; flex: 0 0 auto;
}
.hero-tag .pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--red); animation: pulse 2s var(--ease-out) infinite;
}
@keyframes pulse {
  0%   { transform: scale(.6); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

.hero h1 {
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.08; letter-spacing: -.035em; font-weight: 800;
  color: #fff; max-width: 19ch;
  margin: 26px 0 20px;
}
.hero h1 em { font-style: normal; color: inherit; }

.hero .lead {
  font-size: clamp(16px, 1.3vw, 18.5px); line-height: 1.6;
  color: rgba(255,255,255,.82); max-width: 46ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
/* ---------- FLEET STRIP (hero altı bant) ---------- */
.fleet-strip {
  position: relative;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.fleet-inner {
  position: relative; z-index: 2;
  width: min(100% - 40px, var(--max)); margin-inline: auto;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
  padding: 56px 0;
}
/* bu bantta çizgisiz, düz kırmızı etiket */
.fleet-strip .eyebrow { color: var(--red); letter-spacing: .2em; }
.fleet-strip .eyebrow::before { display: none; }
.fleet-title {
  font-family: var(--head); font-weight: 800; letter-spacing: -.035em;
  font-size: clamp(26px, 3.2vw, 40px); color: var(--ink);
  margin: 14px 0 10px; line-height: 1.1;
}
.fleet-sub { color: var(--ink-3); font-size: 16.5px; max-width: 46ch; }
/* araç görseli beyaz kart içinde */
.fleet-car {
  width: clamp(260px, 32vw, 430px); aspect-ratio: 16/10; object-fit: cover;
  background: #fff; border-radius: var(--r);
  box-shadow: 0 18px 44px -20px rgba(11,12,14,.22), 0 2px 8px rgba(11,12,14,.05);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
}
.fleet-inner:hover .fleet-car {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -22px rgba(11,12,14,.3), 0 4px 12px rgba(11,12,14,.06);
}

/* ---------- ARAÇ GRID ---------- */
.car-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}

.car-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow-1);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out),
              border-color .45s var(--ease-out), opacity .3s, filter .3s;
}
.car-card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .5s var(--ease-out); z-index: 3;
}
.car-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3); border-color: transparent;
}
.car-card:hover::after { transform: scaleX(1); }

.car-figure {
  position: relative; aspect-ratio: 16/10; background: var(--bg-2); overflow: hidden;
}
.car-figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.car-card:hover .car-figure img { transform: scale(1.07); }

.car-avail {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  font-size: 12px; font-weight: 650; color: var(--ink);
  box-shadow: var(--shadow-1);
}
.car-avail .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.18);
}
.car-avail.car-unavail { color: var(--ink-3); }
.car-avail.car-unavail .dot { background: var(--ink-4); box-shadow: 0 0 0 3px rgba(156,163,174,.2); }

.car-tag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  padding: 7px 13px; border-radius: var(--r-pill);
  background: var(--red); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  box-shadow: var(--shadow-red);
}

.car-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.car-name {
  font-family: var(--head); font-weight: 800; font-size: 21px; color: var(--ink);
  letter-spacing: -.03em; line-height: 1.15;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 9px;
}
.car-name .yr {
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  color: var(--ink-4); letter-spacing: -.02em;
}

/* 2x2 sabit grid — kart yükseklikleri her araçta hizalı kalsın */
.car-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin: 16px 0 0; }
.car-specs .spec {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 8px; background: var(--bg-2);
  font-size: 12.5px; font-weight: 550; color: var(--ink-2);
  white-space: nowrap; transition: background .25s var(--ease);
}
.car-specs .spec i { font-size: 14px; color: var(--ink-4); }
.car-card:hover .car-specs .spec { background: var(--bg-3); }

.car-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin: 18px 0; padding: 15px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.car-meta .k {
  font-size: 10.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-4); margin-bottom: 4px;
}
.car-meta .v {
  font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--ink);
  letter-spacing: -.03em;
}

.car-foot {
  margin-top: auto; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 14px;
}
.car-price { display: flex; align-items: baseline; gap: 5px; }
.car-price .amt {
  font-family: var(--head); font-weight: 900; font-size: 30px; color: var(--ink);
  letter-spacing: -.045em; line-height: 1;
}
.car-price .per { font-size: 13px; font-weight: 550; color: var(--ink-4); }

.car-card.is-unavailable { opacity: .62; }
.car-card.is-unavailable .car-figure img { filter: grayscale(1); }

/* ---------- CTA BAND ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  border-radius: 24px; padding: 54px 52px;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.045) 0 1px, transparent 1px 22px);
}
.cta-band::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,29,42,.45), transparent 66%);
  filter: blur(16px);
}
.cta-band .row {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px;
}
.cta-band h2 {
  color: #fff; font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -.04em; font-weight: 900;
  margin-bottom: 12px;
}
.cta-band p { color: rgba(255,255,255,.68); font-size: 16.5px; max-width: 52ch; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- PAGE HERO (iç sayfalar) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--bg-2); border-bottom: 1px solid var(--line);
  padding: 62px 0 66px;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(11,12,14,.022) 0 1px, transparent 1px 24px);
}
.page-hero::after {
  content: ""; position: absolute; left: -80px; bottom: -120px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,29,42,.13), transparent 70%);
}
.page-hero .inner {
  position: relative; z-index: 2;
  width: min(100% - 40px, var(--max)); margin-inline: auto;
}
.breadcrumb {
  font-size: 13px; font-weight: 550; color: var(--ink-3);
  display: flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.breadcrumb a { color: var(--ink-2); transition: color .2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--line-2); }

.page-hero h1 {
  font-size: clamp(34px, 4.8vw, 58px); letter-spacing: -.042em; font-weight: 900;
  max-width: 20ch;
}
/* H1 altındaki alt başlık satırı */
.page-sub {
  margin-top: 14px;
  font-family: var(--head); font-weight: 700; font-size: clamp(17px, 1.6vw, 21px);
  letter-spacing: -.02em; color: var(--red);
}

.page-hero h1 + p, .page-hero p { margin-top: 18px; }
.page-hero p {
  font-size: 16.5px; line-height: 1.68; color: var(--ink-2); max-width: 78ch;
}
.page-hero p + p { margin-top: 14px; }

/* filomuz uzun giriş — editoryal blok */
.page-hero.editorial p:first-of-type {
  font-size: 19px; color: var(--ink); font-weight: 500;
  border-left: 3px solid var(--red); padding-left: 20px;
}

/* ---------- DOC (yasal / metin sayfaları) ---------- */
.doc-layout {
  width: min(100% - 40px, var(--max)); margin-inline: auto;
  display: grid; grid-template-columns: 250px 1fr; gap: 56px; align-items: start;
}
.doc-toc { position: sticky; top: 108px; }
.doc-toc .h {
  font-size: 11px; font-weight: 750; letter-spacing: .17em; text-transform: uppercase;
  color: var(--ink-4); margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.doc-toc a {
  display: block; padding: 8px 0 8px 15px; font-size: 13.5px; line-height: 1.45;
  color: var(--ink-3); border-left: 2px solid var(--line);
  transition: color .22s var(--ease), border-color .22s var(--ease), padding-left .22s var(--ease);
}
.doc-toc a:hover { color: var(--ink); border-color: var(--ink-4); padding-left: 19px; }
.doc-toc a.active { color: var(--red); border-color: var(--red); font-weight: 620; }

.doc { max-width: 78ch; }
.doc .meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-3);
  padding: 7px 14px; border-radius: var(--r-pill); background: var(--bg-2);
  margin-bottom: 28px;
}
.doc h2 {
  font-size: 22px; letter-spacing: -.03em; font-weight: 800;
  margin: 42px 0 14px; scroll-margin-top: 110px;
  display: flex; align-items: baseline; gap: 12px;
}
.doc h2:first-of-type { margin-top: 0; }
.doc h2::before {
  content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--red);
  flex-shrink: 0; transform: translateY(-3px);
}
.doc p { margin-bottom: 15px; line-height: 1.72; }
.doc p strong { color: var(--ink); font-weight: 650; }
.doc a:not(.btn) {
  color: var(--red); font-weight: 550;
  text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px;
  text-decoration-color: rgba(225,29,42,.3);
  transition: text-decoration-color .2s;
}
.doc a:not(.btn):hover { text-decoration-color: var(--red); }

/* metin sonundaki imza satırı */
.doc .sig {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line);
  font-family: var(--head); font-weight: 700; font-size: 15.5px;
  letter-spacing: -.02em; color: var(--ink);
}

.doc ul { margin: 0 0 18px; display: flex; flex-direction: column; gap: 10px; }
.doc ul li { position: relative; padding-left: 26px; line-height: 1.65; }
.doc ul li::before {
  content: ""; position: absolute; left: 6px; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
.doc ul li strong { color: var(--ink); font-weight: 650; }

.doc table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin: 6px 0 22px; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden;
  font-size: 15px;
}
.doc table tr:not(:last-child) th, .doc table tr:not(:last-child) td { border-bottom: 1px solid var(--line); }
.doc table th {
  text-align: left; padding: 13px 18px; width: 150px; vertical-align: top;
  background: var(--bg-2); color: var(--ink); font-weight: 650; font-size: 13.5px;
  border-right: 1px solid var(--line);
}
.doc table td { padding: 13px 18px; color: var(--ink-2); }
/* uzun e-posta/adres dar ekranda tabloyu taşırmasın */
.doc table td, .doc a:not(.btn) { overflow-wrap: anywhere; }

.callout {
  position: relative; margin: 24px 0; padding: 20px 24px 20px 56px;
  background: var(--red-soft); border: 1px solid rgba(225,29,42,.16);
  border-radius: var(--r-sm); font-size: 14.5px; line-height: 1.62; color: var(--ink-2);
}
.callout::before {
  content: "!"; position: absolute; left: 20px; top: 20px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center; font-family: var(--head); font-weight: 800; font-size: 14px;
}
.callout strong { color: var(--ink); font-weight: 650; }
.callout.center { text-align: center; padding: 24px; }
.callout.center::before { display: none; }

/* ---------- İLETİŞİM KARTLARI ---------- */
.contact-grid {
  width: min(100% - 40px, var(--max)); margin-inline: auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.contact-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 6px;
  padding: 32px 28px; border-radius: var(--r);
  background: var(--bg); border: 1px solid var(--line); box-shadow: var(--shadow-1);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s;
}
.contact-card::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: 0 50%; transition: transform .5s var(--ease-out);
}
.contact-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-2); border-color: transparent; }
.contact-card:hover::after { transform: scaleX(1); }
.contact-card .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--ink); color: #fff; font-size: 22px; margin-bottom: 14px;
  transition: background .35s var(--ease), transform .45s var(--ease-out);
}
.contact-card:hover .ico { background: var(--red); transform: rotate(-6deg) scale(1.06); }
.contact-card .lbl {
  font-size: 11px; font-weight: 750; letter-spacing: .17em; text-transform: uppercase;
  color: var(--ink-4);
}
.contact-card .val {
  font-family: var(--head); font-weight: 700; font-size: 18px; color: var(--ink);
  letter-spacing: -.025em; line-height: 1.35;
  overflow-wrap: anywhere;   /* uzun e-posta adresi kartı taşırmasın */
}
a.contact-card .val, .contact-card a.val { transition: color .2s; }
.contact-card a.val:hover { color: var(--red); }
.contact-card .note { font-size: 13px; color: var(--ink-3); margin-top: 4px; }

/* ---------- FOOTER ---------- */
.site-footer {
  position: relative; overflow: hidden;
  background: var(--ink); color: rgba(255,255,255,.62);
  padding: 72px 0 0; margin-top: 0;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--red), #FF5A45, var(--red));
}
.site-footer::after {
  content: ""; position: absolute; left: 12%; bottom: -180px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,29,42,.16), transparent 70%);
}
.footer-inner {
  position: relative; z-index: 2;
  width: min(100% - 40px, var(--max)); margin-inline: auto;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.4fr; gap: 44px;
  padding-bottom: 52px;
}
.footer-brand .row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-mark {
  width: 44px; height: 44px; border-radius: 9px; flex-shrink: 0;
  background: var(--red); color: #fff; display: grid; place-items: center;
}
.footer-brand .brand-mark span {
  font-family: var(--head); font-weight: 900; font-size: 18px; letter-spacing: -.05em; line-height: 1;
}
.footer-brand .brand-text { display: flex; flex-direction: column; line-height: 1.08; }
.footer-brand .brand-name {
  font-family: var(--head); font-weight: 800; font-size: 20px;
  letter-spacing: -.02em; text-transform: uppercase; color: #fff;
}
.footer-brand .brand-sub {
  font-size: 10px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.42);
}
.footer-brand p { font-size: 15px; line-height: 1.6; max-width: 30ch; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.7); font-size: 18px;
  transition: all .3s var(--ease);
}
.footer-social a:hover {
  background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px);
}

.footer-col .h {
  font-family: var(--head); font-size: 13px; font-weight: 750; letter-spacing: .14em;
  text-transform: uppercase; color: #fff; margin-bottom: 18px;
}
.footer-col .links { display: flex; flex-direction: column; gap: 11px; }
.footer-col .links a {
  font-size: 14.5px; width: fit-content; position: relative;
  transition: color .22s var(--ease), transform .22s var(--ease);
}
.footer-col .links a:hover { color: #fff; transform: translateX(4px); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact .it {
  display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; line-height: 1.55;
}
.footer-contact .it .ico { color: var(--red); font-size: 17px; flex-shrink: 0; margin-top: 2px; }
.footer-contact a.it { transition: color .22s; }
.footer-contact a.it:hover { color: #fff; }
.footer-contact .mono { font-family: var(--mono); letter-spacing: -.03em; }

.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  padding: 24px 0 28px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13.5px;
}
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-bottom a { transition: color .2s; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .mono { font-family: var(--mono); font-size: 12.5px; color: rgba(255,255,255,.42); }

/* ---------- FAB ---------- */
.fab-call {
  position: fixed; right: 22px; bottom: 22px; z-index: 120;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--red); color: #fff; display: grid; place-items: center; font-size: 24px;
  box-shadow: var(--shadow-red);
  transition: transform .35s var(--ease-out), background .3s;
}
.fab-call::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--red); animation: pulse 2.4s var(--ease-out) infinite;
}
.fab-call:hover { transform: scale(1.1) rotate(8deg); background: var(--ink); }
.fab-call:hover::after { border-color: var(--ink); }

/* ---------- SCROLL REVEAL ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].in { opacity: 1; transform: none; }

/* hero giriş animasyonu */
.hero-inner > * { opacity: 0; transform: translateY(24px); animation: rise .9s var(--ease-out) forwards; }
.hero-inner > *:nth-child(1) { animation-delay: .08s; }
.hero-inner > *:nth-child(2) { animation-delay: .19s; }
.hero-inner > *:nth-child(3) { animation-delay: .30s; }
.hero-inner > *:nth-child(4) { animation-delay: .41s; }
.hero-bg { opacity: 0; animation: fadeScale 1.4s var(--ease-out) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes fadeScale { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* hap butonlar sığmayınca CTA hapı düşer, telefon hapı CTA olarak kalır */
@media (max-width: 1080px) {
  .nav a { font-size: 14px; padding: 17px 8px; }
}
@media (max-width: 700px) {
  .pill-solid { display: none; }
}

@media (max-width: 1080px) {
  .car-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .doc-layout { grid-template-columns: 1fr; gap: 0; }
  .doc-toc { display: none; }
  .doc { max-width: none; }
}

@media (max-width: 900px) {
  /* nav şeridi tamamen kalkar, hamburger üst katmana geçer */
  .hdr-nav { display: none; }
  .menu-toggle { display: grid; }
  .site-header.scrolled .hdr-top { height: 78px; opacity: 1; }

  /* dar ekranda görselin araç tarafı görünsün, karartma dikeye döner */
  .hero { min-height: 480px; padding: 56px 0; }
  .hero-bg { object-position: 62% center; }
  .hero::after {
    background: linear-gradient(180deg,
      rgba(11,12,14,.90) 0%, rgba(11,12,14,.84) 45%, rgba(11,12,14,.72) 100%);
  }
  .hero h1 { max-width: none; }

  .fleet-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .fleet-car { width: 100%; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .cta-band { padding: 40px 28px; border-radius: 20px; }
  .section { padding: 68px 0; }
}

@media (max-width: 640px) {
  .wrap, .hero-inner, .hdr-top-inner, .hdr-nav-inner,
  .footer-inner, .contact-grid, .doc-layout, .page-hero .inner {
    width: min(100% - 32px, var(--max));
  }
  .car-grid { grid-template-columns: 1fr; gap: 20px; }

  /* dar ekranda logo küçülür, telefon hapı ikona iner */
  .hdr-top, .hdr-top-inner { height: 66px; }
  .site-header.scrolled .hdr-top { height: 66px; }
  .hb-name { font-size: 21px; }
  .hb-sub { font-size: 8px; letter-spacing: .26em; margin-top: 3px; }
  .hdr-pills { gap: 9px; }
  .pill .t { display: none; }
  .pill { padding: 0; width: 42px; height: 42px; justify-content: center; gap: 0; }
  .pill i { font-size: 18px; }
  .menu-toggle { width: 42px; height: 42px; }
  .doc table th { width: 118px; padding: 11px 13px; font-size: 12.5px; }
  .doc table td { padding: 11px 13px; font-size: 14px; }
  /* :not(.btn-sm) — yoksa bu kural .btn-sm padding'ini ezip kart butonunu kırpıyor */
  .btn:not(.btn-sm) { padding: 13px 22px; font-size: 14.5px; }
  .car-price .amt { font-size: 26px; }
  .section { padding: 56px 0; }
  .page-hero { padding: 44px 0 48px; }
}

/* dar telefonlarda fiyat + buton yan yana sıkışıyor → buton tam genişlik */
@media (max-width: 480px) {
  .car-foot { flex-direction: column; align-items: stretch; gap: 14px; }
  .car-foot .btn { width: 100%; }
}
