* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #050505;
  color: #fff;
  overflow-x: hidden;
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -2;
}

.hero .glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 170, 0, 0.35) 0%,
    rgba(255, 170, 0, 0) 70%
  );
  filter: blur(120px);
  z-index: -1;
}

.hero-content {
  max-width: 900px;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 25px;
  color: #aaa;
}

.navbar nav a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffaa00;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 50px 20px;
  position: relative;
}

.hero-content {
  max-width: 900px;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 25px;
  color: #aaa;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 60px;
  line-height: 1.2;
  font-weight: 600;
}

.hero h1 .accent {
  color: #ffaa00;
}

.hero p {
  margin-top: 25px;
  color: #aaa;
  font-size: 18px;
  line-height: 1.6;
}

.process {
  text-align: center;
  padding: 120px 20px;
}

.timeline {
  position: relative;
  width: 1000px;
  max-width: 100%;
  margin: 80px auto 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 170, 0, 0.4),
    rgba(255, 170, 0, 0.4),
    transparent
  );
  transform: translateX(-50%);
}

.step {
  position: relative;
  width: 50%;
  padding: 50px;
}

.step:nth-child(odd) {
  left: 0;
  text-align: right;
}

.step:nth-child(even) {
  left: 50%;
  text-align: left;
}

.step h3,
.step p,
.step span {
  position: relative;
  z-index: 2;
}

.step::before {
  content: "";
  position: absolute;
  inset: 20px;
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  z-index: 1;
  transition: 0.3s;
}

.step:hover::before {
  border-color: rgba(255, 170, 0, 0.4);
  box-shadow: 0 10px 40px rgba(255, 170, 0, 0.1);
}

.step span {
  display: inline-block;
  color: #ffaa00;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 20px;
  font-weight: 500;
}

.step p {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
  max-width: 320px;
}

.step:nth-child(odd) p {
  margin-left: auto;
}

.step:nth-child(even) p {
  margin-right: auto;
}

.step::after {
  content: "";
  position: absolute;
  top: 60px;
  width: 16px;
  height: 16px;
  background: #ffaa00;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(255, 170, 0, 0.8);
  z-index: 3;
}

.step:nth-child(odd)::after {
  right: -8px;
}

.step:nth-child(even)::after {
  left: -8px;
}

.stats {
  padding: 120px 80px;
  text-align: center;
}

.stats h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  margin-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: #0c0c0c;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 170, 0, 0.15);
  border-color: rgba(255, 170, 0, 0.4);
}

.stat-card span {
  font-size: 36px;
  color: #ffaa00;
  font-weight: 600;
}

.stat-card p {
  margin-top: 10px;
  font-size: 16px;
  color: #aaa;
}

.testimonials {
  padding: 120px 80px;
  text-align: center;
}

.testimonials h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background: #0c0c0c;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #aaa;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 170, 0, 0.15);
  border-color: rgba(255, 170, 0, 0.4);
}

.testimonial p {
  font-size: 14px;
  line-height: 1.6;
}

.testimonial span {
  display: block;
  margin-top: 15px;
  color: #ffaa00;
  font-weight: 500;
}

.projects-cta {
  text-align: center;
  padding: 140px 20px;
}

.projects-cta h2 {
  font-size: 42px;
  margin-bottom: 40px;
}

.projects-cta .btn-primary {
  display: inline-block;
  background: #ffaa00;
  padding: 14px 28px;
  border-radius: 30px;
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

.projects-cta .btn-primary:hover {
  box-shadow: 0 0 25px rgba(255, 170, 0, 0.6);
}

footer {
  text-align: center;
  padding: 40px;
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .step {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    margin-bottom: 40px;
  }

  .step p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

}

@media (max-width: 1024px) {
  .stats {
    padding: 100px 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .testimonials {
    padding: 100px 40px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .stats {
    padding: 80px 20px;
  }

  .stats h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stat-card span {
    font-size: 30px;
  }

  .stat-card p {
    font-size: 14px;
  }

  .testimonials {
    padding: 80px 20px;
  }

  .testimonials h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .testimonial {
    padding: 25px;
  }

  .testimonial p {
    font-size: 13px;
  }
}
