/* ==========================================
   SOYAICIM — Premium Design System v2
   Typography: Cormorant Garamond + Space Grotesk
   ========================================== */

/* CSS Custom Properties */
:root {
  /* Colors — refined, deeper palette */
  --color-bg: #08080d;
  --color-bg-secondary: #0e0e15;
  --color-bg-card: #13131c;
  --color-bg-card-hover: #191924;
  --color-surface: #1a1a26;
  /* Kenarlar — DESIGN.md §3. Eski 0.06 alfa neredeyse görünmezdi;
     kartın nerede bittiği belli olmuyordu. */
  --color-border: rgba(212, 180, 120, 0.13);
  --color-border-hover: rgba(212, 180, 120, 0.22);
  --color-border-subtle: rgba(255, 255, 255, 0.07);
  --color-border-focus: #c9a84c;

  /* Metin — parantez içindeki değerler --color-bg üzerindeki kontrast oranı */
  --color-text: #eae8e4;            /* 16.3:1 */
  --color-text-secondary: #9e9bac;  /*  7.4:1 */
  --color-text-muted: #7d7a8c;      /*  4.8:1 — eski #5f5d6e yalnızca 3.1:1
                                       veriyordu, WCAG AA'nın altında. Altbilgi
                                       ve yasal metinler bu renkle yazılıyor. */
  
  --color-primary: #c9a84c;
  --color-primary-light: #dfc070;
  --color-primary-dark: #a8893a;
  --color-primary-glow: rgba(201, 168, 76, 0.25);
  --color-primary-subtle: rgba(201, 168, 76, 0.06);
  
  --color-accent: #b8954a;
  --color-success: #6ee7a0;
  --color-danger: #f87171;
  --color-warning: #fbbf24;
  --color-info: #7dd3fc;    /* rehber adımları, bilgilendirme */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #c9a84c 0%, #dfc070 40%, #b8954a 100%);
  --gradient-text: linear-gradient(135deg, #dfc070 0%, #c9a84c 50%, #e8d090 100%);
  --gradient-hero: linear-gradient(180deg, rgba(8,8,13,0) 0%, rgba(8,8,13,0.6) 40%, rgba(8,8,13,0.95) 80%, rgba(8,8,13,1) 100%);
  --gradient-card: linear-gradient(160deg, rgba(201,168,76,0.03) 0%, transparent 60%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
  --gradient-section: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
  
  /* Typography — the heart of premium feel */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing — more generous for luxury feel */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 7rem;
  --space-5xl: 10rem;
  
  /* Köşeler — DESIGN.md §6. Ölçek yukarı kaydırıldı: büyük yarıçap
     "dokunulabilir ve yumuşak" hissini taşıyan asıl unsur. */
  --radius-sm: 8px;
  --radius-md: 12px;    /* girdi alanı, küçük kart */
  --radius-lg: 18px;    /* kart */
  --radius-xl: 26px;    /* büyük panel, form kabı */
  --radius-full: 9999px;

  /* Gölgeler — yükseklik anlatır, dekor değil */
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-raised: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(201, 168, 76, 0.08);
  --shadow-button: 0 4px 20px rgba(201, 168, 76, 0.25);

  /* Hareket — DESIGN.md §8 */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 140ms;
  --dur-base: 260ms;
  --dur-slow: 520ms;

  --transition-fast: var(--dur-fast) var(--ease-out);
  --transition-base: var(--dur-base) var(--ease-out);
  --transition-slow: var(--dur-slow) var(--ease-out);
  --transition-spring: var(--dur-base) var(--ease-spring);

  /* Dokunma hedefi ve okuma genişliği */
  --tap-min: 48px;
  --measure: 62ch;
}

/* Hareket hassasiyetine saygı — DESIGN.md §8 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

/* Selection color */
::selection {
  background: rgba(201, 168, 76, 0.25);
  color: var(--color-text);
}

/* Decorative line used across sections */
.ornament {
  display: block;
  margin: 0 auto var(--space-xl);
  width: 60px;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.5;
}

/* Container */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(8, 8, 13, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  position: relative;
}

.logo:hover { color: var(--color-text); }

.logo-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.4));
}

.logo-text {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-text);
}

.logo-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tagline {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-style: italic;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  position: absolute;
  bottom: -10px;
  right: 0;
}

.nav-links {
  display: flex;
  gap: var(--space-2xl);
}

