/* ============================================
   Bahar Sigorta — Kurumsal Stil Dosyası
   Renkler: #0B192C | #FFD700 | Beyaz/Açık Gri
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@500;600;700;800&display=swap');

:root {
  --navy: #0B192C;
  --navy-light: #122a45;
  --navy-dark: #060f1a;
  --gold: #FFD700;
  --gold-light: #ffe44d;
  --gold-dark: #c9a800;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  --success: #22c55e;
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Arka plan deseni */
.bg-pattern {
  background-color: var(--navy);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 215, 0, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(18, 42, 69, 0.8) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
}

/* Top Bar — Kampanya Şeridi */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--navy-dark), var(--navy-light), var(--navy-dark));
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding: 0.65rem 1rem;
  text-align: center;
}

.campaign-text {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 2.2vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    var(--gold-dark) 0%,
    var(--gold) 25%,
    var(--gold-light) 50%,
    var(--gold) 75%,
    var(--gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.sparkle::before,
.sparkle::after {
  content: '✦';
  display: inline-block;
  margin: 0 0.5rem;
  color: var(--gold);
  animation: pulse-sparkle 2s ease-in-out infinite;
}

.sparkle::after {
  animation-delay: 1s;
}

@keyframes pulse-sparkle {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Glassmorphism Kart */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 215, 0, 0.08);
}

/* Header / Logo */
.logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-text span {
  color: var(--gold);
}

.tagline {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Form Elemanları */
.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.45rem;
  letter-spacing: 0;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-input:focus {
  outline: none;
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.form-input-icon {
  position: absolute;
  left: 0.9rem;
  top: 2.35rem;
  color: var(--gold);
  opacity: 0.8;
  pointer-events: none;
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.error-msg {
  color: #fca5a5;
  font-size: 0.75rem;
  margin-top: 0.3rem;
}

/* Lüks Buton */
.btn-gold {
  position: relative;
  width: 100%;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.45);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-gold:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Adım Geçişleri */
.step-panel {
  display: none;
  animation: fadeSlideIn 0.5s ease forwards;
}

.step-panel.active {
  display: block;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loader */
.loader-container {
  text-align: center;
  padding: 2rem 1rem;
}

.loader-spinner {
  width: 64px;
  height: 64px;
  border: 3px solid rgba(255, 215, 0, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.loader-steps {
  text-align: left;
  max-width: 320px;
  margin: 0 auto;
}

.loader-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  transition: color 0.4s ease;
}

.loader-step.done {
  color: var(--white);
}

.step-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  transition: all 0.4s ease;
}

.loader-step.done .step-icon {
  background: var(--success);
  border-color: var(--success);
  color: white;
}

/* Teklif Sonucu */
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  color: var(--success);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.price-display {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin: 1.5rem 0;
  animation: shimmer 4s linear infinite;
  background-size: 200% auto;
}

/* Ödeme Bölümü */
.payment-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.payment-info-row strong {
  color: var(--gold);
  font-weight: 500;
}

.btn-copy {
  padding: 0.35rem 0.75rem;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 0.4rem;
  color: var(--gold);
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.btn-copy:hover {
  background: rgba(255, 215, 0, 0.25);
}

/* Sürükle-Bırak Alan */
.dropzone {
  border: 2px dashed rgba(255, 215, 0, 0.35);
  border-radius: 0.75rem;
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
  background: rgba(255, 255, 255, 0.02);
}

.dropzone:hover,
.dropzone.dragover {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.05);
}

.dropzone-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.dropzone-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.dropzone-file {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--gold);
}

/* Başarı Mesajı */
.final-message {
  text-align: center;
  padding: 2rem 1rem;
}

.final-message-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.final-message h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

/* Güven Rozetleri */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.trust-badge svg {
  color: var(--gold);
}

/* Admin Panel Stilleri */
.admin-body {
  background: #0d1117;
}

.admin-sidebar {
  background: rgba(11, 25, 44, 0.95);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.admin-nav-item:hover,
.admin-nav-item.active {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.06);
  border-left-color: var(--gold);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.admin-table th {
  text-align: left;
  padding: 0.85rem 1rem;
  background: rgba(255, 215, 0, 0.08);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.admin-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.admin-login-card {
  max-width: 420px;
  width: 100%;
}

.stat-card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

/* Toast Bildirimi */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 0.85rem 1.25rem;
  background: rgba(34, 197, 94, 0.95);
  color: white;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  z-index: 9999;
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s forwards;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes toastIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes toastOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Responsive */
@media (max-width: 640px) {
  .payment-info-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-table-wrapper {
    overflow-x: auto;
  }

  .admin-table {
    min-width: 900px;
  }

  .product-options {
    grid-template-columns: 1fr;
  }

  .payment-method-selector {
    grid-template-columns: 1fr;
  }
}

/* Gizli file input */
.hidden-input {
  display: none;
}

/* ═══════════════════════════════════════════
   INDEX SAYFASI — Premium Hero & Layout
   ═══════════════════════════════════════════ */

/* Dekoratif arka plan */
.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float-orb 12s ease-in-out infinite;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(255, 215, 0, 0.07);
  top: -10%;
  right: -5%;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(18, 42, 69, 0.6);
  bottom: 10%;
  left: -8%;
  animation-delay: -4s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.04);
  top: 40%;
  left: 30%;
  animation-delay: -8s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* Top Bar geliştirilmiş */
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.15);
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.3);
  white-space: nowrap;
}

.campaign-text strong {
  -webkit-text-fill-color: var(--gold-light);
  font-weight: 800;
}

/* Navigasyon */
.site-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 2.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.nav-brand-text em {
  font-style: normal;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 0.5rem;
}

.nav-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.nav-pill.gold {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.25);
  color: var(--gold);
}

/* Hero Layout */
.hero-main {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 2rem 4rem;
  }
}

