.hero {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: var(--color-bg-hero);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__carousel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero__carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero__carousel-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-overlay-dark);
  backdrop-filter: var(--color-overlay-blur);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__text h1 {
  font-size: 4.375rem;
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero__desc {
  color: var(--color-text-white-muted);
  font-size: 1.3rem;
  max-width: 42rem;
  margin-bottom: 2.2rem;
  line-height: 1.5;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--color-border-light);
}

.stat__value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-white);
}

.stat__label {
  font-size: 1rem;
  color: var(--color-text-white-dim);
}

.hero__image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 100%;
  min-height: 320px;
  max-height: 650px;
}

.hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.floating {
  border-radius: var(--radius-lg);
  border: 3px solid var(--color-border-light);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero__carousel-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--color-border-light);
  flex-shrink: 0;
  cursor: pointer;
}

.hero__carousel-btn:hover {
  background: rgba(42, 127, 170, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero__carousel-btn .myicon {
  font-size: 24px;
  color: var(--color-text-white);
}

.hero__carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.hero__carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero__carousel-dot.active {
  background: var(--color-brand);
  width: 24px;
  border-radius: 5px;
}

.hero__carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}