/* ============================================
   Ultra Premium Ana Sayfa (index.php)
   ============================================ */
html { overflow-x: hidden; }

.landing-page {
  margin: 0;
  max-width: 100%;
  background: #05060c;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #e9eaf5;
  position: relative;
  overflow-x: hidden;
}

.landing-page::before,
.landing-page::after {
  content: "";
  position: fixed;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(130px);
  z-index: 0;
  pointer-events: none;
}
.landing-page::before {
  top: -180px;
  left: -140px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.5), transparent 70%);
}
.landing-page::after {
  top: 900px;
  right: -160px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.35), transparent 70%);
}

.landing-page * { box-sizing: border-box; }

/* ---- Topbar ---- */
.lp-topbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
  padding: 16px 6%;
}
.lp-brand { min-width: 0; max-width: 70%; font-size: 1.3rem; font-weight: 800; color: #fff; text-decoration: none; text-shadow: 0 0 16px rgba(255, 255, 255, 0.25); display: inline-flex; align-items: center; }
.lp-brand-logo { display: block; max-height: 42px; max-width: min(220px, 58vw); width: auto; height: auto; object-fit: contain; }
.lp-brand span { color: #c084fc; text-shadow: 0 0 16px rgba(192, 132, 252, 0.65); }
.lp-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.lp-nav a {
  color: #b9bbd6;
  text-decoration: none;
  font-size: 0.88rem;
  padding: 9px 16px;
  border-radius: 8px;
  transition: all .2s ease;
  white-space: nowrap;
}
.lp-nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.lp-nav a.lp-cta {
  background: linear-gradient(135deg, #a855f7, #22d3ee);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(99,102,241,0.35);
}

/* ---- Hero ---- */
.lp-hero {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 70px 6% 50px;
  max-width: 900px;
  margin: 0 auto;
}
.lp-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #e9d5ff;
  background: rgba(168, 85, 247, 0.14);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.15);
}
.lp-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.3), 0 0 46px rgba(168, 85, 247, 0.25);
}
.lp-hero h1 .grad {
  background: linear-gradient(135deg, #c084fc, #ec4899 55%, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(236, 72, 153, 0.35));
}
.lp-hero p {
  font-size: 1.02rem;
  color: #9497b8;
  max-width: 600px;
  margin: 0 auto 32px;
}
.lp-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lp-btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.lp-btn-primary {
  background: linear-gradient(135deg, #a855f7, #22d3ee);
  color: #fff;
  box-shadow: 0 8px 26px rgba(168, 85, 247, 0.4);
}
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(168, 85, 247, 0.55); }
.lp-btn-outline {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
}
.lp-btn-outline:hover { background: rgba(255,255,255,0.09); }

/* ---- İstatistikler ---- */
.lp-stats {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 6% 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.lp-stat-card {
  background: rgba(18, 20, 32, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.lp-stat-card strong { display: block; font-size: 1.9rem; font-weight: 800; color: #fff; margin-bottom: 4px; text-shadow: 0 0 20px rgba(168, 85, 247, 0.5); }
.lp-stat-card span.lp-stat-label { display: block; font-size: 0.85rem; font-weight: 700; color: #e9d5ff; margin-bottom: 6px; }
.lp-stat-card p { margin: 0; font-size: 0.8rem; color: #8b8db0; }

/* ---- Genel bölüm ---- */
.lp-section { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 50px 6%; }
.lp-section-tag {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #22d3ee;
  margin-bottom: 10px;
  text-shadow: 0 0 14px rgba(34, 211, 238, 0.65);
}
.lp-section-title {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.22);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ---- Kalite rozetleri ---- */
.lp-quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.lp-quality-card {
  background: rgba(18, 20, 32, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px;
}
.lp-quality-card span.lp-q-label { display: block; font-size: 0.8rem; color: #8b8db0; margin-bottom: 6px; }
.lp-quality-card strong { display: block; font-size: 1.3rem; font-weight: 800; background: linear-gradient(135deg, #c084fc, #22d3ee); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 8px; }
.lp-quality-card p { margin: 0; font-size: 0.85rem; color: #9497b8; line-height: 1.5; }

/* ---- Platformlar ---- */
.lp-platform-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.lp-platform-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(18, 20, 32, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e3f5;
}
.lp-platform-pill img { width: 18px; height: 18px; filter: invert(1) brightness(1.4); }

/* ---- Özellik kartları ---- */
.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.lp-feature-card {
  background: rgba(18, 20, 32, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  transition: transform .2s ease, border-color .2s ease;
}
.lp-feature-card:hover { transform: translateY(-4px); border-color: rgba(99,102,241,0.4); }
.lp-feature-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(56,189,248,0.25));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.lp-feature-card h3 { margin: 0 0 8px; font-size: 1rem; font-weight: 700; color: #fff; }
.lp-feature-card p { margin: 0; font-size: 0.85rem; color: #9497b8; line-height: 1.55; }

/* ---- Yorumlar ---- */
.lp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.lp-testimonial-card {
  background: rgba(18, 20, 32, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px;
}
.lp-t-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.lp-t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #22d3ee);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 0.9rem;
}
.lp-t-name { font-weight: 700; font-size: 0.9rem; color: #fff; }
.lp-t-sub { font-size: 0.75rem; color: #8b8db0; }
.lp-t-stars { margin-left: auto; font-size: 0.78rem; color: #facc15; font-weight: 700; }
.lp-testimonial-card p { margin: 0; font-size: 0.86rem; color: #b9bbd6; line-height: 1.6; }

/* ---- Ödeme yöntemleri ---- */
.lp-pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.lp-pay-card {
  background: rgba(18, 20, 32, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.lp-pay-card img { height: 30px; margin-bottom: 12px; filter: brightness(0) invert(1); opacity: 0.9; }
.lp-pay-card strong { display: block; color: #fff; font-size: 0.92rem; margin-bottom: 4px; }
.lp-pay-card p { margin: 0; font-size: 0.78rem; color: #8b8db0; }

/* ---- Kapanış CTA ---- */
.lp-final-cta {
  position: relative; z-index: 2;
  max-width: 800px; margin: 20px auto 70px;
  text-align: center;
  background: rgba(18, 20, 32, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 50px 30px;
}
.lp-final-cta h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); color: #fff; margin: 0 0 12px; text-shadow: 0 0 24px rgba(168, 85, 247, 0.45); }
.lp-final-cta p { color: #9497b8; margin: 0 0 26px; font-size: 0.92rem; }

/* ---- Footer ---- */
.lp-footer {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 26px 6%;
  text-align: center;
  color: #6b6e8c;
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .lp-nav a:not(.lp-cta) { display: none; }
  .lp-topbar { padding: 14px 5%; }
  .lp-hero { padding: 50px 5% 40px; }
  .lp-section { padding: 40px 5%; }
  .lp-stats { padding: 10px 5% 40px; }
}
