/* ========================================
   uöp Dijital Oto Çekici — Stil Sistemi
   Mavi-Beyaz + Amber aksent · Modern
   ======================================== */

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

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

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: env(safe-area-inset-bottom);
}

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


/* ---------- 2. DESIGN TOKENS ---------- */
:root {
  /* Brand */
  --navy-900: #0a1a3a;
  --navy-800: #0f2350;
  --navy-700: #163068;
  --navy-600: #1d4080;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #60a5fa;
  --blue-50:  #eff6ff;

  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-300: #fcd34d;

  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  /* Neutrals */
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --bg-dark: var(--navy-900);
  --ink: #0a1a3a;
  --ink-soft: #475569;
  --ink-muted: #94a3b8;
  --line: #e2e8f0;
  --line-dark: rgba(255,255,255,0.1);

  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10,26,58,.05), 0 2px 4px rgba(10,26,58,.04);
  --shadow-md: 0 4px 6px rgba(10,26,58,.06), 0 10px 24px rgba(10,26,58,.08);
  --shadow-lg: 0 12px 32px rgba(10,26,58,.12), 0 24px 60px rgba(10,26,58,.14);
  --shadow-glow: 0 0 0 4px rgba(37,99,235,.15);

  /* Container */
  --container: 1280px;
  --container-pad: 24px;

  /* Z */
  --z-header: 50;
  --z-modal: 100;
  --z-action: 60;
}


/* ---------- 3. UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--amber-500); color: var(--navy-900);
  padding: 12px 20px; font-weight: 700;
  border-radius: 0 0 var(--r-md) 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--blue-500);
  margin-bottom: 16px;
  padding: 6px 12px;
  background: var(--blue-50);
  border-radius: var(--r-full);
}
.kicker--light {
  background: rgba(245,158,11,.15);
  color: var(--amber-400);
}

.text-accent { color: var(--amber-500); }
.text-amber { color: var(--amber-400); }


/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--amber-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(245,158,11,.4);
}
.btn--primary:hover {
  background: var(--amber-400);
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(245,158,11,.2);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--whatsapp:hover { background: var(--whatsapp-dark); }

.btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--bg-alt); border-color: var(--navy-700); }

.btn--ghost-dark {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn--ghost-dark:hover { background: var(--navy-900); color: #fff; }

.btn--phone {
  background: var(--blue-50);
  color: var(--navy-900);
  border-color: transparent;
  font-family: var(--font-mono);
  font-weight: 600;
}
.btn--phone:hover { background: var(--blue-500); color: #fff; }

.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--xl {
  padding: 20px 32px;
  font-size: 18px;
  gap: 14px;
}
.btn--xl small { display: block; font-size: 11px; font-weight: 500; opacity: .85; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 2px;}
.btn--xl strong { display: block; font-family: var(--font-mono); font-size: 18px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }


/* ---------- 5. TICKER ---------- */
.ticker {
  background: var(--navy-900);
  color: #fff;
  font-size: 13px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
}
.ticker__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  padding: 10px 0;
  will-change: transform;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  letter-spacing: .04em;
  flex-shrink: 0;
}
.ticker__item strong { color: var(--amber-400); }
.ticker__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239,68,68,.7);
  animation: pulse 2s infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(239,68,68,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}


