/* ==========================================================================
   OTOBORSA Hasarlı Araç Alımı — 2026
   Tek dosya stil sistemi. Bootstrap / jQuery bağımlılığı yoktur.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  /* Yüzeyler */
  --ink:        #0E1620;   /* gövde koyu zemin  */
  --ink-2:      #16202C;   /* panel             */
  --ink-3:      #1F2C3B;   /* yükseltilmiş yüzey*/
  --paper:      #FFFFFF;
  --paper-2:    #F2F4F7;
  --paper-3:    #E5E9EE;

  /* Metin */
  --txt:        #0E1620;
  --txt-2:      #55616F;
  --txt-3:      #8B97A5;
  --on-ink:     #EDF1F5;
  --on-ink-2:   #9FADBD;

  /* Aksan */
  --amber:      #FFA51F;   /* saha/ikaz sarısı — kimlik rengi */
  --amber-ink:  #7A4A00;
  --wa:         #25D366;   /* yalnızca WhatsApp aksiyonlarında */
  --wa-dark:    #1EBE5A;

  /* Çizgi */
  --line:       #DDE3EA;
  --line-ink:   rgba(255,255,255,.12);

  /* Ölçü */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
  --pad:  clamp(20px, 5vw, 32px);
  --gut:  clamp(20px, 4vw, 40px);
  --sec:  clamp(56px, 9vw, 104px);
  --max:  1180px;

  --shadow-1: 0 1px 2px rgba(14,22,32,.06), 0 4px 14px rgba(14,22,32,.06);
  --shadow-2: 0 2px 6px rgba(14,22,32,.08), 0 18px 44px rgba(14,22,32,.12);
  --shadow-wa: 0 6px 20px rgba(37,211,102,.34);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--txt);
  font-family: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* mobil alt aksiyon çubuğu için pay */
  padding-bottom: env(safe-area-inset-bottom);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

/* --- Tipografi ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: "Archivo", "IBM Plex Sans", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -.022em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 5.4vw, 3.7rem); font-weight: 800; letter-spacing: -.032em; }
h2 { font-size: clamp(1.65rem, 3.8vw, 2.55rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); letter-spacing: -.012em; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber-ink);
  margin: 0 0 14px;
}
.eyebrow--on-ink { color: var(--amber); }
.lede { font-size: clamp(1.02rem, 1.5vw, 1.14rem); color: var(--txt-2); max-width: 62ch; }

/* --- Düzen -------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--sec); }
.section--ink { background: var(--ink); color: var(--on-ink); }
.section--ink .lede,
.section--ink p { color: var(--on-ink-2); }
.section--tint { background: var(--paper-2); }
.section-head { max-width: 58ch; margin-bottom: clamp(32px, 5vw, 52px); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--r) 0;
}
.skip:focus { left: 0; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Butonlar ----------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 16px 26px;
  min-height: 58px;
  border: 1px solid transparent;
  border-radius: var(--r);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn svg { flex: none; width: 22px; height: 22px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--wa { --btn-bg: var(--wa); --btn-fg: #06301A; box-shadow: var(--shadow-wa); }
.btn--wa:hover { --btn-bg: var(--wa-dark); }

.btn--call { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--txt); }
.btn--call:hover { --btn-bg: var(--ink); --btn-fg: #fff; }
.section--ink .btn--call,
.hero .btn--call { --btn-fg: var(--on-ink); border-color: rgba(255,255,255,.34); }
.section--ink .btn--call:hover,
.hero .btn--call:hover { --btn-bg: #fff; --btn-fg: var(--ink); border-color: #fff; }

.btn--amber { --btn-bg: var(--amber); --btn-fg: #2B1A00; }
.btn--amber:hover { --btn-bg: #FFB947; }
.btn--block { width: 100%; }

/* Büyük aksiyon: hero, kapanış ve form. Ekranda kaçırılamayacak boyut. */
.btn--lg {
  padding: 21px 34px;
  min-height: 72px;
  font-size: clamp(1.06rem, 1.5vw, 1.2rem);
  border-radius: 14px;
}
.btn--lg svg { width: 27px; height: 27px; }
.btn--wa.btn--lg { box-shadow: 0 10px 30px rgba(37,211,102,.4); }

