:root {
  --primary: #d62828;
  --primary-hover: #b91f1f;
  --primary-soft: rgba(214, 40, 40, 0.08);
  --black: #101014;
  --text: #3f3f46;
  --muted: #74747e;
  --border: #e8e8ec;
  --border-strong: #d9d9df;
  --page-bg: #fafafa;
  --soft-bg: #f4f4f6;
  --card-bg: #ffffff;
  --input-bg: #ffffff;
  --input-border: #e2e2e8;
  --success: #64c36f;
  --warning: #ffc928;
  --info: #4b8dff;
  --purple: #e040fb;
  --danger: #d62828;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 1px 2px rgba(16, 16, 20, 0.04), 0 8px 24px -12px rgba(16, 16, 20, 0.08);
  --shadow-lg: 0 1px 2px rgba(16, 16, 20, 0.04), 0 24px 56px -24px rgba(16, 16, 20, 0.18);
  --ring: 0 0 0 3px rgba(214, 40, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  touch-action: pan-y;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  letter-spacing: -0.02em;
}

.section-heading h2,
.trust-head h2,
.cta-band-inner h2,
.stat-tile strong {
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
}

::selection {
  background: rgba(214, 40, 40, 0.14);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

main,
header,
footer,
.view {
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
canvas,
video {
  max-width: 100%;
}

.container {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.6);
  backdrop-filter: blur(14px) saturate(1.6);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--primary);
  color: white;
  font-size: 13px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.desktop-nav a:hover {
  color: var(--primary);
  background: var(--primary-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--black);
  font-size: 18px;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.menu-button:hover {
  border-color: var(--border-strong);
  background: var(--soft-bg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-nav.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(82%, 320px);
  background: white;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.14);
  transform: translateX(100%);
  transition: transform 0.24s ease;
  overflow-y: auto;
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mobile-nav-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  font-size: 22px;
  line-height: 1;
  color: var(--black);
  cursor: pointer;
}

.mobile-nav-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 12px;
  border-radius: 10px;
  color: var(--black);
  font-weight: 600;
  font-size: 15px;
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a:active {
  background: #f4f5f7;
}

.mobile-nav-panel .primary-button {
  margin-top: 14px;
}

.nav-soon {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(214, 40, 40, 0.1);
  padding: 2px 8px;
  border-radius: 999px;
}

.app-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  z-index: 80;
  max-width: 90vw;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--black);
  color: white;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.app-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

.hero {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 384px;
  gap: 44px;
  align-items: center;
  min-height: 640px;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 8px;
  /* Alt 250px araç sahnesine ayrılır — metin bu banda giremez (bkz. DESIGN.md §5) */
  padding: 56px max(16px, calc((100vw - 1280px) / 2)) 265px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(65% 90% at 82% -8%, rgba(214, 40, 40, 0.13), transparent 55%),
    radial-gradient(50% 70% at 6% 104%, rgba(255, 138, 76, 0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7f6f8 100%);
  box-shadow: none;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(16, 16, 20, 0.06) 1px, transparent 1.5px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(80% 105% at 78% 0%, #000 0%, transparent 55%);
  mask-image: radial-gradient(80% 105% at 78% 0%, #000 0%, transparent 55%);
  opacity: 0.5;
}

.hero::after {
  content: "";
  position: absolute;
  left: max(16px, calc((100vw - 1280px) / 2));
  bottom: 0;
  z-index: 1;
  width: min(58%, 700px);
  height: 250px;
  background:
    radial-gradient(60% 70% at 50% 92%, rgba(214, 40, 40, 0.07), transparent 70%),
    radial-gradient(72% 22% at 50% 97%, rgba(16, 16, 20, 0.22), transparent 72%),
    url("assets/hero-car.png") center bottom / contain no-repeat;
  filter: drop-shadow(0 22px 26px rgba(16, 16, 20, 0.16));
  pointer-events: none;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-aurora::before,
.hero-aurora::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-aurora::before {
  top: -180px;
  right: 4%;
  background: radial-gradient(circle, rgba(214, 40, 40, 0.18), transparent 65%);
  animation: auroraDrift 13s ease-in-out infinite alternate;
}

.hero-aurora::after {
  bottom: -240px;
  left: 32%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(255, 158, 94, 0.16), transparent 65%);
  animation: auroraDrift 17s ease-in-out infinite alternate-reverse;
}

@keyframes auroraDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-70px, 44px, 0) scale(1.18);
  }
}

.hero-glow {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  color: var(--black);
  max-width: 560px;
  animation: heroRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero .quick-card {
  animation: heroRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 7px 15px 7px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(214, 40, 40, 0.2);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: heroPulse 1.9s ease-out infinite;
}

@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 rgba(214, 40, 40, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(214, 40, 40, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 40, 40, 0); }
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.hero-stars {
  color: #ffb320;
  font-size: 17px;
  letter-spacing: 2px;
}

.hero-proof-text {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero-proof-text strong {
  color: var(--black);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff6a3d, var(--primary));
}

.process-heading .eyebrow::after {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), #ff6a3d);
}

.hero h1,
.section-heading h2 {
  margin: 0;
  color: var(--black);
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--black);
  max-width: 580px;
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: clamp(42px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(94deg, #ff6a3d 0%, #e23030 55%, #c11f1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary);
}

.hero-sub {
  margin: 16px 0 0;
  max-width: 480px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.hero-chips .chip-check {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(26, 157, 75, 0.14);
  color: #128a42;
  font-size: 10px;
  font-weight: 900;
}

.quick-card-head {
  margin-bottom: 14px;
}

.quick-card-head h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  color: var(--black);
}

.quick-card-head p {
  margin: 3px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.quick-card,
.feature-card,
.vehicle-card,
.panel,
.summary-card,
.result-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.quick-card {
  position: relative;
  z-index: 40;
  padding: 26px 24px;
  border-radius: 24px;
}

/* Kartın tepesinde marka kırmızısı ince aksan çizgisi */
.quick-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, #ff6a3d, var(--primary) 60%, #b91f1f);
  opacity: 0.9;
}

.quick-form,
.form-grid,
.contact-form {
  display: grid;
  gap: 12px;
}

.quick-form {
  gap: 12px;
}

.quick-form .form-error:empty {
  display: none;
}

.quick-form .primary-button.full {
  min-height: 50px;
  margin-top: 2px;
  font-size: 15px;
}

.quick-form .link-button {
  justify-self: center;
  font-size: 13px;
}

.quick-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

label,
.field-label {
  display: grid;
  gap: 6px;
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
}

.plate-field {
  position: relative;
}

.plate-input-wrap {
  display: flex;
  align-items: stretch;
  height: 44px;
  border: 1px solid var(--input-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--input-bg);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.plate-input-wrap:focus-within {
  border-color: var(--primary);
  background: #fff;
  box-shadow: var(--ring);
}

.plate-tr {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 12px;
  background: #1f3c88;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
}

.plate-field .plate-input-wrap input {
  flex: 1;
  min-width: 0;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.plate-field .plate-input-wrap input:focus {
  outline: none;
  border: 0;
  box-shadow: none;
}

.plate-field .plate-input-wrap input::placeholder {
  font-weight: 600;
  letter-spacing: 1px;
  color: #aeb4bd;
  text-transform: none;
}

.plate-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.label-help-button {
  flex: 0 1 auto;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  padding: 0;
  text-align: right;
}

.label-help-button:hover,
.plate-field.is-open .label-help-button {
  color: var(--primary-hover);
  text-decoration: underline;
}

.field-popover {
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  z-index: 18;
  width: min(320px, 90vw);
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 40px -12px rgba(16, 16, 20, 0.18);
}

.field-popover::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: white;
  transform: rotate(45deg);
}

.field-popover strong {
  display: block;
  margin-bottom: 5px;
  color: var(--black);
  font-size: 13px;
}

.field-popover p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

input,
select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--input-border);
  border-radius: var(--radius-sm);
  background: var(--input-bg);
  color: var(--black);
  padding: 0 12px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:hover,
select:hover {
  border-color: var(--border-strong);
}

input:focus,
select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: var(--ring);
}

input::placeholder {
  color: #a1a1aa;
}

select:disabled {
  color: #9a9a9a;
  cursor: not-allowed;
}

.search-select-field {
  position: relative;
}

.search-select {
  position: relative;
}

.search-select-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--input-border);
  border-radius: var(--radius-sm);
  background: var(--input-bg);
  color: var(--black);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.search-select-toggle:hover {
  border-color: var(--border-strong);
}

.search-select-toggle:focus,
.search-select.is-open .search-select-toggle {
  border-color: var(--primary);
  background: white;
  box-shadow: var(--ring);
  outline: none;
}

.search-select-toggle:disabled {
  color: #9a9a9a;
  background: var(--soft-bg);
  border-color: var(--border);
  cursor: not-allowed;
}

.search-select-placeholder {
  color: #a1a1aa;
  font-weight: 500;
}

.search-select-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 40px -12px rgba(16, 16, 20, 0.18);
}

