/* ==========================================================================
   İstanbul Acil Oto Lastik, Ana stil dosyası
   Mobil öncelikli, tek dosya. Harici CSS bağımlılığı yoktur.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tasarım değişkenleri
   -------------------------------------------------------------------------- */
:root {
  /* Renkler */
  --navy-900: #0b1220;
  --navy-800: #111c2e;
  --navy-700: #1a2942;
  --navy-600: #24395a;

  --orange-600: #d64f04;
  --orange-500: #f25c05;
  --orange-400: #ff7a2e;
  --orange-100: #fff1e8;

  --wa-green: #25d366;
  --wa-green-dark: #1da851;

  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748b;
  --ink-400: #94a3b8;

  --line: #e2e8f0;
  --line-soft: #eef2f7;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-tint: #f1f5fb;

  --ok: #16a34a;
  --warn: #b45309;
  --warn-bg: #fffbeb;

  /* Tipografi */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;

  /* Ölçü */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;

  /* Gölge */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 12px 24px -8px rgba(15, 23, 42, 0.14), 0 4px 10px -4px rgba(15, 23, 42, 0.08);

  --header-h: 66px;
  --callbar-h: 64px;
}

/* --------------------------------------------------------------------------
   2. Sıfırlama ve temel
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Mobilde alt çağrı barı içeriğin üstüne binmesin */
@media (max-width: 860px) {
  body {
    padding-bottom: var(--callbar-h);
  }
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  color: var(--ink-900);
  line-height: 1.22;
  margin: 0 0 0.6em;
  font-weight: 800;
  letter-spacing: -0.021em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(1.75rem, 1.18rem + 2.5vw, 2.85rem);
}
h2 {
  font-size: clamp(1.38rem, 1.08rem + 1.28vw, 1.95rem);
  margin-top: 2.1em;
}
h3 {
  font-size: clamp(1.1rem, 1rem + 0.42vw, 1.28rem);
  margin-top: 1.7em;
  font-weight: 700;
}

p {
  margin: 0 0 1.1em;
  text-wrap: pretty;
}

a {
  color: var(--orange-600);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2.5px;
}
a:hover {
  color: var(--orange-500);
}

strong {
  color: var(--ink-900);
  font-weight: 700;
}

/* Koyu zeminli bölümlerde vurgulu metin okunur kalmalı */
.hero strong,
.page-head strong,
.cta-band strong,
.trustbar strong,
.side-card--cta strong,
.site-footer strong,
.hero__points strong,
.crumbs strong {
  color: #fff;
}

ul,
ol {
  margin: 0 0 1.15em;
  padding-left: 1.3em;
}
li {
  margin-bottom: 0.6em;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 200;
  background: var(--orange-500);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  color: #fff;
}

