#hero-1 {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 115px 0 65px;
  background:
    radial-gradient(
      circle at top right,
      rgba(86, 102, 255, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(239, 176, 109, 0.1),
      transparent 28%
    ),
    linear-gradient(135deg, #050b16 0%, #091325 45%, #0b1424 100%);
}

#hero-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.14;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.glow-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -120px;
  background: rgba(87, 118, 255, 0.18);
}

.glow-2 {
  width: 320px;
  height: 320px;
  left: -100px;
  bottom: -100px;
  background: rgba(239, 176, 109, 0.12);
}

#hero-1 .container {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #efb06d;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.8px;
  margin-bottom: 18px;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  padding: 0;
}

.hero-subtitle::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 20px;
  background: #efb06d;
  box-shadow: none;
}

.hero-title {
  max-width: 600px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -2px;
}

.hero-title span {
  display: block;
  color: #efb06d;
  font-style: normal;
}

.hero-description {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin-bottom: 8px;
}

.hero-description-small {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  max-width: 520px;
  margin-bottom: 26px;
}

.hero-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.hero-highlight-item:hover {
  background: rgba(239, 176, 109, 0.12);
  border-color: rgba(239, 176, 109, 0.28);
  transform: translateY(-3px);
}

.hero-highlight-item i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 11px;
  background: rgba(239, 176, 109, 0.13);
  color: #efb06d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.hero-highlight-item span {
  font-size: 13px;
  font-weight: 750;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-custom,
.btn-outline-custom {
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}

.btn-primary-custom {
  background: #efb06d;
  color: #07111f;
  box-shadow: 0 18px 45px rgba(239, 176, 109, 0.24);
}

.btn-primary-custom:hover {
  background: #ffffff;
  color: #07111f;
  transform: translateY(-3px);
}

.btn-outline-custom {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
}

.btn-outline-custom:hover {
  background: #efb06d;
  border-color: #efb06d;
  color: #07111f;
  transform: translateY(-3px);
}

.hero-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.hero-image-card {
  position: relative;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at top left,
      rgba(239, 176, 109, 0.14),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(86, 102, 255, 0.14),
      transparent 35%
    );
  pointer-events: none;
}

.hero-main-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 610px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
  animation: floatImage 5s ease-in-out infinite;
}

.hero-floating-badge {
  position: absolute;
  z-index: 5;
  min-width: 145px;
  padding: 14px 16px;
  border-radius: 18px;
  text-align: left;
  background: rgba(9, 19, 37, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.hero-floating-badge strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-floating-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.badge-top {
  top: 12%;
  left: 0;
}

.badge-bottom {
  right: 0;
  bottom: 13%;
}

@keyframes floatImage {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.partners-floating-card {
  position: relative;
  margin-top: 80px;
  padding: 30px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.partners-header {
  max-width: 720px;
  margin-bottom: 26px;
}

.partners-header span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #efb06d;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.partners-header span::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 20px;
  background: #efb06d;
}

.partners-header h2 {
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}

.partners-header p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.partners-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 176, 109, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.partner-logo-card {
  width: 76px;
  height: 76px;
  min-width: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
  transition: 0.3s ease;
}

.partner-item:hover .partner-logo-card {
  transform: scale(1.04);
}

.partner-logo-card img {
  max-width: 52px;
  max-height: 52px;
  object-fit: contain;
}

.partner-item h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 850;
  margin-bottom: 5px;
}

.partner-item p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1199px) {
  .hero-title {
    font-size: 54px;
  }
}

@media (max-width: 991px) {
  #hero-1 {
    min-height: auto;
    padding: 105px 0 55px;
    text-align: center;
  }

  .col-lg-5 {
    padding-right: 12px !important;
  }

  .hero-title,
  .hero-description,
  .hero-description-small {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-highlight-grid {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: 44px;
    letter-spacing: -1px;
  }

  .hero-floating-badge {
    display: none;
  }

  .partners-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .partners-header span {
    justify-content: center;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  #hero-1 {
    padding: 95px 0 45px;
  }

  .hero-subtitle {
    font-size: 10px;
    letter-spacing: 1.4px;
    margin-bottom: 16px;
  }

  .hero-subtitle::before {
    width: 20px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-description-small {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .hero-highlight-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }

  .hero-highlight-item {
    justify-content: flex-start;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    min-height: 50px;
    padding: 14px 20px;
  }

  .hero-image-card {
    padding: 12px;
    border-radius: 24px;
  }

  .partners-floating-card {
    margin-top: 50px;
    padding: 22px;
    border-radius: 24px;
  }

  .partners-header h2 {
    font-size: 24px;
  }

  .partner-item {
    padding: 15px;
    border-radius: 18px;
  }

  .partner-logo-card {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 17px;
  }

  .partner-logo-card img {
    max-width: 44px;
    max-height: 44px;
  }

  .partner-item h3 {
    font-size: 16px;
  }

  .partner-item p {
    font-size: 12px;
  }
}
