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

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #050509;
  color: #f9fafb;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  display: flex;
  align-items: center;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(5,5,9,0.95), rgba(5,5,9,0.85), transparent);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo img {
  height: 40px;
  border-radius: 999px;
}

.nav {
  display: flex;
  gap: 2.5rem;
  font-size: 1.05rem;
}

.nav a {
  color: #e5e7eb;
  position: relative;
  padding-bottom: 2px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #ff6b3d, #c8372b);
  transition: width 0.2s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(90deg, #ff6b3d, #c8372b);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  padding: 0.9rem 1.8rem;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #f9fafb;
  border-color: rgba(255, 255, 255, 0.25);
  padding: 0.9rem 1.8rem;
}

.btn-ghost:hover {
  border-color: #ff6b3d;
  color: #ff6b3d;
  transform: translateY(-2px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  overflow: hidden;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 4rem 0 5rem;
  margin: 0 auto;
  text-align: center;
}

.hero-subtitle {
  margin-top: 1.25rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  color: #e5e7eb;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  z-index: 0;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.10) 40%,
    rgba(0,0,0,0.25)
  );
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero h1 span {
  background: linear-gradient(135deg, #ff6b3d, #c8372b);
  -webkit-background-clip: text;
  color: transparent;
}

.hero h1 .hero-emphasis {
  display: block;
}
/* Stats */
.stats {
  padding: 2.5rem 0 1rem;
  background: #020617;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b3d, #c8372b);
  -webkit-background-clip: text;
  color: transparent;
}

.stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: #9ca3af;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-dark {
  background: #020617;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.section-header h2 span {
  background: linear-gradient(135deg, #ff6b3d, #c8372b);
  -webkit-background-clip: text;
  color: transparent;
}

.section-header p {
  margin-top: 0.75rem;
  color: #9ca3af;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.14), transparent 55%),
              #020617;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.65);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-icon {
  font-size: 1.4rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.card p {
  font-size: 0.95rem;
  color: #9ca3af;
}

.card-link {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ff6b3d;
}

/* Reasons */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.reason-card {
  background: #020617;
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.reason-icon {
  color: #ff6b3d;
}

/* About company */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}

.about-grid p {
  color: #9ca3af;
  margin-top: 0.75rem;
}

.about-highlight {
  background: radial-gradient(circle at top, rgba(248, 113, 113, 0.18), transparent 50%),
              #020617;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #f9fafb;
}

/* About me */
.about-me-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.about-me-text p {
  color: #d1d5db;
  margin-top: 0.75rem;
}

.about-me-photo img {
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: #020617;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.stars {
  color: #ff6b3d;
  margin-bottom: 0.75rem;
}

.testimonial p {
  color: #e5e7eb;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.testimonial h4 {
  font-size: 0.95rem;
}

.testimonial span {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* CTA final */
.cta-final {
  background: radial-gradient(circle at top, rgba(248, 113, 113, 0.25), transparent 55%),
              #020617;
}

.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 2rem;
}

.cta-inner h2 span {
  background: linear-gradient(135deg, #ff6b3d, #c8372b);
  -webkit-background-clip: text;
  color: transparent;
}

.cta-inner p {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  color: #e5e7eb;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(31, 41, 55, 1);
  padding: 1.25rem 0 1.75rem;
  background: #020617;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.social-footer {
  display: flex;
  gap: 1rem;
  font-size: 1.3rem;
}

.social-footer a {
  color: #f9fafb;
  transition: 0.2s ease-out;
}

.social-footer a:hover {
  color: #ff6b3d;
  transform: translateY(-1px);
}

/* Tablet */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-me-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content {
    max-width: 100%;
  }
}

/* Mobile */

@media (max-width: 640px) {
  .hero {
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
    padding: 3rem 0 3.25rem;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.15;
  }

  .hero-bg {
    object-position: 50% 35%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header-cta {
    padding: 0.45rem 1.1rem;
    font-size: 0.75rem;
  }

  .stats-grid,
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .reasons-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
