/* ==========================================================================
   Youtoo Detailing — Vitrin & Müşteri Sayfaları Tasarım Sistemi
   Açık / koyu tema: <html data-theme="light|dark">
   ========================================================================== */

:root {
  --bg: #fbfaf5;
  --bg-alt: #f6f3e6;
  --surface: #ffffff;
  --surface-2: #fdfbf2;
  --text: #16181c;
  --text-2: #3d424a;
  --muted: #6b7079;
  --border: #ebe6d4;
  --border-strong: #d9d2b8;
  --brand: #ffd700;
  --brand-strong: #ffc800;
  --brand-ink: #16181c;
  --accent: #8a6d00;
  --accent-strong: #6f5800;
  --accent-soft: #fff6c7;
  --accent-contrast: #16181c;
  --glow: 0 10px 28px -8px rgba(255, 196, 0, .55);
  --glow-lg: 0 30px 80px -24px rgba(255, 196, 0, .45);
  --success: #15803d;
  --success-soft: #e3f3e8;
  --danger: #b91c1c;
  --danger-soft: #fbe6e6;
  --info: #1d4ed8;
  --info-soft: #e5ecfb;
  --shadow-sm: 0 1px 2px rgba(22, 24, 28, .05);
  --shadow: 0 1px 2px rgba(22, 24, 28, .04), 0 8px 24px rgba(22, 24, 28, .06);
  --shadow-lg: 0 24px 60px rgba(22, 24, 28, .12);
  --header-bg: rgba(251, 250, 245, .82);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter Tight', 'Inter', system-ui, sans-serif;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg: #0c0d0f;
  --bg-alt: #111316;
  --surface: #15171b;
  --surface-2: #1b1e23;
  --text: #eeede9;
  --text-2: #c9cbd0;
  --muted: #8f949c;
  --border: #25292f;
  --border-strong: #343941;
  --brand: #ffd700;
  --brand-strong: #ffe14d;
  --brand-ink: #16181c;
  --accent: #ffd700;
  --accent-strong: #ffe14d;
  --accent-soft: rgba(255, 215, 0, .12);
  --accent-contrast: #16181c;
  --glow: 0 10px 30px -8px rgba(255, 215, 0, .45);
  --glow-lg: 0 30px 90px -30px rgba(255, 215, 0, .35);
  --success: #4ade80;
  --success-soft: rgba(74, 222, 128, .12);
  --danger: #f87171;
  --danger-soft: rgba(248, 113, 113, .12);
  --info: #7aa2ff;
  --info-soft: rgba(122, 162, 255, .12);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 8px 24px rgba(0, 0, 0, .35);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .55);
  --header-bg: rgba(12, 13, 15, .78);
  color-scheme: dark;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background-color .25s ease, color .25s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0; letter-spacing: -0.02em; color: var(--text); }
p { margin: 0; }
::selection { background: var(--brand); color: var(--brand-ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 112px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 20px; height: 1px; background: currentColor; }
.section-head.center .eyebrow::after { content: ''; width: 20px; height: 1px; background: currentColor; }
.h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; }
.lead { font-size: 17px; color: var(--muted); margin-top: 16px; }
.muted { color: var(--muted); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 22px; border-radius: 999px;
  font-size: 15px; font-weight: 600; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { background: var(--brand); color: var(--brand-ink); box-shadow: var(--glow); }
.btn-accent { background: var(--brand); color: var(--brand-ink); box-shadow: var(--glow); }
.btn-accent:hover { background: var(--brand-strong); box-shadow: 0 14px 34px -8px rgba(255, 196, 0, .7); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--text); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 14px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .6; cursor: not-allowed; }

.icon-btn {
  width: 40px; height: 40px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); color: var(--text);
  cursor: pointer; transition: border-color .2s, background-color .2s;
}
.icon-btn:hover { border-color: var(--border-strong); background: var(--surface); }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; color: var(--text); }
.logo svg { height: 48px; width: auto; display: block; }
.logo .logo-swoosh { fill: var(--brand-strong); }
.logo .logo-word { fill: currentColor; }
.logo .logo-sub { fill: var(--muted); }