/* Telefon numarası butonun kendisi kadar önemli — numarayı büyük yaz.
   .btn--lg'den SONRA gelmeli, yoksa font-size'ı ezilir. */
.btn--tel {
  font-size: clamp(1.26rem, 4.4vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -.018em;
  font-variant-numeric: tabular-nums;
  min-height: 78px;
  gap: 13px;
  padding-inline: 30px;
}
.btn--tel svg { width: 26px; height: 26px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Telefonda iki büyük buton da tam genişlik — başparmakla ıskalanmasın. */
@media (max-width: 620px) {
  .btn-row .btn--lg { width: 100%; }
}

/* --- Üst çubuk ---------------------------------------------------------- */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(14,22,32,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-ink);
  color: var(--on-ink);
}
.topbar__in {
  display: flex; align-items: center; gap: 20px;
  min-height: 68px;
  max-width: var(--max); margin-inline: auto; padding-inline: var(--gut);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: inherit; margin-right: auto; }
.brand__mark {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--amber);
  color: #2B1A00;
  font-family: "Archivo", sans-serif;
  font-weight: 800; font-size: 1.02rem;
  letter-spacing: -.04em;
}
.brand__name {
  font-family: "Archivo", sans-serif;
  font-weight: 800; font-size: 1.02rem; letter-spacing: -.02em;
  line-height: 1.12;
}
.brand__sub {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: .6rem; font-weight: 500; letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--on-ink-2);
}
.nav { display: flex; gap: 26px; }
.nav a {
  text-decoration: none; color: var(--on-ink-2);
  font-size: .93rem; font-weight: 500;
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav a:hover { color: #fff; border-bottom-color: var(--amber); }
.topbar .btn { min-height: 44px; padding: 10px 18px; font-size: .93rem; }
@media (max-width: 900px) { .nav { display: none; } }
@media (max-width: 560px) { .topbar__cta { display: none; } }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--on-ink);
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 88px) clamp(56px, 8vw, 96px);
}
.hero::before {
  /* saha ışığı — tek, sessiz atmosfer öğesi */
  content: "";
  position: absolute; inset: -20% -10% auto -30%;
  height: 70%;
  background: radial-gradient(60% 70% at 30% 30%, rgba(255,165,31,.16), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } }

.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero__sub {
  margin-top: 20px;
  font-size: clamp(1.03rem, 1.6vw, 1.17rem);
  color: var(--on-ink-2);
  max-width: 50ch;
}
.hero .btn-row { margin-top: 30px; }

.hero__note {
  margin: 14px 0 0;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--on-ink-2);
  max-width: 46ch;
}