/* --------------------------------------------------------------------------
   3. Yerleşim
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 18px;
}

.section {
  padding-block: clamp(46px, 7vw, 84px);
}
.section--soft {
  background: var(--bg-soft);
}
.section--tint {
  background: var(--bg-tint);
}

.section-head {
  max-width: 660px;
  margin-bottom: 34px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  margin-top: 0;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--ink-600);
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.775rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 12px;
}

.grid {
  display: grid;
  gap: 20px;
}
.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
}
.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
}

/* --------------------------------------------------------------------------
   4. Butonlar
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.13s ease, background-color 0.16s ease, box-shadow 0.16s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn svg {
  flex-shrink: 0;
}

.btn--call {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 4px 14px rgba(242, 92, 5, 0.3);
}
.btn--call:hover {
  background: var(--orange-600);
  color: #fff;
  box-shadow: 0 6px 20px rgba(242, 92, 5, 0.38);
}

.btn--wa {
  background: var(--wa-green);
  color: #06301a;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}
.btn--wa:hover {
  background: var(--wa-green-dark);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: #fff;
  border-color: var(--ink-400);
  color: var(--ink-900);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--lg {
  padding: 16px 30px;
  font-size: 1.06rem;
}
.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--orange-500), var(--orange-600));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(242, 92, 5, 0.32);
}
.logo__mark svg {
  width: 21px;
  height: 21px;
  color: #fff;
  stroke-width: 2.4;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}
.logo__name {
  font-weight: 800;
  font-size: 0.99rem;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.logo__tag {
  font-size: 0.69rem;
  color: var(--ink-500);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav a {
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--ink-700);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.14s ease, color 0.14s ease;
}
.nav a:hover {
  background: var(--bg-tint);
  color: var(--ink-900);
}
.nav a[aria-current='page'] {
  color: var(--orange-600);
  background: var(--orange-100);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink-900);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  padding: 8px 12px;
  border-radius: 9px;
  transition: background-color 0.14s ease;
}
.header-phone:hover {
  background: var(--orange-100);
  color: var(--orange-600);
}
.header-phone svg {
  color: var(--orange-500);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 9px;
  cursor: pointer;
  color: var(--ink-900);
}

@media (max-width: 1040px) {
  .nav a {
    padding: 9px 10px;
    font-size: 0.88rem;
  }
  .logo__tag {
    display: none;
  }
}

@media (max-width: 1024px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 10px 18px 20px;
    box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-140%);
    transition: transform 0.24s ease;
  }
  .nav[data-open='true'] {
    transform: translateY(0);
  }
  .nav a {
    padding: 14px 12px;
    font-size: 1rem;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
    white-space: normal;
  }
  .nav-toggle {
    display: inline-flex;
    order: 3;
  }
  .header-phone {
    font-size: 0.94rem;
    padding: 8px;
  }
  .header-phone span {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(158deg, var(--navy-900) 0%, var(--navy-700) 62%, var(--navy-600) 100%);
  color: #cbd5e1;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -140px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 92, 5, 0.19) 0%, transparent 68%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  padding-block: clamp(42px, 6.5vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.hero h1 {
  color: #fff;
  margin-bottom: 0.5em;
}
.hero__lead {
  font-size: clamp(1.02rem, 0.96rem + 0.3vw, 1.16rem);
  color: #b6c4d8;
  max-width: 54ch;
  margin-bottom: 1.5em;
}
.hero__lead strong {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.34);
  color: #7ff0ad;
  font-size: 0.815rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.75);
  animation: pulse 2.1s infinite;
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.hero__points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 11px;
}
.hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.945rem;
  color: #c3d0e2;
  margin: 0;
}
.hero__points svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--orange-400);
}

.hero__media {
  position: relative;
}
.hero__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -14px rgba(0, 0, 0, 0.55);
}
.hero__media-ph {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--navy-700), var(--navy-600));
  border: 1px dashed rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: #93a4bd;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: -1;
  }
  .hero__media img,
  .hero__media-ph {
    aspect-ratio: 16 / 10;
  }
}

/* Güven şeridi */
.trustbar {
  background: var(--navy-800);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 17px;
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px 22px;
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9fb0c7;
  font-size: 0.875rem;
  font-weight: 600;
}
.trustbar__item svg {
  color: var(--orange-400);
  flex-shrink: 0;
}
.trustbar__item strong {
  color: #fff;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   7. Sayfa başlığı (iç sayfalar)
   -------------------------------------------------------------------------- */
.page-head {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #b6c4d8;
  padding-block: clamp(30px, 4.4vw, 52px);
}
.page-head h1 {
  color: #fff;
  margin-bottom: 0.42em;
}
.page-head__lead {
  font-size: 1.05rem;
  color: #b6c4d8;
  max-width: 68ch;
  margin-bottom: 0;
}
.page-head .btn-row {
  margin-top: 26px;
}

/* Breadcrumb */
.crumbs {
  font-size: 0.82rem;
  margin-bottom: 15px;
}
.crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding: 0;
  margin: 0;
}
.crumbs li {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #8fa2ba;
}
.crumbs li::after {
  content: '›';
  color: #5c708c;
}
.crumbs li:last-child::after {
  display: none;
}
.crumbs a {
  color: #b6c4d8;
  text-decoration: none;
}
.crumbs a:hover {
  color: #fff;
  text-decoration: underline;
}
.crumbs [aria-current='page'] {
  color: #7f90a8;
}

/* --------------------------------------------------------------------------
   8. Kartlar
   -------------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.card--link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}
.card h3 {
  margin-top: 0;
  margin-bottom: 0.45em;
  font-size: 1.12rem;
}
.card h3 a {
  color: var(--ink-900);
  text-decoration: none;
}
.card h3 a:hover {
  color: var(--orange-600);
}
.card p {
  color: var(--ink-600);
  font-size: 0.945rem;
  margin-bottom: 1em;
}
.card__foot {
  margin-top: auto;
  padding-top: 6px;
}

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--orange-100);
  color: var(--orange-600);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.925rem;
  text-decoration: none;
  color: var(--orange-600);
}
.arrow-link:hover {
  gap: 10px;
}
.arrow-link svg {
  transition: transform 0.15s ease;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.755rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-tint);
  color: var(--ink-600);
  border: 1px solid var(--line);
}
.tag--accent {
  background: var(--orange-100);
  color: var(--orange-600);
  border-color: #fcd9c2;
}

/* İlçe listesi */
.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
  gap: 11px;
}
.district-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 13px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--ink-900);
  font-weight: 600;
  font-size: 0.92rem;
  transition: border-color 0.14s ease, background-color 0.14s ease, transform 0.14s ease;
}
.district-chip:hover {
  border-color: var(--orange-400);
  background: var(--orange-100);
  color: var(--orange-600);
  transform: translateY(-2px);
}
.district-chip svg {
  color: var(--ink-400);
  flex-shrink: 0;
}
.district-chip:hover svg {
  color: var(--orange-500);
}

