/* ==========================================================================
   Valeyever — Kurumsal Site Tasarım Sistemi
   ========================================================================== */

:root {
  --bg: #101a30;
  --bg-alt: #182642;
  --surface: rgba(255, 255, 255, 0.085);
  --surface-strong: rgba(255, 255, 255, 0.15);
  --surface-pop: rgba(233, 239, 255, 0.32);
  --border: rgba(255, 255, 255, 0.16);
  --border-strong: rgba(255, 255, 255, 0.28);
  --text: #f7f9fd;
  --text-dim: #b7c0d6;
  --text-dimmer: #8891a8;

  --primary: #2f6bff;
  --primary-2: #6f8dff;
  --accent: #00e0c6;
  --accent-2: #ff8a3d;
  --success: #2bd99b;
  --warning: #ffb648;
  --danger: #ff5f7e;

  --grad-primary: linear-gradient(135deg, #2f6bff 0%, #00c2ff 55%, #00e0c6 100%);
  --grad-accent: linear-gradient(135deg, #ff8a3d 0%, #ff5f7e 100%);
  --grad-surface: linear-gradient(160deg, rgba(47, 107, 255, 0.14), rgba(0, 224, 198, 0.05));

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 0 1px rgba(47, 107, 255, 0.25), 0 20px 50px -15px rgba(47, 107, 255, 0.35);

  --container: 1200px;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(47, 107, 255, 0.40), transparent 60%),
    radial-gradient(700px 500px at -10% 20%, rgba(47, 107, 255, 0.34), transparent 60%),
    radial-gradient(1000px 700px at 50% 120%, rgba(0, 224, 198, 0.12), transparent 60%),
    var(--bg);
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; color: var(--text-dim); }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-tight { padding: 64px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 224, 198, 0.08);
  border: 1px solid rgba(0, 224, 198, 0.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-head p { font-size: 17px; }

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--grad-primary); color: #04101f; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 25px 55px -15px rgba(47, 107, 255, 0.5); }
.btn-ghost { background: var(--surface); border-color: var(--border); color: var(--text); backdrop-filter: blur(10px); }
.btn-ghost:hover { border-color: var(--border-strong); background: var(--surface-strong); }
.btn-accent { background: var(--grad-accent); color: #1a0a06; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 25px 55px -15px rgba(255, 95, 126, 0.45); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }

/* ---------- Üst kurumsal şerit (topbar) ---------- */
.topbar { display: none; }
@media (min-width: 981px) {
  .topbar {
    display: flex; align-items: center; justify-content: center;
    position: fixed; top: 0; left: 0; right: 0; z-index: 201;
    height: 38px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
  }
  .topbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
  .topbar-left { display: flex; align-items: center; gap: 22px; }
  .topbar-left span { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--text-dimmer); }
  .topbar-left svg { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; }
  .topbar-right { display: flex; align-items: center; }
  .topbar-right a { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--text-dim); padding: 0 16px; border-right: 1px solid var(--border); transition: color .2s ease; }
  .topbar-right a:last-child { border-right: none; padding-right: 0; }
  .topbar-right a:hover { color: var(--accent); }
  .topbar-right svg { width: 14px; height: 14px; flex-shrink: 0; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, top 0.3s ease;
  border-bottom: 1px solid transparent;
}
@media (min-width: 981px) {
  .site-header { top: 38px; }
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(6, 9, 17, 0.75);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 10px; font-family: ui-rounded, "SF Pro Rounded", var(--font-display); font-weight: 800; font-size: 19px; }
.brand-mark {
  width: auto; height: 46px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 40px; height: 46px; animation: brandMarkGrow .7s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
@keyframes brandMarkGrow {
  0% { transform: scale(0.3); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-mark svg { animation: none; }
}
.brand small { display: block; font-size: 10.5px; font-weight: 600; color: var(--text-dimmer); letter-spacing: .04em; margin-top: 1px; }
.reg-mark { font-size: 11px; font-weight: 600; color: var(--text-dimmer); margin-left: 2px; top: -0.6em; }
.brand-badge { position: relative; display: inline-flex; align-items: center; overflow: hidden; font-size: 11px; font-weight: 800; letter-spacing: .02em; color: var(--accent); background: rgba(0, 224, 198, 0.1); border: 1px solid rgba(0, 224, 198, 0.3); padding: 5px 11px; border-radius: 100px; white-space: nowrap; }
.brand-badge::after {
  content: "";
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: badge-shine 5s ease-in-out infinite;
  will-change: transform;
}
@keyframes badge-shine {
  0%, 15% { transform: translateX(0); }
  55%, 100% { transform: translateX(475%); }
}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--text-dim); transition: color .2s ease; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); align-items: center; justify-content: center; }
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 199;
  background: rgba(6, 9, 17, 0.98);
  backdrop-filter: blur(20px);
  padding: 100px 28px 40px;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 20px; font-weight: 700; padding: 16px 4px; border-bottom: 1px solid var(--border); }
.mobile-nav .btn { margin-top: 20px; border-bottom: none; }
.mobile-nav .mobile-lang-toggle { align-self: flex-start; margin-top: 14px; font-size: 15px; border-bottom: none; padding: 10px 16px; }
.mobile-nav .mobile-lang-toggle span:first-of-type { color: var(--text-dimmer); font-weight: 600; }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 12px 4px 0; }
.mobile-nav-label { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--text-dimmer); padding: 16px 4px 2px; }
.mobile-nav-actions { display: flex; gap: 10px; margin: 4px 0 2px; }
.mobile-nav-actions .btn { flex: 1; margin-top: 0; }
.mobile-nav-auth { display: flex; gap: 10px; margin: 4px 0 2px; }
.mobile-nav-auth .btn { flex: 1; margin-top: 0; }
.btn-outline-accent { background: transparent; border-color: rgba(0, 224, 198, 0.4); color: var(--accent); }
.btn-outline-accent:hover { background: rgba(0, 224, 198, 0.1); border-color: var(--accent); }

/* ---------- Hero ---------- */
.hero { padding: 168px 0 0; position: relative; }
@media (min-width: 981px) { .hero { padding-top: 206px; } }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 22px; }
.hero-lead { font-size: 18px; max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat .n { font-family: var(--font-display); font-size: 28px; font-weight: 800; }
.hero-stat .l { font-size: 13px; color: var(--text-dimmer); margin-top: 2px; }

.hero-visual { position: relative; }
.hero-card {
  position: relative;
  background: var(--grad-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}
.hero-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.hero-card-badge { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--success); background: rgba(43, 217, 155, 0.1); border: 1px solid rgba(43, 217, 155, 0.3); padding: 6px 12px; border-radius: 100px; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); position: relative; }
.pulse-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; background: var(--success); opacity: 0.5; animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(0.6); opacity: 0.6; } 100% { transform: scale(2.2); opacity: 0; } }

.hero-card-row { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: var(--radius); background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); margin-bottom: 12px; }
.hero-card-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--surface-strong); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-card-icon svg { width: 20px; height: 20px; color: var(--accent); }
.hero-card-row .t { font-weight: 700; font-size: 14.5px; }
.hero-card-row .s { font-size: 12.5px; color: var(--text-dimmer); }

.hero-float {
  position: absolute;
  background: var(--surface-pop);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 18px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 34px -10px rgba(47, 107, 255, 0.4), var(--shadow-soft);
  animation: float 5s ease-in-out infinite;
}
.hero-float-1 { top: -24px; right: -18px; animation-delay: 0.3s; }
.hero-float-2 { bottom: -20px; left: -24px; animation-delay: 1s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-float .n { font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.hero-float .l { font-size: 11px; color: var(--text-dimmer); }

.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; margin-top: 56px; }
.trust-strip .container { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-strip .label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-dimmer); white-space: nowrap; }
.trust-logos { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; justify-content: space-between; flex: 1; }
.trust-logo-word {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: var(--text-dim); letter-spacing: .01em;
  opacity: .85; filter: grayscale(1);
  transition: opacity .25s ease, filter .25s ease, color .25s ease;
}
.trust-logo-word:hover { opacity: 1; filter: grayscale(0); color: var(--text); }