/* Tema ikonları */
.theme-icon-dark { display: none; }
:root[data-theme="dark"] .theme-icon-light { display: none; }
:root[data-theme="dark"] .theme-icon-dark { display: inline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background-color .25s;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.header-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 500; color: var(--text-2); }
.nav a { position: relative; transition: color .2s; }
.nav a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 12px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); font-weight: 500; }
.mobile-menu .btn { margin-top: 18px; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(40px, 5.6vw, 68px); font-weight: 700; letter-spacing: -0.035em; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lead { font-size: 18px; max-width: 520px; margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-meta { display: flex; gap: 40px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border); }
.hero-meta strong { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.hero-meta span { font-size: 13px; color: var(--muted); }

.hero-visual { position: relative; }
.hero-visual .photo {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 4.4;
  box-shadow: var(--shadow-lg), var(--glow-lg); background: #111;
}
.hero-visual .photo img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute; left: -32px; bottom: 36px;
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 14px 18px 14px 14px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); max-width: 280px;
}
.float-card .qr-mini {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.float-card strong { display: block; font-size: 14px; }
.float-card span { font-size: 12.5px; color: var(--muted); line-height: 1.4; display: block; }
.float-card .status-dot, .status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px var(--success-soft); margin-right: 6px; }

/* ---------- Marka şeridi ---------- */
.brands { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 26px 0; }
.brands-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.brands small { font-size: 13px; color: var(--muted); }
.brand-list { display: flex; gap: 44px; flex-wrap: wrap; font-family: var(--font-display); font-weight: 700; letter-spacing: .12em; font-size: 14px; color: var(--muted); }

/* ---------- Kartlar ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}

/* Takip / Sorgu */
.track-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.track-points { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 18px; }
.track-points li { display: flex; gap: 14px; align-items: flex-start; color: var(--text-2); font-size: 15px; }
.track-points i { color: var(--accent); margin-top: 4px; width: 18px; text-align: center; }
.search-card { padding: 32px; }
.search-card h3 { font-size: 20px; font-weight: 650; }
.search-form { display: flex; gap: 10px; margin-top: 20px; }
.input {
  width: 100%; height: 52px; padding: 0 18px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px;
  font-size: 15px; outline: none; transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); background: var(--surface); }