.search-select.is-open .search-select-menu {
  display: block;
}

.search-select-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-bottom: 1px solid #e7edf4;
  color: #7c8798;
}

.search-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: #9aa4b2;
}

.search-select-search input {
  width: 100%;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #344054;
  font-size: 14px;
  outline: none;
}

.search-select-options {
  display: grid;
  max-height: 300px;
  overflow-y: auto;
  padding: 6px 0;
}

.search-select-option {
  min-height: 48px;
  border: 0;
  background: white;
  padding: 0 14px;
  color: #111111;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.search-select-option:hover,
.search-select-option.is-selected {
  background: #f5f7fa;
}

.search-select-empty {
  padding: 14px;
  color: var(--muted);
  font-size: 13px;
}

.mobile-select-backdrop {
  display: none;
}

.mobile-option-sheet {
  display: none;
}

.is-disabled-field {
  color: #9a9a9a;
}

.is-disabled-field input {
  color: #9a9a9a;
  cursor: not-allowed;
}

.primary-button,
.ghost-button,
.outline-button,
.text-button,
.link-button {
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.primary-button:focus-visible,
.ghost-button:focus-visible,
.outline-button:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.primary-button {
  min-height: 44px;
  padding: 0 18px;
  background: linear-gradient(180deg, #e23030 0%, #c42222 100%);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.primary-button:hover {
  background: linear-gradient(180deg, #d02626 0%, #b31d1d 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.primary-button:active {
  transform: scale(0.985);
}

.primary-button:disabled {
  background: #d4d4d8;
  box-shadow: none;
  cursor: not-allowed;
}

.full {
  width: 100%;
}

.ghost-button,
.outline-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--border-strong);
  background: white;
  color: var(--black);
}

.ghost-button:hover,
.outline-button:hover {
  border-color: var(--black);
  background: var(--soft-bg);
}

.ghost-button:active,
.outline-button:active {
  transform: scale(0.985);
}

.text-button,
.link-button {
  background: transparent;
  color: var(--black);
}

.link-button {
  justify-self: start;
  color: var(--primary);
  padding: 0;
}

.form-error {
  min-height: 14px;
  margin: 0;
  color: var(--danger);
  font-size: 13px;
  font-weight: 600;
}

.trust-band {
  padding: 56px 0 8px;
}

.trust-head {
  text-align: center;
  margin-bottom: 30px;
}

.trust-head h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.trust-head p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--muted);
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brand-marquee 52s linear infinite;
  will-change: transform;
}

@media (hover: hover) {
  .brand-marquee:hover .brand-marquee-track {
    animation-play-state: paused;
  }
}

.marquee-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 80px;
  height: 46px;
  margin-right: 38px;
}

.marquee-logo img {
  max-height: 40px;
  max-width: 74px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.marquee-logo img:hover {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes brand-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .hero-badge-dot {
    animation: none;
  }
}

@media (max-width: 720px) {
  .brand-marquee-track {
    animation-duration: 44s;
  }

  .marquee-logo {
    width: 68px;
    height: 42px;
    margin-right: 24px;
  }

  .marquee-logo img {
    max-height: 36px;
    max-width: 64px;
  }
}

.why-section,
.vehicles-section {
  padding: 84px 0 0;
}

@media (max-width: 720px) {
  .why-section,
  .vehicles-section {
    padding-top: 52px;
  }
}

.vehicles-section {
  padding-bottom: 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.process-heading {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
  text-align: center;
}

.process-heading p:not(.eyebrow) {
  margin: 12px auto 0;
  max-width: 860px;
  color: var(--text);
  font-size: 15px;
}

.section-heading.compact {
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: 30px;
}

.process-heading h2 {
  font-size: 42px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process-card {
  position: relative;
  transition: transform 0.25s ease;
}

/* Hover kaldırma yalnızca fareli cihazlarda — dokunmatikte kaydırırken
   parmak değince tetiklenip kartı dikey zıplatmasın. */
@media (hover: hover) {
  .process-card:hover {
    transform: translateY(-4px);
  }
}

.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 118px;
  right: -26px;
  width: 28px;
  border-top: 2px dashed var(--border-strong);
  pointer-events: none;
}

.process-media {
  position: relative;
  display: grid;
  place-items: center;
  height: 236px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 25%, rgba(214, 40, 40, 0.1), transparent 60%),
    linear-gradient(135deg, #f5f6f8, #e9edf1);
}

.process-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .process-card:hover .process-media img {
    transform: scale(1.06);
  }
}

.process-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(214, 40, 40, 0.12);
  color: var(--primary);
  z-index: 1;
}

.process-icon svg {
  width: 30px;
  height: 30px;
}

.process-step {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-step::before {
  content: "Adım";
  color: #52525c;
  font-weight: 600;
}

.process-body {
  padding: 20px 6px 0;
}

.process-card h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.25;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.why-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: start;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 340px));
  justify-content: start;
  width: 100%;
  gap: 20px;
}

.feature-card {
  display: block;
  padding: 20px;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.16s ease, transform 0.16s ease, border-color 0.16s ease;
}

.vehicle-card {
  display: flex;
  min-width: 0;
  min-height: 320px;
  flex-direction: column;
  padding: 16px;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.16s ease, transform 0.16s ease, border-color 0.16s ease;
}

.vehicle-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: rgba(214, 40, 40, 0.1);
  color: var(--primary);
  font-size: 24px;
  font-weight: 800;
}

.feature-card h3,
.vehicle-card h3 {
  margin: 14px 0 8px;
  color: var(--black);
  font-size: 18px;
}

.feature-card p,
.vehicle-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.vehicle-card > strong {
  margin-top: auto;
}

.vehicle-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-sm);
  background: var(--soft-bg);
  position: relative;
  overflow: hidden;
}

.listing-card-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.listing-card-photo:has(img)::before,
.listing-card-photo:has(img)::after {
  display: none;
}

.listings-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.vehicle-photo::before,
.vehicle-photo::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.vehicle-photo::before {
  bottom: 34px;
  width: 74%;
  height: 48px;
  border-radius: 42px 48px 16px 16px;
  background: currentColor;
}

.vehicle-photo::after {
  bottom: 26px;
  width: 54%;
  height: 26px;
  border-radius: 100px;
  background: #1a1a1a;
  box-shadow: -68px 0 0 -4px #1a1a1a, 68px 0 0 -4px #1a1a1a;
}

.red-car {
  color: var(--primary);
}

.blue-car {
  color: var(--info);
}

.gray-car {
  color: #7f8992;
}

.flow-view {
  min-height: calc(100vh - 144px);
  padding: 28px 0 44px;
}

.flow-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.flow-container > * {
  min-width: 0;
}

.criteria-notice {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px 52px 24px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
}

.criteria-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #9a9a9a;
  border-radius: 50%;
  background: transparent;
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.criteria-close:hover {
  border-color: var(--black);
  background: white;
}

.criteria-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  font-size: 26px;
  font-weight: 500;
  font-family: Georgia, serif;
}

.criteria-notice h2 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 15px;
}

.criteria-notice ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  font-size: 13px;
}

.criteria-notice p {
  margin: 14px 0 0;
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stepper li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.stepper li:not(:last-child) {
  margin-right: 18px;
  padding-right: 56px;
}

.stepper li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--border-strong);
  transform: translateY(-50%);
}

.stepper li.is-complete:not(:last-child)::after {
  background: var(--primary);
}

.step-dot {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.stepper li.is-current .step-dot,
.stepper li.is-complete .step-dot {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.stepper li.is-current .step-dot {
  box-shadow: 0 0 0 4px rgba(214, 40, 40, 0.14);
}

.stepper li.is-current {
  color: var(--black);
}

.stepper li.is-complete {
  color: var(--black);
}

.stepper span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.step-content {
  min-height: 540px;
}

.flow-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 20px;
  align-items: stretch;
}

.flow-grid > .panel,
.flow-grid > .summary-card {
  height: 100%;
}

.panel,
.summary-card,
.result-card {
  padding: 22px;
}

.panel-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.panel-title h2,
.summary-card h2,
.result-card h2 {
  margin: 0;
  color: var(--black);
  font-size: 24px;
}

.panel-title p,
.summary-card p,
.result-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.summary-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.summary-row span {
  color: var(--muted);
}

.summary-row strong {
  text-align: right;
}

.vehicle-summary-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.vehicle-summary-title .brand-logo {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
}

.vehicle-summary-title .brand-logo img {
  width: 24px;
  height: 24px;
}

.brand-logo-empty {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.vehicle-picker-panel {
  display: grid;
  gap: 18px;
}

.picker-title {
  align-items: start;
}

.picker-heading-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.picker-back-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--black);
  padding: 0;
}

.picker-back-icon:hover {
  background: #f3f3f3;
}

