:root {
  --bg: #101214;
  --bg-elevated: #16191c;
  --surface: #1c2024;
  --surface-hover: #23282d;
  --border: #2c3238;
  --border-strong: #3a4149;
  --text-primary: #f4f5f6;
  --text-secondary: #a7adb4;
  --text-muted: #767d85;
  --accent: #ff7a1a;
  --accent-hover: #ff8f3d;
  --accent-soft: rgba(255, 122, 26, 0.14);
  --accent-contrast: #17110a;
  --success: #35c26f;
  --success-soft: rgba(53, 194, 111, 0.14);
  --trust: #4f9dff;
  --trust-soft: rgba(79, 157, 255, 0.14);
  --danger: #e5484d;
  --danger-soft: rgba(229, 72, 77, 0.14);
  --warning: #e8b13a;
  --warning-soft: rgba(232, 177, 58, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 12px 32px -8px rgba(255, 122, 26, 0.35), 0 0 0 1px rgba(255, 122, 26, 0.28);
  --shadow-glow-sm: 0 8px 20px -6px rgba(255, 122, 26, 0.3), 0 0 0 1px rgba(255, 122, 26, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max-width: 1160px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", Arial, sans-serif;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: none;
}

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

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

button {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 calc(20px + var(--safe-right)) 0 calc(20px + var(--safe-left));
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.2;
}

h3 {
  font-size: 19px;
}

p {
  margin: 0 0 12px;
  color: var(--text-secondary);
}

.lead {
  font-size: 18px;
  color: var(--text-secondary);
}

/* ---------- Layout: header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(16, 18, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding-top: var(--safe-top);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

@font-face {
  font-family: 'Kaushan Script';
  src: url('/fonts/kaushan-script.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Racing Sans One';
  src: url('/fonts/racing-sans-one.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

.brand-wordmark {
  display: inline-block;
  font-family: 'Racing Sans One', cursive;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.01em;
  padding-top: 4px;
}

.brand-wordmark .bw-motor {
  color: var(--text-primary);
}

.brand-wordmark .bw-stok {
  color: var(--accent);
}

.brand svg {
  width: 34px;
  height: 34px;
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease);
}

.brand:hover svg {
  transform: rotate(-6deg) scale(1.05);
  filter: drop-shadow(0 0 10px rgba(255, 122, 26, 0.5));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.18s var(--ease);
  padding-bottom: 2px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: right 0.22s var(--ease);
}

.main-nav a:hover,
.main-nav a:active {
  color: var(--text-primary);
}

.main-nav a:hover::after {
  right: 0;
}

.mobile-toggle-wrap {
  display: none;
}

.nav-toggle {
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.nav-toggle:active {
  background: var(--surface-hover);
  transform: scale(0.94);
}

.main-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-hover), var(--accent));
  color: var(--accent-contrast);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 6px 16px -6px rgba(255, 122, 26, 0.55);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ff9c4d, var(--accent-hover));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22) inset, 0 10px 24px -6px rgba(255, 122, 26, 0.65);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  background: var(--surface-hover);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: linear-gradient(180deg, #2fe374, #25d366);
  color: #06210f;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 6px 16px -6px rgba(37, 211, 102, 0.55);
}

.btn-whatsapp:hover {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 10px 24px -6px rgba(37, 211, 102, 0.65);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 9px 16px;
  min-height: 40px;
  font-size: 13px;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 40px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 122, 26, 0.14), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(79, 157, 255, 0.1), transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-badges {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--trust-soft);
  border: 1px solid rgba(79, 157, 255, 0.3);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.trust-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 157, 255, 0.55);
  box-shadow: 0 8px 20px -6px rgba(79, 157, 255, 0.35);
}

.trust-badge-icon {
  font-size: 15px;
}

.hero-visual {
  background: var(--surface);
  border: 1px solid rgba(255, 122, 26, 0.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 122, 26, 0.06);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.hero-visual:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-3px);
}

.hero-visual-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}

.hero-visual-header .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #25d366;
}

.chat-bubble {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 14px;
  margin-bottom: 10px;
}

.chat-bubble.me {
  background: var(--accent-soft);
  border-color: rgba(255, 122, 26, 0.35);
}

.chat-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ---------- Cards / grid ---------- */
.grid {
  display: grid;
  gap: 20px;
}

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.5), transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.22s var(--ease);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, 0.35);
  box-shadow: var(--shadow-glow);
}

.card:hover::before {
  opacity: 1;
}

a.card:active {
  transform: scale(0.98);
  border-color: rgba(255, 122, 26, 0.4);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  transition: transform 0.22s var(--ease), background 0.22s var(--ease);
}

.card:hover .card-icon {
  background: var(--accent);
  color: var(--accent-contrast);
  transform: scale(1.08);
}

/* ---------- Sik gelen talepler ---------- */
.part-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.part-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.part-chip:hover {
  border-color: rgba(255, 122, 26, 0.4);
  background: var(--surface-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-sm);
}