/* ---------- Flagship service ---------- */
.flagship {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.flagship-content { padding: 56px; padding-top: 68px; display: flex; flex-direction: column; justify-content: flex-start; }
.flagship-content h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.flagship-content p { font-size: 16px; margin-bottom: 26px; }
.flagship-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.flagship-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--text-dim); font-weight: 500; }
.flagship-list .ic { width: 22px; height: 22px; border-radius: 50%; background: rgba(0, 224, 198, 0.14); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.flagship-list .ic svg { width: 12px; height: 12px; }
.flagship-visual {
  background: var(--grad-surface);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 68px 40px 40px;
  border-left: 1px solid var(--border);
}
.flagship-visual .badge-tuv {
  position: absolute;
  top: 28px; left: 28px;
  background: var(--surface-strong);
  border: 1px solid var(--border-strong);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Süreç rotası (flagship görsel) ---------- */
.mini-divider { height: 1px; background: var(--border); margin: 26px 0; }
.mini-label { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--text-dimmer); margin-bottom: 14px; }

.vtimeline-item.current .vtimeline-dot { background: var(--grad-primary); color: #04101f; border-color: transparent; box-shadow: 0 0 0 5px rgba(47,107,255,0.2); }
.route-demo { position: relative; height: 64px; margin: 6px 0 18px; container-type: inline-size; }
.route-demo .pin { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: var(--surface-strong); border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; color: var(--accent); z-index: 2; }
.route-demo .pin.start { left: 0; }
.route-demo .pin.mid { left: 50%; transform: translate(-50%, -50%); }
.route-demo .pin.end { right: 0; }
.route-demo .pin svg { width: 20px; height: 20px; }
.route-demo .path { position: absolute; left: 48px; right: 48px; top: 50%; height: 2px; background-image: linear-gradient(to right, var(--border-strong) 50%, transparent 50%); background-size: 14px 2px; background-repeat: repeat-x; }
.route-demo .car { position: absolute; top: 50%; left: 48px; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: var(--grad-primary); display: flex; align-items: center; justify-content: center; color: #04101f; z-index: 3; animation: route-move 9s ease-in-out infinite; will-change: transform; }
.route-demo .car svg { width: 17px; height: 17px; }
@keyframes route-move {
  0%, 9% { transform: translateY(-50%) translateX(0); }
  30%, 39% { transform: translateY(-50%) translateX(calc(50cqw - 66px)); }
  60%, 69% { transform: translateY(-50%) translateX(calc(100cqw - 132px)); }
  95%, 100% { transform: translateY(-50%) translateX(0); }
}
.route-labels { display: flex; justify-content: space-between; }
.route-labels .stop { text-align: center; max-width: 130px; }
.route-labels .stop .title { font-size: 13px; color: var(--text-dimmer); font-weight: 700; }
.route-labels .stop .time { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; color: var(--accent); font-weight: 700; margin-top: 4px; }
.route-labels .stop .time svg { width: 12px; height: 12px; }
.route-labels .stop:first-child { text-align: left; }
.route-labels .stop:last-child { text-align: right; }

/* ---------- Service grid ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-grid-4 { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-strong); }
.service-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--grad-surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 24px; height: 24px; color: var(--accent); }
.service-card h4 { font-size: 17.5px; margin-bottom: 10px; }
.service-card p { font-size: 14px; }
.service-card .tag { display: inline-block; margin-top: 16px; font-size: 12px; font-weight: 700; color: var(--primary-2); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.steps-5 { grid-template-columns: repeat(5, 1fr); }
.step-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; }
.step-num { font-family: var(--font-display); font-size: 42px; font-weight: 800; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.18); margin-bottom: 18px; }
.step-card h4 { font-size: 16.5px; margin-bottom: 10px; }
.step-card p { font-size: 13.5px; }
.step-connector { display: none; }

/* ---------- Stats band ---------- */
.stats-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 44px 20px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-item .n { font-family: var(--font-display); font-size: 36px; font-weight: 800; }
.stat-item .l { font-size: 13.5px; color: var(--text-dimmer); margin-top: 6px; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--surface); }
.why-card .ic { width: 46px; height: 46px; border-radius: 13px; background: rgba(255,138,61,0.1); border: 1px solid rgba(255,138,61,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--accent-2); }
.why-card .ic svg { width: 22px; height: 22px; }
.why-card h4 { font-size: 16px; margin-bottom: 8px; }
.why-card p { font-size: 13.5px; }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: flex; gap: 22px; align-items: stretch;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4px 16px; margin: -4px -4px 0;
  scrollbar-width: thin; scrollbar-color: var(--border-strong) transparent;
}
.testi-grid::-webkit-scrollbar { height: 7px; }
.testi-grid::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 100px; }
.testi-grid::-webkit-scrollbar-track { background: transparent; }
.testi-card {
  display: flex; flex-direction: column;
  padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--surface);
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 260px;
}
.testi-stars { color: var(--warning); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p.quote { color: var(--text); font-size: 15px; margin-bottom: 22px; flex: 1; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-tag { margin-top: 16px; font-size: 10.5px; color: var(--text-dimmer); opacity: .7; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--grad-primary); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: #04101f; }
.testi-person .name { font-weight: 700; font-size: 14px; }
.testi-person .role { font-size: 12.5px; color: var(--text-dimmer); }
.testi-note { margin-top: 28px; font-size: 12px; color: var(--text-dimmer); text-align: center; }

/* ---------- Fiyatlandırma ---------- */
.pricing-toolbar { display: flex; justify-content: center; gap: 12px; margin-bottom: 22px; }
.carousel-arrow { width: 42px; height: 42px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text); transition: background .2s ease, border-color .2s ease, transform .2s ease; flex-shrink: 0; }
.carousel-arrow:hover { background: var(--surface-strong); border-color: var(--border-strong); }
.carousel-arrow:active { transform: scale(0.94); }
.carousel-arrow svg { width: 18px; height: 18px; }

.pricing-grid {
  display: flex;
  gap: 22px;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 16px;
  margin: -4px -4px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.pricing-grid::-webkit-scrollbar { height: 7px; }
.pricing-grid::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 100px; }
.pricing-grid::-webkit-scrollbar-track { background: transparent; }

.price-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface); overflow: hidden; position: relative;
  transition: transform .3s ease, border-color .3s ease;
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 270px;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.price-card.featured { border-color: rgba(0, 224, 198, 0.4); box-shadow: 0 0 0 1px rgba(0, 224, 198, 0.25), var(--shadow-soft); }
.price-badge { position: absolute; top: 18px; right: 18px; font-size: 10.5px; font-weight: 800; background: var(--grad-accent); color: #1a0a06; padding: 5px 12px; border-radius: 100px; letter-spacing: .03em; z-index: 2; }
.price-title { padding: 26px 28px 0; font-size: 17px; font-weight: 800; }
.price-head { margin: 18px 28px 0; padding: 22px 4px; border-radius: var(--radius); background: var(--grad-primary); text-align: center; }
.price-amount { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: #04101f; }
.price-amount span { font-size: 15px; font-weight: 700; opacity: .75; }
.price-amount .star { font-size: 20px; vertical-align: top; }
.price-sub { font-size: 12.5px; font-weight: 600; color: rgba(4, 16, 31, 0.72); margin-top: 4px; }
.price-features { list-style: none; margin: 22px 0 0; padding: 0 28px; flex: 1; display: flex; flex-direction: column; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-dim); padding: 12px 0; border-bottom: 1px solid var(--border); }
.price-features li:last-child { border-bottom: none; }
.price-features .ic { width: 18px; height: 18px; border-radius: 50%; background: rgba(0, 224, 198, 0.14); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.price-features .ic svg { width: 10px; height: 10px; }
.price-cta { margin: 22px 28px 28px; }
.price-note { text-align: center; font-size: 12.5px; color: var(--text-dimmer); margin-top: 8px; }
.price-note .star { color: var(--accent-2); font-weight: 800; }

/* ---------- FAQ ---------- */
.faq-shell { display: grid; grid-template-columns: 1.35fr 0.85fr; gap: 48px; align-items: start; }
.faq-side { position: sticky; top: 120px; }
.faq-side .hero-card { max-width: 100%; }
.faq-list { max-width: 100%; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; font-weight: 700; font-size: 15.5px; }
.faq-q .plus { width: 24px; height: 24px; border-radius: 50%; background: var(--surface-strong); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .3s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--grad-primary); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 26px 22px; font-size: 14.5px; color: var(--text-dim); }
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-xl);
  background: var(--grad-primary);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 300px at 90% 10%, rgba(255,255,255,0.25), transparent 60%);
}
.cta-banner h3 { color: #04101f; font-size: clamp(24px, 3vw, 34px); position: relative; }
.cta-banner p { color: rgba(4,16,31,0.75); font-size: 15px; margin-top: 10px; max-width: 460px; position: relative; }
.cta-banner .btn-ghost { background: #04101f; color: #fff; border-color: transparent; position: relative; }
.cta-banner .btn-ghost:hover { background: #0a1b33; }

.feature-banner {
  border-radius: var(--radius-xl);
  background: var(--grad-surface);
  border: 1px solid rgba(0, 224, 198, 0.35);
  padding: 48px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.feature-banner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px 300px at 8% 100%, rgba(0,224,198,0.16), transparent 60%);
}
.feature-banner > div { position: relative; max-width: 560px; }
.feature-banner h3 { font-size: clamp(22px, 3vw, 30px); margin: 10px 0 10px; }
.feature-banner p { font-size: 14.5px; }
.feature-banner .btn { position: relative; flex-shrink: 0; }
@media (max-width: 640px) { .feature-banner { padding: 34px 26px; text-align: center; justify-content: center; } .feature-banner > div { max-width: 100%; } }

/* ---------- Destekleyen Kuruluşlar ---------- */
.supporters-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.supporter-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  min-height: 92px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.supporter-card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-strong); }
.supporter-card .word { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--text); line-height: 1.25; }
.supporter-card .word small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 11.5px; color: var(--text-dimmer); margin-top: 3px; letter-spacing: .01em; }

/* ---------- SEO içerik bloğu ---------- */
.seo-content {
  position: relative;
  max-height: 320px;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 32px 34px;
}
.seo-content::-webkit-scrollbar { width: 8px; }
.seo-content::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 100px; }
.seo-content::-webkit-scrollbar-track { background: transparent; }
.seo-content h3 { font-size: 16px; margin: 22px 0 10px; color: var(--text); }
.seo-content h3:first-child { margin-top: 0; }
.seo-content p { font-size: 13.5px; line-height: 1.75; margin-bottom: 12px; }
.seo-content .district-list { font-size: 13.5px; line-height: 1.9; color: var(--text-dim); }
.seo-fade {
  position: sticky; bottom: 0; left: 0; right: 0; height: 48px; margin-top: -48px;
  background: linear-gradient(to bottom, transparent, var(--surface));
  pointer-events: none;
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 64px 0 28px; background: var(--bg-alt); margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-about p { font-size: 13.5px; margin: 18px 0 20px; max-width: 320px; }
.footer-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--text); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li { font-size: 14px; color: var(--text-dim); }
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--text-dim); display: flex; align-items: center; justify-content: center; transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease; }
.footer-social a:hover { transform: translateY(-3px); border-color: var(--accent); color: var(--accent); background: var(--surface-strong); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--text-dimmer); }
.footer-rebrand { font-size: 12px; color: var(--text-dimmer); background: var(--surface); border: 1px solid var(--border); padding: 10px 16px; border-radius: var(--radius); margin-top: 20px; max-width: 340px; }
.footer-rebrand b { color: var(--accent); }

.footer-app-row {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  padding: 30px 32px; margin-bottom: 40px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--grad-surface);
}
.footer-app-text h5 { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 6px; text-transform: none; letter-spacing: 0; }
.footer-app-text p { font-size: 13px; max-width: 360px; }
.app-badges { display: flex; gap: 10px; flex-wrap: nowrap; }
.app-badge {
  position: relative; display: flex; align-items: center; gap: 8px;
  background: #0a0e18; border: 1px solid var(--border-strong); border-radius: 12px;
  padding: 9px 14px 9px 12px; transition: transform .2s ease, border-color .2s ease;
  flex: 1 1 0; min-width: 0;
}
.app-badge:hover { transform: translateY(-2px); border-color: var(--accent); }
.app-badge svg { width: 22px; height: 22px; color: white; flex-shrink: 0; }
.app-badge small { display: block; font-size: 9.5px; color: var(--text-dimmer); line-height: 1.2; }
.app-badge strong { display: block; font-size: 14.5px; color: white; line-height: 1.3; font-family: var(--font-display); font-weight: 700; }
.app-badge-soon {
  position: absolute; top: -11px; right: -8px;
  background: var(--grad-accent); color: #1a0a06; font-size: 9.5px; font-weight: 800;
  padding: 3px 9px; border-radius: 100px; letter-spacing: .02em; white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,.35);
}

.footer-trust-row { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--border); }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--text-dimmer); }
.trust-badge svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 150px 0 60px; text-align: center; }
@media (min-width: 981px) { .page-hero { padding-top: 188px; } }
.page-hero h1 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; }
.page-hero p { max-width: 560px; margin: 0 auto; font-size: 16.5px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; justify-content: center; font-size: 13px; color: var(--text-dimmer); margin-bottom: 20px; }
.error-code { font-family: var(--font-display); font-weight: 800; font-size: clamp(70px, 14vw, 150px); line-height: 1; margin-bottom: 8px; }
.breadcrumb a:hover { color: var(--accent); }