.picker-back-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.brand-picker-grid {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.year-picker-grid {
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
}

.picker-option {
  display: flex;
  min-width: 0;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--black);
  padding: 10px 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.picker-option:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.picker-option-media {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
}

.picker-option .brand-logo {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
}

.picker-option .brand-logo img {
  width: 23px;
  height: 23px;
}

.picker-option > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.picker-empty {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 14px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.color-field {
  position: relative;
  align-content: start;
}

.brand-field {
  position: relative;
}

.color-select-toggle,
.brand-select-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  height: 46px;
  padding: 0 12px;
  border: 1px solid var(--input-border);
  border-radius: var(--radius-sm);
  background: var(--input-bg);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.color-select-toggle:hover,
.brand-select-toggle:hover {
  border-color: var(--border-strong);
}

.color-select-toggle:focus,
.brand-select-toggle:focus,
.color-field.is-open .color-select-toggle,
.brand-field.is-open .brand-select-toggle {
  border-color: var(--primary);
  background: white;
  box-shadow: var(--ring);
  outline: none;
}

.color-select-toggle:disabled {
  color: #9a9a9a;
  background: var(--soft-bg);
  border-color: var(--border);
  cursor: not-allowed;
}

.color-placeholder,
.brand-placeholder {
  color: #a1a1aa;
  font-weight: 500;
}

.select-chevron {
  margin-left: auto;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #667085;
  border-bottom: 2px solid #667085;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.search-select.is-open .select-chevron,
.brand-field.is-open .select-chevron,
.color-field.is-open .select-chevron {
  transform: rotate(225deg) translate(-2px, -1px);
}

.search-select-toggle:hover .select-chevron,
.brand-select-toggle:hover .select-chevron,
.color-select-toggle:hover .select-chevron {
  border-color: #111111;
}

.color-options,
.brand-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 12;
  display: none;
  max-height: 236px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 40px -12px rgba(16, 16, 20, 0.18);
}

.color-field.is-open .color-options,
.brand-field.is-open .brand-options {
  display: grid;
  gap: 4px;
}

.color-option,
.brand-option {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: white;
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
}

.color-option:hover,
.color-option.is-selected,
.brand-option:hover,
.brand-option.is-selected {
  background: #fff1f1;
}

.color-option.is-selected,
.brand-option.is-selected {
  color: var(--primary);
}

.color-dot {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid #d7dde2;
  border-radius: 50%;
  background: white;
  color: var(--black);
  overflow: hidden;
  font-size: 10px;
  font-weight: 800;
}

.brand-logo img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.brand-logo img + .brand-logo-fallback {
  display: none;
}

.inspection-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(560px, 1fr);
  gap: 20px;
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

.inspection-grid > * {
  min-width: 0;
}

.svg-wrap {
  min-width: 0;
  max-width: 100%;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fbfbfb;
}

.vehicle-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 520px;
}

.asset-car-map {
  position: relative;
  width: min(100%, 760px);
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 760 / 670;
}

.asset-direction {
  position: absolute;
  z-index: 3;
  color: #4f5d66;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.asset-direction-front {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.asset-direction-back {
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.asset-direction-left {
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
}

.asset-direction-right {
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}

.asset-car-base,
.asset-car-overlay {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.asset-car-base {
  object-fit: contain;
  pointer-events: none;
}

.asset-car-overlay {
  z-index: 2;
}

.asset-body-part {
  opacity: 0.94;
  stroke: #ffffff;
  stroke-width: 2;
}

.vehicle-part {
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linejoin: round;
  filter: saturate(0.9);
  transition: filter 0.15s ease, opacity 0.15s ease, stroke 0.15s ease;
  cursor: pointer;
}

.vehicle-part:hover,
.vehicle-part.is-selected {
  filter: saturate(1.12) brightness(1.02);
  stroke: #222222;
  stroke-width: 2.5;
}

.asset-body-part.status-original {
  fill: #d9d9d9;
}

.asset-body-part:hover,
.asset-body-part.is-selected {
  stroke: #222222;
}

.part-marker {
  cursor: pointer;
}

.part-marker circle {
  fill: #ffffff;
  stroke: rgba(100, 195, 111, 0.32);
  stroke-width: 5;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.part-marker text {
  fill: var(--success);
  font-size: 20px;
  font-weight: 900;
  text-anchor: middle;
  dominant-baseline: alphabetic;
  alignment-baseline: baseline;
  pointer-events: none;
}

.part-marker:hover circle,
.part-marker.is-selected circle {
  fill: var(--success);
  stroke: #ffffff;
}

.part-marker:hover text,
.part-marker.is-selected text {
  fill: #ffffff;
}

.part-marker.status-painted circle {
  fill: var(--info);
  stroke: #ffffff;
}

.part-marker.status-replaced circle {
  fill: var(--warning);
  stroke: #ffffff;
}

.part-marker.status-local-paint circle {
  fill: var(--purple);
  stroke: #ffffff;
}

.part-marker.status-damaged circle {
  fill: var(--danger);
  stroke: #ffffff;
}

.part-marker.status-painted text,
.part-marker.status-local-paint text,
.part-marker.status-damaged text {
  fill: #ffffff;
}

.part-marker.status-replaced text {
  fill: var(--black);
}

.map-status-menu {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 4;
  width: min(230px, 70%);
  overflow: hidden;
  border-radius: 10px;
  background: white;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.map-status-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 38px;
  padding: 9px 14px;
  background: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.map-status-close {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  padding: 0;
}

.map-status-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.map-status-options {
  display: grid;
  gap: 6px;
  padding: 8px;
}

.map-status-options button {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: #f7f7f7;
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  padding: 0 10px;
}

.map-status-options button:hover,
.map-status-options button.is-active {
  background: var(--success);
  color: white;
}

.status-badge {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 11px;
  font-weight: 900;
}

.vehicle-shell,
.side-car {
  transform-box: fill-box;
  transform-origin: center;
}

.vehicle-seam,
.vehicle-highlight {
  fill: none;
  stroke-linecap: round;
  pointer-events: none;
}

.vehicle-seam {
  stroke: rgba(40, 54, 64, 0.32);
  stroke-width: 2.4;
}

.vehicle-highlight {
  stroke: rgba(255, 255, 255, 0.86);
  stroke-width: 6;
}

.svg-direction {
  fill: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.svg-plus-marks text {
  fill: #ffffff;
  stroke: rgba(80, 96, 108, 0.14);
  stroke-width: 1;
  font-size: 34px;
  font-weight: 800;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}

.status-original {
  fill: var(--success);
}

.status-painted {
  fill: var(--info);
}

.status-replaced {
  fill: var(--warning);
}

.status-local-paint {
  fill: var(--purple);
}

.status-damaged {
  fill: var(--danger);
}

.asset-body-part.status-original {
  fill: #d9d9d9;
}

.status-badge.status-original {
  background: var(--success);
}

.status-badge.status-painted {
  background: var(--info);
}

.status-badge.status-replaced {
  background: var(--warning);
  color: var(--black);
}

.status-badge.status-local-paint {
  background: var(--purple);
}

.status-badge.status-damaged {
  background: var(--danger);
}

.legend {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  max-width: 100%;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  scrollbar-width: none;
}

.legend::-webkit-scrollbar {
  display: none;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 0;
  gap: 3px;
  min-width: 0;
  min-height: 34px;
  padding: 0 7px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  color: var(--black);
  font-size: 11.5px;
  font-weight: 700;
  text-align: left;
  cursor: default;
}

.legend-item:last-child {
  border-bottom: 1px solid var(--border);
}

.legend-item.is-active {
  border-color: var(--primary);
  background: #fff1f1;
}

.legend-item span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.legend-item strong {
  color: var(--black);
  font-size: 11.5px;
  font-weight: 900;
}

.legend-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
}

.legend-dot.status-original {
  background: var(--success);
}

.legend-dot.status-painted {
  background: var(--info);
}

.legend-dot.status-replaced {
  background: var(--warning);
}

.legend-dot.status-local-paint {
  background: var(--purple);
}

.legend-dot.status-damaged {
  background: var(--danger);
}

.table-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.inspection-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 12px;
}

.inspection-table th,
.inspection-table td {
  padding: 9px 5px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}

.inspection-table th:first-child,
.inspection-table td:first-child {
  text-align: left;
  font-weight: 800;
}

.inspection-table tr.is-selected td {
  background: #fff1f1;
}

.radio-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: white;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.radio-chip.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f8 100%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  color: var(--muted);
}

.footer-inner strong {
  color: var(--black);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding: 56px 0 36px;
}

.footer-brand p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 360px;
  line-height: 1.6;
}

.footer-col h3 {
  font-size: 12.5px;
  margin-bottom: 12px;
  color: var(--black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  color: var(--muted);
  font-size: 13px;
}

/* Footer iletişim (telefon + WhatsApp) */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--black);
  font-size: 14.5px;
  font-weight: 700;
  transition: color 0.15s ease;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-contact svg {
  flex: 0 0 auto;
  color: var(--primary);
}

/* Sabit WhatsApp butonu */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-float:active {
  transform: scale(0.97);
}

.wa-float svg {
  position: relative;
  z-index: 1;
}

.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float-pulse {
    animation: none;
  }
}

/* Satış akışında (adım adım form) buton alt CTA ile çakışmasın */
body.flow-active .wa-float {
  display: none;
}

@media (max-width: 720px) {
  .wa-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 720px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 1060px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .hero,
  .flow-grid,
  .inspection-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 40px 24px;
  }

  .hero::after {
    left: 24px;
  }

  .hero::before {
    -webkit-mask-image: radial-gradient(120% 92% at 100% 0%, #000 0%, transparent 60%);
    mask-image: radial-gradient(120% 92% at 100% 0%, #000 0%, transparent 60%);
  }

  .hero::after {
    position: static;
    width: 100%;
    height: 250px;
    opacity: 1;
    background: url("assets/hero-car.png") center bottom / contain no-repeat;
  }

  .quick-card {
    max-width: 560px;
  }

  .why-layout,
  .advantage-grid,
  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: 100%;
    padding-inline: 10px;
  }

  .process-grid {
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 0 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .process-grid::-webkit-scrollbar {
    display: none;
  }

  .process-card {
    scroll-snap-align: start;
  }

  .process-card:not(:last-child)::after {
    display: none;
  }

  .process-media {
    height: 210px;
  }

  body {
    font-size: 14px;
  }

  .flow-view {
    padding: 12px 0 28px;
  }

  .flow-view.is-active {
    min-height: calc(100dvh - 72px);
  }

  body.flow-active .site-footer {
    display: none;
  }

  .flow-container {
    gap: 10px;
  }

  .criteria-notice {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 46px 14px 14px;
    border-radius: 10px;
  }

  .criteria-close {
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    font-size: 17px;
  }

  .criteria-icon {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .criteria-notice h2 {
    font-size: 13px;
  }

  .criteria-notice ul,
  .criteria-notice p {
    font-size: 12px;
  }

  .hero {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 8px;
    gap: 10px;
    min-height: auto;
    padding: 24px 16px 8px;
    border-radius: 0;
    box-shadow: none;
    background:
      radial-gradient(120% 80% at 92% -8%, rgba(214, 40, 40, 0.1), rgba(214, 40, 40, 0) 52%),
      linear-gradient(180deg, #ffffff 0%, #f8f7f9 100%);
  }

  .hero::after {
    left: 0;
  }

  .hero-sub {
    font-size: 14.5px;
  }

  /* Rozetler mobilde tek satırlık şerit: taşarsa sayfayı bozmadan kendi içinde
     kayar (yatay taşma ve hero/form kayması olmaz). */
  .hero-chips {
    margin-top: 16px;
    gap: 6px;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero-chips::-webkit-scrollbar {
    display: none;
  }

  .hero-chips li {
    padding: 6px 10px;
    font-size: 11.5px;
    gap: 6px;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .hero-chips .chip-check {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
  }

  .hero::after {
    position: static;
    width: 100%;
    height: 240px;
    margin-top: -42px;
    margin-bottom: -8px;
    opacity: 1;
    background: url("assets/hero-car.png") center bottom / contain no-repeat;
  }

  .hero h1 {
    font-size: 31px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.4px;
  }

  .hero-badge {
    margin-bottom: 14px;
  }

  .hero-proof {
    margin-top: 14px;
  }

  .hero-stars {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .hero-proof-text {
    font-size: 12px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .process-heading h2 {
    font-size: 30px;
  }

  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .quick-form-row {
    grid-template-columns: 1fr 1fr;
  }

  .stepper {
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 0;
    margin-inline: -8px;
    padding: 0 8px 6px;
    scrollbar-width: none;
  }

  .stepper::-webkit-scrollbar {
    display: none;
  }

  .stepper li {
    flex: 0 0 auto;
    font-size: 12px;
  }

  .stepper li:not(:last-child) {
    margin-right: 12px;
    padding-right: 38px;
  }

  .stepper li:not(:last-child)::after {
    right: 10px;
    width: 18px;
  }

  .step-dot {
    flex-basis: 26px;
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .panel,
  .summary-card,
  .result-card {
    width: 100%;
    min-width: 0;
    padding: 14px;
    border-radius: 10px;
  }

  .flow-grid {
    gap: 10px;
    min-width: 0;
    align-items: start;
  }

  .flow-grid > .panel,
  .flow-grid > .summary-card {
    height: auto;
  }

  .inspection-grid,
  .svg-wrap,
  .asset-car-map,
  .table-wrap {
    min-width: 0;
    max-width: 100%;
  }

  .svg-wrap {
    padding: 10px;
  }

  .asset-direction {
    font-size: 11px;
  }

  .map-status-menu {
    left: 50% !important;
    top: 46% !important;
    width: min(210px, 82%);
    max-height: min(260px, 68%);
    transform: translate(-50%, -50%);
  }

  .map-status-title {
    min-height: 32px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .map-status-options {
    max-height: 218px;
    overflow-y: auto;
    gap: 5px;
    padding: 7px;
  }

  .map-status-options button {
    grid-template-columns: 20px 1fr auto;
    gap: 7px;
    min-height: 31px;
    font-size: 11px;
    padding: 0 8px;
  }

  .map-status-options .status-badge {
    width: 17px;
    height: 17px;
    font-size: 10px;
  }

  .legend {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    margin-top: 10px;
  }

  .legend-item {
    width: 100%;
    min-height: 36px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .legend-item strong {
    font-size: 12px;
  }

  .inspection-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 10.5px;
  }

  .inspection-table th,
  .inspection-table td {
    padding: 7px 2px;
  }

  .inspection-table th:first-child,
  .inspection-table td:first-child {
    width: 74px;
    padding-left: 4px;
    padding-right: 2px;
    font-size: 10.5px;
    line-height: 1.18;
    text-align: left;
  }

  .inspection-table td:first-child .link-button {
    display: block;
    width: 100%;
    text-align: left;
    line-height: 1.18;
  }

  .inspection-table th:not(:first-child),
  .inspection-table td:not(:first-child) {
    width: calc((100% - 74px) / 5);
  }

  .inspection-table th {
    font-size: 10px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .inspection-table th:nth-child(4) {
    font-size: 10px;
  }

  .radio-chip {
    width: 19px;
    height: 19px;
    font-size: 10px;
    line-height: 1;
  }

  .flow-grid .summary-card {
    position: relative;
    margin: 0;
    padding: 10px;
    border-width: 1px;
    border-radius: 10px;
    box-shadow: none;
    background: #ffffff;
  }

  .flow-grid .summary-card h2 {
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
  }

  .flow-grid .vehicle-summary-title {
    min-width: 0;
    margin: 0 0 8px;
    padding: 7px 8px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #f8f9fb;
    color: var(--black);
    font-size: 12px;
    font-weight: 800;
  }

  .flow-grid .vehicle-summary-title > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .flow-grid .vehicle-summary-title .brand-logo {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .flow-grid .vehicle-summary-title .brand-logo img {
    width: 18px;
    height: 18px;
  }

  .flow-grid .summary-list {
    display: flex;
    gap: 8px;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .flow-grid .summary-list::-webkit-scrollbar {
    display: none;
  }

  .flow-grid .summary-row {
    min-width: max-content;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #f7f8fa;
    font-size: 11.5px;
    white-space: nowrap;
  }

  .flow-grid .summary-row span {
    flex: 0 0 auto;
    color: var(--muted);
  }

  .flow-grid .summary-row strong {
    max-width: 120px;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
  }

  .flow-grid .summary-card .button-row {
    display: none;
  }

  .button-row .primary-button,
  .button-row .ghost-button {
    width: 100%;
  }

  .flow-view .button-row {
    position: static;
    padding: 0;
    background: transparent;
  }

  .panel-title {
    gap: 10px;
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .picker-title {
    grid-template-columns: 1fr;
  }

  .picker-heading-row {
    gap: 8px;
  }

  .picker-back-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 28px;
  }

  .picker-grid,
  .brand-picker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .year-picker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .picker-option {
    min-height: 72px;
    padding: 12px 10px;
    font-size: 15px;
  }

  .brand-picker-grid .picker-option {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
  }

  .brand-picker-grid .picker-option > span:last-child {
    max-width: 100%;
  }

  .panel-title > strong {
    flex: 0 0 auto;
    max-width: none;
    padding: 5px 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #f8f8f8;
    font-size: 12px;
    line-height: 1.15;
    text-align: right;
    white-space: nowrap;
  }

  .panel-title h2,
  .result-card h2 {
    font-size: 22px;
    line-height: 1.18;
  }

  .panel-title p,
  .result-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  label,
  .field-label {
    gap: 6px;
    font-size: 13px;
    line-height: 1.25;
  }

  input,
  select,
  .search-select-toggle,
  .color-select-toggle,
  .brand-select-toggle {
    height: 46px;
    min-width: 0;
    padding-inline: 13px;
    font-size: 16px;
    line-height: 1.2;
  }

  .search-select-toggle > span:first-child,
  .color-select-toggle > span:not(.color-dot):first-child,
  .brand-select-toggle > span:not(.brand-logo):first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .search-select-option,
  .color-option,
  .brand-option {
    min-height: 48px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 8px;
  }

  .flow-view {
    padding-top: 8px;
  }

  .panel,
  .summary-card,
  .result-card {
    padding: 12px;
  }

  .flow-grid .summary-card {
    padding: 8px;
  }

  .flow-grid .summary-list {
    display: flex;
    grid-template-columns: none;
  }

  .brand-picker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .year-picker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-grid .summary-row {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 11.5px;
  }

  .panel-title h2,
  .result-card h2 {
    font-size: 22px;
  }

  .panel-title p,
  .result-card p {
    font-size: 14px;
    line-height: 1.45;
  }

  input,
  select,
  .search-select-toggle,
  .color-select-toggle,
  .brand-select-toggle {
    height: 46px;
    padding-inline: 13px;
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .container {
    padding-inline: 8px;
  }

  .flow-grid .summary-list {
    display: flex;
    grid-template-columns: none;
  }

  .brand-picker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .brand-picker-grid .picker-option {
    min-height: 68px;
    padding: 10px 8px;
    font-size: 14px;
  }

  .flow-grid .summary-row {
    font-size: 11px;
    padding-inline: 9px;
  }

  .panel,
  .result-card {
    padding: 12px;
  }

  .panel-title h2,
  .result-card h2 {
    font-size: 20px;
  }
}

@media (max-width: 720px) {
  .picker-grid.brand-picker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  html.has-mobile-select-open {
    overflow: hidden;
  }

  body.has-mobile-select-open {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    overscroll-behavior: none;
  }

  .mobile-option-sheet {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: block;
    pointer-events: auto;
    overscroll-behavior: contain;
    contain: layout style;
  }

  .mobile-option-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 18, 0.42);
    pointer-events: auto;
    touch-action: none;
    animation: mobileBackdropIn 170ms ease-out both;
  }

  .mobile-option-panel {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    max-height: min(82dvh, 680px);
    grid-template-rows: auto auto auto minmax(0, 1fr);
    border: 1px solid rgba(224, 229, 236, 0.92);
    border-bottom: 0;
    border-radius: 26px 26px 0 0;
    background: #ffffff;
    box-shadow: 0 -22px 60px rgba(9, 15, 27, 0.22);
    transform: translate3d(0, 100%, 0);
    animation: mobileSheetIn 210ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    pointer-events: auto;
    touch-action: pan-y;
    overscroll-behavior: contain;
    isolation: isolate;
    will-change: transform;
    overflow: hidden;
  }

  .mobile-option-sheet.is-closing .mobile-option-backdrop {
    animation: mobileBackdropOut 140ms ease-in both;
  }

  .mobile-option-sheet.is-closing .mobile-option-panel {
    animation: mobileSheetOut 150ms ease-in both;
  }

  .mobile-option-handle {
    width: 46px;
    height: 5px;
    margin: 11px auto 10px;
    border-radius: 999px;
    background: #d7dce4;
  }

  .mobile-option-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 18px 14px;
  }

  .mobile-option-title h2 {
    margin: 0;
    color: var(--black);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
  }

  .mobile-option-title button {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #f8fafc;
    color: var(--black);
    font-size: 24px;
    line-height: 1;
    touch-action: manipulation;
  }

  .mobile-option-search {
    display: flex;
    min-height: 50px;
    align-items: center;
    gap: 9px;
    margin: 0 16px 10px;
    border: 1px solid #eef1f5;
    border-radius: 14px;
    background: #f5f7fa;
    color: #7a8594;
    padding: 0 14px;
  }

  .mobile-option-search .search-icon {
    width: 18px;
    height: 18px;
  }

  .mobile-option-search input {
    width: 100%;
    height: 48px;
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--black);
    font-size: 16px !important;
    font-weight: 650;
    outline: none;
  }

  .mobile-option-list {
    min-height: 0;
    overflow-y: auto;
    padding: 0 16px max(18px, env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #cbd3dd transparent;
  }

  .mobile-option-item {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 64px;
    align-items: center;
    gap: 12px;
    border: 0;
    border-bottom: 1px solid var(--border);
    background: white;
    color: #1f242b;
    padding: 0 42px 0 4px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 120ms ease, color 120ms ease, transform 120ms ease;
  }

  .mobile-option-item:active,
  .mobile-option-item.is-choosing {
    background: #f8fafc;
    transform: scale(0.992);
  }

  .mobile-option-item.is-selected {
    color: var(--primary);
  }

  .mobile-option-item.is-selected::after {
    content: "✓";
    position: absolute;
    right: 8px;
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 15px;
    font-weight: 900;
  }

  .mobile-option-item .brand-logo {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .mobile-option-item .brand-logo img {
    width: 28px;
    height: 28px;
  }

  .mobile-option-item .color-dot {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border: 1px solid #dbe1e8;
    box-shadow: 0 0 0 4px #f6f8fb;
  }

  .mobile-option-empty {
    margin: 0;
    padding: 22px 4px 34px;
    color: var(--muted);
    text-align: center;
    font-size: 16px;
    font-weight: 650;
  }

  .mobile-select-backdrop {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: block;
    background: rgba(17, 17, 17, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .mobile-select-backdrop.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  .search-select.is-open {
    z-index: 1000;
  }

  .search-select-menu {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    max-height: min(76dvh, 620px);
    overflow: hidden;
    border: 0;
    border-radius: 24px 24px 0 0;
    background: #ffffff;
    box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.18);
    transform: translateY(16px);
    animation: mobileSheetIn 180ms ease forwards;
    pointer-events: auto;
    touch-action: pan-y;
  }

  .brand-field.is-open,
  .color-field.is-open {
    z-index: 1000;
  }

  .brand-options,
  .color-options {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    display: none;
    max-height: min(76dvh, 620px);
    overflow-y: auto;
    gap: 0;
    padding: 22px 16px max(16px, env(safe-area-inset-bottom));
    border: 0;
    border-radius: 24px 24px 0 0;
    background: #ffffff;
    box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.18);
    transform: translateY(16px);
    animation: mobileSheetIn 180ms ease forwards;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
    touch-action: pan-y;
  }

  .brand-options::before,
  .color-options::before {
    content: "";
    position: sticky;
    top: 0;
    display: block;
    width: 44px;
    height: 4px;
    margin: -10px auto 12px;
    border-radius: 999px;
    background: #d7dce3;
  }

  .brand-field.is-open .brand-options,
  .color-field.is-open .color-options {
    display: grid;
  }

  .brand-option,
  .color-option {
    min-height: 58px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 0 4px;
    background: white;
    color: #1f242b;
    font-size: 17px;
    font-weight: 600;
  }

  .brand-option:hover,
  .brand-option.is-selected,
  .color-option:hover,
  .color-option.is-selected {
    background: white;
    color: var(--primary);
  }

  .search-select-menu::before {
    content: "";
    display: block;
    width: 44px;
    height: 4px;
    margin: 10px auto 8px;
    border-radius: 999px;
    background: #d7dce3;
  }

  .search-select-search {
    min-height: 50px;
    margin: 0 16px 8px;
    border: 0;
    border-radius: 14px;
    background: #f4f7fa;
    color: #7a8594;
    padding: 0 14px;
  }

  .search-select-search .search-icon {
    width: 18px;
    height: 18px;
  }

  .search-select-search input {
    height: 48px;
    font-size: 16px;
  }

  .search-select-options {
    max-height: calc(min(76dvh, 620px) - 88px);
    overflow-y: auto;
    padding: 0 16px max(16px, env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  .search-select-option {
    min-height: 58px;
    border-bottom: 1px solid var(--border);
    background: white;
    padding: 0 4px;
    color: #1f242b;
    font-size: 17px;
    font-weight: 600;
    touch-action: manipulation;
  }

  .search-select-option:hover,
  .search-select-option.is-selected {
    background: white;
    color: var(--primary);
  }

  .search-select-empty {
    padding: 18px 4px 28px;
    font-size: 15px;
  }

  @keyframes mobileSheetIn {
    from {
      transform: translate3d(0, 100%, 0);
    }

    to {
      transform: translate3d(0, 0, 0);
    }
  }

  @keyframes mobileSheetOut {
    from {
      transform: translate3d(0, 0, 0);
    }

    to {
      transform: translate3d(0, 100%, 0);
    }
  }

  @keyframes mobileBackdropIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes mobileBackdropOut {
    from {
      opacity: 1;
    }

    to {
      opacity: 0;
    }
  }

  input,
  select,
  textarea,
  .search-select-search input {
    font-size: 16px !important;
  }

  input,
  select,
  textarea {
    transform: translateZ(0);
  }
}

/* Honeypot — botlar bu alanı doldurur, gerçek kullanıcılar göremez */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Mobilde form kutusu ve adım içeriklerini biraz büyüt */
@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .quick-card {
    padding: 16px;
    border-radius: 16px;
  }

  .quick-form {
    gap: 11px;
  }

  .panel,
  .summary-card,
  .result-card {
    padding: 18px;
  }

  label,
  .field-label {
    font-size: 14px;
  }

  input,
  select,
  .search-select-toggle,
  .color-select-toggle,
  .brand-select-toggle {
    height: 52px;
    padding-inline: 14px;
    font-size: 16px;
  }

  .search-select-option,
  .color-option,
  .brand-option {
    min-height: 54px;
    font-size: 16px;
  }

  .picker-option {
    min-height: 80px;
    padding: 14px 12px;
    font-size: 16px;
  }

  .panel-title h2,
  .result-card h2 {
    font-size: 24px;
  }

  .panel-title p,
  .result-card p {
    font-size: 14.5px;
  }

  .mobile-option-item {
    font-size: 16px;
  }
}

/* Mobilde marka/yıl grid'inin taşmasını engelle */
@media (max-width: 720px) {
  .brand-picker-grid,
  .picker-grid.brand-picker-grid,
  .year-picker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .picker-option {
    overflow: hidden;
  }

  .picker-option > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


/* ---- Başvuru sonucu ---- */
.result-page {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin: 8px auto 0;
}

.result-hero {
  padding: 34px 20px 10px;
  text-align: center;
}

.result-check {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5a3c, #d62828);
  color: #ffffff;
  box-shadow: 0 0 0 10px rgba(214, 40, 40, 0.08);
  animation: resultPop 0.5s cubic-bezier(0.22, 1.4, 0.36, 1) both;
}

.result-check svg {
  width: 34px;
  height: 34px;
}

@keyframes resultPop {
  from {
    transform: scale(0.4);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .result-check {
    animation: none;
  }
}

.result-hero h2 {
  margin: 0;
  color: var(--black);
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: 34px;
}

.result-hero p {
  margin: 10px auto 0;
  max-width: 460px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.result-ref {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.result-ref b {
  color: var(--primary);
  font-weight: 800;
}

.result-estimate {
  padding: 22px 20px;
  border: 1px solid rgba(214, 40, 40, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(214, 40, 40, 0.06), rgba(255, 90, 60, 0.1));
  text-align: center;
}

.result-estimate-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.result-estimate-range {
  display: block;
  margin-top: 8px;
  color: var(--primary);
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.result-estimate p {
  margin: 10px auto 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.result-vehicle {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.result-vehicle-logo .brand-logo {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

.result-vehicle-logo .brand-logo img {
  width: 30px;
  height: 30px;
}

.result-vehicle-info {
  display: grid;
  min-width: 0;
}

.result-vehicle-info strong {
  color: var(--black);
  font-size: 16px;
}

.result-vehicle-info span {
  color: var(--muted);
  font-size: 13px;
}

.result-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: auto;
}

.result-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft-bg);
  color: var(--text);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.result-next {
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.result-next h3 {
  margin: 0 0 22px;
  color: var(--black);
  font-size: 18px;
  text-align: center;
}

.result-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-steps li {
  position: relative;
  padding: 0 8px;
  text-align: center;
}

.result-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 17px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  border-top: 2px dashed var(--border-strong);
}

.result-step-no {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5a3c, #d62828);
  color: #ffffff;
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.result-steps strong {
  display: block;
  margin-bottom: 6px;
  color: var(--black);
  font-size: 15px;
}

.result-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.result-cta {
  margin-top: 4px;
  text-align: center;
}

.result-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 40px;
  text-decoration: none;
}

.result-call svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.result-hours {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}

.result-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  padding-bottom: 10px;
}

@media (max-width: 720px) {
  .result-hero {
    padding-top: 16px;
  }

  .result-hero h2 {
    font-size: 26px;
  }

  .result-check {
    width: 62px;
    height: 62px;
  }

  .result-check svg {
    width: 28px;
    height: 28px;
  }

  .result-chips {
    margin-left: 0;
  }

  .result-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .result-steps li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 4px 14px;
    text-align: left;
  }

  .result-steps li:not(:last-child)::after {
    display: none;
  }

  .result-step-no {
    grid-row: 1 / 3;
    margin: 0;
  }

  .result-call {
    width: 100%;
  }

  .result-actions {
    flex-direction: column-reverse;
  }

  .result-actions .ghost-button,
  .result-actions .primary-button {
    width: 100%;
  }
}

/* ============ İlan (araç detay) sayfası ============ */
.listing-back {
  margin-left: auto;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.listing-back:hover { color: var(--primary); }

.listing-page {
  padding: 24px 0 60px;
  min-width: 0;
  overflow-x: clip;
}

.listing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 372px;
  gap: 22px;
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

.listing-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.listing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.listing-card-title {
  position: relative;
  margin: 0 0 18px;
  padding-left: 12px;
  font-size: 19px;
  font-weight: 800;
  color: var(--black);
}
.listing-card-title::before {
  content: "";
  position: absolute;
  left: 0; top: 2px; bottom: 2px;
  width: 4px;
  border-radius: 4px;
  background: var(--primary);
}

.gallery {
  min-width: 0;
  max-width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}
.gallery-stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}
.gphoto {
  position: relative;
  aspect-ratio: 16 / 11;
  background: radial-gradient(120% 90% at 50% 30%, #eef1f5, #d9dee5);
}
.gphoto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: no-repeat center / 64px url("assets/favicon.svg");
  opacity: 0.12;
}

.gphoto.has-photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gphoto.has-photo::after {
  display: none;
}

.gphoto-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(var(--swipe-x, 0));
  transition: transform 180ms ease;
  pointer-events: none;
}

.gallery-stage.is-swiping .gphoto-main img {
  transition: none;
}
.gallery-count {
  position: absolute;
  left: 14px; bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.6);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
}
.gallery-tools {
  position: absolute;
  right: 14px; bottom: 14px;
  display: flex; gap: 8px;
  z-index: 2;
}
.gallery-tools button {
  width: 38px; height: 38px;
  border: 0; border-radius: 50%;
  background: rgba(17, 17, 17, 0.55);
  color: #fff; font-size: 17px;
}
.gallery-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px;
  border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black); font-size: 22px;
  z-index: 2;
}
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.gthumb {
  display: block;
  padding: 0;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: radial-gradient(120% 90% at 50% 30%, #eef1f5, #d9dee5);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
}
.gthumb.is-active { border-color: var(--primary); }

.gthumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-description {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}
.listing-description :is(b, strong) { font-weight: 800; }
.listing-description font[size="5"],
.listing-description font[size="6"],
.listing-description font[size="7"] { font-size: 1.18em; }
.listing-description font[size="1"],
.listing-description font[size="2"] { font-size: 0.88em; }

.listing-not-found {
  max-width: 620px;
  margin: 60px auto;
  text-align: center;
}

.listing-not-found .btn-trade {
  display: inline-flex;
  width: auto;
  align-items: center;
  margin-top: 12px;
  padding: 0 22px;
}

.listing-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.listing-trust > div {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; color: var(--black);
}
.lt-ic {
  display: grid; place-items: center;
  width: 34px; height: 34px; flex: 0 0 34px;
  border-radius: 50%;
  background: rgba(214, 40, 40, 0.08);
  color: var(--primary);
  font-size: 16px;
}

.kaporta-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: start;
}
.kaporta-img { width: 100%; max-width: 420px; }
#listing-inspection-map {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 760 / 670;
}
#listing-inspection-map .asset-car-map {
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: auto;
}
#listing-inspection-map .asset-car-overlay {
  pointer-events: none;
}
#listing-inspection-map .vehicle-part {
  cursor: default;
}
.inspection-summary {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.inspection-summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
}
.inspection-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.inspection-dot.status-original { background: var(--success); }
.inspection-dot.status-painted { background: var(--info); }
.inspection-dot.status-replaced { background: var(--warning); }
.inspection-dot.status-local-paint { background: var(--purple); }
.inspection-dot.status-damaged { background: var(--danger); }
.inspection-summary-label {
  flex: 1;
  color: var(--black);
  font-weight: 700;
}
.inspection-summary-status {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.inspection-summary-empty {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 600;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 2px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--muted);
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb-current {
  max-width: 60vw;
  overflow: hidden;
  color: var(--black);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-tools button.is-favorite {
  color: var(--primary);
}

.spec-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0 4px;
}
.spec-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fafbfc;
}
.spec-highlight svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--primary);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.spec-highlight > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.spec-highlight strong {
  overflow: hidden;
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.spec-highlight span {
  color: var(--muted);
  font-size: 12px;
}

.listing-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.listing-lightbox.is-open {
  display: flex;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: zoom-out;
}
.lightbox-stage {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-stage img {
  max-width: min(92vw, 1200px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
}
.lightbox-count {
  margin-top: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 26px;
  line-height: 1;
}
.lightbox-arrow {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  margin: 0 6px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 30px;
  line-height: 1;
}
.lightbox-arrow:hover,
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.26);
}
body.lightbox-open {
  overflow: hidden;
}
@media (max-width: 720px) {
  .lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
  .lightbox-close {
    top: 10px;
    right: 12px;
  }
}
.kaporta-side { display: grid; gap: 14px; }
.kaporta-note {
  padding: 14px;
  border-radius: 12px;
  background: #f6f8fb;
}
.kaporta-note strong { color: var(--black); }
.kaporta-note p { margin: 4px 0 0; color: var(--muted); font-size: 13.5px; }
.kaporta-legend { display: flex; gap: 10px; }
.kaporta-legend span {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 12px; border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 13px; font-weight: 700;
}
.kdot {
  display: grid; place-items: center;
  width: 20px; height: 20px; border-radius: 50%;
  color: #fff; font-size: 11px; font-weight: 800;
}
.kdot-painted { background: #4b8dff; }
.kdot-changed { background: #ffc928; color: #1a1a1a; }

.lfgroups {
  display: grid;
  gap: 18px;
}
.lfg-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
}
.lfg-box {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px 18px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fcfcfd;
}
.lfg-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.3;
}
.lfg-item.is-on {
  color: #12181f;
  font-weight: 600;
}
.lfg-item.is-off { color: #b4bac3; }
.lfg-check {
  color: #128a42;
  flex: 0 0 auto;
}
.lfg-dot {
  width: 13px; height: 13px;
  flex: 0 0 13px;
  border: 1px solid #d6dae0;
  border-radius: 4px;
}

.listing-side {
  display: grid;
  min-width: 0;
  max-width: 100%;
  gap: 16px;
  position: sticky;
  top: 88px;
}

.mobile-spec-slot {
  display: none;
}

#desktop-spec-slot {
  display: contents;
}
.spec-title-row {
  display: flex;
  align-items: center;
  gap: 9px;
}
.spec-brand-logo {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  object-fit: contain;
}
.spec-head h1 {
  margin: 0;
  font-size: 22px; font-weight: 800; color: var(--black); line-height: 1.1;
}
.spec-head p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.spec-price {
  margin-top: 12px;
  font-size: 30px; font-weight: 800; color: var(--primary);
}
.spec-actions { margin: 16px 0; }
.btn-trade {
  width: 100%; min-height: 50px;
  border: 0; border-radius: var(--radius-sm);
  background: #17171c; color: #fff;
  font-weight: 800; font-size: 15px; cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}
.btn-trade:hover {
  background: #000000;
}
.btn-trade:active { transform: scale(0.985); }
.spec-list {
  margin: 18px 0 0;
  border-top: 1px solid var(--border);
}
.spec-list div {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.spec-list dt { color: var(--muted); font-size: 13.5px; }
.spec-list dd { margin: 0; color: var(--black); font-size: 14px; font-weight: 700; text-align: right; }
.spec-share {
  display: flex; gap: 10px; margin-top: 16px;
}
.spec-share button {
  flex: 1; min-height: 42px;
  border: 1px solid var(--border); border-radius: 10px;
  background: #fff; color: var(--black); font-weight: 700; cursor: pointer;
}
.spec-share button:hover { border-color: var(--primary); color: var(--primary); }

body.share-dialog-open {
  overflow: hidden;
}

.share-dialog {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  place-items: center;
  padding: 20px;
}

.share-dialog.is-open {
  display: grid;
}

.share-dialog-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(17, 17, 17, 0.52);
  backdrop-filter: blur(3px);
}

.share-dialog-panel {
  position: relative;
  width: min(100%, 520px);
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.26);
}

.share-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.share-dialog-head h2 {
  margin: 0;
  color: var(--black);
  font-size: 21px;
}

.share-dialog-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.share-dialog-close {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--black);
  font-size: 24px;
  line-height: 1;
}

.share-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.share-option {
  display: grid;
  min-width: 0;
  min-height: 94px;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--black);
  cursor: pointer;
}

.share-option:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.share-option span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #f1f3f6;
  font-size: 15px;
  font-weight: 900;
}

.share-option strong {
  overflow: hidden;
  max-width: 100%;
  font-size: 12px;
  text-overflow: ellipsis;
}

.share-whatsapp span {
  background: #25d366;
  color: #fff;
}

.share-facebook span {
  background: #1877f2;
  color: #fff;
  font-size: 21px;
}

.share-x span {
  background: #111;
  color: #fff;
}

.share-copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 18px;
}

.share-copy-row input {
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #f5f6f8;
  padding: 0 12px;
  color: var(--muted);
}

.share-copy-row button {
  min-height: 44px;
  border: 0;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  padding: 0 15px;
  font-weight: 800;
}

.share-feedback {
  min-height: 18px;
  margin: 8px 0 0;
  color: #23834b;
  font-size: 12px;
  font-weight: 700;
}

.contact-card { display: grid; gap: 12px; text-align: center; }
.btn-call {
  width: 100%; min-height: 52px;
  border: 0; border-radius: var(--radius-sm);
  background: #1eaf5b; color: #fff;
  font-weight: 800; font-size: 15px; cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}
.btn-call:hover {
  background: #189b50;
}
.btn-call:active { transform: scale(0.985); }
.contact-phone {
  display: block;
  padding: 12px;
  border: 1px solid var(--border); border-radius: 12px;
  font-size: 19px; font-weight: 800; color: var(--black);
}
.contact-note { margin: 0; color: var(--muted); font-size: 12.5px; }

.similar-section {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.similar-section > h2 {
  margin: 0 0 22px;
  text-align: center;
  font-size: 24px; font-weight: 800; color: var(--black);
}
.similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.similar-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.similar-card:hover {
  transform: translateY(-2px);
}
.similar-photo { aspect-ratio: 16 / 10; }
.similar-body { padding: 14px 16px 16px; }
.similar-top { display: flex; justify-content: space-between; align-items: center; }
.similar-top strong { font-size: 15px; color: var(--black); }
.similar-year {
  padding: 2px 9px; border-radius: 999px;
  background: #f1f3f6; color: var(--muted);
  font-size: 12px; font-weight: 700;
}
.similar-sub { margin: 4px 0 0; color: var(--muted); font-size: 13px; min-height: 34px; }
.similar-price { margin-top: 6px; font-size: 19px; font-weight: 800; color: var(--primary); }
.similar-meta {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--border);
  color: var(--muted); font-size: 13px; font-weight: 600;
}

@media (max-width: 920px) {
  .listing-page {
    width: 100%;
    max-width: 100%;
    padding: 12px 10px 40px;
  }

  .listing-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    gap: 14px;
  }

  .listing-main,
  .listing-side,
  .gallery,
  .listing-card,
  .spec-card,
  .contact-card,
  .mobile-spec-slot,
  #desktop-spec-slot {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .listing-side { position: static; }
  .mobile-spec-slot { display: block; }
  .mobile-spec-slot:empty { display: none; }
  #desktop-spec-slot:empty { display: none; }
  .kaporta-wrap { grid-template-columns: 1fr; }
  .lfg-box { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .similar-grid { grid-template-columns: 1fr; }

  .gallery-arrow {
    display: none;
  }

  .gallery {
    padding: 10px;
    border-radius: 12px;
  }

  .gphoto-main {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-thumbs {
    display: flex;
    overflow-x: auto;
    grid-template-columns: none;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .gthumb {
    width: 74px;
    flex: 0 0 74px;
    scroll-snap-align: start;
  }
}
@media (max-width: 520px) {
  .lfg-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 8px;
    padding: 12px;
  }
  .lfg-item { font-size: 12.5px; gap: 6px; }
  .listing-trust { grid-template-columns: 1fr; gap: 12px; }

  .share-dialog {
    align-items: end;
    padding: 0;
  }

  .share-dialog-panel {
    width: 100%;
    padding: 20px 16px calc(18px + env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
  }

  .share-options {
    grid-template-columns: repeat(4, minmax(72px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .share-copy-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1060px) {
  .vehicle-grid {
    width: min(100%, 390px);
    margin-inline: 0;
  }

  .vehicle-card {
    width: 100%;
    max-width: 390px;
    min-height: 0;
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .vehicles-section {
    padding-inline: 6px;
  }

  .vehicle-grid {
    width: min(100%, 350px);
  }

  .vehicle-card {
    max-width: 350px;
    padding: 14px;
  }

  .vehicle-photo {
    aspect-ratio: 16 / 10;
  }
}

.brand-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .brand-logo-img {
    height: 30px;
  }
}

/* ============ Ana sayfa: SaaS bölümleri ============ */

/* Açık düzen: kutu yok, sadece üst-alt hairline ve dikey ayraçlar */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-tile {
  display: grid;
  gap: 4px;
  padding: 24px 20px;
  text-align: center;
}

.stat-tile:not(:last-child) {
  border-right: 1px solid var(--border);
}

.stat-tile strong {
  color: var(--black);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.stat-tile span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.benefits-section,
.compare-section,
.testimonials-section,
.faq-section {
  padding: 84px 0 0;
}

@media (max-width: 720px) {
  .benefits-section,
  .compare-section,
  .testimonials-section,
  .faq-section {
    padding-top: 52px;
  }
}

/* Avantajlar: sağlı-sollu zigzag zaman çizelgesi (ağaç düzeni) */
.timeline {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}

/* Ortadaki dikey çizgi */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  bottom: 14px;
  width: 2px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(180deg, var(--border-strong) 0 7px, transparent 7px 15px);
}

.tl-item {
  position: relative;
  width: 50%;
  box-sizing: border-box;
  padding: 20px 56px;
}

.tl-left {
  margin-left: 0;
}

.tl-right {
  margin-left: 50%;
}

/* Çizgi üstündeki düğüm noktası */
.tl-item::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--bg, #fff);
  border: 2px solid var(--border-strong);
  transform: translateY(-50%);
  z-index: 1;
}

.tl-left::after {
  right: -6.5px;
}

.tl-right::after {
  left: -6.5px;
}

.tl-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Sol öğeler: metin solda, ikon merkeze yakın (sağda) */
.tl-left .tl-card {
  flex-direction: row-reverse;
  text-align: right;
}

/* Sağ öğeler: ikon merkeze yakın (solda), metin sağda */
.tl-right .tl-card {
  flex-direction: row;
  text-align: left;
}

.tl-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--border);
}

.tl-icon svg {
  width: 26px;
  height: 26px;
}

.tl-body h3 {
  margin: 0 0 6px;
  color: var(--black);
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.tl-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}


.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.compare-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
}

.compare-card.is-featured {
  border-color: rgba(214, 40, 40, 0.32);
  background:
    radial-gradient(120% 100% at 90% -15%, rgba(214, 40, 40, 0.09), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fff6f5 100%);
}

.compare-card.is-featured li {
  color: var(--text);
}

.compare-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.compare-card h3 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: 19px;
}

.compare-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.5;
}

.compare-card:not(.is-featured) li {
  color: var(--muted);
}

.compare-x,
.compare-check {
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.compare-x {
  background: var(--soft-bg);
  color: #a1a1aa;
}

.compare-check {
  background: rgba(26, 157, 75, 0.12);
  color: #128a42;
}

.compare-card .primary-button {
  margin-top: 22px;
  min-height: 48px;
}

.testimonial-marquee {
  overflow: hidden;
  padding: 8px 0 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  animation: testimonialScroll 46s linear infinite;
  will-change: transform;
}

.testimonial-track-clone {
  display: contents;
}

@media (hover: hover) {
  .testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
  }
}

@keyframes testimonialScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 10px), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }

  .testimonial-track .testimonial-card {
    flex: 1 1 300px;
    width: auto;
  }

  .testimonial-track-clone {
    display: none;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  width: min(400px, 84vw);
  flex: 0 0 auto;
  padding: 26px 24px;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--soft-bg);
  box-shadow: none;
}

