/* ═══ İSKA OTOMOTİV ═══ */
:root {
  --ink: #14181d;
  --ink-2: #1e242c;
  --ink-3: #2a323d;
  --red: #c8322b;
  --red-dk: #a3241e;
  --bg: #f3f4f6;
  --surface: #fff;
  --text: #1a2028;
  --muted: #5d6773;
  --line: #e1e4e9;
  --r: 8px;
  --r-lg: 14px;
  --r-xl: 20px;
  --sh-sm: 0 1px 3px rgba(20,24,29,.07);
  --sh-md: 0 8px 24px rgba(20,24,29,.1);
  --sh-lg: 0 18px 48px rgba(20,24,29,.16);
  --dur: .22s;
  --ease: cubic-bezier(.4,0,.2,1);
  --max: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.ic { width: 14px; height: 14px; flex-shrink: 0; }

@keyframes rise { from { opacity: 0; transform: translateY(26px); } 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; }
  html { scroll-behavior: auto; }
}

/* ── Topbar ── */
.topbar { background: var(--ink); color: rgba(255,255,255,.7); font-size: 12.5px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color var(--dur) var(--ease); }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 22px; }
.topbar-right { display: flex; gap: 18px; }
.tb-grup { color: var(--red); font-weight: 700; }
@media (max-width: 720px) { .topbar-left a:nth-child(2) { display: none; } }

/* ── Header ── */
#site-header {
  background: #fff; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow var(--dur) var(--ease);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--ink);
  color: var(--red); font-weight: 900; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
}
.brand-name { line-height: 1.15; }
.brand-name strong { display: block; font-size: 17px; font-weight: 900; letter-spacing: .08em; color: var(--ink); }
.brand-name span { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .22em; color: var(--red); text-transform: uppercase; }
#main-nav ul { display: flex; gap: 4px; }
#main-nav a {
  display: block; padding: 9px 15px; border-radius: var(--r);
  font-size: 14px; font-weight: 600; color: var(--muted);
  transition: all var(--dur) var(--ease);
}
#main-nav a:hover { color: var(--ink); background: var(--bg); }
#main-nav a.active { color: var(--ink); font-weight: 800; }
.btn-header {
  background: var(--red); color: #fff;
  padding: 11px 22px; border-radius: var(--r);
  font-size: 13.5px; font-weight: 800; white-space: nowrap;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-header:hover { background: var(--red-dk); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; }
@media (max-width: 900px) {
  #main-nav { display: none; position: absolute; top: 74px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 12px 24px 20px; }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; gap: 2px; }
  .btn-header { display: none; }
  .hamburger { display: flex; }
}

/* ── Butonlar ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-size: 14px; font-weight: 800; font-family: inherit;
  border: 0; cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-2); transform: translateY(-2px); }

/* ── Bölüm başlıkları ── */
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.label::before { content: ''; width: 28px; height: 3px; background: var(--red); border-radius: 2px; }
.heading {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -.025em; color: var(--text);
}
.subtext { font-size: .9375rem; line-height: 1.8; color: var(--muted); }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0b0e12 0%, var(--ink) 45%, var(--ink-2) 80%, var(--ink-3) 100%);
  color: #fff; padding: 96px 0 84px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 14px);
}
.hero::after {
  content: '';
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,50,43,.18) 0%, transparent 65%);
  bottom: -180px; right: -120px; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-text > * { animation: rise .7s var(--ease) backwards; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,50,43,.14); border: 1px solid rgba(200,50,43,.45);
  color: #e05a52; padding: 6px 16px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -.03em; margin-bottom: 18px;
  animation-delay: .08s;
}
.hero h1 .accent { color: var(--red); }
.hero-desc {
  font-size: 15.5px; line-height: 1.75; color: rgba(255,255,255,.72);
  max-width: 480px; margin-bottom: 30px; animation-delay: .16s;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; animation-delay: .24s; }

/* Hero sağ: güvence listesi */
.assure-box {
  background: rgba(255,255,255,.05); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-xl);
  padding: 8px 26px;
  animation: rise .7s var(--ease) .2s backwards;
}
.assure-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.09);
}
.assure-row:last-child { border-bottom: 0; }
.assure-row .ai {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(200,50,43,.16); color: #e05a52;
  display: flex; align-items: center; justify-content: center;
}
.assure-row .ai svg { width: 18px; height: 18px; }
.assure-row strong { display: block; font-size: 14px; font-weight: 700; }
.assure-row span { font-size: 12.5px; color: rgba(255,255,255,.55); }

