/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* DARK THEME (default) */
:root {
  --red: #E8001D;
  --red-dark: #b5001a;
  --red-light: #ff1a35;
  --anchor-offset-desktop: 20px;
  --anchor-offset-mobile: 35px;
  --anchor-offset: var(--anchor-offset-desktop);
  --dark: #0d0d0d;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --dark4: #252525;
  --border: #2e2e2e;
  --text: #e8e8e8;
  --text-muted: #888;
  --text-dim: #555;
  --gold: #f0c040;
  --green: #22c55e;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --hero-bg-start: #0a0a0a;
  --hero-bg-mid: #1a0005;
  --header-bg: rgba(10,10,10,0.95);
}

/* LIGHT THEME */
[data-theme="light"] {
  --dark: #f4f4f5;
  --dark2: #ffffff;
  --dark3: #f0f0f0;
  --dark4: #e4e4e7;
  --border: #d4d4d8;
  --text: #18181b;
  --text-muted: #52525b;
  --text-dim: #a1a1aa;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
  --hero-bg-start: #fff1f2;
  --hero-bg-mid: #ffe4e6;
  --header-bg: rgba(255,255,255,0.95);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}
#iskelet,
#moduller,
#paketler {
  scroll-margin-top: var(--anchor-offset);
}
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  transition: background .3s, color .3s;
}
a { color: var(--red); text-decoration: none; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0005 50%, #0a0a0a 100%);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
}
[data-theme="light"] header {
  background: linear-gradient(135deg, #fff 0%, #fff1f2 50%, #fff 100%);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1200px; margin: 0 auto;
}
.header-logo img { height: 36px; }
[data-theme="light"] .header-logo img { content: url('assets/logo-kirmizi.png'); }
.header-nav { display: flex; gap: 8px; }
.header-nav a {
  color: var(--text-muted); font-size: 13px; padding: 6px 14px;
  border-radius: 20px; transition: all .2s;
}
.header-nav a:hover { color: var(--text); background: var(--dark3); }
.theme-toggle {
  background: var(--dark3); border: 1px solid var(--border);
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; font-size: 16px; display: flex; align-items: center;
  justify-content: center; transition: all .2s; flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--red); transform: rotate(20deg); }

