/* ============================================
   iPhone Alım Platformu — Premium Dark Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --bg-glass: rgba(255, 255, 255, 0.06);
  --bg-glass-strong: rgba(255, 255, 255, 0.1);

  --text-primary: #f5f5f7;
  --text-secondary: #a1a1aa;
  --text-muted: #6b6b76;

  --accent-purple: #a855f7;
  --accent-blue: #3b82f6;
  --accent-pink: #ec4899;
  --accent-green: #22c55e;
  --accent-orange: #f59e0b;
  --accent-red: #ef4444;

  --gradient-primary: linear-gradient(135deg, #a855f7, #3b82f6, #ec4899);
  --gradient-hero: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #ec4899 100%);
  --gradient-card: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
  --gradient-button: linear-gradient(135deg, #a855f7, #6366f1);
  --gradient-success: linear-gradient(135deg, #22c55e, #10b981);

  --border-color: rgba(255, 255, 255, 0.08);
  --border-active: rgba(168, 85, 247, 0.4);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(168, 85, 247, 0.3);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.3);
  border-radius: 3px;
}

/* ── Animated Background ── */
.bg-gradient-animated {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-gradient-animated::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 20% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
  animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(1deg); }
  66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 15, 0.8);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-medium);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 15, 0.95);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-glow);
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

.nav-cta {
  background: var(--gradient-button) !important;
  color: white !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-glow);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-strong);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* ── Hero Section ── */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-purple);
  margin-bottom: 32px;
  animation: fadeInDown 0.6s ease;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero h1 .gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-medium);
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-button);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-glass-strong);
  border-color: var(--border-active);
}

.btn-success {
  background: var(--gradient-success);
  color: white;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.3);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Stats Bar ── */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Section Styles ── */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-purple);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ── How it works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition-medium);
  backdrop-filter: blur(10px);
}

.step-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-button);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-glow);
}

.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Trust Section ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-medium);
  backdrop-filter: blur(10px);
}

.trust-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
}

.trust-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.trust-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   WIZARD — Multi-step Price Calculator
   ============================================ */

.wizard-section {
  padding: 100px 0;
  min-height: 80vh;
}

.wizard-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.wizard-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

/* Progress bar */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

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

.progress-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-muted);
  transition: var(--transition-medium);
}

.progress-dot.active {
  border-color: var(--accent-purple);
  background: var(--gradient-button);
  color: white;
  box-shadow: var(--shadow-glow);
}

.progress-dot.completed {
  border-color: var(--accent-green);
  background: var(--accent-green);
  color: white;
}

.progress-line {
  width: 40px;
  height: 2px;
  background: var(--border-color);
  transition: var(--transition-medium);
}

.progress-line.active {
  background: var(--accent-purple);
}

/* Wizard steps */
.wizard-step {
  display: none;
  animation: fadeInUp 0.4s ease;
}

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

.wizard-step-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.wizard-step-desc {
  text-align: center;
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 32px;
}

/* Model selection cards */
.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.model-card {
  background: var(--bg-glass);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition-medium);
  text-align: center;
}

.model-card:hover {
  background: var(--bg-glass-strong);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-2px);
}

.model-card.selected {
  border-color: var(--accent-purple);
  background: rgba(168, 85, 247, 0.1);
  box-shadow: var(--shadow-glow);
}

.model-card-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.model-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.model-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Sub-model cards */
.submodel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.submodel-card {
  background: var(--bg-glass);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition-medium);
  text-align: center;
}

.submodel-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: var(--bg-glass-strong);
}

.submodel-card.selected {
  border-color: var(--accent-purple);
  background: rgba(168, 85, 247, 0.1);
}

.submodel-card h4 {
  font-size: 15px;
  font-weight: 600;
}

.submodel-card .price-hint {
  font-size: 12px;
  color: var(--accent-green);
  margin-top: 4px;
}

/* Storage selection */
.storage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.storage-card {
  background: var(--bg-glass);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition-medium);
  text-align: center;
}

.storage-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
}

.storage-card.selected {
  border-color: var(--accent-purple);
  background: rgba(168, 85, 247, 0.1);
}

.storage-card .storage-size {
  font-size: 22px;
  font-weight: 700;
}

.storage-card .storage-unit {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Condition questions */
.condition-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.condition-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.condition-item:hover {
  border-color: rgba(168, 85, 247, 0.2);
}

.condition-item.critical {
  border-color: rgba(239, 68, 68, 0.3);
}

.condition-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.condition-icon {
  font-size: 24px;
}

.condition-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.condition-text p {
  font-size: 12px;
  color: var(--text-muted);
}

.condition-text .critical-badge {
  color: var(--accent-red);
  font-weight: 600;
}

/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 56px;
  height: 30px;
  flex-shrink: 0;
}

