* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background: #0b0b0b;
  color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */

header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(11, 11, 11, 0.88);
  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: 30px;
  font-weight: 800;
  color: #f9be17;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #d1d5db;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #f9be17;
}

.nav-btn {
  background: #f9be17;
  color: #000;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 800;
  transition: 0.3s;
}

.nav-btn:hover {
  transform: translateY(-3px);
  background: #ffcb39;
}

/* HERO */

.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  background: #f9be17;
  filter: blur(170px);
  opacity: 0.15;
  top: -180px;
  right: -120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-left span {
  display: inline-block;
  background: rgba(249, 190, 23, 0.12);
  border: 1px solid rgba(249, 190, 23, 0.3);
  padding: 10px 18px;
  border-radius: 50px;
  color: #f9be17;
  margin-bottom: 28px;
  font-weight: 700;
  font-size: 14px;
}

.hero-left h1 {
  font-size: 68px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero-left h1 span {
  color: #f9be17;
}

.hero-left p {
  color: #c8c8c8;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #f9be17;
  color: #000;
  padding: 16px 34px;
  border-radius: 60px;
  font-weight: 800;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #ffcb39;
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 34px;
  border-radius: 60px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #171717;
}

/* RIGHT CARD */

.hero-card {
  background: linear-gradient(145deg, #171717, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 45px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: #f9be17;
  filter: blur(120px);
  opacity: 0.12;
  top: -70px;
  right: -40px;
}

.hero-card h3 {
  font-size: 30px;
  margin-bottom: 35px;
  font-weight: 800;
}

.feature {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.feature i {
  width: 60px;
  height: 60px;
  background: rgba(249, 190, 23, 0.12);
  color: #f9be17;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.feature h4 {
  margin-bottom: 8px;
  font-size: 20px;
}

.feature p {
  color: #c6c6c6;
  line-height: 1.7;
  font-size: 15px;
}

/* SERVICES */

.services {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: #f9be17;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 52px;
  margin-top: 15px;
  line-height: 1.2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 40px 35px;
  border-radius: 30px;
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #f9be17;
}

.service-card i {
  width: 75px;
  height: 75px;
  background: rgba(249, 190, 23, 0.12);
  color: #f9be17;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.service-card p {
  color: #c6c6c6;
  line-height: 1.9;
  font-size: 16px;
}

/* PROCESS */

.process {
  padding: 100px 0;
  background: #121212;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.process-card {
  background: #181818;
  border-radius: 28px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: 0.3s;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: #f9be17;
}

.process-number {
  font-size: 50px;
  font-weight: 800;
  color: #f9be17;
  opacity: 0.25;
  margin-bottom: 15px;
}

.process-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.process-card p {
  color: #c8c8c8;
  line-height: 1.8;
}

/* CTA */

.cta {
  padding: 110px 0;
}

.cta-box {
  background: linear-gradient(135deg, #f9be17, #574a29);
  border-radius: 35px;
  padding: 75px;
  text-align: center;
  color: #000;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #fff;
  opacity: 0.12;
  border-radius: 50%;
  top: -120px;
  right: -80px;
}

.cta-box h2 {
  font-size: 56px;
  margin-bottom: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.cta-box p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
  margin: auto auto 35px;
}

.cta-btn {
  background: #000;
  color: #fff;
  padding: 16px 34px;
  border-radius: 60px;
  font-weight: 800;
  display: inline-block;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  background: #111;
}

/* FOOTER */

footer {
  background: #070707;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-about p {
  color: #bfbfbf;
  line-height: 1.9;
  margin-top: 20px;
  max-width: 420px;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 25px;
  font-size: 22px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #bfbfbf;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f9be17;
}

.footer-contact p {
  color: #bfbfbf;
  margin-bottom: 18px;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  text-align: center;
  color: #999;
  font-size: 15px;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .hero-grid,
  .service-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 48px;
  }

  .section-title h2 {
    font-size: 40px;
  }

  .cta-box {
    padding: 50px 30px;
  }

  .cta-box h2 {
    font-size: 40px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 90px 0 70px;
  }

  .hero-left h1 {
    font-size: 38px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .cta-box h2 {
    font-size: 30px;
  }

  .hero-card {
    padding: 30px;
  }
}