/* --------------------------------------------------------------------------
   9. İçerik (makale) alanı
   -------------------------------------------------------------------------- */
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 312px;
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}
@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr;
  }
}

.prose {
  max-width: 74ch;
}
.prose > h2:first-child,
.prose > h3:first-child {
  margin-top: 0;
}
.prose ul li::marker {
  color: var(--orange-500);
}
.prose ol li::marker {
  color: var(--orange-600);
  font-weight: 700;
}
.prose img {
  border-radius: var(--radius);
  margin-block: 1.6em;
}
.prose figure {
  margin: 1.8em 0;
}
.prose figcaption {
  font-size: 0.855rem;
  color: var(--ink-500);
  margin-top: 9px;
  text-align: center;
}

.lead {
  font-size: 1.1rem;
  color: var(--ink-600);
  line-height: 1.66;
}

/* Bilgi kutusu */
.note {
  border-left: 4px solid var(--orange-500);
  background: var(--orange-100);
  padding: 17px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-block: 1.6em;
}
.note p:last-child {
  margin-bottom: 0;
}
.note__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 7px;
  font-size: 0.96rem;
}
.note--warn {
  border-left-color: #d97706;
  background: var(--warn-bg);
}

/* Tablo */
.table-wrap {
  overflow-x: auto;
  margin-block: 1.7em;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
  min-width: 460px;
}
caption {
  caption-side: top;
  text-align: left;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink-600);
  padding: 13px 16px 11px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
th,
td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
thead th {
  background: var(--bg-soft);
  font-weight: 800;
  color: var(--ink-900);
  font-size: 0.855rem;
  letter-spacing: 0.01em;
  border-bottom: 2px solid var(--line);
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:nth-child(even) {
  background: #fcfdfe;
}

/* Adım listesi */
.steps {
  list-style: none;
  padding: 0;
  margin: 1.6em 0;
  display: grid;
  gap: 2px;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 17px 20px 17px 62px;
  background: #fff;
  border: 1px solid var(--line);
  margin: 0;
  counter-increment: step;
}
.steps li:first-child {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.steps li:last-child {
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 17px;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--orange-500);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.86rem;
}
.steps__title {
  display: block;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 3px;
}
.steps__text {
  font-size: 0.93rem;
  color: var(--ink-600);
}

/* Kontrol listesi */
.checklist {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 11px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  font-size: 0.955rem;
}
.checklist svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--ok);
}

/* --------------------------------------------------------------------------
   10. SSS (JS'siz accordion)
   -------------------------------------------------------------------------- */
.faq {
  display: grid;
  gap: 11px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.faq details[open] {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-900);
  font-size: 1rem;
  list-style: none;
  transition: background-color 0.14s ease;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover {
  background: var(--bg-soft);
}
.faq summary::after {
  content: '';
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  margin-top: 6px;
  border-right: 2.4px solid var(--orange-500);
  border-bottom: 2.4px solid var(--orange-500);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after {
  transform: rotate(-135deg);
}
.faq__body {
  padding: 0 20px 19px;
  color: var(--ink-600);
  font-size: 0.955rem;
}
.faq__body p:last-child {
  margin-bottom: 0;
}

.faq-group + .faq-group {
  margin-top: 34px;
}
.faq-group > h2 {
  font-size: 1.24rem;
  margin-bottom: 16px;
  margin-top: 0;
}

/* --------------------------------------------------------------------------
   11. Yan sütun
   -------------------------------------------------------------------------- */
.side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: calc(var(--header-h) + 18px);
}
@media (max-width: 980px) {
  .side {
    position: static;
  }
}

.side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 21px;
  background: #fff;
}
.side-card h3,
.side-card h2 {
  margin-top: 0;
  margin-bottom: 13px;
  font-size: 1.04rem;
}
.side-card p {
  font-size: 0.91rem;
  color: var(--ink-600);
}
.side-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2px;
}
.side-card ul li {
  margin: 0;
}
.side-card ul a {
  display: block;
  padding: 9px 11px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink-700);
  font-size: 0.915rem;
  font-weight: 600;
  transition: background-color 0.14s ease, color 0.14s ease;
}
.side-card ul a:hover {
  background: var(--orange-100);
  color: var(--orange-600);
}