.ticks {
  display: flex; flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.ticks li {
  display: flex; align-items: center; gap: 8px;
  font-size: .93rem;
  color: var(--on-ink);
}
.ticks li::before {
  content: "";
  flex: none;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* --- İmza öğe: WhatsApp konuşma kurgusu --------------------------------- */
.chat {
  background: #0B141A;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
  overflow: hidden;
  max-width: 420px;
  margin-inline: auto;
  width: 100%;
}
.chat__bar {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 16px;
  background: #1F2C33;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.chat__avatar {
  flex: none;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--amber); color: #2B1A00;
  display: grid; place-items: center;
  font-family: "Archivo", sans-serif; font-weight: 800; font-size: .8rem;
  letter-spacing: -.03em;
}
.chat__who { font-size: .88rem; font-weight: 600; color: #E9EDEF; line-height: 1.25; }
.chat__meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: .63rem; letter-spacing: .04em; color: #8696A0;
}
.chat__body {
  padding: 18px 14px 20px;
  display: grid; gap: 9px;
  background-color: #0B141A;
  background-image:
    radial-gradient(rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 18px 18px;
}
.bub {
  max-width: 84%;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: .88rem;
  line-height: 1.5;
  position: relative;
}
.bub--out { justify-self: end; background: #005C4B; color: #E9EDEF; border-top-right-radius: 3px; }
.bub--in  { justify-self: start; background: #202C33; color: #E9EDEF; border-top-left-radius: 3px; }
.bub time {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: .58rem; letter-spacing: .04em;
  color: rgba(233,237,239,.5);
  text-align: right;
  margin-top: 3px;
}
.bub--photos { padding: 6px; max-width: 88%; }
.bub__shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.bub__shots img { aspect-ratio: 1; object-fit: cover; border-radius: 6px; }
.bub__caption {
  font-size: .82rem;
  padding: 7px 6px 2px;
  color: #E9EDEF;
}
.chat__foot {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 14px;
  background: #1F2C33;
  border-top: 1px solid rgba(255,255,255,.07);
  font-family: "IBM Plex Mono", monospace;
  font-size: .66rem; letter-spacing: .05em; text-transform: uppercase;
  color: #8696A0;
}
.chat__foot::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--wa); flex: none;
}

/* --- Beyan bandı: işin tek cümlelik tarifi ------------------------------ */
.statement {
  background: var(--ink-2);
  border-block: 1px solid var(--line-ink);
  color: var(--on-ink);
  padding-block: clamp(40px, 6vw, 68px);
}
.statement__line {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: clamp(1.42rem, 3.1vw, 2.32rem);
  line-height: 1.34;
  letter-spacing: -.022em;
  color: #fff;
  max-width: 22ch;
  margin: 0;
  text-wrap: balance;
}
@media (min-width: 700px) { .statement__line { max-width: 30ch; } }
.statement__line b { font-weight: 700; color: var(--amber); }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.6vw, 32px);
  margin: clamp(30px, 4vw, 46px) 0 0;
  padding-top: clamp(26px, 3.4vw, 38px);
  border-top: 1px solid var(--line-ink);
}
@media (max-width: 760px) { .pillars { grid-template-columns: repeat(2, 1fr); gap: 24px 18px; } }
.pillars dt {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  letter-spacing: -.015em;
  color: var(--amber);
  margin-bottom: 6px;
}
.pillars dd {
  margin: 0;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--on-ink-2);
}
.statement__foot {
  margin: clamp(26px, 3.4vw, 36px) 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-ink-2);
}

/* --- Adımlar (gerçek sıra taşıdığı için numaralı) ----------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  counter-reset: step;
  padding: 0; margin: 0; list-style: none;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: var(--pad);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  color: var(--amber-ink);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--amber);
  width: fit-content;
  min-width: 46px;
}
.step h3 { margin-bottom: 9px; }
.step p { color: var(--txt-2); font-size: .97rem; }

/* --- Teklif formu ------------------------------------------------------- */
.quote {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
@media (max-width: 900px) { .quote { grid-template-columns: 1fr; } }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--pad);
  box-shadow: var(--shadow-2);
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .field-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: "IBM Plex Mono", monospace;
  font-size: .66rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--txt-2);
}
.field input,
.field select {
  width: 100%;
  padding: 13px 14px;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper-2);
  color: var(--txt);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .15s ease, background-color .15s ease;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%2355616F' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 19px;
  padding-right: 40px;
}
.field input:focus,
.field select:focus { background: var(--paper); border-color: var(--txt); }
.field input::placeholder { color: var(--txt-3); }
.form-note {
  margin-top: 14px;
  font-size: .84rem;
  color: var(--txt-2);
  text-align: center;
}
.form-card .btn { margin-top: 18px; }

