/* HERO */

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 76px 0 34px;
  display: flex;
  align-items: flex-end;
  background: #080808;
  color: #ffffff;
}

.hero-section *,
.hero-section *::before,
.hero-section *::after {
  min-width: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #111111 url("../images/new.jpg") center / cover no-repeat;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.24) 0%,
      rgba(0, 0, 0, 0.58) 42%,
      rgba(0, 0, 0, 0.88) 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  gap: 18px;
}

.hero-content {
  width: 100%;
  max-width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 8px 10px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: rgba(215, 25, 32, 0.22);
  color: #ffffff;
  border: 1px solid rgba(215, 25, 32, 0.38);
  backdrop-filter: blur(12px);
  font-size: 0.5rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero-content h1 {
  max-width: 760px;
  font-size: clamp(1.25rem, 5.8vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 900;
}

.hero-content h1 span {
  display: inline;
}

.hero-text {
  max-width: 100%;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  width: 100%;
  max-width: 100%;
  margin-top: 16px;
  overflow: visible;
  padding-bottom: 0;
}

.hero-tags a,
.hero-tags span {
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.hero-tags a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}

.hero-actions .btn {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  font-size: 0.86rem;
}

.hero-primary-btn {
  background: var(--accent);
  color: #ffffff;
}

.hero-primary-btn:hover {
  background: var(--accent-dark);
}

.hero-secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.hero-secondary-btn:hover {
  background: #ffffff;
  color: #111111;
}

.hero-info {
  display: grid;
  gap: 8px;
}

.hero-info-card {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.hero-info-card span {
  display: block;
  margin-bottom: 6px;
  color: #ff8d72;
  font-size: 0.6rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-info-card p {
  margin: 0;
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1.28;
  font-weight: 750;
}



@media (min-width: 768px) {
  .hero-section {
    padding: 112px 0 72px;
    align-items: center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.62) 48%,
        rgba(0, 0, 0, 0.28) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.24) 0%,
        rgba(0, 0, 0, 0.18) 50%,
        rgba(0, 0, 0, 0.58) 100%
      );
  }

  .hero-inner {
    gap: 30px;
  }

  .hero-content {
    max-width: 860px;
  }

  .hero-badge {
    padding: 9px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .hero-content h1 {
    max-width: 760px;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  .hero-text {
    max-width: 700px;
    margin-top: 20px;
    font-size: 1.06rem;
    line-height: 1.62;
  }

  .hero-tags {
    gap: 8px;
    margin-top: 24px;
  }

.hero-tags a,
.hero-tags span {
  min-height: 36px;
  padding: 0 13px;
  font-size: 0.84rem;
}

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 230px;
    min-height: 54px;
    font-size: 0.94rem;
  }

  .hero-info {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .hero-info-card {
    min-height: 122px;
    padding: 20px;
    border-radius: 24px;
  }

  .hero-info-card span {
    font-size: 0.68rem;
  }

  .hero-info-card p {
    font-size: 0.92rem;
    line-height: 1.35;
  }
}

/* DESKTOP */

@media (min-width: 1120px) {
  .hero-section {
    padding: 128px 0 86px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
    gap: 64px;
    align-items: end;
  }

  .hero-content {
    max-width: 980px;
  }

  .hero-content h1 {
    max-width: 920px;
    font-size: clamp(2.6rem, 3.6vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
  }

  .hero-text {
    max-width: 760px;
    font-size: 1.1rem;
  }

  .hero-info {
    grid-template-columns: 1fr;
    align-self: end;
  }

  .hero-info-card {
    min-height: 118px;
    transition:
      transform var(--transition),
      background var(--transition),
      border-color var(--transition);
  }

  .hero-info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(215, 25, 32, 0.34);
  }
}

/* SMALL PHONES */

@media (max-width: 390px) {
  .hero-section {
    padding: 70px 0 28px;
  }

  .hero-inner {
    gap: 14px;
  }

  .hero-badge {
    margin-bottom: 10px;
    font-size: 0.45rem;
    letter-spacing: 0.035em;
  }
  .hero-content h1 {
    font-size: clamp(1.25rem, 6vw, 1.65rem);
    line-height: 1.18;
    letter-spacing: -0.01em;
  }

  .hero-text {
    margin-top: 11px;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .hero-tags {
    gap: 6px;
    margin-top: 13px;
  }

.hero-tags a,
.hero-tags span {
  min-height: 28px;
  padding: 0 8px;
  font-size: 0.64rem;
}

  .hero-actions {
    margin-top: 16px;
    gap: 8px;
  }

  .hero-actions .btn {
    min-height: 44px;
    font-size: 0.78rem;
  }

  .hero-info-card {
    padding: 11px 12px;
    border-radius: 14px;
  }

  .hero-info-card span {
    margin-bottom: 5px;
    font-size: 0.54rem;
  }

  .hero-info-card p {
    font-size: 0.76rem;
    line-height: 1.22;
  }
}


@media (max-width: 767px) {
  .hero-bg {
    background-image: url("../images/Screenshot_2-optimized.jpg?v=20260720");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .hero-video {
    display: none;
  }
}
