/* =====================================================================
   VIP OTO GALERİ — Tasarım sistemi
   Konsept: gece asfaltı (koyu) ↔ aydınlatılmış showroom zemini (açık)
   Vurgu: pirinç (metal) + plaka mavisi (TR)
   ===================================================================== */

/* ------------------------------ Tokenlar ---------------------------- */
:root {
  --ink:        #0b0e13;
  --ink-2:      #111722;
  --ink-3:      #171f2c;
  --line-dark:  #232c3a;
  --floor:      #e9e6df;
  --floor-2:    #f5f3ef;
  --paper:      #ffffff;
  --line-light: #d9d4c9;

  --brass:      #c8a763;
  --brass-lt:   #e4cb93;
  --brass-dk:   #8a7440;
  --cobalt:     #2f6bff;
  --sold:       #b34a3d;

  --on-dark:    #eef1f6;
  --on-dark-mut:#8b96a8;
  --on-light:   #12161d;
  --on-light-mut:#666d78;

  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --body:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1260px;
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ------------------------------ Temel ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-wrap: break-word;
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 112%;
  letter-spacing: -.015em;
  line-height: 1.06;
  margin: 0;
}

p { margin: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(76px, 9vw, 130px); }
section[id], div[id] { scroll-margin-top: 96px; }
.dark  { background: var(--ink);   color: var(--on-dark); }
.light { background: var(--floor); color: var(--on-light); }

/* ---------------------- İmza öğesi: plaka rozeti --------------------- */
.plate {
  display: inline-flex;
  align-items: stretch;
  background: #f6f5f2;
  color: #0d1117;
  border-radius: var(--r-sm);
  overflow: hidden;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: .06em;
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 6px 18px rgba(0,0,0,.28);
}
.plate__eu {
  background: var(--cobalt);
  color: #fff;
  display: grid;
  place-content: center;
  padding-inline: 7px;
  font-size: 9px;
  line-height: 1;
  letter-spacing: .1em;
}
.plate__no { padding: 7px 12px; font-size: 14px; white-space: nowrap; }

/* ------------------------- Etiket / göz kırpma ----------------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
  opacity: .7;
}

.section-title { font-size: clamp(30px, 4.4vw, 52px); }
.section-lead {
  margin-top: 18px;
  max-width: 58ch;
  font-size: 16.5px;
  color: var(--on-dark-mut);
}
.light .section-lead { color: var(--on-light-mut); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 52px;
}

/* ------------------------------ Butonlar ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--brass { background: var(--brass); color: #14100a; }
.btn--brass:hover { background: var(--brass-lt); }
.btn--ghost { border-color: rgba(255,255,255,.22); color: var(--on-dark); }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass); }
.light .btn--ghost { border-color: rgba(0,0,0,.2); color: var(--on-light); }
.light .btn--ghost:hover { border-color: var(--brass-dk); color: var(--brass-dk); }
.btn--wa { background: #1f9d55; color: #fff; }
.btn--wa:hover { background: #24b463; }
.btn--block { width: 100%; }

/* ------------------------------- Üst şerit --------------------------- */
.topbar {
  background: var(--ink-2);
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  color: var(--on-dark-mut);
}
.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 40px;
}
.topbar__in span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: #34d17a; box-shadow: 0 0 0 3px rgba(52,209,122,.16); }
.topbar__hide { display: inline-flex; }
.topbar__hours { font-weight: 400; }

/* -------------------------------- Header ---------------------------- */
.head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11,14,19,.78);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-dark);
}
.head__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
@media (max-width: 1240px) {
  .nav { gap: 18px; }
  .nav a { font-size: 13.5px; }
  .head__tel { font-size: 13.5px; }
  .brand__sub { display: none; }
}
@media (max-width: 1080px) {
  .head__cta .btn { display: none; }
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark { height: 34px; }
.brand__txt { display: flex; flex-direction: column; gap: 3px; line-height: 1.15; }
.brand__name {
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 118%;
  font-size: 17px;
  letter-spacing: .12em;
}
.brand__sub {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--brass);
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: var(--on-dark-mut);
  transition: color .2s var(--ease);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -7px;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width .28s var(--ease);
}
.nav a:hover { color: var(--on-dark); }
.nav a:hover::after { width: 100%; }