/* ---------- 6. HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
}
.logo__mark {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy-900);
  color: var(--amber-400);
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__brand {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .02em;
  line-height: 1;
}
.logo__sub {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}
.logo--light { color: #fff; }
.logo--light .logo__mark { background: #fff; color: var(--navy-900); }
.logo--light .logo__sub { color: var(--ink-muted); }

.nav__list {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__list a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav__list a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--amber-500);
  transition: width .25s ease;
}
.nav__list a:hover { color: var(--blue-500); }
.nav__list a:hover::after { width: 100%; }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy-900);
  transition: all .25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 16px var(--container-pad);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: background .2s;
}
.mobile-nav a:hover { background: var(--bg-alt); }


/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
}
.hero__glow--1 {
  top: -200px; left: -100px;
  background: var(--blue-500);
}
.hero__glow--2 {
  bottom: -200px; right: -100px;
  background: var(--amber-500);
  opacity: .2;
}
.hero__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .25 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .4;
  mix-blend-mode: overlay;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(245,158,11,.3);
  background: rgba(245,158,11,.08);
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--amber-400);
  margin-bottom: 28px;
}
.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber-400);
  animation: pulse2 1.5s ease-out infinite;
  box-shadow: 0 0 0 0 var(--amber-400);
}
@keyframes pulse2 {
  0% { box-shadow: 0 0 0 0 rgba(251,191,36,.7);}
  70%{ box-shadow: 0 0 0 12px rgba(251,191,36,0);}
  100%{box-shadow: 0 0 0 0 rgba(251,191,36,0);}
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: .95;
  letter-spacing: -.01em;
  font-weight: 400;
  margin-bottom: 24px;
}
.hero__title--accent {
  color: var(--amber-400);
  font-style: italic;
  display: inline-block;
  position: relative;
}
.hero__title--accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 4px;
  background: var(--amber-500);
  border-radius: var(--r-full);
  opacity: .35;
}

.hero__lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__lead strong { color: #fff; }

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 48px;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  max-width: 540px;
}
.trust__num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--amber-400);
}
.trust__lbl {
  font-size: 11.5px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 600;
}

/* Hero Visual Card */
.hero__visual { position: relative; }
.hero__card {
  background: #0d1f47;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(37,99,235,.2);
  position: relative;
  z-index: 2;
}
.hero__card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero__card-dots { display: inline-flex; gap: 6px; }
.hero__card-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.hero__card-dots span:nth-child(1) { background: #ef4444; }
.hero__card-dots span:nth-child(2) { background: var(--amber-400); }
.hero__card-dots span:nth-child(3) { background: var(--whatsapp); }
.hero__card-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.hero__card-foot {
  display: flex; justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.2);
}
.hero__card-stat {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,.8);
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot--live { background: var(--amber-400); animation: pulse2 1.6s infinite; }
.dot--ok   { background: var(--whatsapp); }

.hero__badge {
  position: absolute;
  background: #fff;
  color: var(--navy-900);
  padding: 16px 18px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex; flex-direction: column;
  line-height: 1.1;
  transform: rotate(-4deg);
}
.hero__badge strong {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--blue-500);
  letter-spacing: .02em;
}
.hero__badge span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-soft);
  margin-top: 4px;
}
.hero__badge--1 {
  top: -20px; right: -10px;
  transform: rotate(6deg);
}
.hero__badge--2 {
  bottom: -20px; left: -20px;
}

/* Hero marquee */
.hero__marquee {
  margin-top: 64px;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 14px 0;
}
.hero__marquee-track {
  display: flex;
  gap: 16px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 22px;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}


/* ---------- 8. ANSWER BLOCK (AEO) ---------- */
.answer-block {
  background: var(--bg-alt);
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.answer-block__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.answer-block__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--navy-900);
}
.answer-block__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.answer-block__lead strong { color: var(--navy-900); }
.answer-block__lead a { color: var(--blue-500); text-decoration: underline; text-underline-offset: 4px; }


/* ---------- 9. SECTION HEAD ---------- */
.section-head { margin-bottom: 48px; max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--navy-900);
  margin-bottom: 16px;
}
.section-head__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}


/* ---------- 10. SERVICES ---------- */
.services { padding: 96px 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card:hover {
  border-color: var(--navy-900);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card__num {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: .1em;
}
.service-card__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-50);
  color: var(--blue-500);
  border-radius: var(--r-md);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .01em;
  color: var(--navy-900);
  line-height: 1;
}
.service-card__desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.service-card__link {
  margin-top: auto;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-500);
  padding-top: 8px;
}
.service-card__link:hover { color: var(--amber-500); }

.service-card--lg {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: #fff;
  border-color: var(--navy-900);
}
.service-card--lg .service-card__title { color: #fff; }
.service-card--lg .service-card__desc { color: rgba(255,255,255,.7); }
.service-card--lg .service-card__num { color: rgba(255,255,255,.4); }
.service-card--lg .service-card__icon {
  background: rgba(245,158,11,.15);
  color: var(--amber-400);
}
.service-card--lg .service-card__link { color: var(--amber-400); }

.service-card__image-slot {
  flex: 1;
  margin: 12px 0;
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 200px;
}

.service-card--cta {
  background: var(--amber-500);
  border-color: var(--amber-500);
  color: var(--navy-900);
}
.service-card--cta .service-card__title { color: var(--navy-900); }
.service-card--cta .service-card__desc { color: var(--navy-700); }


/* ---------- 11. IMAGES & PLACEHOLDERS ---------- */

/* Hero görseli */
.hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  background: #0f2350;
}