.nav-links a {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition-base);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav-links a:hover { color: var(--color-primary-light); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  padding: 0.5rem 1.4rem !important;
  font-size: 0.8rem !important;
  letter-spacing: 1px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ==========================================
   BUTTONS — refined luxury
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 1.7rem;
  min-height: var(--tap-min);          /* dokunma hedefi — DESIGN.md §9 */
  border-radius: var(--radius-full);   /* hap — DESIGN.md §7 */
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #08080d;
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
  color: #08080d;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-light);
  border: 1px solid var(--color-primary-dark);
}

.btn-outline:hover {
  background: var(--color-primary-subtle);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  color: var(--color-primary-light);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
  color: var(--color-text);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 0.88rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.btn-icon {
  font-size: 1.1em;
}

/* ==========================================
   HERO SECTION — cinematic, editorial
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: saturate(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-3xl);
  align-items: center;
  padding: calc(var(--space-5xl) + 20px) 0 var(--space-3xl);
  min-height: 100vh;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.35rem 1.4rem;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-2xl);
  animation: fadeInDown 0.8s ease;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2.5s ease infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease 0.2s both;
  letter-spacing: -0.01em;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 540px;
  margin: 0 0 var(--space-2xl);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  animation: fadeInUp 0.8s ease 0.8s both;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--color-primary-light);
  letter-spacing: -1px;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--color-border-hover), transparent);
}

/* Hero Form — Right Column */
.hero-form-wrapper {
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-order-form {
  background: rgba(19, 19, 28, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero-order-form::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.5;
}

.hero-form-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.hero-form-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 4px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-form-header p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

.hero-order-form .form-group {
  margin-bottom: var(--space-md);
}

.hero-order-form .file-upload {
  padding: var(--space-lg);
}

.hero-order-form .file-upload-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.hero-order-form .file-upload-text {
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.hero-order-form .form-security {
  margin-top: var(--space-sm);
  font-size: 0.68rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: float 3s ease infinite;
  z-index: 1;
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 1px solid var(--color-text-muted);
  border-bottom: 1px solid var(--color-text-muted);
  transform: rotate(45deg);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

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

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

/* ==========================================
   SECTIONS (General) — editorial spacing
   ========================================== */
.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================
   HOW IT WORKS — elegant cards
   ========================================== */
.how-it-works {
  background: var(--gradient-section);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  justify-content: center;
}

.step-card {
  flex: 1;
  max-width: 340px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: left;
  position: relative;
  transition: all var(--transition-base);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.step-card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border-hover);
  transform: translateY(-6px);
}

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

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  position: absolute;
  top: 8px;
  right: 16px;
  line-height: 1;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.step-card p {
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.step-hint {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-primary-subtle);
  border-left: 2px solid rgba(201, 168, 76, 0.2);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.step-connector {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  opacity: 0.2;
  padding-top: 5rem;
}

/* ==========================================
   FEATURES — refined grid
   ========================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

.feature-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.feature-card:hover::after {
  width: 60%;
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-lg);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.feature-card p {
  color: var(--color-text-secondary);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ==========================================
   SAMPLE REPORT — showcase
   ========================================== */
.sample {
  background: var(--gradient-section);
}

.sample-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
  align-items: center;
}

.sample-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.sample-image {
  width: 100%;
  border-radius: var(--radius-xl);
  transition: transform var(--transition-slow);
}

.sample-image-wrapper:hover .sample-image {
  transform: scale(1.03);
}

.sample-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom right, rgba(201, 168, 76, 0.08), transparent 70%);
  pointer-events: none;
}

.sample-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.sample-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.sample-feature:hover {
  border-color: var(--color-border-hover);
  background: var(--color-bg-card-hover);
  transform: translateX(4px);
}

.sf-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.sample-feature strong {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}

.sample-feature p {
  color: var(--color-text-secondary);
  font-size: 0.82rem;
  font-weight: 300;
  margin: 0;
}

/* ==========================================
   PRICING — luxury tier cards
   ========================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: stretch;
}

.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-hover);
}

.pricing-card.popular {
  border-color: rgba(201, 168, 76, 0.3);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, var(--color-bg-card) 50%);
  box-shadow: var(--shadow-glow);
  transform: scale(1.04);
}

.pricing-card.popular:hover {
  transform: scale(1.04) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #08080d;
  padding: 0.25rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.pricing-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.pricing-price {
  margin-bottom: var(--space-xl);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: -2px;
}

.price-period {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-secondary);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li span {
  font-size: 1rem;
  color: var(--color-success);
  flex-shrink: 0;
  width: 20px;
}

.pricing-features li.disabled {
  opacity: 0.3;
}

.pricing-features li.disabled span {
  color: var(--color-text-muted);
}

.pricing-note {
  text-align: center;
  margin-top: var(--space-2xl);
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 300;
}

/* ==========================================
   ORDER FORM — refined inputs
   ========================================== */
.order {
  background: var(--gradient-section);
}

.order-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.order-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-2xl);
  position: relative;
}