.head__cta { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.head__cta .btn { white-space: nowrap; }
.head__tel {
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--brass);
}
.burger {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  padding: 0;
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px;
  width: 20px; height: 1.6px;
  background: var(--on-dark);
  transition: transform .3s var(--ease), opacity .2s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 26px; }
.burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* --------------------------------- Hero ------------------------------ */
.hero {
  position: relative;
  padding-block: clamp(84px, 11vw, 150px) clamp(60px, 7vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 78% 8%, rgba(200,167,99,.14), transparent 62%),
    radial-gradient(760px 420px at 12% 96%, rgba(47,107,255,.13), transparent 66%),
    var(--ink);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 50% 40%, #000 25%, transparent 78%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 4.9vw, 64px);
  font-weight: 800;
  font-stretch: 118%;
}
.hero h1 em {
  font-style: normal;
  color: var(--brass);
  display: block;
}
.hero__lead {
  margin-top: 26px;
  max-width: 46ch;
  font-size: 17px;
  color: var(--on-dark-mut);
}
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__proof {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  border-top: 1px solid var(--line-dark);
}
.proof { padding: 22px 20px 0 0; }
.proof__n {
  font-family: var(--display);
  font-stretch: 118%;
  font-weight: 800;
  font-size: 32px;
  color: var(--on-dark);
}
.proof__n small { font-size: 15px; color: var(--brass); margin-left: 3px; }
.proof__l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
  margin-top: 6px;
}

/* ------------------------ Hero: arama konsolu ------------------------ */
.console {
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: 0 34px 70px -30px rgba(0,0,0,.9);
}
.console__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line-dark);
}
.console__title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
}
.console__count { font-family: var(--mono); font-size: 11px; color: var(--on-dark-mut); }

.field { display: block; margin-bottom: 16px; }
.field__l {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
  margin-bottom: 8px;
}
.field__i,
.field select,
.field input,
.field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  color: var(--on-dark);
  font-size: 14.5px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%238b96a8' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 38px;
}
.field__i:focus,
.field select:focus,
.field input:focus,
.field textarea:focus {
  border-color: var(--brass);
  background-color: #0e131c;
  outline: none;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------------------------- Marka şeridi --------------------------- */
.brands {
  border-block: 1px solid var(--line-dark);
  background: var(--ink-2);
  padding-block: 26px;
  overflow: hidden;
}
.brands__track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: kay 34s linear infinite;
  width: max-content;
}
.brands:hover .brands__track { animation-play-state: paused; }
.brands__item {
  font-family: var(--display);
  font-stretch: 118%;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #5c6675;
  white-space: nowrap;
  transition: color .25s var(--ease);
}
.brands__item:hover { color: var(--brass); }
.brands__item small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--brass-dk);
  margin-left: 7px;
}
@keyframes kay {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ------------------------------ Filtreler ---------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line-light);
  border-radius: 100px;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--on-light-mut);
  transition: all .22s var(--ease);
}
.chip:hover { border-color: var(--brass-dk); color: var(--on-light); }
.chip.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip.is-on b { color: var(--brass); font-weight: 600; }
.chip b { color: var(--brass-dk); font-weight: 600; }

.result-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--r-md);
  margin-bottom: 30px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--on-light-mut);
}
.result-bar b { color: var(--on-light); }
.result-bar a { color: var(--brass-dk); border-bottom: 1px solid currentColor; }

