/* ==========================================================================
   FK MOTORS — Premium 2026 Tema (Apple-tarzı, koyu sinematik, %100 mobil)
   Kurumsal: Antrasit #111827 · Grafit #1F2937 · Kırmızı #DC2626 · Gümüş #E5E7EB
   ========================================================================== */

:root {
  --ink: #0b1120;
  --ink-2: #111827;
  --graphite: #1f2937;
  --graphite-2: #273244;
  --red: #dc2626;
  --red-600: #c81e1e;
  --red-dark: #991b1b;
  --silver: #e5e7eb;
  --muted: #9aa4b2;
  --muted-2: #6b7484;
  --line: rgba(255, 255, 255, .08);
  --line-strong: rgba(255, 255, 255, .14);
  --white: #ffffff;

  --bg: #ffffff;
  --fg: #111827;
  --card: #ffffff;

  --container: 1200px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-lg: 0 30px 80px -24px rgba(2, 6, 23, .35);
  --shadow-red: 0 18px 40px -14px rgba(220, 38, 38, .5);
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; letter-spacing: -.025em; font-weight: 800; text-transform: none; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
@media (min-width: 640px) { .container { padding-inline: 28px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px; }

.icon { width: 22px; height: 22px; flex: none; }
.icon-sm { width: 18px; height: 18px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  background: var(--btn-bg); color: var(--btn-fg); border: 1px solid transparent;
  cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .2s, color .2s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-red:hover { background: var(--red-600); }
.btn-glass { background: rgba(255,255,255,.08); color: #fff; border-color: var(--line-strong); backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255,255,255,.16); }
.btn-dark { background: var(--ink-2); color: #fff; }
.btn-dark:hover { background: var(--graphite); }
.btn-outline { background: transparent; color: var(--ink-2); border-color: rgba(17,24,39,.2); }
.btn-outline:hover { background: var(--ink-2); color: #fff; border-color: var(--ink-2); }
.btn-lg { padding: 17px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   HEADER  (frosted glass, koyu)
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .4s var(--ease), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 17, 32, .72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.brand-logo { height: 38px; width: auto; }
@media (min-width: 640px) { .brand-logo { height: 44px; } }

.desktop-nav { display: none; align-items: center; gap: 4px; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 15px; border-radius: 999px; font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.82);
  transition: color .2s, background-color .2s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-parent { position: relative; }
.nav-parent .chev { transition: transform .3s var(--ease); }
.nav-parent:hover .chev { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  width: 280px; padding: 10px; border-radius: 18px; margin-top: 0;
  background: rgba(17, 24, 39, .98); border: 1px solid var(--line-strong);
  backdrop-filter: blur(20px); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
/* Menü linke YAPIŞIK açılır — aradan geçilecek boşluk yok, hover kopmaz */
.nav-parent:hover .nav-dropdown,
.nav-parent:focus-within .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown a { display: block; padding: 11px 14px; border-radius: 12px; font-size: .9rem; color: rgba(255,255,255,.78); font-weight: 500; transition: background-color .2s, color .2s; }
.nav-dropdown a:hover { background: rgba(255,255,255,.08); color: #fff; }

.header-cta { display: none; align-items: center; gap: 12px; }
@media (min-width: 1024px) { .header-cta { display: flex; } }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .92rem; color: #fff; }
.header-phone .icon { color: var(--red); }

.burger {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: 14px; background: rgba(255,255,255,.08); border: 1px solid var(--line-strong);
  cursor: pointer; color: #fff; transition: background-color .2s;
}
.burger:hover { background: rgba(255,255,255,.14); }
@media (min-width: 1024px) { .burger { display: none; } }
.burger svg { width: 24px; height: 24px; }

/* ---------- Mobil menü: SOLDAN SAĞA, modern & akordeon ---------- */
.mobile-drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.mobile-drawer.open { visibility: visible; }
.drawer-overlay {
  position: absolute; inset: 0; background: rgba(2,6,23,.55);
  opacity: 0; transition: opacity .4s var(--ease); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.mobile-drawer.open .drawer-overlay { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; left: 0; height: 100%; width: min(88vw, 400px);
  background: #ffffff; color: var(--ink-2);
  transform: translateX(-100%); transition: transform .5s var(--ease);
  display: flex; flex-direction: column; overflow-y: auto;
  box-shadow: 30px 0 90px -24px rgba(2,6,23,.5);
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid #eef0f3; position: sticky; top: 0; background: #fff; z-index: 2;
}
.drawer-top img { height: 40px; }
.drawer-close {
  width: 44px; height: 44px; border-radius: 12px; background: #f3f4f6;
  border: none; color: var(--ink-2); cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .2s, transform .3s var(--ease);
}
.drawer-close:hover { background: #e5e7eb; transform: rotate(90deg); }
.drawer-nav { display: flex; flex-direction: column; padding: 10px 14px; flex: 1; }
.drawer-nav > a {
  display: flex; align-items: center; gap: 12px; padding: 15px 12px; border-radius: 14px;
  font-size: 1.02rem; font-weight: 600; color: var(--ink-2); transition: background-color .2s, color .2s;
}
.drawer-nav > a:hover, .drawer-nav > a:active { background: #f6f7f9; color: var(--red); }
.drawer-nav > a .di { color: var(--red); }

/* Akordeon grup */
.drawer-acc { border-radius: 14px; overflow: hidden; }
.drawer-acc-btn {
  width: 100%; display: flex; align-items: center; gap: 12px; padding: 15px 12px; border: none; background: transparent;
  font-family: inherit; font-size: 1.02rem; font-weight: 600; color: var(--ink-2); cursor: pointer; border-radius: 14px;
  transition: background-color .2s;
}
.drawer-acc-btn:hover { background: #f6f7f9; }
.drawer-acc-btn .di { color: var(--red); }
.drawer-acc-btn .acc-chev { margin-left: auto; transition: transform .35s var(--ease); color: var(--muted-2); }
.drawer-acc.open .drawer-acc-btn { background: #f6f7f9; color: var(--red); }
.drawer-acc.open .drawer-acc-btn .acc-chev { transform: rotate(180deg); }
.drawer-acc-panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.drawer-acc.open .drawer-acc-panel { max-height: 620px; }
.drawer-acc-panel-inner { padding: 4px 0 10px 46px; display: flex; flex-direction: column; }
.drawer-acc-panel-inner a { padding: 11px 10px; font-size: .94rem; color: var(--muted-2); font-weight: 500; border-radius: 10px; transition: color .2s, background-color .2s; }
.drawer-acc-panel-inner a:hover { color: var(--red); background: #f6f7f9; }

.drawer-cta { padding: 18px 20px; display: grid; gap: 10px; border-top: 1px solid #eef0f3; background: #fafbfc; position: sticky; bottom: 0; }
.drawer-contact { text-align: center; color: var(--muted-2); font-size: .82rem; padding: 0 20px 18px; background: #fafbfc; }
.drawer-contact a { color: var(--ink-2); font-weight: 700; }

/* ==========================================================================
   HERO  (koyu sinematik)
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden; padding: 120px 0 90px;
  background: var(--ink);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(220,38,38,.22), transparent 55%),
    linear-gradient(180deg, rgba(11,17,32,.55) 0%, rgba(11,17,32,.82) 55%, var(--ink) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; }
.hero h1 {
  font-size: clamp(2.35rem, 7vw, 4.6rem); font-weight: 900; letter-spacing: -.03em;
  margin-top: 22px;
}
.hero h1 .accent { color: var(--red); }
.hero-sub { margin-top: 22px; font-size: clamp(1.02rem, 2.4vw, 1.28rem); color: rgba(255,255,255,.8); max-width: 620px; }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 560px; }
.hero-stat { padding: 18px 20px; border-radius: var(--radius-sm); background: rgba(255,255,255,.05); border: 1px solid var(--line); backdrop-filter: blur(8px); }
.hero-stat b { display: block; font-size: 1.5rem; font-weight: 800; }
.hero-stat span { font-size: .78rem; color: var(--muted); letter-spacing: .02em; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1; color: rgba(255,255,255,.5); display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.hero-scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.35); border-radius: 14px; position: relative; }
.hero-scroll .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-tint { background: #f6f7f9; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 900; margin-top: 16px; }
.section-head p { margin-top: 18px; font-size: 1.06rem; color: var(--muted-2); }
.section-dark .section-head p { color: var(--muted); }

/* Trust strip */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { background: var(--ink-2); padding: 30px 24px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; color: #fff; }
.trust-item .t-ico { width: 52px; height: 52px; border-radius: 16px; background: rgba(220,38,38,.12); color: var(--red); display: inline-flex; align-items: center; justify-content: center; }
.trust-item b { font-size: 1rem; }
.trust-item span { font-size: .82rem; color: var(--muted); }

/* Services grid */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff; isolation: isolate;
  border: 1px solid rgba(0,0,0,.06);
}
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.svc-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,17,32,.15) 0%, rgba(11,17,32,.35) 45%, rgba(11,17,32,.92) 100%); }
.svc-card:hover img { transform: scale(1.07); }
.svc-body { padding: 26px; }
.svc-body .svc-ico { width: 46px; height: 46px; border-radius: 13px; background: rgba(220,38,38,.9); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; box-shadow: var(--shadow-red); }
.svc-body h3 { font-size: 1.28rem; font-weight: 800; }
.svc-body p { margin-top: 8px; font-size: .9rem; color: rgba(255,255,255,.78); }
.svc-body .svc-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 700; color: #fff; }
.svc-body .svc-link .icon { transition: transform .3s var(--ease); }
.svc-card:hover .svc-link .icon { transform: translateX(5px); }

/* Feature split (katalizör) */
.feature-split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 960px) { .feature-split { grid-template-columns: 1.05fr .95fr; gap: 64px; } }
.feature-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-media .fm-badge { position: absolute; left: 20px; bottom: 20px; padding: 12px 18px; border-radius: 14px; background: rgba(11,17,32,.7); backdrop-filter: blur(10px); border: 1px solid var(--line-strong); color: #fff; font-weight: 700; font-size: .85rem; display: inline-flex; align-items: center; gap: 10px; }
.feature-list { margin-top: 26px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fl-ico { width: 30px; height: 30px; border-radius: 9px; background: rgba(220,38,38,.12); color: var(--red); display: inline-flex; align-items: center; justify-content: center; flex: none; margin-top: 2px; }
.feature-list b { font-weight: 700; }
.feature-list p { color: var(--muted-2); font-size: .92rem; margin-top: 2px; }
.section-dark .feature-list p { color: var(--muted); }
.note-soft { margin-top: 22px; font-size: .85rem; color: var(--muted-2); border-left: 3px solid var(--red); padding-left: 14px; }

/* Symptoms */
.symptom-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px) { .symptom-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .symptom-grid { grid-template-columns: repeat(3, 1fr); } }
.symptom {
  display: flex; gap: 14px; align-items: flex-start; padding: 20px;
  border-radius: var(--radius-sm); background: #fff; border: 1px solid #eceef1;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.symptom:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.symptom .s-ico { width: 40px; height: 40px; border-radius: 11px; background: #fef2f2; color: var(--red); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.symptom b { font-weight: 700; display: block; }
.symptom p { font-size: .86rem; color: var(--muted-2); margin-top: 3px; }

/* Process timeline */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 22px; counter-reset: step; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-card { position: relative; padding: 30px 24px; border-radius: var(--radius); background: rgba(255,255,255,.04); border: 1px solid var(--line); }
.process-card .p-num { font-size: 2.4rem; font-weight: 900; color: var(--red); line-height: 1; }
.process-card h3 { margin-top: 14px; font-size: 1.12rem; }
.process-card p { margin-top: 8px; font-size: .88rem; color: var(--muted); }

/* Brands */
.brand-marquee { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 560px) { .brand-marquee { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .brand-marquee { grid-template-columns: repeat(5, 1fr); } }
.brand-chip {
  display: flex; align-items: center; justify-content: center; padding: 22px 16px;
  border-radius: var(--radius-sm); background: #fff; border: 1px solid #eceef1;
  font-weight: 800; font-size: 1rem; color: var(--ink-2); letter-spacing: -.01em;
  transition: transform .3s var(--ease), border-color .3s, color .3s;
}
.brand-chip:hover { transform: translateY(-3px); border-color: var(--red); color: var(--red); }

/* FAQ */
.faq-wrap { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq {
  border: 1px solid #e7e9ee; border-radius: var(--radius-sm); background: #fff; overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq[open] { border-color: transparent; box-shadow: var(--shadow-lg); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 700; font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { color: var(--red); transition: transform .3s var(--ease); flex: none; }
.faq[open] summary .icon { transform: rotate(45deg); }
.faq .faq-a { padding: 0 24px 24px; color: var(--muted-2); font-size: .95rem; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: clamp(24px, 4vw, 40px); padding: clamp(44px, 7vw, 84px) clamp(28px, 5vw, 72px); background: linear-gradient(120deg, var(--ink) 0%, var(--graphite) 100%); color: #fff; }
.cta-band::before { content: ""; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(220,38,38,.35), transparent 65%); }
.cta-band-inner { position: relative; z-index: 1; max-width: 640px; }
.cta-band h2 { font-size: clamp(1.8rem, 4.4vw, 2.8rem); font-weight: 900; }
.cta-band p { margin-top: 16px; color: rgba(255,255,255,.82); font-size: 1.05rem; }
.cta-band .hero-actions { margin-top: 30px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: #fff; padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 42px; padding-bottom: 48px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.footer-brand img { height: 46px; margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: .92rem; max-width: 340px; }
.footer-social { margin-top: 20px; display: flex; gap: 10px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: background-color .2s, transform .3s var(--ease); }
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }
.footer-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-2); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: var(--muted); font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: .92rem; margin-bottom: 12px; }
.footer-contact .icon { color: var(--red); flex: none; margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 24px 0; display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { color: var(--muted-2); font-size: .84rem; }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.footer-bottom a { color: var(--muted); font-size: .84rem; }
.footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   Sabit mobil iletişim çubuğu + back to top
   ========================================================================== */
.mobile-bar { position: fixed; inset: auto 0 0 0; z-index: 90; display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(11,17,32,.9); backdrop-filter: blur(14px); border-top: 1px solid var(--line-strong); padding-bottom: env(safe-area-inset-bottom); }
@media (min-width: 1024px) { .mobile-bar { display: none; } }
.mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 10px 0; color: rgba(255,255,255,.75); font-size: .66rem; font-weight: 600; }
.mobile-bar a .icon { width: 20px; height: 20px; }
.mobile-bar a.accent { color: var(--red); }
body { padding-bottom: 64px; }
@media (min-width: 1024px) { body { padding-bottom: 0; } }

.to-top { position: fixed; right: 18px; bottom: 78px; z-index: 80; width: 46px; height: 46px; border-radius: 50%; background: var(--red); color: #fff; border: none; display: none; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-red); transition: transform .3s var(--ease); }
.to-top.show { display: inline-flex; }
.to-top:hover { transform: translateY(-3px); }
@media (min-width: 1024px) { .to-top { bottom: 24px; right: 24px; } }

/* ==========================================================================
   İÇ SAYFA BAŞLIĞI (fixed header'ı temizler)
   ========================================================================== */
.page-header {
  position: relative; padding: 140px 0 56px; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, var(--ink) 0%, var(--graphite) 100%);
}
.page-header::before { content: ""; position: absolute; right: -60px; top: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(220,38,38,.28), transparent 65%); }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(1.9rem, 5vw, 3rem); margin-top: 16px; }
.page-header-desc { margin-top: 16px; max-width: 640px; color: var(--muted); font-size: 1.05rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); }
.breadcrumbs a { color: var(--muted); transition: color .2s; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .current { color: #fff; font-weight: 600; }
.breadcrumbs span { color: var(--muted-2); }

/* İçerik tipografisi */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0 0 14px; }
.prose h3 { font-size: 1.2rem; margin: 26px 0 10px; }
.prose p { color: var(--muted-2); margin-bottom: 14px; }
.prose ul.bullet { display: grid; gap: 10px; margin: 10px 0 18px; }
.prose ul.bullet li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted-2); }
.prose ul.bullet li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); margin-top: 8px; flex: none; }
.lead { font-size: 1.12rem; color: var(--muted-2); }

.list-check { display: grid; gap: 12px; margin-top: 16px; }
.list-check li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted-2); }
.list-check .ci { width: 26px; height: 26px; border-radius: 8px; background: #fef2f2; color: var(--red); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.section-dark .list-check .ci { background: rgba(220,38,38,.15); }
.section-dark .list-check li { color: var(--muted); }
.list-x .ci { background: #fef2f2; color: var(--red); }

.info-card { border: 1px solid #eceef1; border-radius: var(--radius); background: #fff; padding: 26px; }
.section-dark .info-card { background: rgba(255,255,255,.04); border-color: var(--line); }

/* Form */
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 7px; font-size: .9rem; font-weight: 600; color: var(--ink-2); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1px solid #d7dbe0; border-radius: 12px; font-family: inherit; font-size: .96rem;
  color: var(--ink-2); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(220,38,38,.12); }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0 16px; }
@media (min-width: 640px) { .field-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.check-line { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--muted-2); }
.check-line a { color: var(--red); text-decoration: underline; }
.alert { padding: 14px 18px; border-radius: 12px; font-size: .92rem; font-weight: 500; margin-bottom: 16px; }
.alert-success { background: #ecfdf3; color: #167c42; border: 1px solid #b6ecc9; }
.alert-error { background: #fef2f2; color: #b42318; border: 1px solid #fbd3d0; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
