/* ===============================
   HERO
================================ */

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080a0c;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.90) 0%,
      rgba(0, 0, 0, 0.76) 36%,
      rgba(0, 0, 0, 0.48) 64%,
      rgba(0, 0, 0, 0.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.10) 45%,
      rgba(0, 0, 0, 0.82) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 80px, 1540px);
  margin: 0 auto;
  padding-top: 150px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;

  color: var(--white);
}

.hero-left {
  max-width: 700px;
  flex-shrink: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -2.8px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--yellow);
}

.hero p {
  max-width: 640px;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(254, 254, 254, 0.82);
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 56px;
}

.hero-btn {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: 0.25s ease;
}

.hero-btn.primary {
  background: var(--yellow);
  color: #111111;
  box-shadow: 0 14px 30px rgba(248, 178, 22, 0.25);
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid rgba(254, 254, 254, 0.45);
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn.primary:hover {
  background: #e3a10c;
}

.hero-btn.secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.hero-stats {
  max-width: 640px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(13, 15, 17, 0.72);
  border: 1px solid rgba(254, 254, 254, 0.12);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-stat {
  min-height: 96px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(254, 254, 254, 0.12);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat i {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(248, 178, 22, 0.8);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.hero-stat strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 3px;
}

.hero-stat span {
  display: block;
  color: rgba(254, 254, 254, 0.72);
  font-size: 14px;
}

/* ===============================
   HERO LOGO CAROUSEL
================================ */

.hero-logos {
  width: 560px;
  overflow: hidden;
  flex-shrink: 0;
}

.logos-track {
  display: flex;
  width: 200%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.logos-grid {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 4px;
}

.logo-card {
  height: 96px;
  border-radius: 20px;
  background: rgba(10, 12, 14, 0.58);
  border: 1px solid rgba(248, 178, 22, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.logo-card img {
  max-width: 150%;
  max-height: 56px;
  object-fit: contain;
  opacity: 0.96;
  transition: 0.25s ease;
}

.logo-card:hover img {
  transform: scale(1.06);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1300px) {
  .hero-content {
    gap: 50px;
  }

  .hero-logos {
    width: 470px;
  }

  .logo-card {
    height: 82px;
  }

  .logo-card img {
    max-height: 46px;
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding-bottom: 50px;
    align-items: flex-start;
  }

  .hero-content {
    width: min(100% - 36px, 1540px);
    padding-top: 140px;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-bg {
    object-position: center right;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -1.4px;
  }

  .hero p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 34px;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-logos {
    width: 100%;
  }

  .logos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .logo-card {
    height: 82px;
    border-radius: 16px;
    padding: 14px;
  }

  .logo-card img {
    max-height: 42px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    width: 100%;
  }

  .hero-stat {
    padding: 14px 10px;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .hero-content {
    width: min(100% - 32px, 1540px);
    padding-top: 128px;
  }

  .hero h1 {
    font-size: 39px;
    line-height: 1.08;
    letter-spacing: -1.1px;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .hero-buttons {
    margin-bottom: 30px;
  }

  .hero-btn {
    min-height: 56px;
    padding: 0 18px;
    font-size: 14px;
  }

  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .logo-card {
    height: 72px;
    border-radius: 15px;
    padding: 12px;
  }

  .logo-card img {
    max-height: 54px;
  }

  .hero-stats {
    border-radius: 18px;
  }

  .hero-stat {
    min-height: 86px;
    padding: 12px 6px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 7px;
  }

  .hero-stat i {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .hero-stat strong {
    font-size: 17px;
  }

  .hero-stat span {
    font-size: 11px;
    line-height: 1.25;
  }
}