.part-chip:active {
  transform: scale(0.97);
  border-color: rgba(255, 122, 26, 0.45);
  background: var(--accent-soft);
}

.part-chip .emoji {
  font-size: 22px;
  transition: transform 0.25s var(--ease);
}

.part-chip:hover .emoji {
  transform: scale(1.15) rotate(-4deg);
}

.part-chip strong {
  display: block;
  font-size: 14px;
}

.part-chip span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  position: relative;
  padding-left: 4px;
  border-radius: var(--radius-md);
  transition: transform 0.2s var(--ease);
}

.step:hover {
  transform: translateY(-2px);
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-contrast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 8px 18px -6px rgba(255, 122, 26, 0.5);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.step:hover .step-number {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 10px 24px -6px rgba(255, 122, 26, 0.7);
  transform: scale(1.08);
}

/* ---------- Request form ---------- */
.form-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.form-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}

.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.form-progress-step {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--border);
}

.form-progress-step.active {
  background: var(--accent);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.field .hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.field input[type="text"],
.field input[type="number"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="password"],
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.15s ease;
}

.field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23a7adb4' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field-error {
  color: var(--danger);
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

.password-field-wrap {
  position: relative;
}

.password-field-wrap input {
  padding-right: 44px !important;
}

.password-toggle-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}

.password-toggle-btn:hover {
  color: var(--text-primary);
  background: var(--surface-hover);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
}

.field.has-error .field-error {
  display: block;
}

.field .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

.field .consent-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

.field .consent-label a {
  color: var(--accent);
  text-decoration: underline;
}

.field.has-error .consent-label {
  color: var(--danger);
}

.pref-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pref-option input {
  display: none;
}

.pref-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-secondary);
  margin: 0;
  touch-action: manipulation;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease), box-shadow 0.18s var(--ease), transform 0.18s var(--ease);
}

.pref-option label:active {
  transform: scale(0.97);
}

.pref-option label:hover {
  border-color: rgba(255, 122, 26, 0.45);
  color: var(--text-primary);
  box-shadow: var(--shadow-glow-sm);
  transform: translateY(-2px);
}

.pref-option input:checked + label {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: var(--shadow-glow-sm);
}

.upload-drop {
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.upload-drop:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: var(--shadow-glow-sm);
}

.upload-drop:active {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.upload-drop input {
  display: none;
}

.upload-preview {
  margin-top: 14px;
  display: none;
  align-items: center;
  gap: 12px;
}

.upload-preview img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.optional-toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 14px;
}

.optional-fields {
  display: none;
}

.optional-fields.open {
  display: block;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.form-success .success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}

.form-alert {
  background: var(--danger-soft);
  border: 1px solid rgba(229, 72, 77, 0.4);
  color: #ffb3b5;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.faq-item:hover {
  border-color: rgba(255, 122, 26, 0.3);
  box-shadow: var(--shadow-glow-sm);
}

.faq-item.open {
  border-color: rgba(255, 122, 26, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  min-height: 44px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-align: left;
  touch-action: manipulation;
  transition: background 0.15s ease;
}

.faq-question:active {
  background: var(--surface-hover);
}

.faq-question .icon {
  color: var(--accent);
  transition: transform 0.2s ease;
  font-size: 18px;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 20px;
}

.faq-item.open .faq-answer {
  max-height: 320px;
  padding: 0 20px 20px;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, #211308, #171a1d);
  border: 1px solid rgba(255, 122, 26, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: 0 0 60px -20px rgba(255, 122, 26, 0.25);
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  top: -60%;
  left: 50%;
  width: 60%;
  padding-top: 60%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 122, 26, 0.16), transparent 70%);
  pointer-events: none;
}