.toggle-switch input {
  display: none;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent-green);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(26px);
}

/* ── Price Result ── */
.price-result {
  text-align: center;
  padding: 20px 0;
}

.price-result-icon {
  font-size: 64px;
  margin-bottom: 24px;
  animation: bounceIn 0.6s ease;
}

.price-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.price-value {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 900;
  background: var(--gradient-success);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  animation: priceReveal 0.8s ease;
}

@keyframes priceReveal {
  0% { opacity: 0; transform: scale(0.5); }
  50% { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.price-model-info {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.price-disclaimer {
  display: inline-block;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--accent-orange);
  font-size: 13px;
  margin-bottom: 32px;
}

.price-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Rejection screen ── */
.rejection-screen {
  text-align: center;
  padding: 40px 0;
}

.rejection-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.rejection-screen h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent-red);
}

.rejection-screen p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Application Form ── */
.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-label .required {
  color: var(--accent-red);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a1a1aa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(168, 85, 247, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--radius-md);
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-purple);
  margin-top: 2px;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.form-error {
  color: var(--accent-red);
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.form-error.show {
  display: block;
}

/* ── Success Screen ── */
.success-screen {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  font-size: 80px;
  margin-bottom: 24px;
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.success-screen h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.success-screen p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
}

.success-summary {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  margin-bottom: 32px;
}

.success-summary h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

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

.summary-row .label {
  color: var(--text-secondary);
}

.summary-row .value {
  font-weight: 600;
}

/* Wizard navigation */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

/* ── Footer ── */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-purple);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Istanbul Notice ── */
.istanbul-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.istanbul-notice .notice-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.istanbul-notice p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.istanbul-notice strong {
  color: var(--accent-blue);
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 120px 0 60px;
  }

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

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

  .stats-bar {
    gap: 24px;
    flex-wrap: wrap;
  }

  .wizard-container {
    padding: 24px;
    margin: 0 8px;
    border-radius: var(--radius-lg);
  }

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

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

  .price-actions {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .wizard-progress {
    flex-wrap: wrap;
    gap: 4px;
  }

  .progress-line {
    width: 20px;
  }
}

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

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

  .hero h1 {
    font-size: 28px;
  }

  .stat-value {
    font-size: 22px;
  }
}

/* ============================================
   ADMIN PANEL STYLES
   ============================================ */

.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  padding: 24px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  overflow-y: auto;
}

.admin-main {
  flex: 1;
  margin-left: 260px;
  padding: 32px;
  min-height: 100vh;
}

.admin-sidebar .logo {
  margin-bottom: 32px;
}

.sidebar-nav {
  list-style: none;
}

.sidebar-nav li {
  margin-bottom: 4px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.sidebar-nav a:hover {
  background: var(--bg-glass);
  color: var(--text-primary);
}

.sidebar-nav a.active {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-purple);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.sidebar-nav .nav-icon {
  font-size: 18px;
}

/* Admin Header */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.admin-header h1 {
  font-size: 24px;
  font-weight: 700;
}

/* Admin Stats Cards */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.admin-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition-fast);
}

.admin-stat-card:hover {
  border-color: var(--border-active);
}

.admin-stat-card .stat-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.admin-stat-card .stat-val {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}

.admin-stat-card .stat-lbl {
  font-size: 13px;
  color: var(--text-muted);
}

/* Data Table */
.data-table-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.table-header h3 {
  font-size: 16px;
  font-weight: 600;
}

.table-filters {
  display: flex;
  gap: 12px;
  align-items: center;
}

.filter-select {
  padding: 8px 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 13px;
  font-family: inherit;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.filter-select option {
  background: var(--bg-secondary);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.data-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

.data-table tr:hover td {
  background: var(--bg-glass);
}

.data-table tr:last-child td {
  border-bottom: none;
}

/* Status badges */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.status-badge.yeni {
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent-blue);
}

.status-badge.iletisim {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-orange);
}

.status-badge.randevu {
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent-purple);
}

.status-badge.teslim {
  background: rgba(34, 197, 94, 0.15);
  color: var(--accent-green);
}

.status-badge.tamamlandi {
  background: rgba(34, 197, 94, 0.3);
  color: var(--accent-green);
}

.status-badge.iptal {
  background: rgba(239, 68, 68, 0.15);
  color: var(--accent-red);
}