/* Bölgeler haritası */
.regions__map-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.05);
}

/* Hizmet kartı içindeki görsel */
.service-card__image-slot {
  flex: 1;
  margin: 12px 0;
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 180px;
  background: rgba(255,255,255,.05);
}
.service-card__image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 180px;
}

/* Filo kartı görseli */
.fleet-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.fleet-card__img {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  overflow: hidden;
}

/* AKILLI FALLBACK: Görsel yüklenmezse (henüz eklenmemişse) güzel bir placeholder göster.
   Tarayıcı broken img için alt yazısını ve bir ikon gösterir.
   Aşağıdaki kurallar SADECE broken (yüklenememiş) görsellere uygulanır. */
img {
  /* Broken image ikonu için text style */
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue-500);
  text-align: center;
  line-height: 1.5;
  /* Broken resimlerde arkaplan rengi ve dashed border görünsün */
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 12px, rgba(37,99,235,.06) 12px, rgba(37,99,235,.06) 13px),
    var(--blue-50);
  /* Sadece broken/loading durumunda bu border görünür */
  border: 2px dashed transparent;
  min-height: 60px;
  display: block;
  position: relative;
}

/* Görsel yoksa tarayıcı bunu render eder - güzel görünür */
img[alt]:not([src=""]):not([src*="data:image"]) {
  font-style: italic;
  color: var(--blue-500);
}

/* Yüklü görseller için border'ı gizle (görsel yüklendiğinde background yine kalır ama alttan görünmez) */
img:not([src=""]) {
  border: none;
}

/* Broken durumunda dashed border görünmesi için pseudo-element */
.img-fallback {
  background: var(--blue-50);
  border: 2px dashed rgba(37,99,235,.3);
  border-radius: var(--r-md);
}

/* Hero img için koyu tema fallback */
.hero__img {
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(255,255,255,.03) 20px, rgba(255,255,255,.03) 21px),
    #0f2350;
  color: var(--amber-400);
}

/* Eski placeholder div'leri de kalsın (zaten kaldırıldı ama yine de) */
.img-placeholder {
  width: 100%; height: 100%; min-height: 160px;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 12px, rgba(37,99,235,.04) 12px, rgba(37,99,235,.04) 13px),
    var(--blue-50);
  border: 2px dashed rgba(37,99,235,.3);
  border-radius: var(--r-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 12px;
  color: var(--blue-500);
}
.img-placeholder__icon {
  color: var(--blue-500);
  opacity: .6;
}
.img-placeholder__label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--navy-700);
  line-height: 1.5;
}
.img-placeholder__label strong { font-weight: 700; color: var(--blue-500); display: block; }
.img-placeholder__label small {
  display: block;
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 4px;
}
.img-placeholder span {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue-500);
  text-align: center;
}
.img-placeholder--hero {
  min-height: 280px;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(255,255,255,.03) 20px, rgba(255,255,255,.03) 21px),
    #0f2350;
  border-color: rgba(255,255,255,.15);
  color: var(--amber-400);
}
.img-placeholder--hero .img-placeholder__label { color: rgba(255,255,255,.7); }
.img-placeholder--hero .img-placeholder__label strong { color: var(--amber-400); }
.img-placeholder--hero .img-placeholder__icon { color: var(--amber-400); }
.img-placeholder--map { min-height: 380px; }


/* ---------- 12. HOW IT WORKS ---------- */
.how {
  padding: 96px 0;
  background: var(--bg-alt);
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.how__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--blue-300) 50%, transparent 50%);
  background-size: 14px 2px;
  z-index: 0;
}
.how__step {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  transition: all .25s;
}
.how__step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.how__step-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--amber-500);
  margin-bottom: 8px;
  font-weight: 600;
}
.how__step-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: var(--navy-900);
  color: var(--amber-400);
  border-radius: var(--r-lg);
  display: inline-flex; align-items: center; justify-content: center;
}
.how__step h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy-900);
  margin-bottom: 10px;
  line-height: 1.1;
}
.how__step p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.how__cta {
  margin-top: 48px;
  text-align: center;
}