.testimonial-stars {
  color: #ffb320;
  font-size: 15px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 0;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.65;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.testimonial-card figcaption strong {
  display: block;
  color: var(--black);
  font-size: 14px;
}

.testimonial-card figcaption div > span {
  color: var(--muted);
  font-size: 12.5px;
}

/* İki kolonlu SSS: solda tanıtım + görsel, sağda kartlı accordion */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: stretch;
}

.faq-intro {
  display: flex;
  flex-direction: column;
}

.faq-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px 7px 12px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-badge svg {
  width: 15px;
  height: 15px;
  color: #3fd07f;
}

.faq-intro h2 {
  margin: 20px 0 12px;
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--black);
}

.faq-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 360px;
}

.faq-media {
  position: relative;
  flex: 1 1 0;
  min-height: 150px;
  margin-top: 26px;
  border-radius: 18px;
  overflow: hidden;
}

.faq-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.32s ease;
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-item.is-open {
  border-color: var(--border-strong);
}

/* JS yoksa native açılış yine görünsün */
.faq-item[open]:not(.is-open) {
  border-color: var(--border-strong);
}

/* Kutunun yumuşak inişi: 0fr → 1fr yükseklik geçişi */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

/* Cevap metni aşağıdan yukarı süzülerek gelir */
.faq-answer-inner > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-answer-inner > * {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .faq-answer-inner > * {
    transition: none;
  }
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--black);
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--primary);
}

