* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background: #0b1220;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
         HEADER
      ========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(20px);
  background: rgba(10, 15, 30, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.logo {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

.logo span {
  color: #f9be17;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: #d1d5db;
  font-size: 16px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #f9be17;
}

.header-btn {
  padding: 13px 24px;
  background: #f9be17;
  color: #000;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.4s;
}

.header-btn:hover {
  transform: translateY(-3px);
}

/* =========================
         HERO
      ========================= */

.hero {
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(249, 190, 23, 0.12);
  border-radius: 50%;
  top: -150px;
  right: -100px;
  filter: blur(90px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(249, 190, 23, 0.12);
  color: #f9be17;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 28px;
}

.hero-title {
  font-size: 68px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 28px;
}

.hero-title span {
  color: #f9be17;
}

.hero-text {
  font-size: 18px;
  line-height: 1.9;
  color: #9ca3af;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 30px;
  background: #f9be17;
  color: #000;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.4s;
}

.btn-primary:hover {
  transform: translateY(-5px);
}

.btn-secondary {
  padding: 16px 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 16px;
  transition: 0.4s;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* HERO CARD */

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 35px;
  padding: 40px;
  backdrop-filter: blur(16px);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}

.hero-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #f9be17, #574a29);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon i {
  font-size: 38px;
  color: #000;
}

.hero-mini-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  padding: 18px 22px;
  text-align: center;
}

.hero-mini-box h4 {
  font-size: 30px;
  color: #f9be17;
}

.hero-mini-box p {
  font-size: 14px;
  color: #9ca3af;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 20px;
  transition: 0.4s;
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: #f9be17;
}

.feature-box i {
  font-size: 26px;
  color: #f9be17;
  margin-bottom: 14px;
}

.feature-box h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #9ca3af;
}

/* =========================
         SERVICES
      ========================= */

.services {
  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: 52px;
  margin-top: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 35px;
  transition: 0.5s;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #f9be17;
  box-shadow: 0 20px 50px rgba(249, 190, 23, 0.12);
}

.service-icon {
  width: 75px;
  height: 75px;
  border-radius: 22px;
  background: rgba(249, 190, 23, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  color: #f9be17;
  font-size: 30px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card p {
  color: #9ca3af;
  line-height: 1.8;
  font-size: 15px;
}

/* =========================
         PROCESS
      ========================= */

.process {
  padding: 100px 0;
}

.process-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-card {
  position: relative;
  padding: 40px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #f9be17;
  color: #000;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.process-card h4 {
  font-size: 24px;
  margin-bottom: 14px;
}

.process-card p {
  color: #9ca3af;
  line-height: 1.8;
}

/* =========================
         CTA
      ========================= */

.cta {
  padding: 100px 0;
}

.cta-box {
  background: linear-gradient(
    135deg,
    rgba(249, 190, 23, 0.15),
    rgba(255, 255, 255, 0.04)
  );

  border: 1px solid rgba(249, 190, 23, 0.2);

  border-radius: 40px;

  padding: 70px 60px;

  text-align: center;
}

.cta-box h2 {
  font-size: 56px;
  margin-bottom: 24px;
}

.cta-box p {
  max-width: 750px;
  margin: auto;
  color: #d1d5db;
  line-height: 1.9;
  margin-bottom: 40px;
}

/* =========================
         FOOTER
      ========================= */

.footer {
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer h3 {
  margin-bottom: 24px;
}

.footer p,
.footer a {
  color: #9ca3af;
  line-height: 2;
  transition: 0.3s;
}

.footer a:hover {
  color: #f9be17;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #9ca3af;
}

/* =========================
         RESPONSIVE
      ========================= */

@media (max-width: 1100px) {
  .hero-grid,
  .services-grid,
  .process-wrapper,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .services-grid,
  .process-wrapper,
  .footer-grid,
  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 42px;
  }

  .section-title h2,
  .cta-box h2 {
    font-size: 36px;
  }

  .cta-box {
    padding: 50px 30px;
  }
}