/* ------------------------------ Araç kartı --------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}

.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--brass);
  box-shadow: 0 26px 48px -26px rgba(18,22,29,.5);
}
.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--ink-2);
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }

.card__tags {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.tag {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  background: rgba(11,14,19,.82);
  color: #fff;
  backdrop-filter: blur(6px);
}
.tag--vip   { background: var(--brass); color: #14100a; }
.tag--sold  { background: var(--sold); }
.tag--opt   { background: var(--cobalt); }
.tag--warr  { background: rgba(31,157,85,.92); }

.card__plate {
  position: absolute;
  left: 14px; bottom: 14px;
}
.card__cam {
  position: absolute;
  right: 14px; bottom: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: #fff;
  background: rgba(11,14,19,.72);
  border-radius: var(--r-sm);
  padding: 5px 9px;
  backdrop-filter: blur(6px);
}

.card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card__brand {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-dk);
}
.card__title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 7px;
  color: var(--on-light);
}
.card__specs {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.spec { text-align: left; }
.spec__l {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9aa0aa;
}
.spec__v {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--on-light);
  margin-top: 3px;
  white-space: nowrap;
}
.card__foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card__price {
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 800;
  font-size: 22px;
  color: var(--on-light);
}
.card__more {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass-dk);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.card__more svg { transition: transform .25s var(--ease); }
.card:hover .card__more svg { transform: translateX(4px); }
.card.is-sold .card__media img { filter: grayscale(1) brightness(.72); }

.empty {
  padding: 70px 30px;
  text-align: center;
  border: 1px dashed var(--line-light);
  border-radius: var(--r-md);
  background: var(--paper);
}
.empty h3 { font-size: 22px; }
.empty p { margin-top: 10px; color: var(--on-light-mut); }

/* ------------------------------ Hizmetler ---------------------------- */
.svc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  overflow: hidden;
}
.svc__i {
  padding: 34px 28px 38px;
  border-right: 1px solid var(--line-dark);
  transition: background .3s var(--ease);
}
.svc__i:last-child { border-right: 0; }
.svc__i:hover { background: var(--ink-2); }
.svc__k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  color: var(--brass);
  text-transform: uppercase;
}
.svc__h { font-size: 21px; margin-top: 16px; }
.svc__p { margin-top: 12px; font-size: 14.5px; color: var(--on-dark-mut); }