.quote__aside .lede { margin-bottom: 22px; }
.assure { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.assure li { padding-left: 18px; border-left: 2px solid var(--amber); }
.assure b { display: block; font-family: "Archivo", sans-serif; font-size: 1rem; letter-spacing: -.012em; }
.assure span { font-size: .94rem; color: var(--txt-2); }

/* --- Araç ızgarası ------------------------------------------------------ */
.cars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 860px) { .cars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cars { grid-template-columns: 1fr; } }
.car {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ink-2);
  aspect-ratio: 4 / 3;
}
.car img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.car:hover img { transform: scale(1.045); }
.car figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 26px 14px 12px;
  background: linear-gradient(transparent, rgba(11,17,24,.88));
  font-family: "IBM Plex Mono", monospace;
  font-size: .69rem; letter-spacing: .1em; text-transform: uppercase;
  color: #fff;
}

/* --- İşletme / konum ---------------------------------------------------- */
.place {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 900px) { .place { grid-template-columns: 1fr; } }
.facts { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 20px; }
.facts dt {
  font-family: "IBM Plex Mono", monospace;
  font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 5px;
}
.facts dd { margin: 0; font-size: 1rem; color: var(--on-ink); }
.facts dd a { text-decoration: none; border-bottom: 1px solid var(--amber); }
.map {
  border: 1px solid var(--line-ink);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ink-2);
  line-height: 0;
}
.map iframe { width: 100%; height: clamp(300px, 42vw, 440px); border: 0; display: block; filter: grayscale(.18); }

/* --- SSS ---------------------------------------------------------------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); max-width: 900px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-family: "Archivo", sans-serif;
  font-weight: 600; font-size: 1.04rem; letter-spacing: -.012em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none; width: 15px; height: 15px;
  background: var(--txt-2);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding: 0 4px 22px; color: var(--txt-2); max-width: 68ch; font-size: .98rem; }

/* --- Kurumsal ----------------------------------------------------------- */
.about { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 40px); }
@media (max-width: 820px) { .about { grid-template-columns: 1fr; } }
.about h3 { margin-bottom: 10px; }
.about p { color: var(--txt-2); font-size: .97rem; }

/* --- Kapanış CTA -------------------------------------------------------- */
.closer { text-align: center; }
.closer h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.closer .lede { margin: 18px auto 0; text-align: center; }
.closer .btn-row { justify-content: center; margin-top: 30px; }

/* --- Footer ------------------------------------------------------------- */
.foot {
  background: var(--ink);
  color: var(--on-ink-2);
  border-top: 1px solid var(--line-ink);
  padding-block: 34px;
  font-size: .88rem;
}
.foot__in {
  max-width: var(--max); margin-inline: auto; padding-inline: var(--gut);
  display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between;
}
.foot a { color: var(--on-ink); text-decoration: none; border-bottom: 1px solid var(--line-ink); }
.foot a:hover { border-bottom-color: var(--amber); }

/* --- Sabit aksiyonlar --------------------------------------------------- */
/* Masaüstü: tek yüzen WhatsApp düğmesi */
.fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 70;
  width: 68px; height: 68px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wa);
  color: #06301A;
  box-shadow: var(--shadow-wa);
  transition: transform .2s ease;
}
.fab:hover { transform: scale(1.07); }
.fab svg { width: 35px; height: 35px; }

/* Mobil: alt aksiyon çubuğu */
.dock {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 80;
  gap: 8px;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  background: rgba(14,22,32,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-ink);
}
.dock .btn { flex: 1; min-height: 62px; padding: 14px 8px; font-size: 1.05rem; }
.dock .btn--tel { font-size: 1.14rem; min-height: 62px; padding-inline: 8px; gap: 9px; }
.dock .btn svg { width: 23px; height: 23px; }
.dock .btn--tel svg { width: 21px; height: 21px; }
/* Dar telefonlarda numaraya yer açmak için ikonu gizle */
@media (max-width: 390px) {
  .dock .btn--tel svg { display: none; }
  .dock .btn--tel { font-size: 1.06rem; }
}

@media (max-width: 720px) {
  .fab { display: none; }
  .dock { display: flex; }
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
}

/* --- Giriş hareketi ----------------------------------------------------- */
.rise { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rise { opacity: 1; transform: none; } }