/* ---------- Sticky floating CTA ---------- */
.sticky-cta {
  position: fixed;
  right: calc(20px + var(--safe-right));
  bottom: calc(20px + var(--safe-bottom));
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.sticky-cta .btn {
  box-shadow: var(--shadow-lg);
}

/* ---------- Footer ---------- */
.trust-strip {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 22px 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.trust-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-strip-item .icon {
  font-size: 16px;
}

.trust-strip-item a {
  color: inherit;
  transition: color 0.15s ease;
}

.trust-strip-item a:hover {
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.footer-grid a:hover,
.footer-grid a:active {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- Simple pages (about, legal, supplier) ---------- */
.page-hero {
  padding: 56px 0 24px;
  text-align: center;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose h2 {
  margin-top: 36px;
}

.placeholder-banner {
  background: var(--warning-soft);
  border: 1px solid rgba(232, 177, 58, 0.4);
  color: var(--warning);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.flow-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 16px;
}

.flow-list li {
  display: flex;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.flow-list li:hover {
  border-color: rgba(255, 122, 26, 0.35);
  box-shadow: var(--shadow-glow-sm);
  transform: translateY(-2px);
}

.flow-list .flow-index {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.flow-list li:hover .flow-index {
  background: var(--accent);
  color: var(--accent-contrast);
  transform: scale(1.1);
}

/* ---------- Badges / status ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.badge-new { background: var(--accent-soft); color: var(--accent); }
.badge-progress { background: var(--warning-soft); color: var(--warning); }
.badge-done { background: var(--success-soft); color: var(--success); }
.badge-cancelled { background: var(--danger-soft); color: var(--danger); }

/* ---------- Detail page (talep-detay) ---------- */
.detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 640px;
  margin: 0 auto;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row span:first-child {
  color: var(--text-muted);
}

.detail-image {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.contact-highlight {
  background: var(--accent-soft);
  border: 1px solid rgba(255, 122, 26, 0.4);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin: 18px 0;
}

.contact-highlight-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contact-highlight-name {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.contact-highlight-phone {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.contact-highlight-phone:hover {
  color: var(--accent);
}

/* ---------- Admin ---------- */
.admin-shell {
  min-height: 100vh;
  background: var(--bg);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.admin-body {
  padding: 28px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.admin-tab {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease), background 0.18s var(--ease);
}

.admin-tab:hover:not(.active) {
  border-color: var(--accent);
  color: var(--text-primary);
}

.admin-tab.active {
  background: var(--accent);
  color: var(--accent-contrast);
  border-color: var(--accent);
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.stat-card h3 {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.stat-summary-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}

.stat-bar-row:last-child {
  margin-bottom: 0;
}

.stat-bar-label {
  width: 130px;
  flex-shrink: 0;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stat-bar-track {
  flex: 1;
  background: var(--bg-elevated);
  border-radius: 4px;
  height: 10px;
  overflow: hidden;
}

.stat-bar-fill {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
}

.stat-bar-count {
  width: 30px;
  text-align: right;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}

.stat-keyword-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  margin: 0 8px 8px 0;
}

.admin-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: auto;
}

table.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  vertical-align: middle;
}

.admin-table th:first-child,
.admin-table td:first-child {
  width: 36px;
  padding-right: 0;
}

.admin-table .row-checkbox,
.admin-table th:first-child input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--accent);
}

.admin-table tbody tr.row-selected {
  background: var(--accent-soft);
}

.admin-table tbody tr {
  transition: background 0.15s var(--ease);
}

.admin-table tbody tr:hover {
  background: var(--surface-hover);
}

.admin-table th {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.admin-thumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.admin-select {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 600;
}

.admin-toolbar {
  margin-bottom: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.admin-bulk-bar {
  margin-bottom: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 122, 26, 0.3);
  border-radius: var(--radius-sm);
}

.admin-bulk-bar #requestsSelectedCount,
.admin-bulk-bar #suppliersSelectedCount {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 70px;
}

.btn-danger {
  background: var(--danger);
  color: #ffffff;
  border-color: var(--danger);
}

.btn-danger:hover:not(:disabled) {
  background: #ff5c60;
}

.btn-danger:disabled,
.admin-bulk-bar .btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.admin-search-input {
  flex: 1;
  min-width: 200px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-family: inherit;
}

.admin-search-input:focus {
  outline: none;
  border-color: var(--accent);
}

.admin-search-input::placeholder {
  color: var(--text-muted);
}

.admin-login-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-login-card {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ---------- Admin detay modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 10, 0.7);
  backdrop-filter: blur(3px);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.modal-close:hover {
  background: var(--surface-hover);
  border-color: var(--accent);
}

.modal-image {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 18px;
  cursor: zoom-in;
  transition: border-color 0.15s ease;
}

.modal-image:hover {
  border-color: var(--accent);
}

.modal-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 120px;
  border-radius: var(--radius-md);
  border: 1.5px dashed var(--border-strong);
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 18px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
}

.lightbox-content img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: var(--radius-md);
  display: block;
}

.lightbox-content .modal-close {
  top: -14px;
  right: -14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .main-nav {
    display: none;
  }
  .main-nav.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(68px + var(--safe-top));
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    padding: 16px calc(20px + var(--safe-right)) calc(16px + var(--safe-bottom)) calc(20px + var(--safe-left));
    border-bottom: 1px solid var(--border);
    gap: 8px;
    z-index: 59;
    max-height: calc(100vh - 68px - var(--safe-top));
    overflow-y: auto;
  }
  .mobile-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-toggle {
    display: flex;
  }
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .pref-options {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-panel {
    padding: 20px;
  }
  .cta-band {
    padding: 32px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sticky-cta {
    right: calc(14px + var(--safe-right));
    bottom: calc(14px + var(--safe-bottom));
  }
  .hero {
    padding-top: 32px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .card:hover,
  .part-chip:hover,
  .faq-item:hover,
  .flow-list li:hover,
  .btn-secondary:hover,
  .trust-badge:hover,
  .step:hover {
    transform: none;
    box-shadow: none;
  }
  .card:hover::before {
    opacity: 0;
  }
  .card:hover .card-icon,
  .step:hover .step-number,
  .flow-list li:hover .flow-index,
  .part-chip:hover .emoji {
    transform: none;
    background: var(--accent-soft);
    color: var(--accent);
  }
}