/* ── Sayı bandı ── */
.stats-band { background: #fff; border-bottom: 1px solid var(--line); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 720px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }
.stat-item { padding: 30px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat-item:last-child { border-right: 0; }
@media (max-width: 720px) { .stat-item:nth-child(2) { border-right: 0; } .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
.stat-item strong { display: block; font-size: 1.9rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink); line-height: 1.15; }
.stat-item span { font-size: 12.5px; font-weight: 600; color: var(--muted); }

/* ── Bölümler ── */
.section { padding: 84px 0; }
.section.alt { background: #fff; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }

/* ── Filtre çipleri ── */
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  border: 1px solid var(--line); background: #fff;
  padding: 8px 18px; border-radius: 999px;
  font-family: inherit; font-size: 13px; font-weight: 700; color: var(--muted);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ── Araç ilan kartları ── */
.car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .car-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .car-grid { grid-template-columns: 1fr; } }
.car-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.car-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.car-card.hidden { display: none; }
.car-visual {
  position: relative; aspect-ratio: 16 / 10;
  background: linear-gradient(140deg, var(--ink-3) 0%, var(--ink-2) 55%, var(--ink) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.car-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.05) 50%, transparent 60%);
}
.car-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.car-silhouette { position: relative; text-align: center; color: #fff; }
.car-silhouette svg { width: 96px; height: 52px; opacity: .5; margin: 0 auto; display: block; }
.car-silhouette span { font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.car-badge {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; color: #fff;
}
.car-badge.new { background: rgba(200,50,43,.95); }
.car-badge.report { background: rgba(30,120,74,.92); }
.car-badge.sold { background: rgba(93,103,115,.92); }
.car-body { padding: 20px 22px; }
.car-title { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 3px; }
.car-title h3 { font-size: 1.02rem; font-weight: 800; letter-spacing: -.01em; }
.car-year { font-size: 13px; font-weight: 800; color: var(--red); }
.car-trim { font-size: 12.5px; font-weight: 600; color: var(--muted); margin-bottom: 14px; }
.car-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }
.car-spec {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 8px 4px; text-align: center;
}
.car-spec strong { display: block; font-size: 12px; font-weight: 800; color: var(--ink); }
.car-spec span { font-size: 9.5px; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.car-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 14px; }
.car-price { font-size: 1.15rem; font-weight: 900; letter-spacing: -.02em; color: var(--ink); }
.car-price small { display: block; font-size: 10.5px; font-weight: 600; color: var(--muted); }
.car-cta { font-size: 13px; font-weight: 800; color: var(--red); }
.car-card:hover .car-cta { color: var(--red-dk); }

/* ── Hizmetler ── */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 960px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.svc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(200,50,43,.1); color: var(--red);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.svc-icon svg { width: 21px; height: 21px; }
.svc-card h3 { font-size: .975rem; font-weight: 800; margin-bottom: 8px; }
.svc-card p { font-size: .85rem; line-height: 1.65; color: var(--muted); }

/* ── Süreç ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; position: relative;
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; font-size: 12px; font-weight: 900; letter-spacing: .1em;
  color: var(--red); margin-bottom: 12px;
}
.step h3 { font-size: .95rem; font-weight: 800; margin-bottom: 6px; }
.step p { font-size: .85rem; line-height: 1.65; color: var(--muted); }

/* ── CTA ── */
.cta-section { padding: 0 0 84px; }
.cta-box {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: var(--r-xl); padding: 52px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  color: #fff; position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.025) 0 2px, transparent 2px 14px);
}
.cta-box > * { position: relative; }
.cta-box h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; }
.cta-box p { font-size: .9rem; color: rgba(255,255,255,.7); max-width: 480px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 640px) { .cta-box { padding: 34px 26px; } }

/* ── İletişim ── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; display: flex; gap: 16px; align-items: flex-start;
}
.contact-card .cci {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  background: rgba(200,50,43,.1); color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .cci svg { width: 19px; height: 19px; }
.contact-card h3 { font-size: .925rem; font-weight: 800; margin-bottom: 4px; }
.contact-card p, .contact-card a { display: block; font-size: .85rem; color: var(--muted); line-height: 1.6; }
.contact-card a:hover { color: var(--red); }

/* ── Footer ── */
footer { background: var(--ink); color: rgba(255,255,255,.65); }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px; padding: 60px 0 44px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand-name strong { color: #fff; }
.footer-brand > p { font-size: 13.5px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 13.5px; font-weight: 800; letter-spacing: .04em; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: #e05a52; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.4);
}
.footer-bottom a:hover { color: #fff; }
.footer-bottom-links { display: flex; gap: 20px; }
