 .hero {
  position: relative;
  background: linear-gradient(140deg, rgba(16, 36, 53, 0.99), rgba(47, 91, 120, 0.96));
  color: var(--color-white);
}

.hero__viewport {
  overflow: hidden;
}

.hero__track {
  display: flex;
  transition: transform 500ms ease;
}

.hero__slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: min(62vh, 560px);
  padding: 2.2rem 0 4rem;
}

.hero__content {
  max-width: 38rem;
  padding-left: clamp(1.1rem, 3vw, 3.2rem);
}

.hero__content h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero__content p {
  margin: 0 0 1.7rem;
  max-width: 32rem;
  color: rgba(255,255,255,0.84);
  font-size: 1.03rem;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__media {
  position: relative;
}

.hero__media img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 55px rgba(10,22,33,0.25);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  z-index: 3;
}

.hero__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.34);
}

.hero__dot.is-active {
  background: var(--color-accent);
}

.hero__float {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 0.95rem 1.15rem;
  max-width: 17rem;
}

.hero__float strong {
  display: block;
  margin-bottom: 0.35rem;
}

@media (max-width: 1100px) {
  .hero__slide {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    padding-bottom: 4.1rem;
    min-height: auto;
  }

  .hero__content {
    padding-left: 0;
  }

  .hero__media {
    order: 2;
  }

  .hero__float {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 680px) {
  .hero__slide {
    padding-top: 1.6rem;
    padding-bottom: 3.8rem;
  }

  .hero__content h1 {
    font-size: clamp(1.95rem, 9vw, 3rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__float {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }
}