/* ---------- 13. REGIONS ---------- */
.regions { padding: 96px 0; }
.regions__wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.regions__col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.regions__col-head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 2px solid var(--navy-900);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.regions__col-head h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy-900);
}
.regions__col-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue-500);
  font-weight: 700;
  background: var(--blue-50);
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.regions__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.regions__list a {
  display: block;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: all .15s;
}
.regions__list a:hover {
  background: var(--navy-900);
  color: var(--amber-400);
  transform: translateX(2px);
}

.regions__map {
  background: var(--navy-900);
  border-radius: var(--r-lg);
  padding: 24px;
  color: #fff;
}
.regions__map .img-placeholder {
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(255,255,255,.03) 20px, rgba(255,255,255,.03) 21px),
    rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.15);
  color: var(--amber-400);
}
.regions__map .img-placeholder__label { color: rgba(255,255,255,.7); }
.regions__map .img-placeholder__label strong { color: var(--amber-400); }
.regions__map .img-placeholder__icon { color: var(--amber-400); }

.regions__map-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.regions__map-stats > div {
  background: rgba(255,255,255,.05);
  border-radius: var(--r-md);
  padding: 14px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.regions__map-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--amber-400);
  margin-bottom: 4px;
  letter-spacing: 0;
}

.regions__note {
  margin-top: 28px;
  padding: 18px 24px;
  background: var(--blue-50);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--r-md);
  font-size: 14.5px;
  color: var(--navy-700);
}
.regions__note strong { color: var(--blue-500); }


/* ---------- 14. FLEET ---------- */
.fleet {
  padding: 96px 0;
  background: var(--bg-alt);
}
.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fleet-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .25s;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fleet-card__img {
  position: relative;
  aspect-ratio: 16/10;
}
.fleet-card__img .img-placeholder { border-radius: 0; }
.fleet-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy-900);
  color: var(--amber-400);
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.fleet-card__body { padding: 24px; }
.fleet-card__body h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy-900);
  margin-bottom: 8px;
  line-height: 1.1;
}
.fleet-card__body p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 16px;
  line-height: 1.55;
}
.fleet-card__specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.fleet-card__specs li {
  display: flex; justify-content: space-between;
  font-size: 13.5px;
  font-family: var(--font-mono);
}
.fleet-card__specs span { color: var(--ink-muted); }
.fleet-card__specs strong { color: var(--navy-900); font-weight: 700; }


/* ---------- 15. WHY US ---------- */
.why {
  padding: 96px 0;
  background: var(--bg);
}
.why__head { text-align: center; margin-bottom: 56px; }
.why__head .kicker { display: inline-block; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.why-item {
  background: #fff;
  padding: 36px 28px;
  position: relative;
  transition: all .25s;
}
.why-item:hover {
  background: var(--navy-900);
  color: #fff;
}
.why-item:hover h3 { color: #fff; }
.why-item:hover p { color: rgba(255,255,255,.7); }
.why-item:hover .why-item__num { color: var(--amber-400); }

.why-item__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--blue-500);
  margin-bottom: 14px;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--navy-900);
  margin-bottom: 10px;
  line-height: 1;
  transition: color .25s;
}
.why-item p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  transition: color .25s;
}


/* ---------- 16. FAQ ---------- */
.faq {
  padding: 96px 0;
  background: var(--bg-alt);
}
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.faq__head { position: sticky; top: 100px; }
.faq__head .section-head__title { margin-bottom: 16px; }
.faq__head p { color: var(--ink-soft); margin-bottom: 24px; font-size: 16px; }

