.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 24px 40px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 77, 0, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 208, 0, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 77, 0, 0.15);
  border: 1px solid rgba(255, 77, 0, 0.4);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  width: fit-content;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-eyebrow {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(58px, 16vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero-title span.orange {
  color: var(--orange);
}
.hero-title span.yellow {
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1.6;
  color: #b0a898;
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.25s ease both;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 500;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 0.7s 0.35s ease both;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
}

.btn-primary:hover {
  background: var(--orange-glow);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 77, 0, 0.4);
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  animation: fadeUp 0.7s 0.45s ease both;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}

.trust-item svg {
  color: var(--yellow);
  flex-shrink: 0;
}
