/* ============================================================
   Nazilli Birlik — nazillibirlik.com.tr
   ============================================================ */

:root {
  --ink: #191b1f;
  --ink-2: #40444c;
  --ink-3: #6b7078;
  --line: #e4e6e9;
  --bg: #ffffff;
  --bg-soft: #f5f6f7;
  --red: #cf2027;
  --red-dark: #ab1a20;
  --orange: #e87b1e;
  --dark: #16181d;
  --dark-2: #1e2127;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(22, 24, 29, .10);
  --container: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Hanken Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Tipografi ---------- */

h1, h2, h3, h4 { line-height: 1.18; font-weight: 800; letter-spacing: -.01em; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 12px; }
.section-head p { color: var(--ink-3); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

section { padding: 88px 0; }
section.soft { background: var(--bg-soft); }

/* ---------- Butonlar ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }

.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #000; }

.btn-wa { background: #1faa53; color: #fff; }
.btn-wa:hover { background: #178a43; }

/* ---------- Üst bar + Header ---------- */

.topbar {
  background: var(--dark);
  color: #cfd2d7;
  font-size: .84rem;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--orange); }
.topbar-links { display: flex; gap: 22px; }
.topbar .loc { display: flex; align-items: center; gap: 7px; }
.topbar svg { width: 13px; height: 13px; }

header.site {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
header.site.scrolled { box-shadow: 0 4px 18px rgba(22,24,29,.08); }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 54px; height: auto; }
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name strong { font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em; }
.brand-name span { font-size: .74rem; color: var(--ink-3); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

nav.main { display: flex; align-items: center; gap: 30px; }
nav.main a { font-weight: 600; font-size: .95rem; color: var(--ink-2); position: relative; padding: 6px 0; }
nav.main a:hover { color: var(--red); }
nav.main a.active { color: var(--red); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.02rem; }
.nav-phone svg { width: 18px; height: 18px; color: var(--red); }
.nav-phone small { display: block; font-size: .7rem; font-weight: 600; color: var(--ink-3); letter-spacing: .05em; text-transform: uppercase; }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.menu-btn svg { width: 22px; height: 22px; }

/* ---------- Hero (uygulama öncelikli) ---------- */

.hero {
  position: relative;
  color: #fff;
  background: var(--dark);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -220px; top: -220px;
  width: 640px; height: 640px;
  border-radius: 50%;
  border: 90px solid rgba(232,123,30,.07);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: -160px; bottom: -260px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207,32,39,.14), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 56px;
  align-items: center;
  padding: 84px 0 88px;
}
.hero .eyebrow { color: var(--orange); }
.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.2rem);
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero p.lead {
  font-size: 1.06rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 30px;
  max-width: 530px;
}

.hero-install { display: flex; flex-wrap: wrap; align-items: stretch; gap: 14px; margin-bottom: 14px; }
.btn-install {
  background: var(--red);
  color: #fff;
  border-radius: 10px;
  padding: 12px 24px;
  display: none;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .98rem;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-install:hover { background: var(--red-dark); }
.btn-install.show { display: inline-flex; }
.btn-install svg { width: 18px; height: 18px; }

.install-hint {
  display: none;
  margin: 4px 0 14px;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 12px 16px;
  max-width: 480px;
}
.install-hint.show { display: block; }
.install-hint b { color: #fff; }

.hero-feats {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
}
.hero-feats li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.85); font-weight: 600; font-size: .96rem; }
.hero-feats svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 4px; }

.hero-trust {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 14px; height: 14px; color: var(--orange); }

.hero-phone { text-align: center; }

/* ---------- İstatistik bandı ---------- */

.stats-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.stats-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-band .container > div {
  padding: 26px 26px;
  border-left: 1px solid var(--line);
}
.stats-band .container > div:first-child { border-left: 0; padding-left: 0; }
.stats-band strong { display: block; font-size: 1.5rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.stats-band span { font-size: .8rem; color: var(--ink-3); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

/* ---------- Güzergah ---------- */

.route-band { padding: 72px 0; }

.route-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 54px;
}
.route-line::before {
  content: "";
  position: absolute;
  top: 8px; left: 10px; right: 10px;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--red) 0 14px, transparent 14px 24px);
  border-radius: 2px;
}
.stop { position: relative; text-align: center; flex: 1; min-width: 0; }
.stop i {
  display: block;
  width: 19px; height: 19px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--red);
  position: relative;
  z-index: 1;
}
.stop.end i { background: var(--red); box-shadow: 0 0 0 5px rgba(207,32,39,.15); }
.stop b { display: block; font-size: .95rem; font-weight: 700; }
.stop small { color: var(--ink-3); font-size: .78rem; font-weight: 600; }

.route-note {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: var(--ink-3);
  font-size: .92rem;
  font-weight: 600;
}
.route-note span { display: flex; align-items: center; gap: 8px; }
.route-note svg { width: 15px; height: 15px; color: var(--red); }

/* ---------- Sefer Saatleri ---------- */

