:root{
  --gold:#f5c36a;
  --dark:#050810;
  --deep:#0b1220;
  --panel:#111a33;
  --muted:rgba(255,255,255,.85);
}
*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;background:var(--deep);color:#fff}

/* TOP HERO */
.hero{
  min-height:78vh;
  background:
    radial-gradient(circle at 30% 10%, rgba(255,255,255,.10), transparent 45%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.08), transparent 55%),
    radial-gradient(circle at top, #1b2a4e, var(--dark));
}
.overlay{min-height:78vh;background:linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.55))}
.topbar{
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 22px;gap:14px
}
.logo{color:var(--gold);font-weight:800;letter-spacing:.2px;display:flex;align-items:center;gap:10px;font-size:22px}
.logo i{font-size:22px}
.menu{display:flex;gap:18px;flex-wrap:wrap;justify-content:flex-end}
.menu a{color:#fff;text-decoration:none;opacity:.92;font-weight:600}
.menu a:hover{opacity:1}
.hero-text{max-width:980px;margin:10vh auto 0;text-align:left;padding:0 22px}
.hero-text h1{margin:0 0 10px;font-size:56px;line-height:1.05;font-weight:900;text-shadow:0 10px 30px rgba(0,0,0,.5)}
.hero-text p{margin:0 0 18px;color:var(--muted);font-size:18px}
.btn-primary{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 26px;border-radius:10px;
  background:linear-gradient(180deg, #ffcc7b, var(--gold));
  color:#1a1203;text-decoration:none;font-weight:800;
  box-shadow:0 12px 30px rgba(245,195,106,.25), 0 6px 14px rgba(0,0,0,.35)
}
.btn-primary:hover{filter:brightness(1.03)}

/* 3 ICON STRIP */
.features{
  background:#f7f8fb;color:#0b1220;
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:0;border-top:1px solid rgba(0,0,0,.06);border-bottom:1px solid rgba(0,0,0,.06)
}
.features > div{
  padding:26px 18px;text-align:center;
  border-right:1px solid rgba(0,0,0,.08)
}
.features > div:last-child{border-right:none}
.features i{
  width:56px;height:56px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:24px;background:#0e1730;color:var(--gold);
  box-shadow:0 10px 22px rgba(0,0,0,.18)
}
.features h3{margin:12px 0 6px;font-size:18px;font-weight:900}
.features span{display:block;color:rgba(0,0,0,.65);font-weight:700}

/* DREAM CARDS (DB) */
.cards{
  padding:56px 22px;
  max-width:1200px;margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px
}
.card{
  background:linear-gradient(180deg, #131e3b, #0d142a);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;padding:18px;position:relative;
  box-shadow:0 18px 40px rgba(0,0,0,.35)
}
.card h4{margin:0 0 8px;font-size:16px;font-weight:900}
.card p{margin:0;color:rgba(255,255,255,.82);font-size:13.5px;line-height:1.45}
.premium{
  position:absolute;top:12px;right:12px;
  background:linear-gradient(180deg, #ffcc7b, var(--gold));
  color:#1a1203;font-weight:900;
  padding:4px 10px;border-radius:999px;font-size:12px
}

/* CLOUD FORM SECTION */
.form-section{
  background:linear-gradient(180deg, #e9eef6, #f7f9ff);
  color:#0b1220;
  padding:56px 22px;
  text-align:center
}
.form-section h2{margin:0 0 8px;font-size:34px;font-weight:1000}
.form-section form{
  max-width:720px;margin:20px auto 0;
  background:#ffffff;border:1px solid rgba(0,0,0,.08);
  border-radius:14px;padding:22px;
  box-shadow:0 18px 40px rgba(0,0,0,.15)
}
.form-section input{
  width:100%;padding:14px 14px;border-radius:10px;
  border:1px solid rgba(0,0,0,.12);
  margin:10px 0;font-size:15px
}
.form-section button{
  margin-top:8px;width:100%;
  padding:14px;border-radius:10px;border:0;
  background:linear-gradient(180deg, #ffcc7b, var(--gold));
  font-weight:1000;cursor:pointer
}

/* WHY SECTION */
.why{
  background:radial-gradient(circle at top, #16224b, var(--dark));
  padding:52px 22px;
  display:grid;grid-template-columns:repeat(4,1fr);gap:14px;
  text-align:center
}
.why > div{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;padding:18px;
  box-shadow:0 14px 30px rgba(0,0,0,.35)
}
.why i{
  width:56px;height:56px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:24px;background:#0e1730;color:var(--gold);
  box-shadow:0 10px 22px rgba(0,0,0,.18)
}
.why p{margin:12px 0 0;font-weight:900}

/* RESPONSIVE */
@media (max-width: 980px){
  .hero-text h1{font-size:44px}
  .cards{grid-template-columns:repeat(2,1fr)}
  .features{grid-template-columns:1fr}
  .features > div{border-right:none;border-bottom:1px solid rgba(0,0,0,.08)}
  .features > div:last-child{border-bottom:none}
  .why{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 520px){
  .hero-text{margin-top:8vh}
  .hero-text h1{font-size:34px}
  .menu{display:none}
  .cards{grid-template-columns:1fr}
  .why{grid-template-columns:1fr}
}
/* HERO – ULTRA NET (MAX AÇIK) */
.hero-has-image{
  position: relative;
  background-image:
    linear-gradient(
      to bottom,
      rgba(5,8,16,0.08),
      rgba(5,8,16,0.25)
    ),
    url("../img/hero-child.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  /* ekstra güç */
  filter: brightness(1.12) contrast(1.12) saturate(1.05);
}
@media(max-width:768px){
  .hero-has-image{
    background-position: center top;
  }
}
/* CLOUD SECTIONS */
.features,
.form-section{
  background-image: url("../img/cloud-section.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* RÜYA KARTLARI – ULTRA NET STAR BG */
.cards{
  position: relative;
  background-image:
    linear-gradient(
      to bottom,
      rgba(5,8,16,0.18),
      rgba(5,8,16,0.35)
    ),
    url("../img/stars-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  filter: brightness(1.10) contrast(1.15);
}
/* FOOTER – STAR BACKGROUND (ÇOK BELİRGİN) */
.why,
footer{
  background-image:
    linear-gradient(
      to bottom,
      rgba(5,8,16,0.35),
      rgba(5,8,16,0.55)
    ),
    url("../img/stars-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.card-link{
  display:block;
  color:inherit;
  text-decoration:none;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card-link:hover{
  transform: translateY(-2px);
  box-shadow: 0 34px 80px rgba(0,0,0,.65);
}
/* NAV ACTION BUTTONS */
.nav-actions{display:flex;gap:10px;align-items:center}
.btn-ghost{
  padding:10px 14px;border-radius:12px;
  border:1px solid rgba(255,255,255,.20);
  color:#fff;text-decoration:none;font-weight:800;
  background:rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover{background:rgba(255,255,255,.10)}
.btn-primary-sm{
  padding:10px 14px;border-radius:12px;
  background:linear-gradient(#ffcc7b,var(--gold));
  color:#1a1203;text-decoration:none;font-weight:900;
}

/* HERO GLASS CARD */
.hero-glass{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
  max-width:980px;
}
.glass-item{
  display:flex;gap:12px;align-items:flex-start;
  padding:14px 14px;border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  box-shadow:0 18px 45px rgba(0,0,0,.35);
}
.glass-item i{color:var(--gold);font-size:22px;margin-top:2px}
.glass-item b{display:block;font-size:14px}
.glass-item span{display:block;opacity:.85;font-size:12.5px;line-height:1.35}

/* MOBILE */
@media(max-width:980px){
  .hero-glass{grid-template-columns:1fr}
}
/* ===== ANASAYFA GLASS BÖLÜMÜ (Kartların Üstü) ===== */
.home-glass-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:18px 16px 0;
}

.glass{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.35);
  border-radius: 16px;
}

.home-stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-bottom:12px;
}

.stat{
  padding:14px 14px 12px;
}

.stat-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.stat-title{
  font-weight:900;
  opacity:.95;
}

.stat-pill{
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  background: rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.14);
  opacity:.9;
}

.stat-num{
  font-size:30px;
  font-weight:1000;
  letter-spacing:.3px;
  line-height:1;
  margin-bottom:6px;
}

.stat-sub{
  font-size:12.5px;
  opacity:.85;
}

.home-info{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}

.info-box{
  padding:16px 16px 14px;
}

.info-box h3{
  margin:0 0 8px;
  font-size:15.5px;
  font-weight:1000;
}

.info-box p{
  margin:0 0 10px;
  font-size:13.2px;
  line-height:1.55;
  opacity:.92;
}

.info-box ul{
  margin:0;
  padding-left:18px;
  font-size:13px;
  line-height:1.55;
  opacity:.92;
}

.checklist{
  list-style:none;
  padding-left:0;
}
.checklist li{
  position:relative;
  padding-left:22px;
  margin:6px 0;
}
.checklist li:before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  color: var(--gold);
  font-weight:900;
}

/* MOBİL */
@media(max-width:980px){
  .home-stats{ grid-template-columns: 1fr; }
  .home-info{ grid-template-columns: 1fr; }
}
/* ===== GLASS ŞEFFAFLIK FIX (ZORLAYICI) ===== */
.home-glass-wrap .glass{
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  box-shadow: 0 22px 60px rgba(0,0,0,0.35) !important;
}

/* İç kutuların siyah basmasını engelle */
.home-glass-wrap .stat,
.home-glass-wrap .info-box{
  background: transparent !important;
}

/* Metin kontrastı */
.home-glass-wrap{
  color:#fff;
}
.home-glass-wrap .stat-sub,
.home-glass-wrap .info-box p,
.home-glass-wrap .info-box ul{
  opacity:.92;
}

/* Üstte kalması için */
.home-glass-wrap{
  position: relative;
  z-index: 3;
}
/* ===== HOME GLASS ARKASI SİYAHSA: YILDIZLI ZEMİNİ WRAP'E VER ===== */
.home-glass-wrap{
  background: transparent !important;
  background-image:
    radial-gradient(circle at 30% 10%, rgba(255,255,255,.08), transparent 45%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.06), transparent 55%),
    url("../img/stars-bg.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;

  border-radius: 18px;
  padding: 18px 16px 16px;
  margin-top: 16px;
}

/* Cam kutuları daha açık yap */
.home-glass-wrap .glass{
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.20) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

/* Eğer parent siyah basıyorsa iç kutular transparan kalsın */
.home-glass-wrap .stat,
.home-glass-wrap .info-box{
  background: transparent !important;
}
/* HOME GLASS WRAP arka planı kapalı: tek zemin parent'ta olacak */
.home-glass-wrap{
  background: transparent !important;
}
/* TEK PARÇA YILDIZLI ZEMİN (GLASS + KARTLAR AYNI) */
.stars-zone{
  background-image:
    radial-gradient(circle at 30% 10%, rgba(255,255,255,.08), transparent 45%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.06), transparent 55%),
    url("../img/stars-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 18px 0 40px;
}
/* Cards artık parent zemin üstünde, kendi bg'si yok */
.cards{
  background: transparent !important;
  background-image: none !important;
  filter: none !important;
}
/* WHY alanını yorum kartlarına çevir */
.why.why-comments{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
  padding:52px 22px;
  text-align:left;
}

/* Şeffaf kart */
.why-comment-card{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.why-comment-title{
  font-weight: 1000;
  font-size: 14.5px;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.25;
}

.why-comment-snippet{
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  min-height: 64px;
}

.why-comment-meta{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(245,195,106,0.95);
  font-weight: 800;
}

/* Mobil */
@media(max-width: 980px){
  .why.why-comments{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media(max-width: 520px){
  .why.why-comments{ grid-template-columns:1fr; }
}
/* Yorum Kartları – Yıldız Satırı */
.why-stars{
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #f5c36a; /* altın */
  margin: 4px 0 6px;
  text-shadow: 0 0 10px rgba(245,195,106,0.35);
}