.side-card--cta {
  background: linear-gradient(158deg, var(--navy-900), var(--navy-700));
  border-color: var(--navy-700);
  color: #b6c4d8;
}
.side-card--cta h3 {
  color: #fff;
}
.side-card--cta p {
  color: #a9b9cd;
}
.side-card--cta .btn {
  width: 100%;
}
.side-card--cta .btn + .btn {
  margin-top: 9px;
}

.fact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.fact-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  margin: 0;
  font-size: 0.9rem;
}
.fact-list li:last-child {
  border-bottom: none;
}
.fact-list dt,
.fact-list .k {
  color: var(--ink-500);
  font-weight: 600;
}
.fact-list dd,
.fact-list .v {
  color: var(--ink-900);
  font-weight: 700;
  text-align: right;
  margin: 0;
}

/* --------------------------------------------------------------------------
   12. CTA blokları
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(158deg, var(--navy-900), var(--navy-700) 70%, var(--navy-600));
  color: #b6c4d8;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4.2vw, 46px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: auto -80px -160px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 92, 5, 0.18), transparent 68%);
  pointer-events: none;
}
.cta-band > * {
  position: relative;
}
.cta-band h2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.45em;
}
.cta-band p {
  max-width: 58ch;
  margin-inline: auto;
  margin-bottom: 1.5em;
  color: #b0c0d4;
}
.cta-band .btn-row {
  justify-content: center;
}
.cta-band__phone {
  display: block;
  font-size: clamp(1.7rem, 1.2rem + 2.1vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.cta-band__phone:hover {
  color: var(--orange-400);
}

/* --------------------------------------------------------------------------
   13. Mobil sabit çağrı barı
   -------------------------------------------------------------------------- */
.callbar {
  display: none;
}
@media (max-width: 860px) {
  .callbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 120;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 18px rgba(15, 23, 42, 0.09);
  }
  .callbar .btn {
    padding: 13px 10px;
    font-size: 0.975rem;
  }
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: #93a4bd;
  padding-block: clamp(40px, 5.4vw, 62px) 26px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 28px;
  }
}

.site-footer h3 {
  color: #fff;
  font-size: 0.945rem;
  margin: 0 0 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}
.site-footer li {
  margin: 0;
}
.site-footer a {
  color: #93a4bd;
  text-decoration: none;
  transition: color 0.14s ease;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-brand p {
  max-width: 42ch;
  color: #8496b0;
  margin-bottom: 1.1em;
}
.footer-contact {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
}
.footer-contact svg {
  color: var(--orange-400);
  flex-shrink: 0;
}

.footer-districts {
  padding-block: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-districts h3 {
  margin-bottom: 13px;
}
.footer-districts__list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 5px;
  font-size: 0.83rem;
  line-height: 1.5;
}
.footer-districts__list a {
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.055);
  border-radius: 6px;
  white-space: nowrap;
}
.footer-districts__list a:hover {
  background: rgba(242, 92, 5, 0.22);
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.83rem;
  color: #74879f;
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

/* --------------------------------------------------------------------------
   15. Yardımcı sınıflar
   -------------------------------------------------------------------------- */
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.text-center {
  text-align: center;
}
.muted {
  color: var(--ink-500);
}
.small {
  font-size: 0.875rem;
}
.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin-block: 2.4em;
}

.img-ph {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: repeating-linear-gradient(
    45deg,
    var(--bg-soft),
    var(--bg-soft) 11px,
    var(--bg-tint) 11px,
    var(--bg-tint) 22px
  );
  border: 1px dashed var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  color: var(--ink-500);
  font-size: 0.855rem;
  margin-block: 1.6em;
}

/* 404 */
.notfound {
  text-align: center;
  padding-block: clamp(56px, 9vw, 110px);
}
.notfound__code {
  font-size: clamp(3.6rem, 2.2rem + 6vw, 6.4rem);
  font-weight: 800;
  color: var(--orange-500);
  line-height: 1;
  margin-bottom: 0.18em;
  letter-spacing: -0.04em;
}

/* Baskı */
@media print {
  .site-header,
  .callbar,
  .site-footer,
  .cta-band,
  .side {
    display: none !important;
  }
  body {
    padding-bottom: 0;
  }
  .layout {
    grid-template-columns: 1fr;
  }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
