* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background: #060606;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

/* ================= HEADER ================= */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo span {
  color: #f9be17;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: #d8d8d8;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f9be17;
}

.header-btn {
  background: linear-gradient(135deg, #f9be17, #574a29);
  padding: 15px 30px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.4s;
}

.header-btn:hover {
  transform: translateY(-4px);
}

/* ================= HERO ================= */

.hero {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #f9be17;
  filter: blur(180px);
  opacity: 0.15;
  top: -120px;
  left: -120px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #f9be17;
  filter: blur(180px);
  opacity: 0.14;
  bottom: -140px;
  right: -120px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f9be17;
  font-size: 14px;
  margin-bottom: 25px;
  font-weight: 700;
}

.hero h1 {
  font-size: 78px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero h1 span {
  background: linear-gradient(135deg, #f9be17, #574a29);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: #bdbdbd;
  font-size: 18px;
  line-height: 1.9;
  max-width: 780px;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f9be17, #574a29);
  padding: 17px 34px;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.4s;
}

.btn-primary:hover {
  transform: translateY(-5px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 17px 34px;
  border-radius: 16px;
  transition: 0.4s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* ================= FEATURES ================= */

.features {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: #f9be17;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 54px;
  margin-top: 15px;
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 40px 35px;
  transition: 0.4s;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
  width: 75px;
  height: 75px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f9be17, #574a29);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 28px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-card p {
  color: #bdbdbd;
  line-height: 1.8;
  font-size: 15px;
}

/* ================= PROCESS ================= */

.process {
  padding: 100px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.process-box {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 28px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.process-number {
  font-size: 60px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.process-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.process-box p {
  color: #bdbdbd;
  line-height: 1.8;
}

/* ================= BENEFITS ================= */

.benefits {
  padding: 100px 0;
}

.benefits-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.benefits-left h2 {
  font-size: 58px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.benefits-left h2 span {
  color: #f9be17;
}

.benefits-left p {
  color: #bdbdbd;
  line-height: 1.9;
  margin-bottom: 30px;
}

.benefits-points {
  display: grid;
  gap: 18px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 17px;
  font-weight: 600;
}

.benefit-item i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(249, 190, 23, 0.12);
  color: #f9be17;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-right {
  background: linear-gradient(
    135deg,
    rgba(0, 208, 132, 0.12),
    rgba(0, 184, 255, 0.1)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 35px;
  padding: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  padding: 35px 25px;
  text-align: center;
}

.stat-box h3 {
  font-size: 42px;
  color: #f9be17;
  margin-bottom: 10px;
}

.stat-box p {
  color: #cfcfcf;
}

/* ================= CTA ================= */

.cta {
  padding: 100px 0;
}

.cta-box {
  background: linear-gradient(135deg, #f9be17, #574a29);
  border-radius: 35px;
  padding: 80px 60px;
  text-align: center;
}

.cta-box h2 {
  font-size: 58px;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-box p {
  max-width: 780px;
  margin: auto;
  line-height: 1.9;
  font-size: 18px;
}

.cta-btn {
  display: inline-block;
  margin-top: 35px;
  background: #fff;
  color: #111;
  padding: 17px 36px;
  border-radius: 16px;
  font-weight: 800;
  transition: 0.4s;
}

.cta-btn:hover {
  transform: translateY(-4px);
}

/* ================= FOOTER ================= */

footer {
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-logo {
  font-size: 30px;
  font-weight: 800;
}

.footer-logo span {
  color: #f9be17;
}

.footer-about {
  max-width: 420px;
  color: #bcbcbc;
  line-height: 1.9;
  margin-top: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icons a {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.social-icons a:hover {
  background: linear-gradient(135deg, #f9be17, #574a29);
  transform: translateY(-4px);
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 22px;
  font-size: 22px;
}

.footer-links a,
.footer-contact p {
  display: block;
  color: #bdbdbd;
  margin-bottom: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f9be17;
}

.footer-bottom {
  text-align: center;
  color: #8c8c8c;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 25px;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .hero h1 {
    font-size: 56px;
  }

  .section-title h2,
  .benefits-left h2,
  .cta-box h2 {
    font-size: 42px;
  }

  .benefits-wrapper {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 80px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section-title h2,
  .benefits-left h2,
  .cta-box h2 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .cta-box {
    padding: 60px 30px;
  }

  .benefits-right {
    padding: 35px;
  }
}
