/* landing.css — Premium spiritüel landing sayfası
   Tema: koyu parşömen + altın + mor master vurguları
   Sayfa: index.php
*/

/* ====== ZEMİN VE TİPOGRAFİ ====== */
.landing-body {
  background: linear-gradient(180deg, #14100c 0%, #1f1812 30%, #1a1410 70%, #14100c 100%);
  background-color: #14100c;
  color: #f4ede0;
  min-height: 100vh;
  font-family: Georgia, 'Times New Roman', serif;
  position: relative;
}
.landing-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(184,134,44,0.13) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(107,44,139,0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(139,44,30,0.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.landing-body > * { position: relative; z-index: 1; }

/* ====== HEADER ====== */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 16, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 134, 44, 0.2);
  padding: 14px 0;
}
.landing-header .container {
  display: flex; align-items: center; justify-content: space-between;
}
.brand-gold {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold-soft);
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #d4a955 0%, #b8862c 50%, #d4a955 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}
/* Logo as image — soulpathr SVG */
.brand-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.brand-logo-full {
  height: 44px;
  width: auto;
  display: block;
}
.brand-logo-link:hover .brand-logo-full { filter: brightness(1.1); }
.landing-header nav { display: flex; gap: 22px; align-items: center; }
.landing-header nav a {
  color: rgba(244,237,224,0.7);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.landing-header nav a:hover { color: var(--gold); text-decoration: none; }
.landing-header nav a.nav-cta {
  background: linear-gradient(135deg, #b8862c, #d4a955);
  color: #1a1410 !important;
  padding: 8px 16px;
  border-radius: 2px;
  font-weight: 600;
}
.landing-header nav a.nav-cta:hover { color: #1a1410 !important; filter: brightness(1.1); }

/* ====== HERO ====== */
.landing-hero {
  position: relative;
  padding: 100px 20px 90px;
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(184,134,44,0.18) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(30px);
}
.hero-content { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.hero-eyebrow {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.9;
}
.hero-h1 {
  font-family: Georgia, serif;
  font-weight: 200;
  font-size: clamp(48px, 9vw, 96px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 28px;
  color: #f4ede0;
}
.hero-h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #d4a955 0%, #b8862c 50%, #d4a955 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(244,237,224,0.78);
  max-width: 680px;
  margin: 0 auto 36px;
}
.hero-lead strong { color: var(--gold-soft); font-weight: 600; }
.hero-lead em { color: var(--gold); font-style: italic; }
.hero-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; justify-content: center; gap: 22px; flex-wrap: wrap;
  font-size: 12px;
  color: rgba(244,237,224,0.5);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.1em;
  padding-top: 18px;
  border-top: 1px solid rgba(184,134,44,0.15);
  max-width: 760px;
  margin: 0 auto;
}

/* ====== ALTIN BUTON ====== */
.btn-gold {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(135deg, #d4a955 0%, #b8862c 50%, #d4a955 100%);
  color: #14100c;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow:
    0 0 0 1px rgba(212, 169, 85, 0.3),
    0 4px 24px rgba(184, 134, 44, 0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(212, 169, 85, 0.5),
    0 8px 32px rgba(184, 134, 44, 0.4);
  text-decoration: none;
}
.btn-gold-large { padding: 20px 44px; font-size: 14px; }
.btn-ghost {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(184, 134, 44, 0.5);
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 134, 44, 0.08);
  text-decoration: none;
}

/* ====== NASIL ÇALIŞIR ====== */
.how-section {
  padding: 90px 20px;
  border-top: 1px solid rgba(184, 134, 44, 0.12);
  position: relative;
}
.how-eyebrow, .pkg-eyebrow, .md-eyebrow, .faq-eyebrow {
  text-align: center;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 14px;
}
.how-h, .pkg-h, .md-h, .faq-h {
  text-align: center;
  font-family: Georgia, serif;
  font-weight: 200;
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #f4ede0;
}
.how-h em, .pkg-h em, .md-h em, .faq-h em {
  background: linear-gradient(135deg, #d4a955, #b8862c);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.how-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.how-step {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 252, 245, 0.02);
  border: 1px solid rgba(184, 134, 44, 0.15);
  border-radius: 2px;
  position: relative;
}
.how-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0.6;
}
.how-num {
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: 200;
  color: var(--gold-soft);
  opacity: 0.7;
  margin-bottom: 10px;
}
.how-step h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #f4ede0;
}
.how-step p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(244,237,224,0.7);
}
.how-step strong { color: var(--gold-soft); font-weight: 600; }

/* ====== PAKETLER ====== */
.pkg-section {
  padding: 100px 20px;
  position: relative;
}
.pkg-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; max-width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,134,44,0.5), transparent);
}
.pkg-sub {
  text-align: center;
  font-size: 16px;
  color: rgba(244,237,224,0.65);
  font-style: italic;
  margin-bottom: 50px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.pkg-card {
  position: relative;
  background: linear-gradient(180deg, rgba(31,24,18,0.95) 0%, rgba(20,16,12,0.95) 100%);
  border: 1px solid rgba(184,134,44,0.25);
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  border-radius: 2px;
  overflow: hidden;
}
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0.5;
}
.pkg-card:hover {
  border-color: rgba(212,169,85,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(184, 134, 44, 0.18);
}
.pkg-card.is-featured {
  border-color: rgba(212,169,85,0.6);
  background: linear-gradient(180deg, rgba(31,24,18,0.98) 0%, rgba(35,28,18,0.98) 100%);
  transform: scale(1.02);
}
.pkg-card.is-featured::before {
  background: linear-gradient(90deg, var(--gold), #f3d488, var(--gold));
  opacity: 1;
  height: 4px;
}
.pkg-card.is-premium {
  border-color: rgba(107,44,139,0.4);
  background:
    radial-gradient(circle at 50% 0%, rgba(107,44,139,0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(31,24,18,0.98) 0%, rgba(28,16,30,0.98) 100%);
}
.pkg-card.is-premium::before {
  background: linear-gradient(90deg, var(--gold), var(--master), var(--gold));
  opacity: 0.9;
}
.pkg-ribbon {
  position: absolute;
  top: 14px; right: -36px;
  background: linear-gradient(135deg, #d4a955, #b8862c);
  color: #14100c;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(35deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.pkg-ribbon-premium {
  background: linear-gradient(135deg, #8b5a9c, #6b2c8b);
  color: #f4ede0;
}
.pkg-glyph {
  text-align: center;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.4em;
  opacity: 0.7;
}
.is-premium .pkg-glyph { color: var(--gold-soft); }
.pkg-name {
  text-align: center;
  font-family: Georgia, serif;
  font-weight: 300;
  font-size: 28px;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #d4a955 0%, #b8862c 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.is-premium .pkg-name {
  background: linear-gradient(135deg, #d4a955, #b388c8 60%, #d4a955);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pkg-tagline {
  text-align: center;
  font-style: italic;
  color: rgba(244,237,224,0.55);
  font-size: 13px;
  margin-bottom: 22px;
}
.pkg-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px dashed rgba(184,134,44,0.2);
  border-bottom: 1px dashed rgba(184,134,44,0.2);
  margin-bottom: 22px;
}
.pkg-stat { text-align: center; }
.pkg-stat-num {
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--gold-soft);
  line-height: 1;
}
.pkg-stat-label {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(244,237,224,0.5);
  margin-top: 6px;
  text-transform: uppercase;
}
.pkg-stat-sep { font-size: 28px; color: rgba(184,134,44,0.3); }
.pkg-price {
  text-align: center;
  margin-bottom: 22px;
}
.pkg-price-val {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 300;
  color: #f4ede0;
}
.pkg-price-val small { font-size: 18px; color: var(--gold); }
.pkg-price-tba {
  font-style: italic;
  color: rgba(244,237,224,0.5);
  font-size: 13px;
}
.pkg-modules {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex: 1;
}
.pkg-modules li {
  padding: 9px 0;
  font-size: 14px;
  color: rgba(244,237,224,0.85);
  border-bottom: 1px solid rgba(184,134,44,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pkg-modules li:last-child { border-bottom: none; }
.pkg-check { color: var(--gold); font-size: 11px; flex-shrink: 0; }
.is-premium .pkg-check { color: var(--gold-soft); }
.pkg-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(135deg, #d4a955 0%, #b8862c 100%);
  color: #14100c;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
}
.pkg-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(184,134,44,0.4);
}
.is-premium .pkg-btn {
  background: linear-gradient(135deg, #d4a955 0%, #8b5a9c 50%, #d4a955 100%);
}

/* ====== MODÜL DETAY ====== */
.module-detail-section {
  padding: 100px 20px;
  border-top: 1px solid rgba(184,134,44,0.12);
}
.md-sub {
  text-align: center;
  font-style: italic;
  color: rgba(244,237,224,0.6);
  max-width: 560px;
  margin: 0 auto 50px;
}
.md-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.md-card {
  background: rgba(255, 252, 245, 0.025);
  border: 1px solid rgba(184,134,44,0.18);
  padding: 26px 24px;
  border-radius: 2px;
  position: relative;
  transition: all 0.2s;
}
.md-card:hover {
  border-color: rgba(212,169,85,0.4);
  background: rgba(255, 252, 245, 0.04);
}
.md-glyph {
  font-size: 28px;
  color: var(--gold-soft);
  margin-bottom: 12px;
  opacity: 0.85;
}
.md-card-h {
  font-size: 18px;
  font-weight: 400;
  color: #f4ede0;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.md-card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(244,237,224,0.7);
  margin-bottom: 16px;
  min-height: 60px;
}
.md-availability {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px dashed rgba(184,134,44,0.15);
}
.md-avail-label {
  font-family: 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(244,237,224,0.45);
  text-transform: uppercase;
  margin-right: 4px;
}
.md-avail-chip {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  border: 1px solid;
}
.md-avail-tier-1 { color: #a8b5c7; border-color: rgba(168,181,199,0.4); }
.md-avail-tier-2 { color: var(--gold); border-color: rgba(184,134,44,0.5); background: rgba(184,134,44,0.06); }
.md-avail-tier-3 { color: #d4a3e0; border-color: rgba(212,163,224,0.4); background: rgba(107,44,139,0.06); }

/* ====== SSS ====== */
.faq-section {
  padding: 90px 20px;
  border-top: 1px solid rgba(184,134,44,0.12);
  max-width: 820px;
  margin: 0 auto;
}
.faq-q {
  background: rgba(255,252,245,0.02);
  border: 1px solid rgba(184,134,44,0.15);
  margin-bottom: 12px;
  border-radius: 2px;
  overflow: hidden;
}
.faq-q summary {
  padding: 18px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #f4ede0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}
.faq-q summary::-webkit-details-marker { display: none; }
.faq-q summary::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  font-weight: 200;
  transition: transform 0.2s;
}
.faq-q[open] summary::after { content: '−'; transform: rotate(0); }
.faq-q[open] summary { color: var(--gold-soft); border-bottom: 1px solid rgba(184,134,44,0.15); }
.faq-q summary:hover { background: rgba(184,134,44,0.05); }
.faq-q p {
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(244,237,224,0.78);
  margin: 0;
}
.faq-q p strong { color: var(--gold-soft); font-weight: 600; }
.faq-q p em { color: var(--gold); font-style: italic; }
.faq-q p a { color: var(--gold); }

/* ====== FINAL CTA ====== */
.final-cta {
  padding: 100px 20px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(184,134,44,0.12) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(20,16,12,0.5) 100%);
  border-top: 1px solid rgba(184,134,44,0.2);
}
.final-glyph {
  font-size: 36px;
  color: var(--gold-soft);
  margin-bottom: 14px;
  opacity: 0.8;
}
.final-cta h2 {
  font-family: Georgia, serif;
  font-weight: 200;
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 14px;
  color: #f4ede0;
}
.final-cta h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #d4a955, #b8862c);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final-cta p {
  font-size: 17px;
  color: rgba(244,237,224,0.65);
  margin-bottom: 32px;
}

/* ====== FOOTER ====== */
.landing-footer {
  padding: 32px 20px;
  text-align: center;
  border-top: 1px solid rgba(184,134,44,0.15);
  background: rgba(14,10,8,0.5);
}
.landing-footer p {
  font-size: 12px;
  color: rgba(244,237,224,0.5);
  margin: 6px 0;
}
.landing-footer strong { color: var(--gold-soft); }
.landing-footer a { color: var(--gold-soft); text-decoration: none; margin: 0 8px; }
.landing-footer a:hover { color: var(--gold); }

/* ====== MOBİL ====== */
@media (max-width: 768px) {
  .landing-hero { padding: 60px 20px 60px; }
  .hero-cta-row { flex-direction: column; }
  .btn-gold, .btn-ghost { width: 100%; max-width: 320px; }
  .pkg-card.is-featured { transform: none; }
  .landing-header nav { gap: 12px; }
  .landing-header nav a { font-size: 11px; }
  .pkg-grid { grid-template-columns: 1fr; gap: 20px; }
  .md-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 10px; flex-direction: column; }
}