/* Sol Hero İçerik */
.hero-content {
  animation: fadeSlideIn 0.8s ease forwards;
}

.hero-badge-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.hero-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
}

.hero-badge.gold-outline {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.35);
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0;
}

/* İstatistikler */
.stats-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-txt {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hizmet Kartları */
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.85rem;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: rgba(255, 215, 0, 0.2);
  background: rgba(255, 215, 0, 0.04);
  transform: translateX(4px);
}

.service-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 0.65rem;
  flex-shrink: 0;
}

.service-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}

.service-card span {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* Form Kartı Premium */
.hero-form-section {
  animation: fadeSlideIn 0.8s ease 0.15s both;
}

.form-card-wrapper {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .form-card-wrapper {
    margin: 0 0 0 auto;
  }
}

.glass-card-premium {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 215, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
}

@media (min-width: 640px) {
  .glass-card-premium {
    padding: 2rem 2.25rem;
  }
}

.form-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.form-card-icon svg {
  width: 24px;
  height: 24px;
}

.form-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.form-card-sub {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.2rem;
  font-weight: 400;
}

/* Adım göstergesi */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.75rem;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.step-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.step-line {
  width: 48px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

/* Premium buton */
.btn-gold-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

/* Güven rozetleri geliştirilmiş */
.index-page .trust-badges {
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.index-page .trust-badge {
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  flex: 1;
  text-align: center;
}

.trust-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

/* Loader geliştirilmiş */
.loader-ring {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.loader-ring .loader-spinner {
  width: 80px;
  height: 80px;
  border-width: 3px;
  margin: 0;
}

.loader-inner-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.loader-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin: -1rem 0 2rem;
}

.index-page .loader-steps {
  max-width: 100%;
}

.index-page .loader-step {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.index-page .loader-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}

.index-page .loader-step span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

.index-page .loader-step.done {
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.05);
}

/* Teklif sonucu */
.result-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.result-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.plate-highlight {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 800;
  background: rgba(255, 215, 0, 0.1);
  padding: 0.15rem 0.6rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 215, 0, 0.25);
  margin-right: 0.25rem;
  letter-spacing: 0.06em;
}

.price-box {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.price-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.price-note {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 215, 0, 0.6);
  margin-top: 0.5rem;
  font-style: italic;
}

.section-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.section-title-row h3 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.payment-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.2rem;
}