/* ---------- Forms (shared) ---------- */
.form-card { grid-column: 2; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 44px; box-shadow: var(--shadow-soft); }
.booking-shell.success-mode .form-card { grid-column: 1; }
.field-group { margin-bottom: 20px; }
.field-label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.field-label .opt { color: var(--text-dimmer); font-weight: 500; }
.field-input, .field-select, .field-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-size: 14.5px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.field-input:focus, .field-select:focus, .field-textarea:focus { border-color: var(--primary-2); background: rgba(255,255,255,0.05); }
.field-input::placeholder, .field-textarea::placeholder { color: var(--text-dimmer); }
.field-textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-error { font-size: 12.5px; color: var(--danger); margin-top: 6px; display: none; }
.field-group.invalid .field-input, .field-group.invalid .field-select { border-color: var(--danger); }
.field-group.invalid .field-error { display: block; }
.field-hint { font-size: 12px; color: var(--text-dimmer); margin-top: 6px; }
.checkbox-list { display: flex; flex-direction: column; gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-dim); cursor: pointer; }
.checkbox-item input { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }
.geo-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; color: var(--accent); background: none; border: none; cursor: pointer; padding: 2px 4px; }
.geo-btn:disabled { opacity: 0.5; cursor: default; }
.field-label-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.field-label-row .field-label { margin-bottom: 0; }
.toggle-group { padding: 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); }
.toggle-item { align-items: flex-start; gap: 12px; }
.toggle-item input { margin-top: 3px; flex-shrink: 0; }
.toggle-title { display: block; font-weight: 700; color: var(--text); font-size: 13.5px; }
.toggle-hint { display: block; font-size: 11.5px; color: var(--text-dimmer); margin-top: 3px; line-height: 1.5; }

select.field-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239aa5bd' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* ---------- Kurumsal giriş / talep sayfası ---------- */
.corp-shell { display: grid; grid-template-columns: 1.1fr 0.9fr; border: 1px solid var(--border-strong); border-radius: var(--radius-xl); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-soft); }
.corp-panel { padding: 56px; background: var(--grad-surface); border-right: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; }
.corp-panel h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.corp-panel p { font-size: 15px; margin-bottom: 28px; }
.corp-panel .hero-stats { margin-bottom: 30px; }
.corp-form-panel { padding: 56px; }
.corp-tabs { display: flex; gap: 6px; background: var(--surface-strong); padding: 5px; border-radius: 100px; margin-bottom: 30px; }
.corp-tab { flex: 1; text-align: center; padding: 11px; border-radius: 100px; font-weight: 700; font-size: 13.5px; color: var(--text-dimmer); cursor: pointer; transition: all .2s ease; border: none; background: none; font-family: inherit; }
.corp-tab.active { background: var(--grad-primary); color: #04101f; }
.corp-tab-panel { display: none; }
.corp-tab-panel.active { display: block; animation: fadeIn .35s ease; }
.corp-login-note { font-size: 12.5px; color: var(--text-dimmer); margin-top: 16px; text-align: center; }
@media (max-width: 980px) {
  .corp-shell { grid-template-columns: 1fr; }
  .corp-panel { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .corp-panel, .corp-form-panel { padding: 30px 24px; }
}

/* ---------- Muayene hatırlatıcı ---------- */
.reminder-card {
  display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center;
  border: 1px solid var(--border-strong); border-radius: var(--radius-xl);
  background: var(--grad-surface); padding: 40px 44px; box-shadow: var(--shadow-soft);
}
.reminder-text h3 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 10px; }
.reminder-text p { font-size: 14.5px; max-width: 480px; }
.reminder-form { display: flex; flex-direction: column; gap: 12px; min-width: 300px; }
.reminder-form-row { display: flex; gap: 10px; }
.reminder-form-row .field-input { flex: 1; }
.reminder-result {
  margin-top: 4px; padding: 14px 18px; border-radius: var(--radius); font-size: 13.5px; font-weight: 600;
  display: none; align-items: center; gap: 10px;
}
.reminder-result.show { display: flex; }
.reminder-result svg { width: 20px; height: 20px; flex-shrink: 0; }
.reminder-result.ok { background: rgba(43,217,155,0.1); border: 1px solid rgba(43,217,155,0.3); color: var(--success); }
.reminder-result.soon { background: rgba(255,182,72,0.1); border: 1px solid rgba(255,182,72,0.3); color: var(--warning); }
.reminder-result.urgent { background: rgba(255,95,126,0.1); border: 1px solid rgba(255,95,126,0.3); color: var(--danger); }
@media (max-width: 900px) {
  .reminder-card { grid-template-columns: 1fr; text-align: left; }
  .reminder-form { min-width: 0; }
}

/* ---------- Kurumsal panel önizlemesi ---------- */
.panel-preview {
  border: 1px solid var(--border-strong); border-radius: var(--radius-xl);
  background: var(--surface); box-shadow: var(--shadow-soft); overflow: hidden;
}
.panel-preview-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 20px 28px; border-bottom: 1px solid var(--border); background: var(--surface-strong);
}
.panel-preview-bar .dots { display: flex; gap: 6px; }
.panel-preview-bar .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.panel-preview-title { font-weight: 800; font-size: 15px; display: flex; align-items: center; gap: 10px; }
.panel-demo-badge { font-size: 10.5px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; color: var(--accent-2); background: rgba(255,138,61,0.12); border: 1px solid rgba(255,138,61,0.3); padding: 4px 10px; border-radius: 100px; }
.panel-preview-body { padding: 28px; }
.panel-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 26px; }
.panel-stat { border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255,255,255,0.02); padding: 16px 18px; }
.panel-stat .n { font-family: var(--font-display); font-size: 24px; font-weight: 800; }
.panel-stat .l { font-size: 12px; color: var(--text-dimmer); margin-top: 4px; }
.panel-table { width: 100%; border-collapse: collapse; }
.panel-table th { text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-dimmer); padding: 0 14px 12px; font-weight: 700; }
.panel-table td { padding: 14px; font-size: 13.5px; border-top: 1px solid var(--border); }
.panel-table tr td:first-child, .panel-table th:first-child { padding-left: 14px; }
.panel-table .plate-cell { font-family: var(--font-display); font-weight: 800; }
.panel-table .countdown { font-weight: 700; }
.panel-table .countdown.urgent { color: var(--danger); }
.panel-table .countdown.soon { color: var(--warning); }
.panel-table .countdown.ok { color: var(--success); }
@media (max-width: 900px) {
  .panel-stats { grid-template-columns: repeat(2, 1fr); }
  .panel-table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ---------- Booking flow specific ---------- */
.booking-shell { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.booking-shell.success-mode { grid-template-columns: 1fr; }
.mobile-step-label { display: none; font-weight: 800; font-size: 13.5px; color: var(--accent); text-align: center; margin-bottom: 14px; letter-spacing: .01em; }
.booking-progress { display: flex; flex-direction: column; gap: 4px; position: sticky; top: 158px; }
.progress-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--radius); position: relative; }
.progress-item .circ { width: 30px; height: 30px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: var(--text-dimmer); flex-shrink: 0; }
.progress-item .lab { font-weight: 700; font-size: 14px; color: var(--text-dimmer); }
.progress-item .sub { font-size: 12px; color: var(--text-dimmer); }
.progress-item.active .circ { background: var(--grad-primary); color: #04101f; border-color: transparent; }
.progress-item.active .lab { color: var(--text); }
.progress-item.done .circ { background: rgba(43,217,155,0.15); border-color: rgba(43,217,155,0.4); color: var(--success); }
.progress-item.done .lab { color: var(--text); }
.progress-line { width: 1px; height: 20px; background: var(--border); margin-left: 30px; }

.service-pick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 8px; }
.service-pick { border: 1px solid var(--border); background: rgba(255,255,255,0.02); border-radius: var(--radius); padding: 20px; cursor: pointer; transition: all .2s ease; position: relative; }
.service-pick:hover { border-color: var(--border-strong); }
.service-pick.selected { border-color: var(--primary-2); background: rgba(47,107,255,0.08); box-shadow: 0 0 0 1px var(--primary-2); }
.service-pick .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--surface-strong); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--accent); }
.service-pick .ic svg { width: 19px; height: 19px; }
.service-pick .name { font-weight: 700; font-size: 14.5px; margin-bottom: 4px; }
.service-pick .desc { font-size: 12.5px; color: var(--text-dimmer); }
.service-pick .flag { position: absolute; top: 14px; right: 14px; font-size: 10px; font-weight: 800; background: var(--grad-accent); color: #1a0a06; padding: 3px 9px; border-radius: 100px; letter-spacing: .03em; }
.service-pick .check { position: absolute; top: 14px; right: 14px; width: 22px; height: 22px; border-radius: 50%; background: var(--grad-primary); color: #04101f; display: none; align-items: center; justify-content: center; }
.service-pick.selected .check { display: flex; }
.service-pick.selected .flag { display: none; }

.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 34px; gap: 12px; }
.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.summary-box { border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255,255,255,0.02); padding: 20px 22px; margin-bottom: 22px; }
.summary-row { display: flex; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.summary-row:last-child { border-bottom: none; }
.summary-row .k { color: var(--text-dimmer); }
.summary-row .v { font-weight: 700; text-align: right; min-width: 72px; overflow-wrap: break-word; }

.success-panel { text-align: center; padding: 20px 0; max-width: 560px; margin: 0 auto; }
.success-icon { width: 84px; height: 84px; border-radius: 50%; background: rgba(43,217,155,0.12); border: 1px solid rgba(43,217,155,0.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 26px; color: var(--success); }
.success-icon svg { width: 40px; height: 40px; }
.success-id { display: inline-flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--border-strong); padding: 12px 22px; border-radius: 100px; font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: .03em; margin: 18px 0 28px; }
.success-id button { background: none; border: none; color: var(--accent); display: flex; align-items: center; }
.success-id button svg { width: 16px; height: 16px; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Talep sorgulama ---------- */
.lookup-card { max-width: 640px; margin: 0 auto 48px; }
.lookup-form { display: flex; gap: 12px; flex-wrap: wrap; }
.lookup-form .field-input { flex: 1; min-width: 220px; }
.lookup-hint { text-align: center; font-size: 12.5px; color: var(--text-dimmer); margin-top: 16px; }
.lookup-hint button { background: none; border: none; color: var(--accent); font-weight: 700; text-decoration: underline; }

.talep-list { display: flex; flex-direction: column; gap: 18px; max-width: 780px; margin: 0 auto; }
.talep-card { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-lg); padding: 26px 28px; }
.talep-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.talep-id { font-family: var(--font-display); font-weight: 800; font-size: 16px; }
.talep-service { font-size: 13.5px; color: var(--text-dimmer); margin-top: 2px; }
.status-badge { font-size: 12px; font-weight: 800; padding: 6px 14px; border-radius: 100px; white-space: nowrap; }
.status-beklemede { background: rgba(255,182,72,0.12); color: var(--warning); border: 1px solid rgba(255,182,72,0.35); }
.status-onaylandi { background: rgba(47,107,255,0.12); color: var(--primary-2); border: 1px solid rgba(47,107,255,0.35); }
.status-yolda { background: rgba(0,224,198,0.12); color: var(--accent); border: 1px solid rgba(0,224,198,0.35); }
.status-islemde { background: rgba(255,138,61,0.12); color: var(--accent-2); border: 1px solid rgba(255,138,61,0.35); }
.status-tamamlandi { background: rgba(43,217,155,0.12); color: var(--success); border: 1px solid rgba(43,217,155,0.35); }
.status-iptal { background: rgba(255,95,126,0.12); color: var(--danger); border: 1px solid rgba(255,95,126,0.35); }

.talep-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 18px; }
.talep-meta .k { font-size: 11.5px; color: var(--text-dimmer); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.talep-meta .v { font-size: 14px; font-weight: 700; }

.timeline { display: flex; align-items: flex-start; gap: 0; padding-top: 8px; }
.tl-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.tl-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--border-strong); margin-bottom: 8px; z-index: 1; transition: all .2s ease; }
.tl-step.done .tl-dot { background: var(--accent); box-shadow: 0 0 0 4px rgba(0,224,198,0.15); }
.tl-step.current .tl-dot { width: 15px; height: 15px; background: var(--grad-primary); box-shadow: 0 0 0 6px rgba(47,107,255,0.22), 0 0 14px rgba(0,194,255,0.5); }
.tl-line { position: absolute; top: 5px; left: -50%; width: 100%; height: 2px; background: var(--border); z-index: 0; }
.tl-step:first-child .tl-line { display: none; }
.tl-step.done .tl-line, .tl-step.current .tl-line { background: var(--accent); }
.tl-label { font-size: 11px; color: var(--text-dimmer); font-weight: 600; }
.tl-step.done .tl-label, .tl-step.current .tl-label { color: var(--text); }
.tl-time { font-size: 9.5px; color: var(--text-dimmer); font-weight: 700; margin-top: 2px; }