/* Admin price editor */
.price-editor {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.price-editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.price-editor input[type="number"] {
  width: 120px;
  padding: 8px 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  text-align: right;
  outline: none;
}

.price-editor input[type="number"]:focus {
  border-color: var(--accent-purple);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state .empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

/* Admin Mobile */
@media (max-width: 1024px) {
  .admin-sidebar {
    transform: translateX(-100%);
    transition: var(--transition-medium);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .data-table-container {
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .admin-stats {
    grid-template-columns: 1fr;
  }
}

/* ── Toast Notification ── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  animation: slideInRight 0.3s ease;
  display: none;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
}

.toast.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.success {
  background: rgba(34, 197, 94, 0.95);
  color: white;
}

.toast.error {
  background: rgba(239, 68, 68, 0.95);
  color: white;
}

.toast.info {
  background: rgba(59, 130, 246, 0.95);
  color: white;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   V2 — iPhone Images, EasyCep Conditions, WhatsApp
   ============================================ */

/* ── Model Card Images ── */
.model-card-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-medium);
}

.model-card:hover .model-card-image img {
  transform: scale(1.08);
}

/* ── Submodel Images ── */
.submodel-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.submodel-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-medium);
}

.submodel-card:hover .submodel-image img {
  transform: scale(1.08);
}

/* ── Condition Phone Preview ── */
.condition-phone-preview {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.condition-phone-preview img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.condition-phone-info h4 {
  font-size: 16px;
  font-weight: 700;
}

.condition-phone-info p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ── EasyCep Condition Tier Cards ── */
.condition-section-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.condition-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.condition-tier-card {
  background: var(--bg-glass);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.condition-tier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: var(--transition-medium);
}

.condition-tier-card:hover {
  background: var(--bg-glass-strong);
  transform: translateY(-2px);
}

.condition-tier-card.selected {
  border-color: var(--accent-purple);
  background: rgba(168, 85, 247, 0.08);
  box-shadow: var(--shadow-glow);
}

.condition-tier-card.selected::before {
  background: var(--gradient-primary);
}

.condition-tier-card[data-tier="perfect"].selected {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.15);
}
.condition-tier-card[data-tier="perfect"].selected::before {
  background: linear-gradient(135deg, #22c55e, #10b981);
}

.condition-tier-card[data-tier="good"].selected {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
}
.condition-tier-card[data-tier="good"].selected::before {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.condition-tier-card[data-tier="damaged"].selected {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.15);
}
.condition-tier-card[data-tier="damaged"].selected::before {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.tier-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.tier-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.tier-header h4 {
  font-size: 16px;
  font-weight: 700;
}

.tier-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.tier-details {
  list-style: none;
  padding: 0;
}

.tier-details li {
  font-size: 12px;
  color: var(--text-muted);
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}

.tier-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-size: 11px;
}

/* ── Critical Checks ── */
.critical-check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.critical-check-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.critical-check-item:hover {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.08);
}

.critical-check-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.critical-check-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.critical-check-left h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.critical-check-left p {
  font-size: 12px;
  color: var(--text-muted);
}

.critical-check-right {
  position: relative;
  flex-shrink: 0;
}

.critical-check-right input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: var(--accent-green);
  cursor: pointer;
}

/* ── Price Result Phone ── */
.price-result-phone {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-result-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: bounceIn 0.6s ease;
}

/* ── WhatsApp Button ── */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  color: white !important;
  border: none;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.3);
}

.nav-whatsapp {
  color: #25D366 !important;
  font-weight: 600 !important;
}

.nav-whatsapp:hover {
  background: rgba(37, 211, 102, 0.1) !important;
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-medium);
  animation: whatsappPulse 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ── Footer WhatsApp ── */
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  margin-top: 16px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  transition: var(--transition-fast);
}

.footer-whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.4);
}

/* ── KVKK Page ── */
.kvkk-page {
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.kvkk-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px;
  backdrop-filter: blur(20px);
}

.kvkk-content h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kvkk-content .kvkk-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.kvkk-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--accent-purple);
}

.kvkk-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}

.kvkk-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.kvkk-content ul, .kvkk-content ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

.kvkk-content li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
}

.kvkk-content strong {
  color: var(--text-primary);
}

.kvkk-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.kvkk-content th, .kvkk-content td {
  padding: 10px 14px;
  text-align: left;
  font-size: 13px;
  border: 1px solid var(--border-color);
}

.kvkk-content th {
  background: var(--bg-glass);
  font-weight: 600;
  color: var(--text-primary);
}

.kvkk-content td {
  color: var(--text-secondary);
}

/* ── Responsive additions v2 ── */
@media (max-width: 768px) {
  .condition-tier-grid {
    grid-template-columns: 1fr;
  }

  .condition-phone-preview {
    flex-direction: column;
    text-align: center;
  }

  .model-card-image {
    width: 100px;
    height: 100px;
  }

  .submodel-image {
    width: 60px;
    height: 60px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .kvkk-content {
    padding: 24px;
    border-radius: var(--radius-lg);
  }
}