/* --------------------------- Aracını sat (3 adım) -------------------- */
.sell { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.steps { margin-top: 40px; display: grid; gap: 2px; }
.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line-light);
}
.step:last-child { border-bottom: 1px solid var(--line-light); }
.step__n {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--brass-dk);
  padding-top: 3px;
}
.step__h { font-size: 18px; }
.step__p { margin-top: 6px; font-size: 14.5px; color: var(--on-light-mut); }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 30px 60px -40px rgba(18,22,29,.55);
}
.form-card h3 { font-size: 23px; }
.form-card > p { margin-top: 10px; font-size: 14.5px; color: var(--on-light-mut); }
.form-card .field { margin-top: 18px; margin-bottom: 0; }
.form-card .field__l { color: var(--on-light-mut); }
.form-card .field input,
.form-card .field select,
.form-card .field textarea {
  background-color: var(--floor-2);
  border-color: var(--line-light);
  color: var(--on-light);
}
.form-card .field input:focus,
.form-card .field select:focus,
.form-card .field textarea:focus { background-color: #fff; border-color: var(--brass-dk); }
.form-card .field select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23666d78' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
}
.form-card textarea { min-height: 96px; resize: vertical; }
.form-note {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  color: #8b909a;
  line-height: 1.7;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 14px;
  margin-bottom: 20px;
  border-left: 3px solid;
}
.alert--ok  { background: rgba(31,157,85,.1);  border-color: #1f9d55; color: #12693a; }
.alert--err { background: rgba(179,74,61,.1);  border-color: var(--sold); color: #8e372c; }
.dark .alert--ok  { color: #6de3a5; }
.dark .alert--err { color: #f0958a; }

/* ------------------------------ Yorumlar ----------------------------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 22px; }
.quote {
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: 28px;
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  display: flex;
  flex-direction: column;
}
.quote__stars { color: var(--brass); font-size: 13px; letter-spacing: 3px; }
.quote__t { margin-top: 16px; font-size: 15px; color: #cfd6e2; flex: 1; }
.quote__w {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.quote__n { font-weight: 700; font-size: 14.5px; }
.quote__c { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; color: var(--on-dark-mut); text-transform: uppercase; }

/* ------------------------------ İletişim ----------------------------- */
.contact { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: start; }
.info { display: grid; gap: 2px; margin-top: 36px; }
.info__i {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  align-items: baseline;
}
.info__i:last-child { border-bottom: 1px solid var(--line-dark); }
.info__l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
}
.info__v { font-size: 15.5px; }
.info__v a:hover { color: var(--brass); }

.map {
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  overflow: hidden;
  height: 300px;
  margin-top: 28px;
  filter: grayscale(1) invert(.92) contrast(.86);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact .form-card { background: var(--ink-2); border-color: var(--line-dark); }
.contact .form-card h3 { color: var(--on-dark); }
.contact .form-card > p { color: var(--on-dark-mut); }
.contact .form-card .field__l { color: var(--on-dark-mut); }
.contact .form-card .field input,
.contact .form-card .field select,
.contact .form-card .field textarea {
  background-color: var(--ink);
  border-color: var(--line-dark);
  color: var(--on-dark);
}
.contact .form-card .field input:focus,
.contact .form-card .field select:focus,
.contact .form-card .field textarea:focus { background-color: #0e131c; border-color: var(--brass); }
.contact .form-card .field select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%238b96a8' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
}

/* -------------------------------- Footer ----------------------------- */
.foot { background: var(--ink-2); border-top: 1px solid var(--line-dark); padding-block: 56px 0; }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot__p { margin-top: 18px; font-size: 14px; color: var(--on-dark-mut); max-width: 34ch; }
.foot h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot li a { font-size: 14.5px; color: var(--on-dark-mut); }
.foot li a:hover { color: var(--on-dark); }
.foot__bar {
  margin-top: 48px;
  padding-block: 22px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: #626c7c;
}
.foot__bar a { color: var(--brass-dk); }

/* ------------------------- Yüzen aksiyonlar -------------------------- */
.fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 70;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1f9d55;
  color: #fff;
  box-shadow: 0 14px 34px -10px rgba(31,157,85,.7);
  transition: transform .25s var(--ease);
}
.fab:hover { transform: scale(1.08); }

.mobar { display: none; }

/* --------------------------------- Modal ----------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 24px;
  overflow-y: auto;
}
.modal.is-open { display: block; }
.modal__bg { position: fixed; inset: 0; background: rgba(4,6,10,.82); backdrop-filter: blur(5px); }
.modal__box {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  animation: yukari .34s var(--ease);
}
@keyframes yukari {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.modal__x {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(11,14,19,.72);
  color: #fff;
  font-size: 19px;
  line-height: 1;
  backdrop-filter: blur(6px);
}
.modal__hero { aspect-ratio: 16/9; background: var(--ink); position: relative; }
.modal__hero img { width: 100%; height: 100%; object-fit: cover; }
.modal__thumbs { display: flex; gap: 8px; padding: 12px; background: var(--ink); overflow-x: auto; }
.modal__thumbs img {
  width: 96px; height: 62px;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-dark);
  opacity: .55;
  cursor: pointer;
  flex: 0 0 auto;
  transition: opacity .2s var(--ease), border-color .2s var(--ease);
}
.modal__thumbs img.is-on, .modal__thumbs img:hover { opacity: 1; border-color: var(--brass); }
.modal__body { padding: 30px; }
.modal__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-dark);
}
.modal__title { font-size: 28px; }
.modal__brand {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}
.modal__price {
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 800;
  font-size: 30px;
  color: var(--brass);
}
.dl {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.dl__i { background: var(--ink-2); padding: 14px 16px; }
.dl__l {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
}
.dl__v { font-size: 14.5px; font-weight: 600; margin-top: 5px; overflow-wrap: anywhere; }
.modal h4.blk {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 28px 0 14px;
}
.modal__desc { font-size: 15px; color: #c3ccd9; }
.feats { display: flex; flex-wrap: wrap; gap: 8px; }
.feat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  padding: 7px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  color: #b9c3d1;
}
.modal__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ------------------------------ Reveal ------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ----------------------------- Responsive ---------------------------- */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 46px; }
  .svc { grid-template-columns: 1fr 1fr; }
  .svc__i:nth-child(2) { border-right: 0; }
  .svc__i:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .sell, .contact { grid-template-columns: 1fr; gap: 42px; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    inset: 118px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line-dark);
    padding: 8px 24px 22px;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .32s var(--ease), opacity .26s var(--ease), visibility .26s;
    z-index: 55;
  }
  .nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line-dark); font-size: 15.5px; }
  .nav a::after { display: none; }
  .burger { display: block; }
  .head__tel { display: none; }
  .head__cta .btn { display: none; }
  .topbar__hide, .topbar__hours { display: none !important; }
  .hero__proof { grid-template-columns: 1fr 1fr; }
  .proof:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line-dark); }
  .svc { grid-template-columns: 1fr; }
  .svc__i { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .svc__i:last-child { border-bottom: 0; }
  .foot__grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .fab { bottom: 84px; }
  .mobar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 68;
    background: rgba(11,14,19,.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line-dark);
  }
  .mobar a {
    padding: 16px 10px;
    text-align: center;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .mobar a + a { border-left: 1px solid var(--line-dark); color: var(--brass); }
  body { padding-bottom: 56px; }
  .modal { padding: 0; }
  .modal__box { margin: 0; border-radius: 0; border: 0; min-height: 100vh; }
}

