* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background: #050505;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

/* ================= HEADER ================= */

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(12px);
  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: 28px;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo span {
  color: #f9be17;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: #dcdcdc;
  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);
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.4s;
}

.header-btn:hover {
  transform: translateY(-3px);
}

/* ================= HERO ================= */

.hero {
  padding-top: 100px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #f9be17;
  filter: blur(180px);
  opacity: 0.2;
  top: -150px;
  left: -150px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #ff7a18;
  filter: blur(180px);
  opacity: 0.18;
  bottom: -150px;
  right: -150px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.hero-subtitle {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 14px;
  color: #f9be17;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero h1 span {
  background: linear-gradient(135deg, #f9be17);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  line-height: 1.8;
  color: #bdbdbd;
  max-width: 780px;
  margin: auto;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f9be17);
  padding: 16px 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.15);
  padding: 16px 34px;
  border-radius: 16px;
  color: #fff;
  transition: 0.4s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* ================= 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: 15px;
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.service-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;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.15);
}

.service-icon {
  width: 75px;
  height: 75px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f9be17);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 28px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.service-card p {
  color: #bdbdbd;
  line-height: 1.8;
  font-size: 15px;
}

/* ================= PROCESS ================= */

.process {
  padding: 100px 0;
}

.process-wrapper {
  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: 26px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-number {
  font-size: 56px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.process-box h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.process-box p {
  color: #bcbcbc;
  line-height: 1.8;
}

/* ================= CTA ================= */

.cta {
  padding: 110px 0;
}

.cta-box {
  background: linear-gradient(135deg, #f9be17, #574a29);
  padding: 80px 60px;
  border-radius: 35px;
  text-align: center;
}

.cta-box h2 {
  font-size: 56px;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-box p {
  font-size: 18px;
  max-width: 760px;
  margin: auto;
  line-height: 1.8;
  opacity: 0.95;
}

.cta-btn {
  display: inline-block;
  margin-top: 35px;
  background: #fff;
  color: #111;
  padding: 16px 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;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 22px;
  font-size: 22px;
}

.footer-links a,
.footer-contact p {
  display: block;
  color: #bcbcbc;
  margin-bottom: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f9be17;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.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, #2fff18);
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  color: #8a8a8a;
  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: 52px;
  }

  .section-title h2,
  .cta-box h2 {
    font-size: 40px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title h2,
  .cta-box h2 {
    font-size: 32px;
  }

  .cta-box {
    padding: 60px 30px;
  }
}