.times-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.time-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.time-card .tc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 26px;
  background: var(--dark);
  color: #fff;
}
.time-card .tc-head h3 { font-size: 1.08rem; display: flex; align-items: center; gap: 10px; }
.time-card .tc-head svg { width: 18px; height: 18px; color: var(--orange); }
.tc-badge {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.12);
  padding: 5px 12px;
  border-radius: 99px;
  white-space: nowrap;
}
.time-card .tc-body { padding: 26px; }

.tc-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.tc-facts > div {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 14px 16px;
}
.tc-facts strong { display: block; font-size: 1.3rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.tc-facts span { font-size: .76rem; font-weight: 700; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; }

.tc-body h4 { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin: 4px 0 12px; }

.last-times { display: flex; flex-wrap: wrap; gap: 9px; }
.last-times span {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: .95rem;
}
.last-times span.final { border-color: var(--red); color: var(--red); }

.times-update {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  padding: 18px 24px;
}
.times-update p { font-size: .93rem; color: var(--ink-2); }
.times-update p b { font-weight: 700; }

/* ---------- Hakkımızda ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.about-year {
  position: absolute;
  left: -18px; bottom: -18px;
  background: var(--red);
  color: #fff;
  border-radius: 12px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-year strong { display: block; font-size: 1.6rem; font-weight: 800; line-height: 1; }
.about-year span { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }

.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.about-text p { color: var(--ink-2); margin-bottom: 16px; }

.about-marks { margin-top: 26px; display: grid; gap: 14px; }
.about-marks li { display: flex; gap: 13px; align-items: flex-start; font-weight: 600; color: var(--ink-2); }
.about-marks svg { width: 20px; height: 20px; color: var(--red); flex: none; margin-top: 3px; }

/* ---------- Yönetim ---------- */

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.board-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.board-col h3 {
  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.board-col li {
  padding: 9px 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 11px;
}
.board-col li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}
.board-col li small { font-weight: 600; color: var(--ink-3); margin-left: auto; font-size: .78rem; }

/* ---------- Mobil Uygulama ---------- */

.app-band {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.app-band::before {
  content: "";
  position: absolute;
  right: -140px; top: -140px;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 70px solid rgba(232,123,30,.08);
}
.app-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.app-band .eyebrow { color: var(--orange); }
.app-band h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 16px; }
.app-band p { color: rgba(255,255,255,.75); margin-bottom: 26px; max-width: 480px; }

.app-feats { display: grid; gap: 14px; margin-bottom: 34px; }
.app-feats li { display: flex; gap: 13px; align-items: flex-start; color: rgba(255,255,255,.88); font-weight: 600; }
.app-feats svg { width: 19px; height: 19px; color: var(--orange); flex: none; margin-top: 4px; }

.store-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: 10px;
  padding: 10px 20px;
  transition: border-color .18s, background .18s;
}
.store-badge:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.store-badge svg { width: 26px; height: 26px; }
.store-badge div { line-height: 1.15; }
.store-badge small { font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.65); font-weight: 600; }
.store-badge strong { display: block; font-size: 1.02rem; font-weight: 700; }