.order-form::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.4;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* Etiket girdinin ÜSTÜNDE durur; placeholder etiketin yerini almaz.
   Placeholder yazmaya başlayınca kaybolur ve kullanıcı ne doldurduğunu
   unutur — form terkinin klasik sebebi. DESIGN.md §7 */
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  min-height: var(--tap-min);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;      /* 16px altı iOS'ta otomatik yakınlaştırma tetikler */
  font-weight: 400;     /* koyu zeminde 300 inceldiği için okunmuyor */
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-border-focus);
  box-shadow: 0 0 0 3px var(--color-primary-subtle);
}

input[aria-invalid="true"],
input.hatali {
  border-color: var(--color-danger);
}

/* Hata yalnızca renkle anlatılmaz; metin eşlik eder. DESIGN.md §10 */
.alan-hatasi {
  display: block;
  margin-top: var(--space-xs);
  font-size: 0.82rem;
  color: var(--color-danger);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
  font-weight: 400;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%235f5d6e' d='M5 7L0 2h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select option {
  background: var(--color-bg-card);
  color: var(--color-text);
}

/* File Upload */
.file-upload {
  border: 1px dashed rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  background: rgba(201, 168, 76, 0.01);
}

.file-upload:hover,
.file-upload.drag-over {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.03);
}

.file-upload-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  opacity: 0.7;
}

.file-upload-text {
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  font-weight: 300;
  margin-bottom: var(--space-sm);
}

.file-upload-text span {
  color: var(--color-primary-light);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.file-upload-hint {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

.file-preview {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-primary-subtle);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-sm);
}

.file-preview-icon {
  font-size: 1.3rem;
}

.file-preview-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-primary-light);
}

.file-remove {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.file-remove:hover {
  color: var(--color-danger);
  background: rgba(248, 113, 113, 0.1);
}

/* KVKK Checkboxes */
.kvkk-group {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-subtle);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid var(--color-border-hover);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-top: 1px;
}

.checkbox-label input:checked + .checkmark {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.checkbox-label input:checked + .checkmark::after {
  content: '✓';
  color: #08080d;
  font-size: 0.65rem;
  font-weight: 900;
}

.link {
  color: var(--color-primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-security {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-top: var(--space-lg);
  letter-spacing: 0.5px;
}

/* ==========================================
   TESTIMONIALS — editorial quotes
   ========================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-primary);
  opacity: 0.08;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.testimonial-stars {
  font-size: 0.8rem;
  margin-bottom: var(--space-lg);
  letter-spacing: 4px;
}

.testimonial-card > p {
  font-family: var(--font-display);
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-subtle);
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #08080d;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================
   FAQ — clean accordion
   ========================================== */
.faq {
  background: var(--gradient-section);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) 0;
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary-light);
}

.faq-toggle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: var(--space-xl);
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ==========================================
   CTA BANNER — dramatic
   ========================================== */
.cta-banner {
  background: var(--gradient-glow), var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-5xl) 0;
}

.cta-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.cta-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ==========================================
   FOOTER — minimal, elegant
   ========================================== */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 300;
  margin-top: var(--space-lg);
  max-width: 260px;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.footer-links a {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 300;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

.footer-disclaimer {
  margin-top: var(--space-sm);
  font-size: 0.68rem !important;
  opacity: 0.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 5rem;
    --space-5xl: 6rem;
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 8, 13, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    z-index: 999;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 3px;
  }
  
  .btn-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  
  .hero-split {
    grid-template-columns: 1fr;
    padding-top: 100px;
    min-height: auto;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-subtitle {
    margin: 0 auto var(--space-2xl);
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-form-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 7vw, 3.2rem);
  }
  
  .steps-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .step-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }
  
  .step-card {
    max-width: 100%;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-6px);
  }
  
  .sample-showcase {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-xl);
    border-top: none;
    padding-top: 0;
  }
  
  .stat-divider {
    width: 40px;
    height: 1px;
    background: var(--color-border);
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .order-form {
    padding: var(--space-xl);
  }
  
  .logo-tagline {
    display: none;
  }
}