@media (max-width: 560px) {
  .brand__mark { display: none; }
  .brand__name { font-size: 15px; letter-spacing: .09em; }
  .brand__sub { font-size: 9px; }
  section[id], div[id] { scroll-margin-top: 90px; }
  .field-row { grid-template-columns: 1fr; }
  .card__specs { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .modal__body, .form-card { padding: 22px; }
  .info__i { grid-template-columns: 1fr; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}


/* =====================================================================
   EK BİLEŞENLER — çok sayfalı sürüm
   ===================================================================== */

/* İçeriğe atla (erişilebilirlik) */
.atla {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brass); color: #14100a; padding: 12px 20px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em;
}
.atla:focus { left: 12px; top: 12px; }

/* Kart bağlantı yapısı */
.card__link { display: flex; flex-direction: column; flex: 1; color: inherit; }
.card__quick {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(11,14,19,.78); color: #fff; border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-sm); padding: 7px 11px; backdrop-filter: blur(6px);
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase;
  opacity: 0; transform: translateY(-4px); transition: all .25s var(--ease);
}
.card:hover .card__quick, .card__quick:focus-visible { opacity: 1; transform: none; }
.card__quick:hover { background: var(--brass); color: #14100a; border-color: var(--brass); }
@media (hover: none) { .card__quick { opacity: 1; transform: none; } }

/* Sayfa başlığı bandı */
.sayfa-bas {
  background:
    radial-gradient(760px 380px at 88% -20%, rgba(200,167,99,.13), transparent 62%),
    radial-gradient(600px 340px at 0% 120%, rgba(47,107,255,.11), transparent 66%),
    var(--ink);
  padding-block: clamp(44px, 6vw, 76px) clamp(38px, 5vw, 60px);
  border-bottom: 1px solid var(--line-dark);
}
.sayfa-h1 { font-size: clamp(30px, 4.6vw, 54px); max-width: 20ch; }
.sayfa-alt { margin-top: 18px; max-width: 62ch; color: var(--on-dark-mut); font-size: 16px; }

.kirinti {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--on-dark-mut); margin-bottom: 22px;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.kirinti a:hover { color: var(--brass); }
.kirinti span { color: #4d5766; }

/* ---------------- Liste sayfası ---------------- */
.liste { display: grid; grid-template-columns: 296px minmax(0, 1fr); gap: 34px; align-items: start; }
.liste > * { min-width: 0; }

.filtre {
  background: var(--paper); border: 1px solid var(--line-light);
  border-radius: var(--r-md); padding: 24px; position: sticky; top: 96px;
}
.filtre__bas { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.filtre__h { font-size: 18px; }
.filtre__kapat { display: none; background: none; border: 0; font-size: 26px; line-height: 1; color: var(--on-light); }
.filtre .field__l { color: var(--on-light-mut); }
.filtre .field input, .filtre .field select {
  background-color: var(--floor-2); border-color: var(--line-light); color: var(--on-light);
}
.filtre .field select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23666d78' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
}
.filtre .field input:focus, .filtre .field select:focus { background-color: #fff; border-color: var(--brass-dk); }
.filtre__sifirla {
  display: block; text-align: center; margin-top: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--on-light-mut);
}
.filtre__sifirla:hover { color: var(--brass-dk); }

.result-bar__sag { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
@media (max-width: 560px) {
  .result-bar { flex-direction: column; align-items: stretch; }
  .result-bar__sag { justify-content: space-between; }
  .sirala-form select { max-width: 160px; }
}
.sirala-form { display: flex; align-items: center; gap: 9px; }
.sirala-form select {
  background-color: #fff; border: 1px solid var(--line-light); border-radius: var(--r-sm);
  padding: 9px 32px 9px 12px; color: var(--on-light); font-size: 13.5px; appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23666d78' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 11px center; background-size: 11px;
}
.btn--sm { padding: 10px 16px; font-size: 11px; }
[data-filtre-ac] { display: none; }

.sayfalama { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 46px; }
.syf {
  min-width: 44px; padding: 11px 15px; text-align: center;
  border: 1px solid var(--line-light); border-radius: var(--r-sm); background: var(--paper);
  font-family: var(--mono); font-size: 13px; color: var(--on-light);
}
.syf:hover { border-color: var(--brass-dk); color: var(--brass-dk); }
.syf.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }

.seo-metin { margin-top: 60px; padding-top: 34px; border-top: 1px solid var(--line-light); max-width: 78ch; }
.seo-metin h2 { font-size: 21px; margin-bottom: 14px; }
.seo-metin p { color: var(--on-light-mut); font-size: 15px; margin-bottom: 14px; }

/* ---------------- Araç detay ---------------- */
.detay__ust {
  background: var(--ink); padding-block: clamp(34px, 4vw, 52px) clamp(26px, 3vw, 38px);
  border-bottom: 1px solid var(--line-dark);
}
.detay__basbar { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 26px; }
.detay__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.detay__marka {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 10px;
}
.detay__h1 { font-size: clamp(28px, 4.4vw, 50px); }
.detay__fiyat { text-align: right; }
.detay__fl {
  display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--on-dark-mut); margin-bottom: 8px;
}
.detay__fv {
  font-family: var(--display); font-stretch: 112%; font-weight: 800;
  font-size: clamp(26px, 3.6vw, 40px); color: var(--brass);
}

.detay__govde { background: var(--ink); padding-block: clamp(34px, 4vw, 56px) clamp(50px, 6vw, 84px); }
.detay__grid { display: grid; grid-template-columns: minmax(0, 1fr) 372px; gap: 42px; align-items: start; }
.detay__grid > * { min-width: 0; }

.galeri__buyuk {
  position: relative; aspect-ratio: 16/10; border-radius: var(--r-md);
  overflow: hidden; border: 1px solid var(--line-dark); background: var(--ink-2);
}
.galeri__buyuk img { width: 100%; height: 100%; object-fit: cover; }
.galeri__satildi {
  position: absolute; top: 20px; left: 20px; background: var(--sold); color: #fff;
  padding: 9px 16px; border-radius: var(--r-sm);
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
}
.galeri__kucuk { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.galeri__kucuk img {
  width: 118px; height: 76px; object-fit: cover; border-radius: var(--r-sm);
  border: 1px solid var(--line-dark); opacity: .5; cursor: pointer; flex: 0 0 auto;
  transition: opacity .2s var(--ease), border-color .2s var(--ease);
}
.galeri__kucuk img:hover, .galeri__kucuk img.is-on { opacity: 1; border-color: var(--brass); }

.blok-h {
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brass); margin: 46px 0 18px; font-weight: 700;
}
.detay__aciklama { font-size: 15.5px; color: #c3ccd9; max-width: 72ch; }

.donanim { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
.donanim__h { font-size: 15px; margin-bottom: 12px; color: var(--on-dark); }
.donanim__l { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.donanim__l li {
  position: relative; padding-left: 22px; font-size: 14.5px; color: #b9c3d1;
}
.donanim__l li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 9px; height: 5px;
  border-left: 1.6px solid var(--brass); border-bottom: 1.6px solid var(--brass);
  transform: rotate(-45deg);
}

.video { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line-dark); aspect-ratio: 16/9; }
.video iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Yan kart */
.detay__yan { position: sticky; top: 100px; }
.yan-kart {
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 28px;
  box-shadow: 0 30px 60px -34px rgba(0,0,0,.85);
}
.yan-kart__h { font-size: 21px; margin: 20px 0 10px; }
.yan-kart__p { font-size: 14.5px; color: var(--on-dark-mut); }
.yan-kart__btn { display: grid; gap: 10px; margin-top: 22px; }
.yan-kart__liste { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.yan-kart__liste li {
  position: relative; padding-left: 22px; font-size: 14px; color: var(--on-dark-mut);
}
.yan-kart__liste li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 9px; height: 5px;
  border-left: 1.6px solid var(--brass); border-bottom: 1.6px solid var(--brass);
  transform: rotate(-45deg);
}
.yan-kart__liste b { color: var(--on-dark); }
.yan-kart__alt {
  margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line-dark);
  display: grid; gap: 6px; font-family: var(--mono); font-size: 11px;
  letter-spacing: .06em; color: #7d8592; line-height: 1.7;
}
.light .yan-kart { background: var(--paper); border-color: var(--line-light); }
.light .yan-kart__h, .light .yan-kart__liste b { color: var(--on-light); }
.light .yan-kart__p, .light .yan-kart__liste li { color: var(--on-light-mut); }
.light .yan-kart__alt { border-color: var(--line-light); }

/* ---------------- Kredi hesaplama ---------------- */
.kredi { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 60px; align-items: center; }
.calc {
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 30px;
  box-shadow: 0 34px 70px -36px rgba(0,0,0,.9);
}
.calc--ic { box-shadow: none; }
.calc__row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
.calc__l {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--on-dark-mut);
}
.calc__o { font-family: var(--mono); font-size: 17px; font-weight: 700; color: var(--brass); }
.range {
  -webkit-appearance: none; appearance: none; width: 100%; height: 3px;
  background: var(--line-dark); border-radius: 3px; outline: none;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brass); border: 4px solid var(--ink-2); cursor: pointer;
  box-shadow: 0 3px 12px rgba(200,167,99,.5);
}
.range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--brass);
  border: 4px solid var(--ink-2); cursor: pointer;
}
.calc__sonuc {
  margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line-dark);
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.calc__sl {
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--on-dark-mut); margin-bottom: 8px;
}
.calc__sv {
  font-family: var(--display); font-stretch: 112%; font-weight: 800;
  font-size: 30px; color: var(--brass);
}
.calc__sv.sm { font-size: 21px; color: var(--on-dark); }
.calc__not {
  margin-top: 20px; font-family: var(--mono); font-size: 10.5px;
  line-height: 1.75; color: #6f7a8a;
}