.sozlesme-card { margin-top: 18px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); padding: 20px 24px; }
.sozlesme-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; font-size: 14.5px; font-weight: 800; margin-bottom: 12px; }
.sozlesme-rows { display: flex; flex-direction: column; gap: 2px; }
.sozlesme-row { display: flex; justify-content: space-between; gap: 14px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.sozlesme-row:last-child { border-bottom: none; }
.sozlesme-row .k { color: var(--text-dimmer); }
.sozlesme-row .v { font-weight: 700; text-align: right; }
.sozlesme-signs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.sozlesme-signbox { border: 1px solid var(--border); border-radius: 10px; padding: 10px; text-align: center; }
.sozlesme-signbox .k { font-size: 11px; color: var(--text-dimmer); font-weight: 700; margin-bottom: 8px; }
.sozlesme-signbox img { max-width: 100%; height: 60px; object-fit: contain; background: #fff; border-radius: 6px; }
.sozlesme-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.sozlesme-photo-group .k { font-size: 11px; color: var(--text-dimmer); font-weight: 700; margin-bottom: 8px; }
.sozlesme-photo-thumb { display: block; height: 110px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.sozlesme-photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 640px) {
  .sozlesme-signs { grid-template-columns: 1fr; }
}

.empty-state { text-align: center; padding: 60px 20px; color: var(--text-dimmer); }
.empty-state svg { width: 56px; height: 56px; margin: 0 auto 18px; opacity: .5; }

/* ---------- Kullanıcı / Yönetici Paneli ---------- */
.panel-header {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  margin-bottom: 36px;
}
.panel-header h1 { font-size: clamp(22px, 2.6vw, 30px); }
.panel-header p { margin-top: 6px; }
.panel-section { margin-bottom: 52px; }
.panel-section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.panel-section-head h2 { font-size: 19px; }

.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.mini-stats-4 { grid-template-columns: repeat(4, 1fr); }
.mini-stat { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-lg); padding: 20px 22px; }
.mini-stat .n { font-family: var(--font-display); font-size: 28px; font-weight: 800; }
.mini-stat .l { font-size: 12.5px; color: var(--text-dimmer); margin-top: 4px; }

.vehicle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; }
.vehicle-card { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-lg); padding: 22px; transition: border-color .2s ease, background .2s ease; }
.vehicle-card:hover { border-color: var(--border-strong); background: var(--surface-strong); }
.vehicle-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 4px; }
.vehicle-plate { font-family: var(--font-display); font-weight: 800; font-size: 17px; }
.vehicle-model { font-size: 13px; color: var(--text-dimmer); margin-bottom: 14px; }
.vehicle-remove { background: none; border: none; color: var(--text-dimmer); flex-shrink: 0; }
.vehicle-remove:hover { color: var(--danger); }
.vehicle-remove svg { width: 16px; height: 16px; }
.vehicle-reminder-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-top: 1px solid var(--border); font-size: 13px; }
.vehicle-reminder-row .k { color: var(--text-dimmer); }
.vehicle-reminder-row .v { font-weight: 700; }
.vehicle-reminder-row .v.ok { color: var(--success); }
.vehicle-reminder-row .v.soon { color: var(--warning); }
.vehicle-reminder-row .v.urgent { color: var(--danger); }

.add-vehicle-card { border: 1px dashed var(--border-strong); border-radius: var(--radius-lg); background: rgba(255,255,255,0.015); padding: 26px; margin-top: 18px; display: none; }
.add-vehicle-card.open { display: block; }

.vehicle-card-actions { margin-top: 14px; }
.vehicle-cta {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 9px 12px; border-radius: 100px;
  border: 1px solid var(--border-strong); background: var(--surface-strong);
  color: var(--text); font-size: 12.5px; font-weight: 700; text-decoration: none;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.vehicle-cta:hover { border-color: var(--primary-2); color: var(--primary-2); background: rgba(111, 141, 255, 0.08); }
.vehicle-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

.quick-actions-label { font-size: 12.5px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--text-dimmer); margin-bottom: 14px; }
.quick-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 36px; }
.quick-action-tile {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px;
  border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-lg);
  color: var(--text); text-decoration: none; font-size: 13.5px; font-weight: 700;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.quick-action-tile:hover { border-color: var(--primary-2); background: var(--surface-strong); transform: translateY(-2px); }
.quick-action-tile .ic {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 12px;
  background: var(--grad-primary); color: #04101f;
}
.quick-action-tile .ic svg { width: 17px; height: 17px; }

.account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.account-card { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-lg); padding: 26px; }
.account-card h3 { font-size: 16px; margin-bottom: 18px; }
.account-card-desc { font-size: 13px; color: var(--text-dimmer); margin-bottom: 20px; margin-top: -8px; }
.account-saved-note { font-size: 12.5px; color: var(--success); margin-top: 10px; display: none; }
.account-saved-note.show { display: block; }

.toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-top: 1px solid var(--border); }
.toggle-row:first-of-type { border-top: none; padding-top: 0; }
.toggle-title { font-size: 14px; font-weight: 700; }
.toggle-sub { font-size: 12px; color: var(--text-dimmer); margin-top: 2px; }
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 26px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: var(--surface-strong); border: 1px solid var(--border-strong); border-radius: 100px; cursor: pointer; transition: background .2s ease; }
.toggle-slider::before { content: ""; position: absolute; width: 18px; height: 18px; left: 3px; top: 50%; transform: translateY(-50%); background: var(--text-dimmer); border-radius: 50%; transition: transform .2s ease, background .2s ease; }
.toggle-switch input:checked + .toggle-slider { background: rgba(0, 224, 198, 0.15); border-color: var(--accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translate(18px, -50%); background: var(--accent); }

.admin-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.admin-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.admin-table th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-dimmer); padding: 16px 16px 12px; font-weight: 700; }
.admin-table td { padding: 14px 16px; font-size: 13.5px; border-top: 1px solid var(--border); vertical-align: middle; }
.admin-table select.status-select { background: var(--surface-strong); color: var(--text); border: 1px solid var(--border-strong); border-radius: 100px; padding: 6px 12px; font-size: 12.5px; font-weight: 700; font-family: inherit; }

