.text-primary {
  color: #e11837 !important;
}

.bg-diagonal-top-left-bottom-right {
  background: linear-gradient(to bottom right, #e11837, #070001);
}

.video-custom-max-width {
  max-width: 60dvw;
}

.ph {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-glow {
  background:
    radial-gradient(900px 400px at 50% 20%, rgba(239, 68, 68, 0.35), transparent 60%),
    radial-gradient(700px 300px at 15% 25%, rgba(239, 68, 68, 0.18), transparent 60%),
    linear-gradient(180deg, #07070b 0%, #0a0a10 50%, #0b0b12 100%);
}

.card-glow {
  background:
    radial-gradient(600px 300px at 10% 30%, rgba(239, 68, 68, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.divider-fade {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.25), transparent);
}

:root {
  --brand-red: #e31d3c;
  --overlay-gray: #e8e8e8;
  --overlay-text: #9c9ca0;
  --overlay-line: #b0b0b4;
}

body {
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
}

.main-section {
  position: relative;
  min-height: 600px;
  height: 100dvh;
}

.main-section__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.main-section__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-section__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.70) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.main-section__content {
  position: relative;
  z-index: 10;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}


.main-section__podium-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: calc(35dvh + 10px);
}

.podium {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}

.podium__item {
  flex: 1;
}

.podium__item--center {
  transform: translateY(-10dvh);
}

@media (max-width: 1024px) {
  .video-custom-max-width {
    max-width: 600px;
  }

  .main-section {
    max-height: 500px;
  }

  .main-section__podium-wrap {
    align-items: flex-start;
    padding-top: 290px;
  }

  .podium__item--center {
    transform: translateY(-40px);
  }
}

@media (max-width: 767px) {
  .main-section {
    max-height: 400px;
  }


}

.brand-logo {
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
}

.brand-logo .global {
  color: #d1d5db;
  font-weight: 700;
}

.brand-logo .eco {
  color: var(--brand-red);
  font-weight: 800;
}

.brand-logo--overlay .global {
  color: #9ca3af;
}

.brand-logo--overlay small {
  color: #8a8a8f;
  letter-spacing: 0;
  font-size: 0.92rem;
  font-weight: 400;
  text-transform: none;
}

.menu-icon-btn {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  color: white;
  transition: background-color 0.2s ease;
}

.menu-icon-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.menu-icon {
  width: 2rem;
  height: 1rem;
  position: relative;
}

.menu-icon span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 9999px;
  background: currentColor;
}

.bg-bigger-radial-gradient {
  background:
    radial-gradient(circle at bottom center, #7f091c 0%, #320105 70%, #1a0000 90%, #000000 100%);
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-icon span:nth-child(3) {
  bottom: 0;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.6rem;
  min-width: 2.6rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
}

.lang-pill--header {
  color: #111827;
  background: white;
}

.lang-pill--overlay {
  color: white;
  background: var(--brand-red);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-overlay-panel {
  width: 100%;
  background: var(--overlay-gray);
  color: var(--overlay-text);
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
  padding: 1.5rem 1.2rem 2.2rem;
  transform: translateY(-14px);
  transition: transform 0.28s ease;
}

.menu-overlay.is-open .menu-overlay-panel {
  transform: translateY(0);
}

.menu-overlay-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.menu-overlay-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.menu-close-btn {
  position: relative;
  height: 2.6rem;
  width: 2.6rem;
  border: none;
  background: transparent;
  color: #111111;
}

.menu-close-btn::before,
.menu-close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background: currentColor;
  transform-origin: center;
}

.menu-close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.menu-col {
  border-top: 1px solid var(--overlay-line);
  padding-top: 4px;
}

.menu-heading {
  margin-top: 20px;
  color: var(--brand-red);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}

.menu-link {
  display: block;
  margin-top: 0.9rem;
  color: var(--overlay-text);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  transition: color 0.2s ease;
}

.menu-link:hover {
  color: #6c6d71;
}

.lanotr-badge {
  margin-top: 1rem;
  width: 8.8rem;
  height: 4.2rem;
  border-radius: 9999px;
  background: radial-gradient(circle at 26% 44%, #3f9ae0 0%, #1d5f95 62%, #123b5c 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.lanotr-badge::after {
  content: "";
  position: absolute;
  inset: 0 0 0 58%;
  background: #080808;
}

.lanotr-badge span {
  position: relative;
  z-index: 1;
  color: #f2f7fb;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

@media (max-width: 1080px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .brand-logo--overlay small {
    font-size: 0.72rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-link {
    font-size: 13px;
  }

  .lanotr-badge {
    width: 7.8rem;
    height: 3.7rem;
  }
}

.main-logo {
  max-width: 60%;
}

.bg-globaleco-new-tire {
  background: url("../images/promo/bg-globaleco-new-tire.jpg") center center;
  background-size: cover;
}

.article-tire {
  margin-bottom: 80px;
}

.ruban {
  align-items: center;
  background: #E11837;
  color: white;
  text-transform: uppercase;
  padding: 10px 24px 10px 20px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%);
  font-size: 14px;
  font-weight: 600;
  max-width: 480px;
  width: 90%;
  text-align: center;
}

.tire-image-negative-margin {
  margin-bottom: -70px;
  max-width:140px;
}

.bg-radial-gradient {
  background: radial-gradient(circle at bottom center, #7f091c 0%, #320105 40%, #1a0000 70%, #000000 100%);
}

.bg-van-feather-1 {
  background: url("../images/promo/Van-GlobalECO-feather-50.png");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}

@media (max-width: 920px) {
  .bg-van-feather-1 {
    background: none;
  }
}

.grid-why {
  grid-template-columns: 45% 55%;
}

@media (max-width: 1024px) {
  .grid-why {
    grid-template-columns: 100%;
  }
}

.bg-truck-warranty {
  background: url("../images/promo/front-view-of-a-commercial-truck.jpg") center center;
  background-size: cover;
}

.tire-1,
.tire-2,
.tire-3 {
  position: absolute;
  bottom: 0;
  max-width: 125px;
}

.tire-1 {
  left: 0;
}

.tire-2 {
  left: 50%;
  transform: translateX(-50%);
  max-width: 175px;
  z-index: 3;
}

.tire-3 {
  right: 0;
}

@media (max-width: 991px) {
  .tire-1,
  .tire-2,
  .tire-3 {
    max-width: 100px;
  }

  .tire-2 {
    max-width: 140px;
  }
}

@media (max-width: 850px) {
  .tire-1,
  .tire-2,
  .tire-3 {
    max-width: 90px;
  }

  .tire-2 {
    max-width: 140px;
  }
}
