* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.hero {
  min-height: 100vh;
  padding: 30px 8%;
  background:
    radial-gradient(circle at 80% 20%, rgba(227, 6, 19, 0.35), transparent 30%),
    linear-gradient(135deg, #000000 0%, #111111 60%, #1b0002 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(227, 6, 19, 0.12);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  filter: blur(20px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo {
  width: 260px;
  max-width: 60%;
}

.nav-btn {
  background: #e30613;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #ffffff;
  color: #e30613;
}

.hero-content {
  max-width: 850px;
  margin-top: 130px;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 18px;
  border-radius: 30px;
  color: #e30613;
  font-weight: bold;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hero p {
  font-size: 22px;
  color: #cccccc;
  max-width: 720px;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.primary {
  background: #e30613;
  color: #ffffff;
}

.primary:hover {
  background: #ffffff;
  color: #e30613;
}

.secondary {
  border: 1px solid #ffffff;
}

.secondary:hover {
  background: #ffffff;
  color: #000000;
}

.intro {
  padding: 90px 8%;
  background: #0d0d0d;
}

.intro div {
  max-width: 900px;
}

.intro h2,
.section-title h2,
.cta h2 {
  font-size: clamp(34px, 5vw, 58px);
  margin-bottom: 20px;
}

.intro p {
  font-size: 21px;
  color: #cfcfcf;
}

.services {
  padding: 100px 8%;
  background: #050505;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: #e30613;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: linear-gradient(180deg, #151515, #0b0b0b);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 24px;
  min-height: 230px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #e30613;
  box-shadow: 0 20px 40px rgba(227, 6, 19, 0.15);
}

.card h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 15px;
}

.card p {
  color: #bdbdbd;
}

.process {
  padding: 100px 8%;
  background: linear-gradient(135deg, #111111, #1a0002);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.steps div {
  padding: 35px;
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}

.steps strong {
  color: #e30613;
  font-size: 42px;
}

.steps h3 {
  margin: 15px 0 10px;
}

.steps p {
  color: #cfcfcf;
}

.cta {
  padding: 120px 8%;
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)),
    radial-gradient(circle at center, rgba(227, 6, 19, 0.35), transparent 45%);
}

.cta p {
  max-width: 720px;
  margin: 0 auto 35px;
  color: #d6d6d6;
  font-size: 21px;
}

footer {
  padding: 40px 8%;
  text-align: center;
  background: #000000;
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer img {
  width: 220px;
  margin-bottom: 15px;
}

footer p {
  color: #999999;
}

@media (max-width: 1100px) {
  .grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .logo {
    width: 230px;
    max-width: 90%;
  }

  .hero-content {
    margin-top: 80px;
    text-align: center;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-actions {
    justify-content: center;
  }

  .grid,
  .steps {
    grid-template-columns: 1fr;
  }
}