.app-visual { position: relative; text-align: center; }
.phone-frame {
  display: inline-block;
  width: min(300px, 78%);
  border-radius: 36px;
  border: 10px solid #2a2e36;
  background: #0e1013;
  box-shadow: 0 34px 70px rgba(0,0,0,.5);
  overflow: hidden;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 0;
  color: rgba(255,255,255,.55);
  font-size: .68rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.phone-status .batt {
  width: 18px; height: 9px;
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: 2.5px;
  position: relative;
}
.phone-status .batt::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  right: 5px;
  background: rgba(255,255,255,.55);
  border-radius: 1px;
}
.phone-screen { padding: 18px 22px 36px; text-align: left; }
.phone-screen .ps-logo { width: 52px; margin: 0 auto 18px; }
.phone-screen h5 { color: #fff; text-align: center; font-size: 1rem; margin-bottom: 4px; }
.phone-screen .ps-sub { text-align: center; color: rgba(255,255,255,.5); font-size: .74rem; margin-bottom: 22px; }
.ps-card {
  background: #1b1f26;
  border: 1px solid #262b34;
  border-radius: 13px;
  padding: 14px 16px;
  margin-bottom: 11px;
}
.ps-card small { color: rgba(255,255,255,.5); font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.ps-card b { color: #fff; font-size: .95rem; font-weight: 700; }
.ps-card .ps-time { color: var(--orange); font-variant-numeric: tabular-nums; }
.ps-btn {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: .88rem;
  border-radius: 11px;
  padding: 12px;
  margin-top: 16px;
}

/* ---------- Galeri ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid a {
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  position: relative;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s;
}
.gallery-grid a:hover img { transform: scale(1.045); }

/* ---------- İletişim ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 40px;
  align-items: stretch;
}
.contact-cards { display: grid; gap: 16px; align-content: start; }
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color .18s, box-shadow .18s;
}
.contact-card:hover { border-color: #c9ccd1; box-shadow: var(--shadow); }
.contact-card .ic {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 10px;
  background: rgba(207,32,39,.08);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .ic.wa { background: rgba(31,170,83,.1); color: #1faa53; }
.contact-card .ic svg { width: 21px; height: 21px; }
.contact-card small { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 3px; }
.contact-card b { font-size: 1.04rem; font-weight: 700; }
.contact-card span.sub { display: block; font-size: .86rem; color: var(--ink-3); margin-top: 2px; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---------- Footer ---------- */

footer.site {
  background: var(--dark);
  color: #a7abb3;
  padding: 64px 0 0;
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 48px;
}
.footer-brand img { width: 64px; margin-bottom: 16px; }
.footer-brand p { max-width: 300px; }
footer.site h4 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
footer.site li { padding: 5px 0; }
footer.site a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 15px; height: 15px; flex: none; margin-top: 5px; color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: .84rem;
}
.footer-bottom a { color: #cfd2d7; }
.footer-bottom a:hover { color: #fff; }

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 70;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #1faa53;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(31,170,83,.4);
  transition: transform .18s;
}
.wa-float:hover { transform: translateY(-3px); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Alt sayfalar (legal) ---------- */

.page-hero {
  background: var(--dark);
  color: #fff;
  padding: 64px 0;
}
.page-hero h1 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.68); max-width: 620px; }
.page-hero .crumb { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 16px; font-weight: 600; }
.page-hero .crumb a:hover { color: #fff; }

.legal { padding: 64px 0; }
.legal-body { max-width: 820px; }
.legal-body h2 { font-size: 1.32rem; margin: 42px 0 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.06rem; margin: 28px 0 10px; }
.legal-body p, .legal-body li { color: var(--ink-2); margin-bottom: 12px; }
.legal-body ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-body ul li { margin-bottom: 7px; }
.legal-body ol { padding-left: 24px; margin-bottom: 16px; }
.legal-body ol li { margin-bottom: 7px; }
.legal-body strong { font-weight: 700; color: var(--ink); }
.legal-body .updated {
  font-size: .86rem;
  color: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 34px;
  display: inline-block;
}
.legal-body table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: .93rem; }
.legal-body th, .legal-body td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; vertical-align: top; }
.legal-body th { background: var(--bg-soft); font-weight: 700; }

/* ---------- Destek / SSS ---------- */

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.support-cards .contact-card b { font-variant-numeric: tabular-nums; }

.faq { display: grid; gap: 12px; max-width: 820px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq details[open] { border-color: #c9ccd1; }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  font-weight: 700;
  transition: color .18s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: var(--red);
  flex: none;
  transition: transform .18s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--red); }
.faq .faq-a { padding: 0 22px 18px; color: var(--ink-2); }
.faq .faq-a p { margin-bottom: 10px; }
.faq .faq-a p:last-child { margin-bottom: 0; }
.faq .faq-a a { color: var(--red); font-weight: 600; }
.faq .faq-a strong { font-weight: 700; color: var(--ink); }

/* ---------- Duyarlı ---------- */

@media (max-width: 1024px) {
  .about-grid, .app-grid { gap: 44px; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  nav.main { gap: 20px; }
}

@media (max-width: 880px) {
  section { padding: 64px 0; }

  .topbar-links { display: none; }
  .topbar .container { justify-content: center; }

  nav.main {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 14px;
    box-shadow: 0 18px 30px rgba(22,24,29,.1);
  }
  nav.main.open { display: flex; }
  nav.main a { padding: 13px 26px; border-bottom: 1px solid var(--bg-soft); font-size: 1rem; }
  .menu-btn { display: flex; }
  .nav-phone { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 52px; padding: 64px 0 68px; }
  .hero-phone .phone-frame { width: min(260px, 70%); }
  .stats-band .container { grid-template-columns: repeat(2, 1fr); }
  .stats-band .container > div { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
  .stats-band .container > div:nth-child(-n+2) { border-top: 0; }

  .times-grid { grid-template-columns: 1fr; }
  .tc-facts { grid-template-columns: repeat(3, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-year { left: 18px; }

  .app-grid { grid-template-columns: 1fr; gap: 48px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .support-cards { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }

  .route-line { flex-direction: column; align-items: flex-start; gap: 22px; margin-top: 34px; }
  .route-line::before {
    top: 10px; bottom: 10px; left: 8px; right: auto;
    width: 3px; height: auto;
    background: repeating-linear-gradient(180deg, var(--red) 0 14px, transparent 14px 24px);
  }
  .stop { display: flex; align-items: center; gap: 16px; text-align: left; }
  .stop i { margin: 0; }
  .stop small { display: inline; margin-left: 8px; }
}

@media (max-width: 560px) {
  .board-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tc-facts { grid-template-columns: 1fr 1fr; }
  .brand-name span { display: none; }
  .hero-install { flex-direction: column; align-items: stretch; }
  .hero-install .store-badge, .hero-install .btn-install { justify-content: center; }
}