.faq-chevron {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  transition: transform 0.25s ease, border-color 0.2s ease, background 0.2s ease;
}

.faq-chevron::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translate(-50%, -68%) rotate(45deg);
  transition: border-color 0.2s ease;
}

/* JS yokken native açılışta ok dönsün */
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  border-color: var(--muted);
}

/* JS varken ok'u .is-open yönetir; kapanış animasyonu sürerken hemen geri döner */
.faq-js .faq-item[open] .faq-chevron {
  transform: none;
}

.faq-js .faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  border-color: var(--muted);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .faq-intro > p {
    max-width: none;
  }

  .faq-media {
    position: static;
    flex: none;
    min-height: 0;
    margin-top: 22px;
  }

  .faq-media img {
    position: static;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 720px) {
  .faq-item summary {
    padding: 17px 16px;
    font-size: 14.5px;
    gap: 12px;
  }

  .faq-item p {
    padding: 0 16px 18px;
  }
}

.cta-band {
  margin: 84px 0 84px;
}

/* Sinematik CTA bandı: sahne fotoğrafı zemin, sol tarafta koyu geçişle metin */
.cta-band-inner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 340px;
  padding: 56px 52px;
  border-radius: 28px;
  background-color: #0a0e11;
  /* Soldan sağa koyu perde: metin okunur kalsın, sağdaki araçlar açıkta kalsın */
  background-image:
    linear-gradient(
      100deg,
      rgba(6, 10, 13, 0.95) 0%,
      rgba(6, 10, 13, 0.88) 28%,
      rgba(6, 10, 13, 0.5) 50%,
      rgba(6, 10, 13, 0.12) 68%,
      rgba(6, 10, 13, 0) 82%
    ),
    url("assets/cta-banner.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  text-align: left;
}

