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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(230,57,70,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(255,107,53,0.08) 0%, transparent 60%),
    #0d0d0d;
}

.tire-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(230,57,70,0.12);
  animation: pulse-ring 4s ease-in-out infinite;
}
.tire-ring:nth-child(1) { width: 600px;  height: 600px;  top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 0s; }
.tire-ring:nth-child(2) { width: 800px;  height: 800px;  top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: .8s; }
.tire-ring:nth-child(3) { width: 1050px; height: 1050px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1.6s; }

@keyframes pulse-ring {
  0%,100% { opacity: .3; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: .7; transform: translate(-50%,-50%) scale(1.03); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.4);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .8rem;
  color: #ff8a93;
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeUp .8s ease both;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  animation: fadeUp .9s ease .1s both;
}
.hero h1 .highlight {
  color: var(--red);
  text-shadow: 0 0 60px rgba(230,57,70,0.5);
}

.hero p {
  font-size: 1.15rem;
  color: #aaa;
  max-width: 580px;
  margin: 22px auto 40px;
  line-height: 1.7;
  animation: fadeUp 1s ease .2s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease .3s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 70px;
  animation: fadeUp 1s ease .5s both;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 900; color: var(--red); }
.stat-label { font-size: .75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