textarea.input { height: auto; padding: 14px 18px; resize: vertical; }
select.input { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 22px) 23px, calc(100% - 17px) 23px; background-size: 5px 5px; background-repeat: no-repeat; }
.input-plate { font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.search-hint { font-size: 13px; color: var(--muted); margin-top: 12px; }
.result { margin-top: 20px; }
.result-box { border: 1px solid var(--border); border-radius: 14px; padding: 18px; background: var(--surface-2); }
.result-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.result-list { margin-top: 12px; display: grid; gap: 8px; font-size: 14px; color: var(--text-2); }

.plate {
  display: inline-flex; align-items: stretch; height: 32px;
  border: 2px solid #111; border-radius: 6px; overflow: hidden; background: #fff; color: #111;
  font-family: 'Inter Tight', var(--font); font-weight: 800; letter-spacing: .06em; font-size: 15px;
}
.plate::before { content: 'TR'; background: #1d4ed8; color: #fff; font-size: 9px; font-weight: 700; display: flex; align-items: flex-end; padding: 0 5px 3px; letter-spacing: 0; }
.plate span { display: flex; align-items: center; padding: 0 10px; }
.plate-lg { height: 48px; font-size: 24px; }
.plate-lg::before { font-size: 11px; padding: 0 7px 5px; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  height: 26px; padding: 0 10px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
  background: var(--surface-2); color: var(--text-2); border: 1px solid var(--border);
}
.badge-accent { background: var(--accent-soft); color: var(--accent); border-color: transparent; }
.badge-success { background: var(--success-soft); color: var(--success); border-color: transparent; }
.badge-danger { background: var(--danger-soft); color: var(--danger); border-color: transparent; }
.badge-info { background: var(--info-soft); color: var(--info); border-color: transparent; }

/* ---------- Hizmetler ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.service { background: var(--surface); padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; transition: background-color .2s; }
.service:hover { background: var(--surface-2); }
.service-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.service h3 { font-size: 18px; font-weight: 650; }
.service p { font-size: 14.5px; color: var(--muted); line-height: 1.6; flex: 1; }
.service .tag { font-size: 12.5px; font-weight: 600; color: var(--accent); }

/* ---------- Öncesi / Sonrası ---------- */
.works-toolbar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.chip {
  height: 38px; padding: 0 16px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface); color: var(--text-2);
  font-size: 14px; font-weight: 500; cursor: pointer; transition: all .2s;
}
.chip:hover { border-color: var(--border-strong); }
.chip.active { background: var(--text); color: var(--bg); border-color: var(--text); }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.work { display: flex; flex-direction: column; gap: 16px; }
.work[hidden] { display: none; }
.ba {
  position: relative; aspect-ratio: 688 / 768; border-radius: var(--radius); overflow: hidden;
  background: #111; user-select: none; touch-action: pan-y;
}
.ba-layer { position: absolute; inset: 0; background-size: 200% 100%; background-repeat: no-repeat; }
.ba-before { background-position: 0% 0; }
.ba-after { background-position: 100% 0; clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: #fff; transform: translateX(-1px); pointer-events: none; }
.ba-handle::after {
  content: '\f337'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 13px;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%; background: #fff; color: #111;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0, 0, 0, .35);
}
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.ba-label { position: absolute; top: 14px; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; background: rgba(0, 0, 0, .55); color: #fff; backdrop-filter: blur(6px); pointer-events: none; }
.ba-label.before { left: 14px; }
.ba-label.after { right: 14px; }
.work h3 { font-size: 18px; font-weight: 650; }
.work p { font-size: 14.5px; color: var(--muted); margin-top: 6px; }

/* ---------- Süreç ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 28px; border-top: 1px solid var(--border-strong); }
.step::before {
  counter-increment: step; content: '0' counter(step);
  position: absolute; top: -13px; left: 0; padding-right: 12px;
  background: var(--bg); font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--accent);
}
.section-alt .step::before { background: var(--bg-alt); }
.step i { font-size: 22px; color: var(--text); }
.step h3 { font-size: 18px; font-weight: 650; margin-top: 18px; }
.step p { font-size: 14.5px; color: var(--muted); margin-top: 8px; }

/* ---------- Fiyat Hesaplayıcı ---------- */
.calc { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: start; }
.calc-panel { padding: 28px; }
.calc-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 14px; }
.segments { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 28px; }
.segment {
  padding: 14px 10px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface-2);
  text-align: center; cursor: pointer; transition: all .2s; font-size: 14px; font-weight: 600;
}
.segment i { display: block; font-size: 20px; margin-bottom: 6px; color: var(--muted); }
.segment.active { border-color: var(--accent); background: var(--accent-soft); }
.segment.active i { color: var(--accent); }
.calc-services { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.calc-item {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface-2);
  cursor: pointer; transition: all .2s; text-align: left;
}
.calc-item:hover { border-color: var(--border-strong); }
.calc-item.active { border-color: var(--accent); background: var(--accent-soft); }
.calc-item .name { font-size: 14px; font-weight: 600; line-height: 1.35; }
.calc-item .meta { font-size: 12px; color: var(--muted); }
.calc-item .price { font-size: 14px; font-weight: 700; white-space: nowrap; }
.calc-summary { padding: 28px; position: sticky; top: 100px; }
.calc-summary .total { font-family: var(--font-display); font-size: 40px; font-weight: 700; letter-spacing: -0.03em; margin: 6px 0 4px; }
.calc-lines { margin: 20px 0; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: grid; gap: 8px; font-size: 14px; color: var(--text-2); min-height: 60px; }
.calc-lines div { display: flex; justify-content: space-between; gap: 12px; }

/* ---------- SSS ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 24px; font-weight: 300; color: var(--muted); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 24px; color: var(--muted); font-size: 15.5px; max-width: 680px; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; }
.contact-list { display: grid; gap: 24px; margin-top: 36px; }
.contact-item { display: flex; gap: 16px; }
.contact-item .ci-icon { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; background: var(--surface); }
.contact-item small { display: block; font-size: 13px; color: var(--muted); }
.contact-item a, .contact-item span { font-weight: 600; }
.contact-form { padding: 32px; display: grid; gap: 14px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 48px 0 40px; font-size: 14px; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--text); }

/* WhatsApp yüzen buton */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.06); }