.dropzone-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.08);
  border: 1px dashed rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--gold);
}

.dropzone-text em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.dropzone-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.35rem;
}

/* Başarı ekranı */
.success-celebration {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.confetti-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: confetti-pop 1s ease infinite;
}

.c1 { background: var(--gold); top: 0; left: -20px; animation-delay: 0s; }
.c2 { background: #22c55e; top: -10px; right: -15px; animation-delay: 0.3s; }
.c3 { background: #60a5fa; bottom: 0; right: -25px; animation-delay: 0.6s; }

@keyframes confetti-pop {
  0%, 100% { transform: scale(1) translateY(0); opacity: 0.7; }
  50% { transform: scale(1.3) translateY(-8px); opacity: 1; }
}

.final-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 340px;
  margin: 0 auto 1.25rem;
}

.final-desc strong {
  color: var(--gold);
}

.final-info-box {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.final-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}

.final-thanks {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 1.25rem 1.5rem;
  margin-top: 1rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 320px;
  line-height: 1.65;
}

.footer-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-badges span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.footer-copy {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── Ürün Seçimi (Trafik / Kasko) ─── */
.product-selector {
  margin-bottom: 1.5rem;
}

.product-selector-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  text-align: center;
}

.product-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.product-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  color: inherit;
  font-family: inherit;
}

.product-option:hover {
  border-color: rgba(255, 215, 0, 0.35);
  background: rgba(255, 215, 0, 0.05);
}

.product-option.selected {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.product-option-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.product-option-title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.product-option-desc {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.product-option-badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.product-option-badge.trafik {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.product-option-badge.kasko {
  background: rgba(255, 215, 0, 0.15);
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.product-error {
  text-align: center;
  margin-top: 0.5rem;
}

/* Teklif sonucu — ürün rozeti & eski fiyat */
.result-product-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.result-product-badge.trafik {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.result-product-badge.kasko {
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.25);
}

.price-original {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  text-align: center;
  margin-bottom: 0.25rem;
}

/* Admin — ürün türü rozeti */
.product-type-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.35rem;
  white-space: nowrap;
}

.badge-trafik {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.badge-kasko {
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold);
}

/* ─── Ödeme Yöntemi (IBAN / Kredi Kartı) ─── */
.payment-method-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.payment-method-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  color: inherit;
  font-family: inherit;
}

.payment-method-btn:hover {
  border-color: rgba(255, 215, 0, 0.35);
  background: rgba(255, 215, 0, 0.05);
}

.payment-method-btn.selected {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.12);
}

.payment-method-icon {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.payment-method-title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.payment-method-desc {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
}

.payment-panel.hidden,
.card-processing.hidden,
.card-failed.hidden {
  display: none;
}

/* Kredi kartı formu */
.card-form-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-chip-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.card-form-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
}

.card-form-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.15rem;
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Kart işlem loader */
.card-processing {
  text-align: center;
  padding: 2rem 1rem;
}

.card-processing .loader-spinner {
  margin: 0 auto 1.25rem;
}

.card-processing-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.card-processing-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* Kart başarısız mesajı */
.card-failed {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 1rem;
  margin-top: 0.5rem;
}

.card-failed-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  border: 2px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.card-failed-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fca5a5;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.card-failed-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 0.75rem;
  text-align: left;
}

.card-failed-text strong {
  color: var(--gold);
}

.card-failed-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.5;
  text-align: left;
}

/* Mobil uyum */
@media (max-width: 640px) {
  .site-nav {
    padding: 0.75rem 1rem;
    margin-top: 2.25rem;
  }

  .nav-links {
    display: none;
  }

  .stats-row {
    justify-content: space-between;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 1;
    text-align: center;
  }

  .top-bar-badge:last-child {
    display: none;
  }

  .hero-main {
    padding-top: 1.25rem;
  }
}