.admin-toolbar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.admin-toolbar .field-input, .admin-toolbar .field-select { max-width: 260px; }
.admin-toolbar-spacer { flex: 1; }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.admin-tab { border: 1px solid var(--border-strong); background: var(--surface); color: var(--text-dimmer); font-size: 13px; font-weight: 700; padding: 9px 18px; border-radius: 100px; transition: all .2s ease; }
.admin-tab.active { background: var(--grad-primary); color: #04101f; border-color: transparent; }
.admin-tab-panel { display: none; }
.admin-tab-panel.active { display: block; }

.talep-view-toggle { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.talep-view-btn { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border-strong); background: var(--surface); color: var(--text-dimmer); font-size: 12.5px; font-weight: 700; padding: 8px 14px; border-radius: 100px; transition: all .2s ease; font-family: inherit; }
.talep-view-btn:hover { color: var(--text); }
.talep-view-btn.active { background: var(--grad-primary); color: #04101f; border-color: transparent; }
.talep-view-count { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 100px; background: rgba(255,255,255,0.12); color: inherit; font-size: 11px; font-weight: 800; }
.talep-view-btn.active .talep-view-count { background: rgba(4,16,31,0.18); }

.talep-relday { display: inline-block; margin-left: 6px; padding: 2px 8px; border-radius: 100px; font-size: 10.5px; font-weight: 800; white-space: nowrap; vertical-align: middle; }
.talep-relday.urgent { background: rgba(255, 95, 126, 0.14); color: var(--danger); }
.talep-relday.soon { background: rgba(255, 182, 72, 0.14); color: var(--warning); }
.talep-relday.past { background: rgba(255, 255, 255, 0.08); color: var(--text-dimmer); }
.admin-empty-row td { text-align: center; color: var(--text-dimmer); padding: 32px 16px; }

.admin-modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  background: rgba(4, 10, 22, 0.72); backdrop-filter: blur(6px);
  padding: 24px; opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.admin-modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.admin-modal {
  width: 100%; max-width: 640px; max-height: 88vh; overflow-y: auto;
  background: var(--bg-alt, #182642); border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  padding: 26px; transform: translateY(12px) scale(.98); transition: transform .2s ease;
}
.admin-modal-overlay.is-open .admin-modal { transform: translateY(0) scale(1); }
.admin-modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.admin-modal-head h3 { font-size: 17px; margin: 0; }
.admin-modal-head .sub { font-size: 12.5px; color: var(--text-dimmer); margin-top: 4px; }
.admin-modal-close { width: 32px; height: 32px; flex-shrink: 0; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); color: var(--text-dim); display: flex; align-items: center; justify-content: center; }
.admin-modal-close:hover { color: var(--text); border-color: var(--border-strong); }
.admin-modal-close svg { width: 15px; height: 15px; }
.admin-modal-body { font-size: 13.5px; }
.admin-modal-footer { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }
.admin-modal-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-top: 1px solid var(--border); font-size: 13px; }
.admin-modal-row:first-child { border-top: none; }
.admin-modal-row .k { color: var(--text-dimmer); }
.admin-modal-row .v { color: var(--text); font-weight: 700; text-align: right; }
.admin-modal-section-label { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-dimmer); font-weight: 700; margin: 18px 0 8px; }
.admin-modal-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.admin-modal-form-grid .field-full { grid-column: 1 / -1; }
.admin-modal textarea.field-input { resize: vertical; min-height: 70px; font-family: inherit; }
.admin-status-pill { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.admin-status-pill.status-yeni { background: rgba(111,141,255,0.16); color: var(--primary-2); }
.admin-status-pill.status-onaylandi, .admin-status-pill.status-onaylandi_ { background: rgba(43,217,155,0.16); color: var(--success); }
.admin-status-pill.status-reddedildi { background: rgba(255,95,126,0.16); color: var(--danger); }
.admin-status-pill.status-beklemede_ { background: rgba(255,182,72,0.16); color: var(--warning); }
.admin-link-btn { background: none; border: none; padding: 0; color: var(--primary-2); font-weight: 700; font-size: inherit; cursor: pointer; text-decoration: underline; text-decoration-color: rgba(111,141,255,0.35); }
.admin-link-btn:hover { text-decoration-color: var(--primary-2); }
.admin-sozlesme-form .field-group { margin-bottom: 10px; }
.admin-sozlesme-form #attachSozlesmeBtn { width: 100%; margin-top: 4px; }
.admin-sozlesme-sigrow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.admin-sozlesme-sigrow .k { font-size: 11px; color: var(--text-dimmer); margin-bottom: 6px; }
.admin-sozlesme-sigrow img { width: 100%; border-radius: 8px; background: #fff; border: 1px solid var(--border); }
.admin-history-item { padding: 12px 0; border-top: 1px solid var(--border); }
.admin-history-item:first-child { border-top: none; }
.admin-history-item .top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 4px; }
.admin-history-item .id { font-weight: 800; font-size: 12.5px; }
.admin-history-item .meta { font-size: 12px; color: var(--text-dimmer); }

@media (max-width: 900px) {
  .quick-actions { grid-template-columns: 1fr 1fr; }
  .account-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .mini-stats { grid-template-columns: 1fr 1fr; }
  .quick-actions { grid-template-columns: 1fr; }
}

/* ---------- Araç Pasaportu ---------- */
.passport-summary {
  max-width: 780px; margin: 0 auto 32px;
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  background: var(--grad-surface); padding: 30px 32px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.passport-plate {
  font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: .04em;
  background: #04101f; color: #fff; padding: 10px 18px; border-radius: var(--radius-sm);
  border: 2px solid var(--accent);
}
.passport-meta { display: flex; gap: 28px; flex-wrap: wrap; }
.passport-meta .k { font-size: 11.5px; color: var(--text-dimmer); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.passport-meta .v { font-size: 16px; font-weight: 800; font-family: var(--font-display); }

/* ---------- Araç Sağlığı Skoru ---------- */
.health-score-card {
  max-width: 780px; margin: 0 auto 20px;
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  background: var(--surface); padding: 32px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.health-score-gauge { position: relative; width: 140px; height: 140px; flex-shrink: 0; }
.health-score-gauge svg { width: 100%; height: 100%; }
.hs-track { fill: none; stroke: var(--border); stroke-width: 10; }
.hs-fill { fill: none; stroke-width: 10; stroke-linecap: round; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset 1s ease; }
.hs-fill.hs-excellent { stroke: var(--success); }
.hs-fill.hs-good { stroke: var(--primary-2); }
.hs-fill.hs-fair { stroke: var(--warning); }
.hs-fill.hs-poor { stroke: var(--danger); }
.hs-gauge-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hs-score { font-family: var(--font-display); font-size: 36px; font-weight: 800; line-height: 1; }
.hs-max { font-size: 12px; color: var(--text-dimmer); font-weight: 600; margin-top: 2px; }
.health-score-info { flex: 1; min-width: 240px; }
.hs-tier-badge { display: inline-flex; font-size: 11.5px; font-weight: 800; letter-spacing: .03em; padding: 5px 14px; border-radius: 100px; margin-bottom: 12px; }
.hs-tier-badge.hs-excellent { background: rgba(43,217,155,0.14); color: var(--success); border: 1px solid rgba(43,217,155,0.35); }
.hs-tier-badge.hs-good { background: rgba(111,141,255,0.14); color: var(--primary-2); border: 1px solid rgba(111,141,255,0.35); }
.hs-tier-badge.hs-fair { background: rgba(255,182,72,0.14); color: var(--warning); border: 1px solid rgba(255,182,72,0.35); }
.hs-tier-badge.hs-poor { background: rgba(255,95,126,0.14); color: var(--danger); border: 1px solid rgba(255,95,126,0.35); }
.health-score-info h3 { font-size: 20px; margin-bottom: 8px; }
.health-score-info p { font-size: 14px; margin-bottom: 16px; }

.health-score-breakdown { max-width: 780px; margin: 0 auto 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hsb-row { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 16px 18px; }
.hsb-top { display: flex; justify-content: space-between; font-size: 13.5px; font-weight: 700; margin-bottom: 8px; }
.hsb-bar { height: 6px; border-radius: 100px; background: var(--surface-strong); overflow: hidden; margin-bottom: 8px; }
.hsb-fill { height: 100%; border-radius: 100px; background: var(--grad-primary); }
.hsb-note { font-size: 12.5px; color: var(--text-dimmer); }

.health-score-tips { max-width: 780px; margin: 0 auto 32px; border: 1px solid rgba(0,224,198,0.3); border-radius: var(--radius); background: var(--grad-surface); padding: 20px 24px; }
.hst-label { font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.health-score-tips ul { display: flex; flex-direction: column; gap: 8px; }
.health-score-tips li { font-size: 13.5px; color: var(--text-dim); padding-left: 20px; position: relative; }
.health-score-tips li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 2px; background: var(--grad-primary); }

@media (max-width: 640px) {
  .health-score-card { flex-direction: column; text-align: center; padding: 26px 22px; }
  .health-score-breakdown { grid-template-columns: 1fr; }
}

/* ---------- Muayene Ön Kontrol Sihirbazı ---------- */
.wiz-vehicle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px; }
.wiz-fuel-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.wiz-fuel-pick { border: 1px solid var(--border); background: rgba(255,255,255,0.02); border-radius: var(--radius); padding: 14px 8px; text-align: center; cursor: pointer; transition: all .2s ease; font-size: 12.5px; font-weight: 700; color: var(--text-dim); }
.wiz-fuel-pick:hover { border-color: var(--border-strong); }
.wiz-fuel-pick.selected { border-color: var(--primary-2); background: rgba(47,107,255,0.08); box-shadow: 0 0 0 1px var(--primary-2); color: var(--text); }

.wiz-category-head { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.wiz-category-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--surface-strong); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.wiz-category-icon svg { width: 22px; height: 22px; }
.wiz-category-head h3 { font-size: 19px; margin-bottom: 3px; }
.wiz-category-head p { font-size: 13px; }

.check-item { border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255,255,255,0.02); padding: 18px 20px; margin-bottom: 14px; }
.check-item-q { font-size: 14.5px; font-weight: 600; color: var(--text); margin-bottom: 6px; line-height: 1.5; }
.check-item-hint { font-size: 12.5px; color: var(--text-dimmer); margin-bottom: 14px; line-height: 1.5; }
.check-toggle { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.check-toggle button { border: 1px solid var(--border); background: rgba(255,255,255,0.02); border-radius: var(--radius-sm); padding: 11px 8px; font-size: 12.5px; font-weight: 700; color: var(--text-dim); transition: all .2s ease; }
.check-toggle button:hover { border-color: var(--border-strong); }
.check-toggle button.sel-ok.active { background: rgba(43,217,155,0.14); border-color: var(--success); color: var(--success); }
.check-toggle button.sel-unsure.active { background: rgba(255,182,72,0.1); border-color: var(--warning); color: var(--warning); }
.check-toggle button.sel-issue.active { background: rgba(255,95,126,0.12); border-color: var(--danger); color: var(--danger); }

.wiz-result-banner { border-radius: var(--radius-xl); padding: 44px 36px; text-align: center; margin-bottom: 32px; }
.wiz-result-banner.ok { background: linear-gradient(160deg, rgba(43,217,155,0.16), rgba(43,217,155,0.04)); border: 1px solid rgba(43,217,155,0.35); }
.wiz-result-banner.warn { background: linear-gradient(160deg, rgba(255,182,72,0.16), rgba(255,182,72,0.04)); border: 1px solid rgba(255,182,72,0.35); }
.wiz-result-banner.danger { background: linear-gradient(160deg, rgba(255,95,126,0.16), rgba(255,95,126,0.04)); border: 1px solid rgba(255,95,126,0.35); }
.wiz-result-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.wiz-result-banner.ok .wiz-result-icon { background: rgba(43,217,155,0.18); color: var(--success); }
.wiz-result-banner.warn .wiz-result-icon { background: rgba(255,182,72,0.18); color: var(--warning); }
.wiz-result-banner.danger .wiz-result-icon { background: rgba(255,95,126,0.18); color: var(--danger); }
.wiz-result-icon svg { width: 30px; height: 30px; }
.wiz-result-banner h2 { font-size: clamp(22px,3vw,30px); margin-bottom: 10px; }
.wiz-result-banner p { max-width: 520px; margin: 0 auto; font-size: 14.5px; }
.wiz-result-stats { display: flex; justify-content: center; gap: 30px; margin-top: 26px; flex-wrap: wrap; }
.wiz-result-stat { text-align: center; }
.wiz-result-stat .n { font-family: var(--font-display); font-size: 26px; font-weight: 800; }
.wiz-result-stat .l { font-size: 11px; color: var(--text-dimmer); text-transform: uppercase; letter-spacing: .04em; }
.wiz-result-stat.major .n { color: var(--danger); }
.wiz-result-stat.minor .n { color: var(--warning); }
.wiz-result-stat.review .n { color: var(--text-dim); }
.wiz-result-stat.ok .n { color: var(--success); }
.wiz-result-actions { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

.wiz-result-group { max-width: 780px; margin: 0 auto 22px; }
.wiz-result-group-label { font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; }
.wiz-result-group-label.major { color: var(--danger); }
.wiz-result-group-label.minor { color: var(--warning); }
.wiz-result-group-label.review { color: var(--text-dim); }
.wiz-result-group-label.ok { color: var(--success); }
.wiz-result-row { padding: 14px 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); margin-bottom: 8px; font-size: 13.5px; color: var(--text-dim); line-height: 1.5; }
.wiz-result-row .cat { font-size: 11px; color: var(--text-dimmer); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .03em; }

.wiz-cost-box { max-width: 780px; margin: 0 auto 26px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); padding: 24px 28px; }
.wiz-cost-head { font-size: 15px; font-weight: 800; margin-bottom: 14px; }
.wiz-cost-rows { display: flex; flex-direction: column; gap: 2px; }
.wiz-cost-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--text-dim); }
.wiz-cost-row.total { border-bottom: none; padding-top: 12px; font-weight: 800; color: var(--text); font-size: 15px; }
.wiz-cost-row .row-label { display: flex; flex-direction: column; gap: 2px; }
.wiz-cost-row .row-note { font-size: 11px; color: var(--text-dimmer); }
.wiz-cost-row .discount { color: var(--success); font-weight: 800; }
.wiz-cost-discount-banner { background: rgba(43,217,155,0.14); color: var(--success); font-weight: 800; font-size: 12.5px; padding: 10px 14px; border-radius: 12px; margin-bottom: 14px; }
.wiz-cost-note { font-size: 12px; color: var(--text-dimmer); margin-top: 14px; line-height: 1.6; }

.wiz-disclaimer { max-width: 780px; margin: 8px auto 24px; font-size: 11.5px; color: var(--text-dimmer); line-height: 1.6; text-align: center; }

@media print {
  .site-header, .topbar, .mobile-nav, .site-footer, .wiz-result-actions, .nav-toggle, .page-hero { display: none !important; }
  body { background: #fff !important; color: #111 !important; }
  body::before { display: none !important; }
  .wiz-result-banner, .wiz-result-row, .health-score-card { border-color: #ccc !important; background: #f7f7f7 !important; }
  /* teklif-formu'nun global "body * { visibility:hidden }" kuralı bu sayfanın
     içeriğini de gizliyor; sihirbaz sonuç ekranını burada açıkça geri açıyoruz. */
  body, .section, .container, .booking-shell, .form-card, #wizSteps,
  .step-panel, .wiz-result-banner, .wiz-result-icon, .wiz-result-stats, .wiz-result-stat,
  .wiz-cost-box, .wiz-cost-rows, .wiz-cost-row, .wiz-cost-note,
  .wiz-result-group, .wiz-result-group-label, .wiz-result-row,
  .wiz-result-row *, .wiz-disclaimer, .wiz-result-banner * { visibility: visible !important; }
}

@media (max-width: 640px) {
  .wiz-vehicle-grid { grid-template-columns: 1fr; }
  .wiz-fuel-grid { grid-template-columns: repeat(2, 1fr); }
  .check-toggle { grid-template-columns: 1fr; }
  .wiz-result-stats { gap: 18px 26px; }
}

.vtimeline { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; }
.vtimeline-scroll { max-height: 230px; overflow-y: auto; padding-right: 6px; }
.vtimeline-scroll::-webkit-scrollbar { width: 6px; }
.vtimeline-scroll::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 100px; }
.vtimeline-scroll::-webkit-scrollbar-track { background: transparent; }
.vtimeline-item { display: flex; gap: 20px; position: relative; padding-bottom: 30px; }
.vtimeline-item:last-child { padding-bottom: 0; }
.vtimeline-item::before {
  content: ""; position: absolute; left: 20px; top: 44px; bottom: 0; width: 2px;
  background: var(--border);
}
.vtimeline-item:last-child::before { display: none; }
.vtimeline-dot {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--surface-strong); border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  z-index: 1;
}
.vtimeline-dot svg { width: 19px; height: 19px; }
.vtimeline-card {
  flex: 1; border: 1px solid var(--border); background: var(--surface);
  border-radius: var(--radius); padding: 18px 22px;
}
.vtimeline-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.vtimeline-service { font-weight: 800; font-size: 15px; }
.vtimeline-date { font-size: 12.5px; color: var(--text-dimmer); }
.vtimeline-sub { font-size: 13px; color: var(--text-dim); }

.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--surface-strong); border: 1px solid var(--border-strong); backdrop-filter: blur(16px); padding: 14px 22px; border-radius: 100px; font-size: 13.5px; font-weight: 600; z-index: 999; transition: transform .35s ease; box-shadow: var(--shadow-soft); }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links, .header-actions .btn-ghost, .header-actions .btn-primary, .header-actions .lang-toggle { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 40px auto 0; }
  .flagship { grid-template-columns: minmax(0, 1fr); }
  .flagship-visual { border-left: none; border-top: 1px solid var(--border); min-height: 240px; }
  .service-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .price-card, .testi-card { flex-basis: calc((100% - 22px) / 2); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-shell { grid-template-columns: minmax(0, 1fr); }
  .form-card { grid-column: 1; }
  .mobile-step-label { display: block; }
  .booking-progress { position: static; flex-direction: row; overflow-x: visible; justify-content: space-between; gap: 0; margin-bottom: 12px; }
  .progress-item { flex-direction: column; padding: 6px 4px; gap: 6px; flex: 1; min-width: 0; }
  .progress-item .lab, .progress-item .sub { display: none; }
  .progress-line { display: none; }
  .talep-grid { grid-template-columns: repeat(2, 1fr); }
  .supporters-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-shell { grid-template-columns: 1fr; }
  .faq-side { position: static; max-width: 480px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .service-grid, .why-grid, .steps { grid-template-columns: 1fr; }
  .price-card, .testi-card { flex-basis: 84%; min-width: 230px; }
  .supporters-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-app-row { flex-direction: column; text-align: center; padding: 26px 22px; }
  .footer-app-text p { margin: 0 auto; }
  .app-badges { width: 100%; }
  .app-badge { padding: 8px 10px; gap: 6px; }
  .app-badge svg { width: 18px; height: 18px; }
  .app-badge small { font-size: 8.5px; }
  .app-badge strong { font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .footer-trust-row { gap: 16px 22px; }
  .cta-banner { padding: 40px 28px; flex-direction: column; text-align: center; }
  .cta-banner p { margin-left: auto; margin-right: auto; }
  .trust-strip .container { flex-direction: column; text-align: center; }
  .service-pick-grid { grid-template-columns: 1fr; }
  .talep-grid { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 26px; }
  .form-nav { flex-direction: column; align-items: stretch; }
  .form-nav .btn { width: 100%; }
  .hero { padding: 140px 0 60px; }
  .flagship-content { padding: 45px; }
  .flagship-visual { padding: 45px; }
  .summary-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .summary-row .v { text-align: left; }
  .wiz-cost-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .wiz-cost-row > span:last-child { white-space: nowrap; }
  .wiz-cost-row.total { flex-direction: row; align-items: center; }
}

/* ---------- Dil geçiş butonu ---------- */
.lang-toggle {
  height: 42px; padding: 0 14px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 7px;
  color: var(--text); flex-shrink: 0;
  font-weight: 800; font-size: 13px; letter-spacing: .02em;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.lang-toggle:hover { background: var(--surface-strong); border-color: var(--border-strong); transform: translateY(-1px); }
.lang-toggle svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ---------- Yasal Belgeler (KVKK, Sözleşmeler vs.) ---------- */
.legal-content { max-width: 840px; margin: 0 auto; }
.legal-content .legal-updated { font-size: 12.5px; color: var(--text-dimmer); margin-bottom: 36px; }
.legal-content h3 { font-size: 16px; margin: 30px 0 10px; color: var(--text); }
.legal-content h3:first-of-type { margin-top: 0; }
.legal-content p { font-size: 14px; line-height: 1.8; color: var(--text-dim); margin-bottom: 14px; }
.legal-content ol.legal-list { padding-left: 22px; margin: 0 0 14px; }
.legal-content ol.legal-list li { font-size: 14px; line-height: 1.8; color: var(--text-dim); margin-bottom: 12px; }
.legal-content ul.legal-list { padding-left: 22px; margin: 0 0 14px; }
.legal-content ul.legal-list li { font-size: 14px; line-height: 1.8; color: var(--text-dim); margin-bottom: 8px; }
.legal-content strong { color: var(--text); }
.legal-content a { color: var(--primary-2); font-weight: 700; }
.legal-content .legal-note { margin-top: 32px; padding: 16px 20px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 13px; color: var(--text-dimmer); background: var(--surface); }
.legal-content table { width: 100%; border-collapse: collapse; margin-bottom: 18px; font-size: 13.5px; }
.legal-content table th, .legal-content table td { text-align: left; padding: 10px 12px; border: 1px solid var(--border); color: var(--text-dim); }
.legal-content table th { color: var(--text); background: var(--surface); }
.legal-toc { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.legal-toc a { font-size: 13px; color: var(--text-dim); }
.legal-toc a:hover { color: var(--primary-2); }

/* ---------- Teklif / Randevu Formu Oluşturucu (Yönetim Aracı) ---------- */
.teklif-app { display: grid; grid-template-columns: 420px 1fr; gap: 28px; align-items: start; }
@media (max-width: 1100px) { .teklif-app { grid-template-columns: minmax(0, 1fr); } }

.teklif-form-panel { position: sticky; top: 100px; max-height: calc(100vh - 130px); overflow-y: auto; padding-right: 6px; }
@media (max-width: 1100px) { .teklif-form-panel { position: static; max-height: none; } }
.teklif-form-panel { counter-reset: teklifstep; }
.teklif-section { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); padding: 22px 24px; margin-bottom: 18px; transition: border-color 0.2s; }
.teklif-section:hover { border-color: var(--border-strong); }
.teklif-section h4 { font-size: 14px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.teklif-section h4::before {
  counter-increment: teklifstep;
  content: counter(teklifstep);
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f6bff, #00c2ff);
  color: #04101f;
  font-size: 11.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.teklif-section h4 svg { width: 16px; height: 16px; color: var(--accent); }

.teklif-row-item { display: grid; grid-template-columns: 1fr 64px 110px 32px; gap: 8px; align-items: end; margin-bottom: 10px; }
.teklif-row-item .field-group { margin-bottom: 0; }
.teklif-row-item .field-input { padding: 10px 12px; font-size: 13px; }
.teklif-row-remove { width: 32px; height: 40px; border-radius: 8px; background: rgba(255,95,126,0.1); border: 1px solid rgba(255,95,126,0.3); color: var(--danger); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.teklif-row-remove svg { width: 14px; height: 14px; }
.teklif-add-row { width: 100%; padding: 10px; border-radius: 10px; border: 1px dashed var(--border-strong); background: transparent; color: var(--text-dim); font-size: 13px; font-weight: 700; margin-top: 4px; }
.teklif-add-row:hover { border-color: var(--accent); color: var(--accent); }

.teklif-lookup-row, .teklif-quickadd-row { display: flex; gap: 8px; margin-bottom: 14px; }
.teklif-lookup-row .field-input, .teklif-quickadd-row .field-select { flex: 1; min-width: 0; }
.teklif-lookup-row .btn, .teklif-quickadd-row .btn { flex-shrink: 0; white-space: nowrap; }
.teklif-lookup-status { font-size: 12.5px; padding: 8px 12px; border-radius: 8px; margin: -6px 0 14px; }
.teklif-lookup-status.ok { background: rgba(0,224,198,0.1); color: #00e0c6; }
.teklif-lookup-status.error { background: rgba(255,95,126,0.1); color: #ff8a9d; }

.teklif-lookup-results { display: flex; flex-direction: column; gap: 6px; margin: -6px 0 14px; }
.teklif-lookup-result { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; transition: border-color 0.15s, background 0.15s; }
.teklif-lookup-result:hover { border-color: var(--accent); background: rgba(0,194,255,0.06); }
.teklif-lookup-result strong { font-size: 13px; }
.teklif-lookup-result span { font-size: 11.5px; color: var(--text-dim); }

.teklif-toggle-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-top: 1px solid var(--border); font-size: 13.5px; }
.teklif-toggle-row:first-child { border-top: none; }
.teklif-toggle-row input { width: 18px; height: 18px; accent-color: var(--accent); }

.teklif-actionbar { position: sticky; bottom: 0; display: flex; flex-direction: column; gap: 10px; padding: 14px 0 2px; background: linear-gradient(to top, var(--bg) 60%, transparent); margin-top: 8px; }
.teklif-actionbar .btn { width: 100%; white-space: normal; text-align: center; line-height: 1.3; }
.teklif-actionbar .btn-secondary-row { display: flex; gap: 10px; }
.teklif-actionbar .btn-secondary-row .btn { flex: 1; }

/* En Yakın TÜVTÜRK İstasyonu bul */
.content-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; }
.content-card h3 { margin: 0 0 12px; font-size: 17px; }
.istasyon-sonuc-card { background: var(--surface); border: 1px solid var(--accent); border-radius: var(--radius-xl); padding: 28px; }
.istasyon-sonuc-baslik { font-size: 11.5px; font-weight: 800; letter-spacing: 0.04em; color: var(--accent); text-transform: uppercase; }
.istasyon-sonuc-card h3 { margin: 6px 0 2px; font-size: 19px; }
.istasyon-sonuc-adres { color: var(--text-dim); font-size: 13.5px; margin: 0 0 18px; }
.istasyon-sonuc-metrikler { display: flex; gap: 24px; margin-bottom: 14px; }
.istasyon-sonuc-metrikler div { display: flex; flex-direction: column; gap: 2px; }
.istasyon-sonuc-metrikler strong { font-size: 20px; }
.istasyon-sonuc-metrikler span { font-size: 11.5px; color: var(--text-dimmer); }
.istasyon-sonuc-not { font-size: 12.5px; color: var(--text-dimmer); line-height: 1.6; margin: 0 0 18px; }
.istasyon-vale-cta { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border); }
.istasyon-vale-cta h4 { margin: 0 0 6px; font-size: 15px; }
.istasyon-vale-cta p { margin: 0 0 14px; font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* Önizleme / yazdırılabilir belge — beyaz kağıt görünümü, tema bağımsız */
.teklif-preview-wrap {
  background:
    radial-gradient(circle at 15% 0%, rgba(47,107,255,0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0,224,198,0.12), transparent 50%),
    var(--surface-strong);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px;
}
.teklif-preview-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding: 0 4px; }
.teklif-preview-toolbar .live-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; color: var(--text-dim); }
.teklif-preview-toolbar .live-badge .pulse-dot { background: var(--accent); }
.teklif-preview-toolbar .doc-count { font-size: 12px; color: var(--text-dimmer); }
.doc-preview {
  background: #ffffff; color: #1a1d24; border-radius: 8px; padding: 40px 44px;
  font-family: Arial, Helvetica, sans-serif; font-size: 12.5px; line-height: 1.5;
  box-shadow: 0 16px 44px rgba(0,0,0,0.35); max-width: 800px; margin: 0 auto;
  position: relative;
}
.doc-preview::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, #2f6bff, #00e0c6);
}
.doc-preview + .doc-preview { margin-top: 24px; }
.doc-head { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 2px solid #1a1d24; padding-bottom: 14px; margin-bottom: 18px; }
.doc-head .doc-brand { font-family: Arial, Helvetica, sans-serif; font-weight: 800; font-size: 17px; color: #1a1d24; }
.doc-brand-row { display: flex; align-items: center; gap: 9px; }
.doc-logo { width: 22px; height: auto; flex-shrink: 0; }
.doc-head .doc-brand small { display: block; font-weight: 500; font-size: 10.5px; color: #555; margin-top: 4px; line-height: 1.5; }
.doc-head .doc-doctitle { text-align: right; font-size: 15px; font-weight: 800; color: #2f6bff; }
.doc-head .doc-doctitle small { display: block; font-weight: 600; font-size: 10.5px; color: #777; margin-top: 4px; }
.doc-title-bar { text-align: center; font-size: 19px; font-weight: 800; margin: 6px 0 20px; }
.doc-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 18px; }
.doc-grid2 h5 { font-size: 11px; text-transform: uppercase; letter-spacing: .03em; color: #777; margin-bottom: 6px; }
.doc-grid2 p { margin: 0 0 3px; }
.doc-table { width: 100%; border-collapse: collapse; margin-bottom: 4px; }
.doc-table th, .doc-table td { border: 1px solid #cfd4dd; padding: 7px 9px; font-size: 12px; text-align: left; }
.doc-table th { background: #f0f2f6; font-size: 10.5px; text-transform: uppercase; letter-spacing: .02em; }
.doc-table td.num, .doc-table th.num { text-align: right; }
.doc-totals { display: flex; justify-content: flex-end; margin: 10px 0 18px; }
.doc-totals table { border-collapse: collapse; min-width: 260px; }
.doc-totals td { padding: 6px 12px; font-size: 12.5px; border: 1px solid #cfd4dd; }
.doc-totals tr:last-child td { font-weight: 800; font-size: 14px; background: #f0f2f6; }
.doc-note { border: 1px solid #cfd4dd; background: #fafbfc; padding: 10px 14px; font-size: 11.5px; margin-bottom: 20px; }
.doc-signrow { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.doc-signbox { border: 1px solid #cfd4dd; border-radius: 4px; padding: 12px 14px; text-align: center; font-size: 11.5px; color: #555; position: relative; }
.doc-signbox .doc-signname { margin-top: 8px; font-size: 11px; color: #1a1d24; }
.sigpad-wrap { position: relative; margin: 8px 0 2px; }
.sigpad-canvas { width: 100%; height: 100px; border: 1px dashed #b9c0cd; border-radius: 4px; background: #fcfdfe; touch-action: none; cursor: crosshair; display: block; }
.sigpad-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #a7aebb; pointer-events: none; text-align: center; padding: 0 10px; }
.sigpad-clear { position: absolute; top: 6px; right: 8px; font-size: 10px; font-weight: 700; color: #2f6bff; background: none; border: none; padding: 2px 4px; }
.doc-signbox.signed .sigpad-canvas { border-style: solid; border-color: #00c2a8; }
.doc-foot { text-align: center; font-size: 10px; color: #888; margin-top: 22px; }
.doc-legal-list { padding-left: 18px; margin: 0; font-size: 11px; line-height: 1.7; }
.doc-legal-list li { margin-bottom: 6px; }
.doc-checklist td.rate { text-align: center; width: 30px; }

@media (max-width: 640px) {
  .teklif-preview-wrap { padding: 14px; }
  .doc-preview { padding: 22px 16px; font-size: 11px; }
  .doc-head { flex-direction: column; gap: 12px; }
  .doc-head .doc-doctitle { text-align: left; }
  .doc-grid2 { grid-template-columns: 1fr; gap: 16px; }
  .doc-signrow { grid-template-columns: 1fr; }
  .doc-table { table-layout: fixed; }
  .doc-table th, .doc-table td { padding: 5px 6px; font-size: 10px; word-break: break-word; }
  .doc-table th:first-child, .doc-table td:first-child { width: 34%; }
  .doc-totals table { min-width: 0; width: 100%; }
  .doc-checklist td.rate { width: 20px; }
}

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
.blog-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.blog-card-top { padding: 28px 26px 0; }
.blog-card-tags { display: flex; gap: 8px; margin-bottom: 16px; }
.tag-pill { display: inline-flex; align-items: center; font-size: 11px; font-weight: 800; letter-spacing: .02em; padding: 5px 12px; border-radius: 100px; background: rgba(47, 107, 255, 0.16); color: var(--primary-2); border: 1px solid rgba(47, 107, 255, 0.3); }
.tag-pill.accent { background: rgba(0, 224, 198, 0.14); color: var(--accent); border-color: rgba(0, 224, 198, 0.32); }
.blog-card h3 { font-size: 19px; line-height: 1.3; margin-bottom: 10px; }
.blog-card h3 a { transition: color .2s ease; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 14px; line-height: 1.7; margin-bottom: 0; }
.blog-card-bottom { margin-top: auto; padding: 20px 26px 26px; display: flex; align-items: center; justify-content: space-between; }
.blog-card-meta { font-size: 12px; color: var(--text-dimmer); display: flex; align-items: center; gap: 6px; }
.blog-card-arrow { width: 34px; height: 34px; border-radius: 50%; background: var(--surface-strong); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s ease, transform .2s ease; }
.blog-card-arrow svg { width: 15px; height: 15px; }
.blog-card:hover .blog-card-arrow { background: var(--grad-primary); color: #04101f; transform: translateX(3px); }

/* ---------- Blog Makale İçeriği ---------- */
.article-shell { max-width: 760px; margin: 0 auto; }
.article-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.article-meta-row .tag-pill { }
.article-meta-item { font-size: 13px; color: var(--text-dimmer); display: flex; align-items: center; gap: 6px; }
.article-meta-item svg { width: 14px; height: 14px; }

.article-toc { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 40px; padding: 18px 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.article-toc-label { width: 100%; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--text-dimmer); margin-bottom: 4px; }
.article-toc a { font-size: 13.5px; color: var(--text-dim); }
.article-toc a:hover { color: var(--accent); }

.article-content { font-size: 15.5px; line-height: 1.85; color: var(--text-dim); }
.article-content h2 { font-size: 25px; color: var(--text); margin: 44px 0 16px; letter-spacing: -0.01em; }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { font-size: 18.5px; color: var(--text); margin: 30px 0 12px; }
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol { padding-left: 22px; margin: 0 0 18px; }
.article-content ul { list-style: none; }
.article-content ul li { position: relative; padding-left: 24px; margin-bottom: 10px; }
.article-content ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 2px; background: var(--grad-primary); }
.article-content ol li { margin-bottom: 10px; padding-left: 4px; }
.article-content strong { color: var(--text); }
.article-content a:not(.btn) { color: var(--primary-2); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(111,141,255,0.35); text-underline-offset: 3px; }
.article-content a:not(.btn):hover { text-decoration-color: var(--primary-2); }
.article-content table { width: 100%; border-collapse: collapse; margin-bottom: 22px; font-size: 13.5px; }
.article-content table th, .article-content table td { text-align: left; padding: 12px 14px; border: 1px solid var(--border); color: var(--text-dim); }
.article-content table th { color: var(--text); background: var(--surface); }
.article-content blockquote { margin: 24px 0; padding: 18px 24px; border-left: 3px solid var(--accent); background: var(--surface); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--text); }

.article-callout { margin: 32px 0; padding: 22px 26px; border: 1px solid rgba(0, 224, 198, 0.3); border-radius: var(--radius); background: var(--grad-surface); }
.article-callout .lbl { font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; display: block; }
.article-callout p { color: var(--text-dim); margin-bottom: 0; font-size: 14.5px; }
.article-callout p + p { margin-top: 10px; }

.article-cta { margin: 48px 0; padding: 36px 38px; border-radius: var(--radius-xl); background: var(--grad-primary); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.article-cta h4 { color: #04101f; font-size: 20px; margin-bottom: 6px; }
.article-cta p { color: rgba(4, 16, 31, 0.75); font-size: 14px; margin-bottom: 0; }
.article-cta .btn-primary { background: #04101f; color: #fff; box-shadow: none; }
.article-cta .btn-primary:hover { transform: translateY(-2px); background: #0a1f3d; }

.article-faq { margin-top: 16px; }

.related-heading { font-size: 22px; margin: 64px 0 22px; text-align: center; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; } }
.related-card { display: block; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 20px 22px; transition: transform .25s ease, border-color .25s ease; }
.related-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.related-card .tag-pill { margin-bottom: 10px; }
.related-card h5 { font-size: 15px; line-height: 1.4; color: var(--text); }
button.related-card { width: 100%; text-align: left; font: inherit; color: inherit; cursor: pointer; -webkit-appearance: none; appearance: none; }
.tag-pill.pending { background: rgba(43, 217, 155, 0.12); color: var(--success); border-color: rgba(43, 217, 155, 0.3); }

@media print {
  body * { visibility: hidden; }
  .teklif-preview-wrap, .teklif-preview-wrap * { visibility: visible; }
  .teklif-preview-wrap { position: absolute; left: 0; top: 0; width: 100%; background: #fff; padding: 0; }
  .doc-preview { box-shadow: none; max-width: 100%; margin: 0 0 20px; page-break-after: always; }
  .doc-preview:last-child { page-break-after: auto; }
  .sigpad-clear, .sigpad-placeholder { display: none; }
}

/* Çerez onay banner'ı */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(140%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { margin: 0; color: var(--text-dim); font-size: 13.5px; line-height: 1.5; flex: 1; }
.cookie-banner a { color: var(--accent); font-weight: 700; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner-actions button {
  border: none;
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-accept { background: var(--accent); color: #06261f; }
.cookie-accept:hover { filter: brightness(1.08); }
.cookie-decline { background: transparent; color: var(--text-dim); border: 1px solid var(--border-strong) !important; }
.cookie-decline:hover { color: var(--text); }
@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: left; bottom: 10px; left: 10px; right: 10px; padding: 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions button { flex: 1; }
}

/* WhatsApp floating buton — WhatsApp yeşili yerine site marka gradyanı kullanılır */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow), 0 12px 30px -8px rgba(0, 0, 0, 0.45);
  transition: bottom .35s cubic-bezier(.22,1,.36,1), transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: var(--shadow-glow), 0 16px 36px -8px rgba(0, 0, 0, 0.5); }
.whatsapp-float svg { width: 28px; height: 28px; color: #04101f; }
.whatsapp-float.is-raised { bottom: 100px; }
@media (max-width: 640px) {
  .whatsapp-float { right: 14px; bottom: 18px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-float.is-raised { bottom: 160px; }
}

/* ---------- Randevu Müsaitliği takvimi (yonetim.html) ---------- */
.avail-services { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.avail-service-pill { border: 1px solid var(--border-strong); background: var(--surface); color: var(--text-dimmer); font-size: 12.5px; font-weight: 700; padding: 8px 16px; border-radius: 100px; transition: all .2s ease; }
.avail-service-pill:hover { color: var(--text); border-color: var(--border-strong); }
.avail-service-pill.active { background: var(--grad-primary); color: #04101f; border-color: transparent; }

.avail-cal-card { max-width: 460px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.avail-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.avail-cal-head h3 { margin: 0; font-size: 15px; font-weight: 800; }
.avail-cal-nav { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border-strong); background: transparent; color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s ease; }
.avail-cal-nav:hover:not(:disabled) { background: var(--surface-strong); }
.avail-cal-nav:disabled { opacity: .3; cursor: not-allowed; }

.avail-cal-weekdays, .avail-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.avail-cal-weekday { text-align: center; font-size: 10.5px; font-weight: 800; letter-spacing: .03em; color: var(--text-dimmer); padding-bottom: 6px; }
.avail-cal-grid { margin-bottom: 4px; }
.avail-cal-day { aspect-ratio: 1; border-radius: 10px; border: 1px solid transparent; background: var(--surface-strong); color: var(--text); font-size: 13px; font-weight: 700; cursor: pointer; transition: all .15s ease; }
.avail-cal-day:hover:not(:disabled) { border-color: var(--border-strong); transform: translateY(-1px); }
.avail-cal-day.is-blank { background: transparent; cursor: default; }
.avail-cal-day.is-past { background: transparent; color: var(--text-dimmer); opacity: .35; cursor: not-allowed; }
.avail-cal-day.is-today { box-shadow: inset 0 0 0 1.5px var(--primary-2); }
.avail-cal-day.is-closed { background: rgba(255, 95, 126, 0.16); color: var(--danger); }
.avail-cal-day.is-selected { background: var(--grad-primary); color: #04101f; box-shadow: 0 0 0 2px rgba(0, 224, 198, 0.4); }

.avail-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.avail-legend-item { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--text-dimmer); }
.avail-legend-dot { width: 10px; height: 10px; border-radius: 3px; background: var(--surface-strong); }
.avail-legend-dot.is-closed { background: rgba(255, 95, 126, 0.5); }
.avail-legend-dot.is-selected { background: var(--grad-primary); }
.avail-legend-dot.is-today { background: transparent; box-shadow: inset 0 0 0 1.5px var(--primary-2); }

.avail-action-bar { display: none; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; max-width: 460px; margin-top: 16px; padding: 14px 18px; background: var(--surface-strong); border: 1px solid var(--border-strong); border-radius: var(--radius); }
.avail-action-bar.is-visible { display: flex; }

/* Randevu formundaki tarih alanı için açılır takvim (aynı .avail-cal-* ızgarası, tek seçimli) */
.date-cal-popover {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: 360px;
  max-width: 92vw;
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}
.date-cal-popover.is-open { display: block; animation: dateCalIn .18s cubic-bezier(.22,1,.36,1); }
@keyframes dateCalIn { from { opacity: 0; transform: translate(-50%, -6px); } to { opacity: 1; transform: translate(-50%, 0); } }
.date-cal-popover .avail-cal-head { margin-bottom: 14px; }
.date-cal-popover .avail-cal-head h3 { font-size: 15px; }
.date-cal-popover .avail-cal-weekdays, .date-cal-popover .avail-cal-grid { gap: 8px; }

.brand-popover #brandSearchInput { margin-bottom: 12px; }
.brand-list { max-height: 280px; overflow-y: auto; display: flex; flex-direction: column; gap: 6px; }
.brand-list-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 12px; border-radius: 10px; background: var(--surface); border: 1px solid transparent; color: var(--text); font-size: 13.5px; font-weight: 600; text-align: left; cursor: pointer; transition: all .15s ease; }
.brand-list-item:hover { border-color: var(--border-strong); background: var(--surface-strong); }
.brand-list-item svg { flex-shrink: 0; color: var(--text-dimmer); }
.brand-list-empty { text-align: center; padding: 24px 0; color: var(--text-dimmer); font-size: 12.5px; }

.time-popover { width: 300px; }
.time-group-label { font-size: 10.5px; font-weight: 800; letter-spacing: .03em; color: var(--text-dimmer); text-transform: uppercase; margin-bottom: 8px; }
.time-group-label:not(:first-of-type) { margin-top: 16px; }
.time-pill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.time-pill { padding: 12px 0; border-radius: 12px; border: 1px solid var(--border); background: var(--surface-strong); color: var(--text); font-size: 13.5px; font-weight: 700; cursor: pointer; transition: all .15s ease; text-align: center; }
.time-pill:hover { border-color: var(--border-strong); transform: translateY(-1px); }
.time-pill.is-selected { background: var(--grad-primary); color: #04101f; border-color: transparent; box-shadow: 0 0 0 2px rgba(0, 224, 198, 0.4); }
.date-cal-popover .avail-cal-day { font-size: 13.5px; }
.date-cal-popover .avail-legend { margin-top: 14px; gap: 14px; }
.avail-action-bar span { font-size: 13px; font-weight: 700; }
.avail-action-buttons { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- Bölgeler: "hizmet veriyoruz, sayfa hazırlanıyor" modal ---------- */
.district-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(4, 10, 20, 0.72); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.district-modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.district-modal {
  position: relative;
  width: 100%; max-width: 420px;
  background: var(--surface-strong); border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 36px 30px 30px; text-align: center;
  transform: translateY(12px) scale(.98);
  transition: transform .25s ease;
}
.district-modal-overlay.is-open .district-modal { transform: translateY(0) scale(1); }
.district-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-dim);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.district-modal-close:hover { color: var(--text); border-color: var(--border-strong); }
.district-modal-close svg { width: 16px; height: 16px; }
.district-modal-icon {
  width: 52px; height: 52px; margin: 0 auto 18px; border-radius: 50%;
  background: rgba(43, 217, 155, 0.14); color: var(--success);
  display: flex; align-items: center; justify-content: center;
}
.district-modal-icon svg { width: 26px; height: 26px; }
.district-modal h3 { font-size: 19px; margin-bottom: 10px; }
.district-modal p { font-size: 14px; color: var(--text-dim); margin-bottom: 22px; }