/* Görünürlük animasyonu */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Duyarlı ---------- */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .nav, .header-actions .hide-md { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-grid, .track-grid, .contact-grid, .calc { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 40px; }
  .hero-visual { order: -1; }
  .hero-visual .photo { aspect-ratio: 16 / 11; }
  .float-card { left: 16px; bottom: 16px; }
  .calc-summary { position: static; }
  .section { padding: 80px 0; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .services-grid, .works-grid, .steps, .calc-services { grid-template-columns: 1fr; }
  .segments { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { gap: 24px; flex-wrap: wrap; }
  .search-form { flex-direction: column; }
  .search-form .btn { width: 100%; }
  .contact-form .row { grid-template-columns: 1fr; }
  .search-card, .contact-form, .calc-panel, .calc-summary { padding: 22px; }
  .brand-list { gap: 24px; }
  .section-head { margin-bottom: 40px; }
}
.input-plate::placeholder { text-transform: none; letter-spacing: 0; font-weight: 400; }
@media (max-width: 640px) { .float-card { display: none; } }

/* ==========================================================================
   Araç Kartı (QR) sayfası
   ========================================================================== */
.vc-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.vc-header .logo svg { height: 40px; }
.vc-wrap { max-width: 560px; margin: 0 auto; padding: 8px 16px 48px; display: grid; gap: 16px; }
.vc-hero { padding: 24px; display: grid; gap: 14px; }
.vc-hero .meta { display: flex; flex-wrap: wrap; gap: 8px; }
.vc-code { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12.5px; color: var(--muted); letter-spacing: .04em; }
.vc-section { padding: 22px; }
.vc-section h2 { font-size: 16px; font-weight: 650; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.vc-section h2 i { color: var(--accent); }
.vc-stepper { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin: 6px 0 14px; }
.vc-stepper div { height: 6px; border-radius: 99px; background: var(--border); }
.vc-stepper div.on { background: var(--brand); box-shadow: 0 0 10px rgba(255, 215, 0, .5); }
.vc-stepper-labels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; font-size: 11.5px; color: var(--muted); }
.vc-stepper-labels span.on { color: var(--text); font-weight: 600; }
.vc-status-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.vc-kv { display: grid; gap: 10px; margin-top: 16px; font-size: 14px; }
.vc-kv div { display: flex; justify-content: space-between; gap: 16px; }
.vc-kv span:first-child { color: var(--muted); }
.vc-kv span:last-child { text-align: right; font-weight: 500; }
.vc-warranty { padding: 14px 0; border-top: 1px solid var(--border); }
.vc-warranty:first-of-type { border-top: 0; padding-top: 0; }
.vc-progress { height: 6px; border-radius: 99px; background: var(--border); overflow: hidden; margin-top: 10px; }
.vc-progress div { height: 100%; background: var(--success); border-radius: 99px; }
.vc-timeline { display: grid; gap: 0; }
.vc-tl-item { display: grid; grid-template-columns: 14px 1fr; gap: 14px; padding-bottom: 18px; position: relative; }
.vc-tl-item::before { content: ''; position: absolute; left: 6px; top: 16px; bottom: 0; width: 2px; background: var(--border); }
.vc-tl-item:last-child::before { display: none; }
.vc-tl-dot { width: 14px; height: 14px; border-radius: 50%; border: 3px solid var(--accent); background: var(--surface); margin-top: 4px; }
.vc-tl-item small { color: var(--muted); font-size: 12.5px; }
.vc-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.vc-actions .btn { height: 44px; font-size: 14px; padding: 0 10px; }
.vc-empty { text-align: center; padding: 48px 24px; }
.vc-empty i { font-size: 36px; color: var(--muted); }
.vc-footnote { text-align: center; font-size: 12.5px; color: var(--muted); }
.skeleton { background: linear-gradient(90deg, var(--border) 25%, var(--surface-2) 50%, var(--border) 75%); background-size: 200% 100%; animation: sk 1.2s infinite; border-radius: 12px; }
@keyframes sk { to { background-position: -200% 0; } }

/* ---------- Marka sarısı (maskot rengi #FFD700) ---------- */
.hero h1 em {
  color: inherit;
  background: linear-gradient(transparent 58%, var(--brand) 58%, var(--brand) 92%, transparent 92%);
  padding: 0 .06em;
}
:root[data-theme="dark"] .hero h1 em { color: var(--brand); background: none; text-shadow: 0 0 36px rgba(255, 215, 0, .35); }
.service-icon, .float-card .qr-mini { background: var(--brand); color: var(--brand-ink); box-shadow: var(--glow); }
.service { position: relative; transition: background-color .2s, box-shadow .25s; }
.service:hover { box-shadow: inset 0 -3px 0 var(--brand); }
.card { transition: box-shadow .25s, border-color .25s; }
.card:hover { box-shadow: var(--shadow-sm), var(--glow); border-color: rgba(255, 196, 0, .45); }
.float-card { box-shadow: var(--shadow-lg), var(--glow); }
.segment.active, .calc-item.active { border-color: var(--brand-strong); box-shadow: var(--glow); }
.contact-item .ci-icon { background: var(--accent-soft); border-color: transparent; }
.input:focus { border-color: var(--brand-strong); box-shadow: 0 0 0 4px rgba(255, 215, 0, .25); }

/* ---------- Maskot ---------- */
.mascot {
  position: absolute; right: -44px; bottom: -58px; z-index: 2;
  width: min(300px, 62%); pointer-events: none;
}
.mascot img {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 18px 26px rgba(255, 196, 0, .45)) drop-shadow(0 4px 8px rgba(0, 0, 0, .18));
  animation: mascot-float 5s ease-in-out infinite;
}
.mascot-bubble {
  position: absolute; right: 30%; top: -44px;
  background: var(--brand); color: var(--brand-ink);
  font-family: var(--font-display); font-weight: 700; font-size: 14px; line-height: 1.25;
  padding: 10px 14px; border-radius: 16px 16px 16px 4px; white-space: nowrap;
  box-shadow: var(--glow);
}
@keyframes mascot-float { 50% { transform: translateY(-8px); } }
.hero-visual { margin-bottom: 40px; }
.hero-visual .float-card { top: 40px; bottom: auto; }

.form-mascot { display: flex; align-items: center; gap: 14px; }
.form-mascot img {
  width: 92px; height: auto; flex-shrink: 0; margin: -18px 0 -6px -8px;
  filter: drop-shadow(0 8px 14px rgba(255, 196, 0, .45));
}

@media (max-width: 960px) {
  .mascot { right: -8px; bottom: -44px; width: min(240px, 46%); }
  .hero-visual .float-card { top: 16px; left: 16px; }
  .hero-visual { margin-bottom: 36px; }
}
@media (max-width: 640px) {
  .mascot { width: 48%; bottom: -34px; right: -6px; }
  .mascot-bubble { font-size: 12px; padding: 8px 11px; right: 24%; top: -34px; }
}
@media (prefers-reduced-motion: reduce) { .mascot img { animation: none; } }