.cta-band-copy {
  position: relative;
  max-width: 520px;
}

.cta-band-button {
  position: relative;
  overflow: hidden;
}

.cta-band-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 44%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: buttonShine 3.4s ease-in-out infinite;
}

@keyframes buttonShine {
  0%,
  55% {
    left: -70%;
  }
  85%,
  100% {
    left: 130%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-band-button::after,
  .hero-aurora::before,
  .hero-aurora::after {
    animation: none;
  }
}

.cta-band-inner h2 {
  margin: 0;
  max-width: 520px;
  color: #ffffff;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.cta-band-inner p {
  margin: 14px 0 0;
  max-width: 430px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15.5px;
  line-height: 1.6;
}

.cta-band-button {
  min-height: 52px;
  margin-top: 26px;
  padding: 0 32px;
  font-size: 15px;
  background: linear-gradient(180deg, #e23030, #c42222);
  color: #ffffff;
}

.cta-band-button:hover {
  background: linear-gradient(180deg, #ef3a3a, #cf2626);
}

.cta-band-note {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12.5px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .stat-tile {
    padding: 20px 12px;
  }

  .stat-tile:nth-child(2n) {
    border-right: 0;
  }

  .stat-tile:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .stat-tile strong {
    font-size: 26px;
  }

  .stat-tile span {
    font-size: 12px;
  }

  /* Mobilde tek sütun: çizgi solda, ikonlar çizgi üzerinde, metin sağda */
  .timeline {
    max-width: 100%;
  }

  .timeline::before {
    left: 27px;
  }

  .tl-item,
  .tl-left,
  .tl-right {
    width: 100%;
    margin-left: 0;
    padding: 14px 8px 14px 76px;
  }

  .tl-item::after {
    display: none;
  }

  .tl-card,
  .tl-left .tl-card,
  .tl-right .tl-card {
    display: block;
    text-align: left;
  }

  .tl-icon {
    position: absolute;
    left: 0;
    top: 16px;
    width: 54px;
    height: 54px;
  }

  .tl-icon svg {
    width: 24px;
    height: 24px;
  }

  .tl-body h3 {
    font-size: 17px;
  }


  .testimonial-card,
  .compare-card {
    padding: 20px 18px;
  }

  .cta-band {
    margin: 44px 0 52px;
  }

  /* Mobilde sahne altta kalsın, metin üstte okunur olsun */
  .cta-band-inner {
    min-height: 380px;
    align-items: flex-start;
    padding: 36px 22px;
    border-radius: var(--radius-lg);
    text-align: center;
    background-position: 68% 78%;
    background-image:
      linear-gradient(
        180deg,
        rgba(6, 10, 13, 0.95) 0%,
        rgba(6, 10, 13, 0.92) 52%,
        rgba(6, 10, 13, 0.62) 68%,
        rgba(6, 10, 13, 0.15) 88%
      ),
      url("assets/cta-banner.webp");
  }

  .cta-band-copy {
    max-width: 100%;
  }

  .cta-band-inner h2 {
    font-size: 27px;
    margin-inline: auto;
  }

  .cta-band-inner p {
    font-size: 14.5px;
    margin-inline: auto;
  }

  .cta-band-button {
    width: 100%;
    max-width: 360px;
  }
}

/* ---- Scroll reveal ---- */
.js-reveal .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease var(--reveal-delay, 0ms),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.js-reveal .reveal-item.is-revealed {
  opacity: 1;
  transform: none;
}