/* ==========================================
   UPLOAD PROGRESS BAR
   ========================================== */
.upload-progress {
  margin-top: var(--space-md);
  text-align: center;
}

.progress-track {
  width: 100%;
  height: 6px;
  background: var(--color-surface);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: var(--space-xs);
}

.progress-fill {
  height: 100%;
  width: 0;
  background: var(--gradient-primary);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 0.72rem;
  color: var(--color-primary);
  letter-spacing: 1px;
}

/* Dosya sunucuya ulaştı, sıra ayrıştırmada. Çubuk %100'de duruyor ama
   iş sürüyor; sabit çubuk "takıldı" izlenimi veriyordu. Akan parıltı,
   metin değişimiyle birlikte işin devam ettiğini gösteriyor. */
.progress-fill.ilerleme-calisiyor {
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  ), var(--gradient-primary);
  background-size: 200% 100%, 100% 100%;
  animation: ilerleme-akis 1.4s linear infinite;
}

@keyframes ilerleme-akis {
  from { background-position: -100% 0, 0 0; }
  to   { background-position:  200% 0, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .progress-fill.ilerleme-calisiyor { animation: none; }
}

/* Yarım kalan sipariş şeridi — formun hemen üstünde. */
.devam-serit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 1rem 1.15rem;
  margin-bottom: var(--space-md);
  border: 1px solid var(--color-border-hover);
  border-left: 3px solid var(--color-primary);
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.06);
}

.devam-metin { display: flex; flex-direction: column; gap: 0.2rem; }
.devam-metin strong { color: var(--color-text); font-size: 0.95rem; }
.devam-metin span   { color: var(--color-text-secondary); font-size: 0.82rem; }

.devam-dugmeler { display: flex; align-items: center; gap: 0.85rem; }

.btn-metin {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-text-muted);
  font-family: inherit;
  font-size: 0.8rem;
  text-decoration: underline;
  cursor: pointer;
}
.btn-metin:hover { color: var(--color-text-secondary); }

.istege-bagli {
  color: var(--color-text-muted);
  font-size: 0.78em;
  letter-spacing: 0;
  text-transform: none;
}

/* Price Summary */
.price-summary {
  text-align: center;
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  background: var(--color-primary-subtle);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-primary-light);
}

/* ==========================================
   TOAST NOTIFICATIONS
   ========================================== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.4rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  max-width: 400px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.toast-success { border-color: rgba(110, 231, 160, 0.3); }
.toast-error { border-color: rgba(248, 113, 113, 0.3); }
.toast-warning { border-color: rgba(251, 191, 36, 0.3); }

.toast-icon { font-size: 1.1rem; flex-shrink: 0; }

.toast-message {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-text);
  flex: 1;
}

.toast-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.toast-close:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 480px) {
  .toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}

/* ==========================================
   BELGE REHBERİ — DESIGN.md §7
   Sayfanın en kritik bileşeni: belgeyi indiremeyen kullanıcı satın alamaz.
   Bu yüzden arayüz dilinde yazıldı — süs yok, netlik var.
   ========================================== */