.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .2s;
}
.faq-item:hover { border-color: var(--navy-700); }
.faq-item[open] {
  border-color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-900);
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon {
  width: 28px; height: 28px;
  background: var(--blue-50);
  color: var(--blue-500);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--amber-500);
  color: var(--navy-900);
}
.faq-item__body {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.faq-item__body strong { color: var(--navy-900); }
.faq-item__body a { color: var(--blue-500); text-decoration: underline; text-underline-offset: 3px; }


/* ---------- 17. CONTACT CTA ---------- */
.contact {
  padding: 96px 0;
  background: var(--bg);
}
.contact__card {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}
.contact__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(245,158,11,.15), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(37,99,235,.2), transparent 50%);
  pointer-events: none;
}
.contact__content { position: relative; z-index: 1; max-width: 720px; }
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  margin: 20px 0;
}
.contact__lead {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  margin-bottom: 36px;
}
.contact__buttons {
  display: flex; flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.contact__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  font-size: 14px;
}
.contact__info strong {
  display: block;
  color: var(--amber-400);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .15em;
  margin-bottom: 6px;
  font-weight: 600;
}


/* ---------- 18. FOOTER ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding: 80px 0 24px;
  font-size: 14px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}
.footer__brand p {
  margin: 20px 0;
  line-height: 1.6;
  max-width: 320px;
}
.footer__social {
  display: flex; gap: 8px;
}
.footer__social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  transition: all .2s;
}
.footer__social a:hover {
  background: var(--amber-500);
  color: var(--navy-900);
  border-color: var(--amber-500);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.footer__col ul li { margin-bottom: 8px; }
.footer__col a {
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.footer__col a:hover { color: var(--amber-400); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 28px;
  font-size: 13px;
}
.footer__bottom strong { color: #fff; }
.footer__bottom-links {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.footer__bottom-links a { color: var(--amber-400); font-family: var(--font-mono); }
.footer__bottom-links a:hover { color: #fff; }

.footer__seo-text {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}


/* ---------- 19. STICKY ACTION BAR (Mobile) ---------- */
.action-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-action);
  background: rgba(10,26,58,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-dark);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.2);
}
.action-bar__btn {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  border-radius: var(--r-md);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .15s;
  text-align: center;
}
.action-bar__btn:active { transform: scale(0.96); }
.action-bar__btn--call { background: var(--amber-500); color: var(--navy-900); }
.action-bar__btn--wa   { background: var(--whatsapp); }
.action-bar__btn--loc  { background: var(--blue-500); }


/* ---------- 20. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--lg { grid-column: span 2; grid-row: auto; }
  .regions__wrap { grid-template-columns: 1fr; }
  .regions__list { grid-template-columns: repeat(3, 1fr); }
  .fleet__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .faq__layout { grid-template-columns: 1fr; gap: 32px; }
  .faq__head { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --container-pad: 18px; }

  .nav { display: none; }
  .hamburger { display: inline-flex; }
  .header__cta .btn--phone span { display: none; }
  .header__cta .btn--phone { padding: 10px; }

  .ticker { font-size: 12px; }
  .ticker__track { gap: 32px; }

  .hero { padding: 48px 0 40px; }
  .hero__title { font-size: clamp(40px, 12vw, 60px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hero__badge--1 { top: -10px; right: 10px; padding: 12px 14px; }
  .hero__badge--2 { bottom: -10px; left: 10px; padding: 12px 14px; }
  .hero__badge strong { font-size: 22px; }

  .services, .how, .regions, .fleet, .why, .faq, .contact { padding: 64px 0; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card--lg { grid-column: auto; }

  .how__grid { grid-template-columns: 1fr; }
  .how__grid::before { display: none; }

  .fleet__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .regions__list { grid-template-columns: repeat(2, 1fr); }

  .contact__card { padding: 40px 24px; }
  .contact__buttons { flex-direction: column; align-items: stretch; }
  .contact__buttons .btn { width: 100%; }
  .contact__info { grid-template-columns: 1fr; gap: 16px; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer__brand { grid-column: auto; }

  /* Sticky action bar - sadece mobilde */
  .action-bar { display: flex; }
  /* Footer'a alt padding ekle ki sticky bar üstüne binmesin */
  body { padding-bottom: 84px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 44px; }
  .section-head__title { font-size: 36px; }
  .hero__badge--1, .hero__badge--2 { display: none; }
}


/* ---------- 21. ANIMATIONS (reduced motion safe) ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ---------- 22. PRINT ---------- */
@media print {
  .header, .ticker, .action-bar, .hero__marquee { display: none; }
  body { color: #000; background: #fff; }
}
