body {
  font-family: "Inter", sans-serif;
  background: #050505;
  color: white;
}

/* BG */
.bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  background:
    radial-gradient(circle at 20% 30%, #1a1a2e, transparent 40%),
    radial-gradient(circle at 80% 70%, #0f3460, transparent 40%), #050505;
  z-index: -1;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content {
  max-width: 750px;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.03);
  padding: 60px;
  border-radius: 20px;
}

/* TEXT */
h1 {
  font-size: 40px;
  margin-bottom: 20px;
}
.subtitle {
  opacity: 0.8;
  margin-bottom: 20px;
}
.desc {
  opacity: 0.7;
  margin-bottom: 30px;
}

/* TRUST */
.trust {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.trust span {
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 12px;
  border-radius: 10px;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 15px 25px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: 600;
}

.google {
  background: #4285f4;
}
.meta {
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}
.whatsapp {
  background: #25d366;
}

/* PROOF */
.proof {
  padding: 80px 20px;
  text-align: center;
}

.grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.grid div {
  width: 250px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 15px;
}

/* WHATSAPP */
.whatsapp-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-text {
  background: white;
  color: black;
  padding: 10px 14px;
  border-radius: 20px;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 30px;
}
/* BUTTONS */
.buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* GENEL */
.btn {
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  text-align: center;
  transition: 0.2s;
  flex: 1;
  min-width: 140px;
}

/* WHATSAPP FULL */
.btn.whatsapp {
  flex: 100%;
  background: #25d366;
}

/* MOBİL ÖZEL */
@media (max-width: 600px) {
  .buttons {
    gap: 10px;
  }

  /* İlk 2 buton yan yana */
  .btn.google,
  .btn.meta {
    flex: 1;
  }

  /* WhatsApp altta büyük */
  .btn.whatsapp {
    flex: 100%;
    font-size: 16px;
    padding: 16px;
  }
}