.belge-rehberi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.belge-adim {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.belge-adim-no {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
}

.belge-adim p {
  font-size: 1rem;          /* burada kucuk punto yok */
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

.belge-adim img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  margin-top: auto;
}

/* En sik yapilan hata: uygulamadan indirmeye calismak. Ayri ve gorunur. */
.belge-uyari {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(125, 211, 252, 0.07);
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.belge-uyari strong { color: var(--color-info); }

.belge-baglanti {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  min-height: var(--tap-min);
}

@media (max-width: 820px) {
  .belge-rehberi { grid-template-columns: 1fr; }
}

/* ==========================================
   ONAY KUTULARI — uc ayri riza
   Etnik koken cikarimi KVKK m.6 ozel nitelikli veri; ayri riza gerekiyor.
   ========================================== */
.riza-listesi {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.riza-satiri {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  min-height: var(--tap-min);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.riza-satiri input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-height: 0;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.riza-satiri a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================
   OKUMA GENISLIGI — yasal sayfalar, uzun metin
   ========================================== */
.okuma-alani {
  max-width: var(--measure);
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.8;
}

.okuma-alani h2 { margin-top: var(--space-2xl); }
.okuma-alani p  { margin-bottom: var(--space-lg); }

/* ==========================================
   TEK FIYAT — DESIGN.md §11 (arayuz dili)
   ========================================== */
.tekil-fiyat {
  max-width: 620px;
  margin-inline: auto;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
}

.tekil-fiyat-tutar { margin-bottom: var(--space-xl); }

.tekil-fiyat-rakam {
  display: block;
  font-family: var(--font-body);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tekil-fiyat-not {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

.tekil-fiyat-liste {
  list-style: none;
  text-align: left;
  margin: 0 0 var(--space-xl);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.tekil-fiyat-liste li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.tekil-fiyat-liste li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.tekil-fiyat-liste strong { color: var(--color-text); font-weight: 600; }

.tekil-fiyat-uyari {
  margin-top: var(--space-lg);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ==========================================
   DURUSTLUK BOLUMU — beklenti yonetimi
   Iade ve chargeback'i azaltan sey net beklenti.
   ========================================== */
.dogrusu-izgara {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 940px;
  margin-inline: auto;
}

.dogrusu-kart {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.dogrusu-kart h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-subtle);
}

.dogrusu-evet h3 { color: var(--color-success); }
.dogrusu-hayir h3 { color: var(--color-text-secondary); }

.dogrusu-kart ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.dogrusu-kart li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.dogrusu-kart li strong { color: var(--color-text); font-weight: 600; }

.dogrusu-evet li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.dogrusu-hayir li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: var(--color-text-muted);
  font-weight: 700;
}

.dogrusu-not {
  max-width: var(--measure);
  margin: var(--space-2xl) auto 0;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ==========================================
   HERO CTA
   ========================================== */
.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

@media (max-width: 820px) {
  .dogrusu-izgara { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1 1 100%; }
}

/* Sirket bilgileri — mesafeli satis zorunlulugu */
.footer-sirket {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-subtle);
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}
.footer-sirket p { margin: 0 0 0.2rem; }
.footer-sirket strong { color: var(--color-text-secondary); }

/* Odeme logolari — iyzico kriterleri md. 6-7 */
.footer-odeme {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-subtle);
  display: flex;
  justify-content: center;
}
.footer-odeme img {
  max-width: 320px;
  width: 100%;
  height: auto;
  opacity: 0.85;
}

/* ==========================================================================
   YASAL SAYFALAR — DESIGN.md §11 (arayuz dili, okuma odakli)
   ========================================================================== */
.yasal-sayfa {
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: var(--space-4xl);
}
.yasal-baslik {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}
.yasal-surum {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border-subtle);
}
.okuma-alani h2 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: var(--space-2xl) 0 var(--space-md);
  color: var(--color-text);
}
.okuma-alani h3 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  margin: var(--space-xl) 0 var(--space-sm);
  color: var(--color-text-secondary);
}
.okuma-alani p,
.okuma-alani li { color: var(--color-text-secondary); }
.okuma-alani strong { color: var(--color-text); font-weight: 600; }
.okuma-alani ul,
.okuma-alani ol { margin: 0 0 var(--space-lg) 1.3rem; }
.okuma-alani li { margin-bottom: var(--space-sm); line-height: 1.75; }
.okuma-alani code {
  font-size: 0.86em;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-primary-light);
}

/* Dikkat cekilmesi gereken paragraf — yasal metinde en cok atlanan yerler */
.vurgu-kutu {
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  background: var(--color-primary-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text) !important;
}

.yasal-tablo {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  font-size: 0.88rem;
}
.yasal-tablo th,
.yasal-tablo td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-subtle);
  vertical-align: top;
}
.yasal-tablo th { color: var(--color-text); font-weight: 600; }
.yasal-tablo td { color: var(--color-text-secondary); }

.footer-yasal-baglantilar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
  padding-bottom: var(--space-lg);
}

@media (max-width: 640px) {
  .yasal-sayfa { padding-top: 100px; }
  .yasal-baslik { font-size: 1.9rem; }
  .yasal-tablo { font-size: 0.8rem; }
  .yasal-tablo th, .yasal-tablo td { padding: var(--space-sm); }
}