/* ===== HERO ===== */
.hero {
  background: #0d0d0d;
  padding: 80px 24px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
[data-theme="light"] .hero { background: #fff1f2; }

/* Aurora canvas */
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }

/* Üst ve alt parlak çizgi */
.hero::before,
.hero::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(232, 0, 29, 0.15) 20%,
    rgba(232, 0, 29, 0.7) 50%,
    rgba(232, 0, 29, 0.15) 80%,
    transparent 100%
  );
  z-index: 2;
}
.hero::before { top: 0; }
.hero::after  { bottom: 0; }
[data-theme="light"] .hero::before,
[data-theme="light"] .hero::after {
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(232, 0, 29, 0.1) 20%,
    rgba(232, 0, 29, 0.45) 50%,
    rgba(232, 0, 29, 0.1) 80%,
    transparent 100%
  );
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,0,29,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,0,29,0.12); border: 1px solid rgba(232,0,29,0.3);
  color: var(--white); font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 24px;
  letter-spacing: .5px; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 52px); font-weight: 800;
  line-height: 1.15; margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 17px; color: #ccc; max-width: 640px;
  margin: 0 auto 32px;
}
[data-theme="light"] .hero-sub { color: #18181b; }

.hero-meta {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  font-size: 13px; color: #aaa;
}
[data-theme="light"] .hero-meta { color: #3f3f46; }
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.hero-meta strong { color: #ddd; }
[data-theme="light"] .hero-meta strong { color: #18181b; }
[data-theme="light"] .hero-meta span span { color: #18181b; }

/* Dinamik değer span'ları — strong ile aynı renk */
.hero-meta span span { color: #ddd; }
[data-theme="light"] .hero-meta span span { color: #18181b; }

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 22px; font-weight: 700; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.section-title .icon { font-size: 20px; }
.section-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }

/* ===== ISKELET CARD ===== */
.iskelet-section { padding: 60px 0 0; }
.iskelet-card {
  background: linear-gradient(135deg, var(--dark2) 0%, #1a0005 100%);
  border: 1px solid rgba(232,0,29,0.3);
  border-radius: var(--radius); padding: 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  box-shadow: 0 0 40px rgba(232,0,29,0.08);
}
.iskelet-info h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.iskelet-info p { color: var(--text-muted); font-size: 14px; }
.iskelet-items { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.iskelet-item {
  background: rgba(232,0,29,0.1); border: 1px solid rgba(232,0,29,0.2);
  color: #ff6b7a; font-size: 12px; padding: 4px 12px; border-radius: 20px;
}
.iskelet-price {
  text-align: right; flex-shrink: 0;
}
.iskelet-price .amount {
  font-size: 36px; font-weight: 800; color: var(--red-light);
  display: block; line-height: 1;
}
.iskelet-price .label { font-size: 12px; color: var(--text-dim); margin-top: 4px; }
.iskelet-price .note { font-size: 11px; color: var(--text-dim); margin-top: 2px; }

/* ===== MODULES SECTION ===== */
.modules-section { padding: 60px 0; }
.modules-filter {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
}
.filter-btn {
  background: var(--dark3); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 13px; padding: 7px 16px;
  border-radius: 20px; cursor: pointer; transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red); border-color: var(--red); color: #fff;
}
.modules-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

/* ===== MODULE CARD ===== */
.module-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all .25s; cursor: pointer; position: relative;
  display: flex; flex-direction: column;
}
.module-card:hover { border-color: rgba(232,0,29,0.4); transform: translateY(-2px); box-shadow: var(--shadow); }
.module-card.selected {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--dark2) 0%, rgba(34,197,94,0.06) 100%);
  box-shadow: 0 0 20px rgba(34,197,94,0.12);
}
.module-card.playing { border-color: var(--gold); box-shadow: 0 0 20px rgba(240,192,64,0.15); }

.module-header {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px 18px 14px;
}
.module-num {
  background: var(--red); border: 1px solid var(--red-dark);
  color: #fff; font-size: 11px; font-weight: 700;
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .2s;
}
.module-title-wrap { flex: 1; }
.module-title { font-size: 14px; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.module-price {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.price-old {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: line-through;
}
.price-new {
  font-size: 16px;
  font-weight: 700;
  color: var(--red-light);
}
.module-sure { font-size: 11px; color: var(--text-dim); }

.module-checkbox {
  width: 20px; height: 20px; border-radius: 6px;
  border: 2px solid var(--border); background: transparent;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .2s; margin-top: 2px;
}
.module-card.selected .module-checkbox {
  background: var(--red); border-color: var(--red);
}
.module-checkbox svg { display: none; }
.module-card.selected .module-checkbox svg { display: block; }

.module-ozet {
  padding: 0 18px 14px;
  font-size: 13px; color: var(--text-muted); line-height: 1.5;
  flex: 1;
}

.module-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px; border-top: 1px solid var(--border);
  background: var(--dark3);
}
.module-expand-btn {
  font-size: 12px; color: var(--text-dim); cursor: pointer;
  display: flex; align-items: center; gap: 4px; transition: color .2s;
  background: none; border: none;
}
.module-expand-btn:hover { color: var(--text); }
.module-audio-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-dim); cursor: pointer;
  background: none; border: none; transition: color .2s;
}
.module-audio-btn:hover { color: var(--gold); }
.module-audio-btn.playing { color: var(--gold); }
.audio-wave {
  display: none; align-items: center; gap: 2px; height: 14px;
}
.module-audio-btn.playing .audio-wave { display: flex; }
.module-audio-btn.playing .play-icon { display: none; }
.audio-wave span {
  display: block; width: 3px; background: var(--gold); border-radius: 2px;
  animation: wave 0.8s ease-in-out infinite;
}
.audio-wave span:nth-child(2) { animation-delay: .15s; }
.audio-wave span:nth-child(3) { animation-delay: .3s; }
.audio-wave span:nth-child(4) { animation-delay: .15s; }
@keyframes wave {
  0%, 100% { height: 4px; }
  50% { height: 14px; }
}

.module-detail {
  padding: 0 18px 16px; display: none;
  font-size: 13px; color: var(--text-muted);
}
.module-detail.open { display: block; }
.module-detail ul { padding-left: 18px; }
.module-detail li { margin-bottom: 4px; }

/* ===== PAKETLER ===== */
.paketler-section { padding: 0 0 60px; }
.paketler-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.paket-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; cursor: pointer;
  transition: all .25s; position: relative;
}
.paket-card:hover { border-color: rgba(232,0,29,0.4); transform: translateY(-2px); }
.paket-card.selected {
  border-color: var(--red); background: linear-gradient(135deg, var(--dark2) 0%, #1a0005 100%);
}
.paket-badge {
  position: absolute; top: -1px; right: 16px;
  background: var(--red); color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 0 0 8px 8px; letter-spacing: .5px;
}
.paket-id {
  font-size: 11px; font-weight: 700; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
}
.paket-label { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.paket-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.paket-moduller { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 16px; }
.paket-modul-tag {
  background: var(--dark4); border: 1px solid var(--border);
  color: var(--text-dim); font-size: 11px; padding: 2px 8px; border-radius: 4px;
  cursor: default; transition: all .18s;
}
.paket-modul-tag:hover {
  background: rgba(232,0,29,0.12); border-color: rgba(232,0,29,0.4);
  color: var(--red-light); transform: translateY(-1px);
}
.paket-prices { display: flex; align-items: baseline; gap: 12px; }
.paket-liste { font-size: 13px; color: var(--text-dim); text-decoration: line-through; }
.paket-fiyat { font-size: 24px; font-weight: 800; color: var(--red-light); }
.paket-tasarruf {
  font-size: 12px; color: var(--green); font-weight: 600;
  background: rgba(34,197,94,0.1); padding: 2px 8px; border-radius: 4px;
}

/* ===== STICKY PRICE BAR ===== */
.price-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(13,13,13,0.95); backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  transform: translateY(100%); transition: transform .3s;
}
.price-bar.visible { transform: translateY(0); }
.price-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.price-bar-items { flex: 1; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.price-bar-item { font-size: 13px; color: var(--text-muted); }
.price-bar-item strong { color: var(--text); }
.price-bar-item .price-old { font-size: 13px; }
.price-bar-total {
  font-size: 28px; font-weight: 800; color: var(--red-light);
  white-space: nowrap;
}
.price-bar-total small { font-size: 13px; color: var(--text-dim); font-weight: 400; }
.price-bar-actions { display: flex; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 8px; font-size: 14px;
  font-weight: 600; cursor: pointer; border: none; transition: all .2s;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--text-muted); color: var(--text); }
.btn-clear { background: transparent; color: var(--text-dim); border: none; font-size: 13px; cursor: pointer; }
.btn-clear:hover { color: var(--red); }

/* ===== SUMMARY MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 16px; width: 100%; max-width: 680px;
  max-height: 90vh; overflow-y: auto;
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--dark2); z-index: 1;
}
.modal-header h3 { font-size: 18px; font-weight: 700; }
.modal-close {
  background: var(--dark4); border: 1px solid var(--border);
  color: var(--text-muted); width: 32px; height: 32px; border-radius: 8px;
  cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--text); }
.modal-body { padding: 24px 28px; }
.modal-section { margin-bottom: 24px; }
.modal-section h4 { font-size: 13px; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.modal-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px;
}
.modal-row:last-child { border-bottom: none; }
.modal-row .name { color: var(--text-muted); }
.modal-row .price {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}
.modal-row .price .price-old { font-size: 12px; }
.modal-row .price .price-new {
  font-size: 14px;
  color: var(--text);
}
.modal-row .price .price-new-discount {
  color: var(--green);
}
.modal-total {
  background: linear-gradient(135deg, var(--dark3) 0%, #1a0005 100%);
  border: 1px solid rgba(232,0,29,0.3);
  border-radius: 10px; padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px;
}
.modal-total .label { font-size: 15px; font-weight: 600; }
.modal-total .amount { font-size: 28px; font-weight: 800; color: var(--red-light); }
.modal-footer { padding: 20px 28px; border-top: 1px solid var(--border); display: flex; gap: 12px; justify-content: flex-end; }



/* ===== MISC ===== */
.divider {
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(232, 0, 29, 0.15) 20%,
    rgba(232, 0, 29, 0.7) 50%,
    rgba(232, 0, 29, 0.15) 80%,
    transparent 100%
  );
  margin: 0;
}
[data-theme="light"] .divider {
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(232, 0, 29, 0.1) 20%,
    rgba(232, 0, 29, 0.45) 50%,
    rgba(232, 0, 29, 0.1) 80%,
    transparent 100%
  );
}
.tag-red {
  background: rgba(232,0,29,0.12); border: 1px solid rgba(232,0,29,0.25);
  color: var(--red-light); font-size: 11px; padding: 3px 10px; border-radius: 20px;
  font-weight: 600;
}
.empty-state {
  text-align: center; padding: 60px 24px; color: var(--text-dim);
}
.empty-state .icon { font-size: 48px; margin-bottom: 12px; }
.empty-state p { font-size: 14px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root { --anchor-offset: var(--anchor-offset-mobile); }
  .iskelet-card { flex-direction: column; }
  .iskelet-price { text-align: left; }
  .modules-grid { grid-template-columns: 1fr; }
  .paketler-grid { grid-template-columns: 1fr; }
  .price-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .header-inner {
    flex-wrap: wrap;
    row-gap: 10px;
    padding: 12px 16px;
  }
  .header-logo img { height: 30px; }
  .theme-toggle { width: 34px; height: 34px; }
  .header-nav {
    display: flex;
    order: 3;
    width: 100%;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
  }
  .header-nav::-webkit-scrollbar { display: none; }
  .header-nav a {
    white-space: nowrap;
    font-size: 12px;
    padding: 6px 10px;
    background: var(--dark3);
    border: 1px solid var(--border);
  }
}

/* ===== PDF PRINT (gelişmiş) ===== */
@media print {
  html, body { height: auto !important; overflow: visible !important; }
  body > *:not(.modal-overlay) { display: none !important; }
  .modal-overlay {
    display: block !important;
    position: static !important;
    background: #fff !important;
    padding: 0 !important;
  }
  .modal {
    width: 100% !important; max-width: 100% !important;
    max-height: none !important; overflow: visible !important;
    border: none !important; border-radius: 0 !important;
    box-shadow: none !important;
  }
  .modal-header { background: #fff !important; border-bottom: 2px solid #000 !important; }
  .modal-header h3 { color: #000 !important; font-size: 20px !important; }
  .modal-close, .modal-footer, .modal-header { display: none !important; }
  .modal-body { color: #000 !important; }
  .modal-row .name { color: #444 !important; }
  .modal-row .price { color: #000 !important; }
  .modal-row .price .price-new-discount { color: #0a8f3f !important; }
  .modal-total { background: #f5f5f5 !important; border: 2px solid #000 !important; }
  .modal-total .amount { color: #c00 !important; }
  .modal-section h4 { color: #666 !important; }
  .modal-row { border-bottom-color: #ddd !important; }
}

/* ===== LIGHT MODE OVERRIDES ===== */
[data-theme="light"] .iskelet-card {
  background: linear-gradient(135deg, #fff 0%, #fff1f2 100%);
  border-color: rgba(232,0,29,0.25);
}
[data-theme="light"] .module-card {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
[data-theme="light"] .module-card:hover {
  box-shadow: 0 4px 16px rgba(232,0,29,0.1);
}
[data-theme="light"] .module-card.selected {
  background: linear-gradient(135deg, #fff 0%, rgba(34,197,94,0.06) 100%);
}
[data-theme="light"] .module-footer { background: #f9f9f9; }
[data-theme="light"] .paket-card {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
[data-theme="light"] .paket-card.selected {
  background: linear-gradient(135deg, #fff 0%, #fff1f2 100%);
}
[data-theme="light"] .price-bar {
  background: rgba(255,255,255,0.97);
  border-top-color: var(--border);
}
[data-theme="light"] .modal { background: #fff; }
[data-theme="light"] .modal-header { background: #fff; }
[data-theme="light"] .modal-total { background: #fff1f2; }
[data-theme="light"] .btn-outline {
  border-color: var(--border); color: var(--text-muted);
}
[data-theme="light"] .btn-outline:hover { color: var(--text); }
[data-theme="light"] .hero-badge {
  background: rgba(232,0,29,0.08);
}
[data-theme="light"] .hero h1 {
  background: linear-gradient(135deg, #18181b 0%, #3f3f46 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
[data-theme="light"] .filter-btn {
  background: #fff; border-color: var(--border);
}
[data-theme="light"] .filter-btn:hover,
[data-theme="light"] .filter-btn.active {
  background: var(--red); border-color: var(--red); color: #fff;
}

/* ===== SPOTLIGHT ===== */
/* Canvas z-index: 0, tüm içerik z-index: 1+ üzerinde */
#fluid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0 !important;
}
#spotlight-canvas { z-index: 0 !important; }
header { z-index: 100; }
.price-bar { z-index: 200; }
.modal-overlay { z-index: 300; }
.hero > .container,
.iskelet-section .container,
.modules-section .container,
.paketler-section .container { position: relative; z-index: 1; }

/* ===== HOW-TO BANNER ===== */
.how-to-banner {
  background: var(--dark2);
  padding: 32px 0;
}
.how-to-inner {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; justify-content: center;
}
.how-to-item {
  display: flex; align-items: flex-start; gap: 14px;
  flex: 1; min-width: 220px; max-width: 300px;
}
.how-to-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.how-to-item strong {
  display: block; font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.how-to-item p {
  font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0;
}
.how-to-sep {
  font-size: 13px; color: var(--text-dim); font-weight: 600;
  padding: 0 4px; flex-shrink: 0;
}
[data-theme="light"] .how-to-banner { background: #f9f9f9; }

/* ===== PDF PAGES (modal içi) ===== */
.pdf-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.pdf-logo { height: 32px; }
.pdf-header-title {
  font-size: 20px; font-weight: 800; color: var(--text);
  letter-spacing: -0.5px;
}
.pdf-header-info { text-align: right; font-size: 12px; color: var(--text-dim); line-height: 1.6; }
.pdf-divider {
  height: 2px; margin-bottom: 20px;
  background: linear-gradient(to right, transparent, rgba(232,0,29,0.7) 50%, transparent);
}
.pdf-page-2 { margin-top: 8px; padding-top: 20px; border-top: 1px dashed var(--border); }
.pdf-static-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px;
}
.pdf-static-section h4 {
  font-size: 12px; font-weight: 700; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px;
}
.pdf-static-section p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.pdf-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.pdf-table td { padding: 4px 0; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.pdf-table td:last-child { text-align: right; color: var(--text); }
.pdf-list { font-size: 12px; color: var(--text-muted); padding-left: 16px; line-height: 1.7; }
.pdf-list li { margin-bottom: 2px; }
.pdf-footer {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  padding-top: 16px; border-top: 1px solid var(--border);
  font-size: 11px; color: var(--text-dim);
}
.pdf-signature {
  margin-top: 20px; text-align: right;
}
.pdf-imza { height: 130px; opacity: 0.85; }

/* Print: 2 sayfa */
@media print {
  .pdf-page { page-break-after: always; }
  .pdf-page-2 { page-break-after: auto; border-top: none; padding-top: 0; margin-top: 0; }
  .pdf-static-grid { grid-template-columns: 1fr 1fr; }
  .pdf-header-info, .pdf-table td, .pdf-list, .pdf-static-section p { color: #444 !important; }
  .pdf-table td:last-child { color: #000 !important; }
  .pdf-static-section h4 { color: #666 !important; }
  .pdf-divider { background: linear-gradient(to right, transparent, #c00 50%, transparent) !important; }
  .pdf-logo { filter: none; }
  .pdf-footer { color: #999 !important; border-top-color: #ddd !important; }
  .pdf-imza { opacity: 1 !important; }
  .pdf-header-title { color: #000 !important; }
}

/* ===== HERO META INPUTS ===== */
.hero-meta-field {
  display: flex; align-items: center; gap: 6px; cursor: text;
}
.hero-meta-label {
  font-weight: 700; color: #ddd; white-space: nowrap; font-size: 13px;
}
[data-theme="light"] .hero-meta-label { color: #18181b; }

.hero-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: #ddd;
  font-size: 13px;
  font-family: inherit;
  padding: 2px 4px;
  min-width: 80px;
  max-width: 220px;
  width: auto;
  outline: none;
  transition: border-color .2s, color .2s;
}
.hero-input::placeholder { color: rgba(255,255,255,0.3); }
.hero-input:focus {
  border-bottom-color: var(--red);
  color: #fff;
}
[data-theme="light"] .hero-input {
  color: #18181b;
  border-bottom-color: rgba(0,0,0,0.2);
}
[data-theme="light"] .hero-input::placeholder { color: rgba(0,0,0,0.3); }
[data-theme="light"] .hero-input:focus {
  border-bottom-color: var(--red);
  color: #18181b;
}
/* Print'te input gibi görünmesin, düz metin gibi bassın */
@media print {
  .hero-input {
    border-bottom: none !important;
    padding: 0 !important;
  }
}