/* ---------------- Showroom kareleri ---------------- */
.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.shot { margin: 0; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line-dark); position: relative; }
.shot img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .7s var(--ease); }
.shot:hover img { transform: scale(1.05); }
.shot figcaption {
  position: absolute; inset: auto 0 0; padding: 26px 16px 14px;
  background: linear-gradient(transparent, rgba(7,10,15,.88));
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: #e6e9ef;
}

/* ---------------- SSS ---------------- */
.sss { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 56px; align-items: start; }
.akordiyon { display: grid; }
.ak { border-top: 1px solid var(--line-light); }
.ak:last-child { border-bottom: 1px solid var(--line-light); }
.ak summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--display); font-stretch: 108%; font-weight: 700; font-size: 17.5px;
  color: var(--on-light);
}
.ak summary::-webkit-details-marker { display: none; }
.ak summary::after {
  content: ""; position: absolute; right: 6px; top: 30px; width: 11px; height: 11px;
  border-right: 1.8px solid var(--brass-dk); border-bottom: 1.8px solid var(--brass-dk);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.ak[open] summary::after { transform: rotate(-135deg); top: 34px; }
.ak__i { padding: 0 20px 24px 0; color: var(--on-light-mut); font-size: 15px; max-width: 70ch; }

/* ---------------- CTA bandı ---------------- */
.cta {
  background: linear-gradient(120deg, var(--ink-3), var(--ink));
  border-top: 1px solid var(--line-dark); padding-block: clamp(52px, 6vw, 84px);
}
.cta__in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; }
.cta__btn { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------------- Yazı sayfası ---------------- */
.yazi { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 54px; align-items: start; }
.yazi > * { min-width: 0; }
.yazi__giris { font-size: 18px; color: var(--on-light); max-width: 68ch; }
.yazi h2 { font-size: 24px; margin: 40px 0 14px; }
.yazi p { color: var(--on-light-mut); font-size: 15.5px; margin-bottom: 14px; max-width: 72ch; }
.yazi__yan { position: sticky; top: 100px; }

.not-kutu {
  margin-top: 40px; padding: 26px; background: var(--paper);
  border: 1px solid var(--line-light); border-left: 3px solid var(--brass); border-radius: var(--r-md);
}
.not-kutu h3 { font-size: 18px; margin-bottom: 10px; }
.not-kutu p { color: var(--on-light-mut); font-size: 14.5px; }

/* ---------------- Footer eklentileri ---------------- */
.foot__h {
  font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brass); margin: 0 0 18px;
}
.foot__soc { display: flex; gap: 16px; margin-top: 20px; }
.foot__soc a {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--on-dark-mut);
}
.foot__soc a:hover { color: var(--brass); }

