.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6.5rem 0 3.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 17, 20, 0.95) 0%, rgba(16, 17, 20, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 100%;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.hero-text {
  min-width: 0;
}

.hero-text > p {
  margin-left: 0;
  margin-right: 0;
  max-width: 40rem;
}

.hero-text .hero-buttons {
  justify-content: flex-start;
  align-items: flex-start;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.hero-banner-square {
  display: block;
  width: 100%;
}

.hero-banner-square img {
  width: 100%;
  display: block;
  border-radius: 0.75rem;
}

.hero-side .trust-badges {
  margin-top: 0;
  justify-content: flex-end;
}

.hero h1 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  color: var(--gray-300);
  margin-bottom: 1rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.promo-block {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.promo-card {
  background-color: rgba(26, 29, 33, 0.8);
  backdrop-filter: blur(8px);
  border: 2px dashed var(--primary);
  border-radius: 0.75rem;
  padding: 1.5rem 1rem 0.5rem;
  max-width: 28rem;
  width: 100%;
}

.promo-content {
  text-align: center;
  margin-bottom: 1rem;
}

.promo-label {
  color: var(--gray-300);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.promo-inputs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.promo-code-box {
  background-color: var(--dark);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  width: 100%;
  text-align: center;
}

.promo-code {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.copy-btn {
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  transition: background-color 0.3s;
}

.copy-btn:hover {
  background-color: rgba(255, 50, 92, 0.9);
}

.copy-success {
  color: #4ade80;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  display: none;
}

.copy-success.show {
  display: block;
}

.trust-badges {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--gray-400);
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .promo-inputs {
    flex-direction: row;
  }

  .copy-btn {
    width: auto;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-side {
    align-items: center;
  }

  .hero-side .trust-badges {
    justify-content: center;
  }

  .promo-timer {
    display: none !important;
  }
}