/* ---------------- Duyarlı ---------------- */
@media (max-width: 1080px) {
  .liste { grid-template-columns: minmax(0, 1fr); }
  .filtre {
    position: fixed; inset: 0; z-index: 90; border-radius: 0; overflow-y: auto;
    display: none; padding: 26px;
  }
  .filtre.is-open { display: block; }
  .filtre__kapat { display: block; }
  [data-filtre-ac] { display: inline-flex; }
  .detay__grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .detay__yan { position: static; }
  .kredi, .sss, .yazi { grid-template-columns: minmax(0, 1fr); gap: 38px; }
  .yazi__yan { position: static; }
}

@media (max-width: 820px) {
  .detay__basbar { gap: 18px; }
  .detay__fiyat { text-align: left; }
  .calc__sonuc { grid-template-columns: 1fr; gap: 16px; }
  .cta__in { flex-direction: column; align-items: flex-start; }
  .sayfa-bas { padding-block: 34px 30px; }
}


/* ---------- Yüklenen logo ---------- */
.brand__logo { width: auto; max-width: 230px; object-fit: contain; display: block; }
.foot__logo { width: auto; max-width: 220px; object-fit: contain; }

/* Marka şeridinde logo */
.brands__item--logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  filter: grayscale(1) brightness(1.7) contrast(.85);
  opacity: .72;
  transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.brands__item--logo:hover { filter: none; opacity: 1; }
.brands__item--logo img { height: 34px; width: auto; max-width: 130px; object-fit: contain; }

/* Hakkımızda fotoğrafı */
.yazi__foto {
  margin: 0 0 30px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-light);
}
.yazi__foto img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

@media (max-width: 560px) {
  .brand__logo { max-width: 168px; }
  .brands__item--logo img { height: 26px; }
}
