.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: rgba(32, 32, 32, 0.94);
  backdrop-filter: blur(10px);
}

.site-header > .container,
.site-header-mobile {
  transition: transform 0.35s ease;
}

.site-header.is-hidden > .container,
.site-header.is-hidden .site-header-mobile {
  transform: translateY(calc(-100% - 3rem));
}

.front-header {
  position: fixed;
  top: clamp(1.25rem, 2vw, 2.5rem);
  background: transparent;
  backdrop-filter: none;
}

.front-header::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  height: clamp(6rem, 9vw, 10rem);
  background: linear-gradient(180deg, rgba(32, 32, 32, 0.92), rgba(32, 32, 32, 0));
  pointer-events: none;
}

.site-header .container {
  width: 100%;
}

.front-header .container {
  max-width: 1520px;
}

.site-header-inner {
  display: grid;
  min-height: 3.75rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 3vw, 4rem);
  align-items: center;
}

.site-header-logo {
  display: block;
  flex-shrink: 0;
}

.site-header-logo-img {
  display: block;
  width: clamp(10.5rem, 13vw, 13.5rem);
  height: auto;
}

.site-header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 2vw, 2.5rem);
  border-top: 2px solid var(--brand-red);
  padding-top: 0.68rem;
}

.site-header-nav-links {
  flex: 1;
}

.site-header-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(2.5rem, 5vw, 7rem);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.site-header-menu a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
}

.site-header-menu a::before {
  content: "";
  position: absolute;
  left: -0.55rem;
  top: -0.28rem;
  width: 1.95rem;
  height: 2.2rem;
  background-image: url("../img/framelink.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  opacity: 0;
  transform: translate(0.25rem, 0.15rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.site-header-menu a:hover::before {
  opacity: 1;
  transform: translate(0, 0);
}

.site-header-menu li:last-child {
  margin-left: auto;
}

.site-header-menu li:last-child a {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  border: 2px solid var(--brand-red);
  padding: 0 1.35rem;
  transition: background 0.2s ease;
}

.site-header-menu li:last-child a:hover {
  background: var(--brand-red);
}

.site-header-menu li:last-child a::before {
  display: none;
}

.site-header-lang {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 0.65rem;
  margin-bottom: -0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.site-header-lang-current {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  background: transparent;
  padding: 0;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
}

.site-header-lang-menu {
  position: absolute;
  right: 0;
  top: 100%;
  display: grid;
  min-width: 6.5rem;
  gap: 0.1rem;
  background: rgba(32, 32, 32, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header-lang:hover .site-header-lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header-lang-menu button {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  background: transparent;
  padding: 0.55rem 0.7rem;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-transform: uppercase;
}

.site-header-lang-menu button:hover,
.site-header-lang-menu button.is-active {
  background: rgba(227, 1, 23, 0.18);
  color: #ffffff;
}

.site-header-light {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header-light .site-header-menu a {
  color: var(--brand-blue);
}

.site-header-light .site-header-lang-current {
  color: var(--brand-blue);
}

.site-header-mobile {
  background: rgba(32, 32, 32, 0.98);
}

.site-header-mobile-menu {
  color: #ffffff;
}

@media (max-width: 1279px) {
  .site-header-inner {
    gap: clamp(1rem, 2vw, 2rem);
  }

  .site-header-logo-img {
    width: clamp(9.5rem, 12vw, 11rem);
  }

  .site-header-menu {
    gap: clamp(1.5rem, 3vw, 3.5rem);
    font-size: 0.92rem;
  }

  .site-header-menu li:last-child a {
    padding: 0 0.95rem;
  }
}

@media (max-width: 1023px) {
  .site-header-inner {
    display: flex;
    min-height: 4.25rem;
    justify-content: space-between;
  }

  .site-header-nav {
    display: none;
  }

  .site-header-lang {
    display: none;
  }
}

.front-page {
  position: relative;
  background: #202020;
  overflow-x: hidden;
  --front-section-bg: #202020;
  --front-wide-gutter: max(0px, calc((100vw - 1520px) / 2));
}

.front-page::before {
  content: none;
}

.front-page::after {
  content: none;
}

.front-page > * {
  position: relative;
  z-index: 1;
}

.front-hero {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
  overflow-y: visible;
  background:
    url("../img/truck.webp") -46vw 27% / min(66vw, 1080px) auto no-repeat,
    var(--front-section-bg);
  color: #ffffff;
}

.front-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 104% -4%, rgba(227, 1, 23, 0.16), rgba(227, 1, 23, 0.06) 18rem, transparent 43rem);
  pointer-events: none;
}

.front-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 104% -4%, rgba(227, 1, 23, 0.1), transparent 24rem),
    radial-gradient(circle at 66% 44%, rgba(255, 255, 255, 0.008), transparent 30rem);
  pointer-events: none;
}

.front-hero-map {
  position: absolute;
  top: 0;
  right: 0;
  width: min(72vw, 1160px);
  height: 80vh;
  min-height: 420px;
  overflow: hidden;
  opacity: 0.82;
  z-index: 1;
}

.front-hero-map-svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.front-hero-country {
  fill: #404040;
  stroke: #242424;
  stroke-width: 0.55;
}

.front-hero-country.is-route-active {
  fill: #404040;
}

.front-hero-country-label {
  fill: #ffffff;
  font-weight: 700;
  line-height: 1;
  opacity: 0.72;
  pointer-events: none;
  text-anchor: middle;
  text-transform: uppercase;
}

.front-hero-routes {
  pointer-events: none;
}

.front-hero-route {
  stroke: var(--brand-red);
  stroke-width: 1.7;
  stroke-linecap: round;
  opacity: 0;
  transition: stroke-dashoffset 1.7s ease, opacity 0.25s ease;
}

.front-hero-route-dot {
  fill: var(--brand-red);
  transform-box: fill-box;
  transform-origin: center;
  animation: frontRoutePulse 2.4s ease-in-out infinite;
}

.front-hero-route-dot-target {
  animation-name: frontRouteTargetPulse;
}

.front-hero-route-dot-hidden {
  display: none;
}

.front-hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(9rem, 18vh, 14rem);
  padding-bottom: 8rem;
}

.front-hero-content {
  width: min(100%, 720px);
  align-self: flex-start;
  margin-left: clamp(0rem, 6vw, 5rem);
  padding-top: 0;
}

.front-hero h1 {
  position: relative;
  display: inline-block;
  font-size: 46px;
  line-height: 1.06;
  font-weight: 400;
}

.front-hero h1::before {
  content: "";
  position: absolute;
  left: -2.25rem;
  top: -1.05rem;
  width: 4.6rem;
  height: 6.3rem;
  background-image: url("../img/mainframe.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}

.front-hero-lead {
  margin-top: 1.35rem;
  color: var(--brand-red);
  font-size: 22px;
  font-weight: 700;
}

.front-hero-content p:not(.front-hero-lead) {
  margin-top: 1rem;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.8;
}

.front-hero-boxes {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.6vw, 1.5rem);
  align-self: center;
  margin-top: clamp(8.5rem, 15vh, 12rem);
  margin-left: 0;
  padding-bottom: 0;
}

.front-hero-box {
  position: relative;
  display: block;
  aspect-ratio: 1.65 / 1;
  overflow: hidden;
  background: #101010;
  color: #ffffff;
  text-decoration: none;
}

.front-hero-box-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transition: transform 0.35s ease;
}

.front-hero-box::after {
  content: "";
  position: absolute;
  inset: 58% 0 0;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0), rgba(16, 16, 16, 0.76));
  pointer-events: none;
}

.front-hero-box span {
  position: absolute;
  left: 2.35rem;
  bottom: 1.55rem;
  z-index: 1;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.front-hero-box span::before {
  content: "";
  position: absolute;
  left: -1.3rem;
  top: -0.32rem;
  width: 1.1rem;
  height: 1.5rem;
  background-image: url("../img/boxesframe.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.front-hero-box i {
  position: absolute;
  right: 1.4rem;
  bottom: 1.45rem;
  z-index: 1;
  width: 1.35rem;
  height: 1.35rem;
  background-image: url("../img/arrowred.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transform: translateX(-0.4rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.front-hero-box:hover .front-hero-box-image {
  transform: scale(1.04);
}

.front-hero-box:hover i {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1440px) {
  .front-hero {
    background:
      url("../img/truck.webp") -56vw 28% / min(75vw, 980px) auto no-repeat,
      var(--front-section-bg);
  }

  .front-hero-map {
    width: min(76vw, 1020px);
    height: 76vh;
  }

  .front-hero-container {
    padding-top: clamp(8rem, 16vh, 11rem);
    padding-bottom: 6rem;
  }

  .front-hero-content {
    width: min(100%, 640px);
    margin-left: clamp(0rem, 4vw, 3rem);
  }

  .front-hero-boxes {
    margin-top: clamp(6rem, 13vh, 9rem);
  }
}

@media (max-width: 1279px) {
  .front-hero {
    background:
      url("../img/truck.webp") -72vw 30% / min(92vw, 900px) auto no-repeat,
      var(--front-section-bg);
  }

  .front-hero-map {
    width: 84vw;
    opacity: 0.68;
  }

  .front-hero h1 {
    font-size: 42px;
  }

  .front-hero-lead {
    font-size: 20px;
  }

  .front-hero-content p:not(.front-hero-lead) {
    font-size: 17px;
  }

  .front-hero-boxes {
    margin-top: 5rem;
  }

  .front-hero-box span {
    left: 1.75rem;
    bottom: 1.25rem;
    font-size: 1rem;
  }
}

@media (max-width: 1023px) {
  .front-hero {
    min-height: auto;
    background:
      url("../img/truck.webp") -72vw 29% / 96vw auto no-repeat,
      var(--front-section-bg);
  }

  .front-hero-map {
    top: 0;
    right: -12vw;
    width: 120vw;
    height: 56vh;
    opacity: 0.35;
  }

  .front-hero-container {
    min-height: auto;
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
  }

  .front-hero-content {
    width: min(100%, 38rem);
    margin-left: 0;
  }

  .front-hero h1 {
    font-size: clamp(2.4rem, 7vw, 3.6rem);
  }

  .front-hero-boxes {
    margin-left: 0;
    margin-top: 4rem;
  }
}

@media (max-width: 767px) {
  .site-header-logo-img {
    width: 130px;
  }

  .front-hero {
    min-height: auto;
    background:
      url("../img/truck.webp") -138vw 31% / 158vw auto no-repeat,
      var(--front-section-bg);
  }

  .front-hero-container {
    min-height: auto;
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }

  .front-hero-map {
    top: 0;
    right: 0;
    width: 100vw;
    min-height: 320px;
  }

  .front-hero-route,
  .front-hero-route-dot {
    display: none;
  }

  .front-hero-content {
    padding-top: 4.5rem;
  }

  .front-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.3rem);
  }

  .front-hero-lead {
    margin-top: 1rem;
    font-size: 18px;
  }

  .front-hero-content p:not(.front-hero-lead) {
    font-size: 16px;
    line-height: 1.65;
  }

  .front-hero-boxes {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 2.5rem;
  }

  .front-hero-box {
    aspect-ratio: 2.1 / 1;
  }

  .front-hero h1::before {
    left: -1.3rem;
    width: 2.8rem;
    height: 3.9rem;
  }
}

@media (max-width: 480px) {
  .front-hero-content {
    padding-top: 3.75rem;
  }

  .front-hero h1 {
    font-size: clamp(2.1rem, 12.5vw, 2.7rem);
  }

  .front-hero h1::before {
    left: -1rem;
    top: -0.75rem;
  }

  .front-hero-content p:not(.front-hero-lead) {
    font-size: 0.98rem;
  }
}

@media (min-width: 1900px) {
  .front-hero {
    background-position: -46rem 27%, 0 0;
  }

  .front-hero-map {
    top: 0;
    right: 0;
    width: min(54vw, 1080px);
  }

  .front-hero-content {
    margin-left: 0;
  }
}

@keyframes frontRoutePulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.45);
  }
}

@keyframes frontRouteTargetPulse {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.7);
  }
}

.front-about {
  position: relative;
  overflow: hidden;
  background: var(--front-section-bg);
  margin-top: -1px;
  padding: clamp(7rem, 10vw, 10rem) 0 clamp(5rem, 8vw, 8rem);
  color: #ffffff;
}

.front-about::before {
  content: "";
  position: absolute;
  inset: 0 -20% 0 auto;
  z-index: 0;
  width: min(94vw, 1500px);
  background-image:
    linear-gradient(90deg, #202020 0%, #202020 18%, rgba(32, 32, 32, 0.96) 25%, rgba(32, 32, 32, 0.72) 36%, rgba(32, 32, 32, 0.42) 48%, rgba(32, 32, 32, 0.16) 60%, rgba(32, 32, 32, 0) 72%, rgba(32, 32, 32, 0) 84%, rgba(32, 32, 32, 0.24) 95%, rgba(32, 32, 32, 0.72) 100%),
    linear-gradient(180deg, #202020 0%, rgba(32, 32, 32, 0.96) 8%, rgba(32, 32, 32, 0.72) 18%, rgba(32, 32, 32, 0.36) 32%, rgba(32, 32, 32, 0) 48%, rgba(32, 32, 32, 0) 64%, rgba(32, 32, 32, 0.32) 78%, rgba(32, 32, 32, 0.8) 91%, #202020 100%),
    linear-gradient(rgba(4, 7, 10, 0.56), rgba(4, 7, 10, 0.56)),
    url("../img/truckbg.webp");
  background-position: center, center, center, 58% center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%, cover;
  opacity: 1;
  pointer-events: none;
}

.front-about::after {
  content: none;
}

.front-about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.2fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.front-about-content {
  max-width: 42rem;
}

.front-about h2 {
  margin-bottom: 2rem;
  padding-left: 0;
  color: #ffffff;
  font-size: clamp(2.35rem, 3.4vw, 4.25rem);
  font-weight: 700;
  line-height: 1.02;
}

.front-about h2::before {
  left: -1.7rem;
  top: -1.85rem;
  width: 4.6rem;
  height: 6.3rem;
  background-image: url("../img/mainframe.svg");
}

.front-about-text {
  display: grid;
  gap: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.75;
}

.front-about-text p {
  margin: 0;
}

.front-about-button {
  display: inline-flex;
  min-height: 3.6rem;
  align-items: center;
  gap: 1rem;
  margin-top: 2.4rem;
  border: 2px solid var(--brand-red);
  padding: 0 1.55rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.front-about-button i {
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../img/arrowred.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.25s ease;
}

.front-about-button:hover {
  background: var(--brand-red);
  color: #ffffff;
}

.front-about-button:hover i {
  transform: translateX(0.25rem);
  filter: brightness(0) invert(1);
}

.front-about-asset {
  position: relative;
  min-height: clamp(18rem, 30vw, 28rem);
}

.front-about-asset::before,
.front-about-asset::after {
  content: none;
}

.front-about-asset img {
  display: none;
}

@media (max-width: 1023px) {
  .front-about {
    padding: clamp(5rem, 9vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  }

  .front-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .front-about-content {
    max-width: none;
    width: min(100%, 42rem);
  }

  .front-about-asset {
    min-height: clamp(15rem, 36vw, 22rem);
  }

  .front-about::before {
    inset: auto -22% 0 0;
    width: auto;
    height: 64%;
    opacity: 0.72;
    background-position: center, center, center, 62% center;
    background-size: 100% 100%, 100% 100%, 100% 100%, cover;
  }
}

@media (max-width: 767px) {
  .front-about {
    padding: 4.5rem 0 3.5rem;
  }

  .front-about h2 {
    margin-bottom: 1.35rem;
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .front-about h2::before {
    left: -1.15rem;
    top: -1.25rem;
    width: 3.2rem;
    height: 4.4rem;
  }

  .front-about-text {
    gap: 0.9rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .front-about-button {
    min-height: 3.3rem;
    margin-top: 1.8rem;
    padding: 0 1.25rem;
    font-size: 0.88rem;
  }

  .front-about-asset {
    min-height: clamp(12rem, 58vw, 18rem);
  }

  .front-about::before {
    inset: auto -38% 0 0;
    width: auto;
    height: 48%;
    opacity: 0.58;
    background-position: center, center, center, 64% center;
  }
}

@media (max-width: 480px) {
  .front-about {
    padding: 4rem 0 3rem;
  }

  .front-about-grid {
    gap: 1.5rem;
  }

  .front-about-asset {
    min-height: 11rem;
  }

  .front-about::before {
    width: auto;
    height: 42%;
    opacity: 0.5;
    background-position: center, center, center, 66% center;
  }
}

@media (min-width: 1900px) {
  .front-about::before {
    inset: 0 -16rem 0 auto;
    width: min(82vw, 1500px);
  }
}

.front-cta {
  position: relative;
  overflow: hidden;
  background: var(--front-section-bg);
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  color: #ffffff;
}

.front-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(24rem, 0.58fr);
  gap: clamp(2rem, 3.6vw, 4rem);
  align-items: start;
}

.front-cta-inner::before {
  content: none;
}

.front-cta-content {
  max-width: 48rem;
  border-left: 4px solid var(--brand-red);
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
}

.front-cta h2 {
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  font-weight: 700;
  line-height: 1;
}

.front-cta h2::before {
  display: none;
}

.front-cta-text {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
}

.front-cta-text p {
  margin: 0;
}

.front-cta-button {
  display: inline-flex;
  min-height: 4rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.2rem;
  border: 2px solid var(--brand-red);
  padding: 0 1.7rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease;
}

.front-cta-button i {
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../img/arrowred.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.25s ease;
}

.front-cta-button:hover {
  background: var(--brand-red);
  transform: translateY(-0.15rem);
}

.front-cta-button:hover i {
  transform: translateX(0.25rem);
  filter: brightness(0) invert(1);
}

.front-cta-form-wrap {
  position: relative;
  width: 100%;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.front-cta-form-image {
  position: absolute;
  left: -12%;
  top: 50%;
  z-index: -1;
  display: block;
  width: 98%;
  height: auto;
  max-width: none;
  opacity: 0.48;
  transform: translate(-50%, -50%);
}

.front-cta-form {
  position: relative;
  display: grid;
  gap: 1rem;
}

.front-cta-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.front-cta-form-wide {
  grid-column: 1 / -1;
}

.front-cta-form .ydforms-field {
  display: block;
}

.front-cta-floating {
  position: relative;
}

.front-cta-floating label {
  position: absolute;
  left: 1rem;
  top: 1.08rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  transition: color 0.2s ease, font-size 0.2s ease, top 0.2s ease;
}

.front-cta-field {
  display: block;
  width: 100%;
  min-height: 3.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(32, 32, 32, 0.88);
  padding: 1.1rem 1rem 0.35rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.front-cta-field::placeholder {
  color: transparent;
}

.front-cta-field:focus {
  border-color: var(--brand-red);
  background: rgba(32, 32, 32, 0.96);
}

.front-cta-field:focus + label,
.front-cta-field:not(:placeholder-shown) + label {
  top: 0.45rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
}

.front-cta-textarea {
  min-height: 8.5rem;
  padding-top: 1.45rem;
  resize: vertical;
}

.front-cta-consent-wrap {
  display: grid;
  gap: 0.35rem;
}

.front-cta-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.front-cta-consent .ydforms-field {
  flex: 0 0 auto;
  padding-top: 0.15rem;
}

.front-cta-checkbox {
  width: 1rem;
  height: 1rem;
  accent-color: var(--brand-red);
}

.front-cta-submit {
  display: inline-flex;
  width: fit-content;
  min-height: 3.6rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px solid var(--brand-red);
  background: transparent;
  padding: 0 1.55rem;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.front-cta-submit i {
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../img/arrowred.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.25s ease;
}

.front-cta-submit:hover {
  background: var(--brand-red);
  transform: translateY(-0.15rem);
}

.front-cta-submit:hover i {
  transform: translateX(0.25rem);
  filter: brightness(0) invert(1);
}

.front-cta-form-message,
.front-cta-form-errors {
  margin: 0 0 1rem;
  border-left: 3px solid var(--brand-red);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.85rem 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
}

.front-cta-form-errors p {
  margin: 0;
}

@media (max-width: 1279px) {
  .front-cta-inner {
    grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.72fr);
    gap: clamp(2rem, 4vw, 3rem);
  }

  .front-cta h2 {
    font-size: clamp(2.35rem, 4.8vw, 4rem);
  }

  .front-cta-form-wrap {
    padding: clamp(1rem, 2.4vw, 1.75rem);
  }
}

@media (max-width: 1023px) {
  .front-cta {
    padding: clamp(4rem, 8vw, 5.5rem) 0;
  }

  .front-cta-inner {
    grid-template-columns: 1fr;
  }

  .front-cta-content {
    max-width: none;
  }

  .front-cta-form-wrap {
    max-width: 42rem;
    padding: 0;
  }

  .front-cta-form-image {
    left: 68%;
    width: min(88vw, 36rem);
    opacity: 0.28;
  }
}

@media (max-width: 767px) {
  .front-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .front-cta-content {
    border-left-width: 3px;
    padding: 1rem 0 1rem 1.25rem;
  }

  .front-cta h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .front-cta-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .front-cta-button {
    width: fit-content;
    min-height: 3.35rem;
    padding: 0 1.25rem;
    white-space: normal;
  }

  .front-cta-form-grid {
    grid-template-columns: 1fr;
  }

  .front-cta-form-image {
    display: none;
  }

  .front-cta-submit {
    min-height: 3.35rem;
    padding: 0 1.25rem;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #151515;
  color: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.site-footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(10rem, 0.4fr) minmax(14rem, 0.55fr) minmax(24rem, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.site-footer-logo {
  display: inline-block;
  margin-bottom: 2rem;
}

.site-footer-logo img {
  display: block;
  width: 11rem;
  height: auto;
}

.site-footer-company {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.site-footer-company p {
  margin: 0 0 0.6rem;
}

.site-footer-company p:last-child {
  margin-bottom: 0;
}

.site-footer-menu {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-nav {
  display: block;
}

.site-footer-menu a,
.site-footer-contact a,
.site-footer-links a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer-menu a:hover,
.site-footer-contact a:hover,
.site-footer-links a:hover {
  color: var(--brand-red);
}

.site-footer-contact,
.site-footer-links {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.site-footer-contact div,
.site-footer-links {
  display: grid;
  gap: 0.45rem;
}

.site-footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer-links span {
  grid-column: 1 / -1;
}

.site-footer-link-logo {
  display: block;
  position: absolute;
  left: auto;
  right: 0;
  width: min(100%, 68rem);
  top: 9.2rem;
  z-index: 0;
  width: auto;
  max-width: none;
  height: auto;
  pointer-events: none;
}

.site-footer-contact span,
.site-footer-links span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.site-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9rem;
  font-weight: 500;
}

.site-footer-yd {
  display: inline-flex;
  opacity: 0.72;
  transition: opacity 0.25s ease;
}

.site-footer-yd:hover {
  opacity: 1;
}

.site-footer-yd img {
  display: block;
  width: 9rem;
  height: auto;
}

@media (max-width: 1279px) {
  .site-footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(9rem, 0.38fr) minmax(12rem, 0.55fr) minmax(20rem, 0.82fr);
    gap: clamp(1.5rem, 3.5vw, 3.25rem);
  }

  .site-footer-link-logo {
    right: -4rem;
    max-width: 46rem;
    opacity: 0.72;
  }
}

@media (max-width: 1023px) {
  .site-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }

  .site-footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer-link-logo {
    top: auto;
    right: -8rem;
    bottom: 2rem;
    max-width: 34rem;
    opacity: 0.36;
  }
}

@media (max-width: 640px) {
  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer-company {
    max-width: none;
  }

  .site-footer-links {
    grid-template-columns: 1fr;
  }

  .site-footer-link-logo {
    display: none;
  }

  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
}

:root {
  --font-dx: "ff-dax-pro", sans-serif;
  --font-dxc: "ff-dax-compact-pro", sans-serif;
  --prospan-blue: #004494;
  --prospan-green: #005220;
  --prospan-yellow: #d3d800;
}

body {
  font-family: var(--font-dx);
  font-size: 14px;
  line-height: 20px;
}

.prospan-home {
  overflow: hidden;
  background: #ffffff;
  color: var(--prospan-blue);
}

.prospan-shell {
  width: 90%;
  max-width: 1020px;
  margin-inline: auto;
}

.prospan-header {
  position: relative;
  z-index: 20;
  background: #ffffff;
}

.prospan-header-inner {
  display: flex;
  min-height: 140px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.prospan-header-logo {
  display: block;
  width: 137px;
}

.prospan-header-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.prospan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  font-family: var(--font-dx);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.prospan-button:hover {
  opacity: 0.82;
}

.prospan-button-dark {
  background: var(--prospan-green);
  color: #ffffff;
}

.prospan-button-dark:hover {
  background: #007c30;
}

.prospan-button-accent {
  padding: 12px 16px;
  background: var(--prospan-yellow);
  color: #ffffff;
  font-size: 22px;
}

.prospan-button-accent:hover {
  background: #a8ac00;
}

.prospan-hero {
  position: relative;
  min-height: 470px;
  background-color: #e7af54;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.prospan-hero-inner {
  position: relative;
  min-height: 470px;
}

.prospan-hero-content {
  position: absolute;
  top: 29%;
  left: 0;
  width: 450px;
  max-width: 60%;
  color: #ffffff;
}

.prospan-hero h1 {
  margin: 0 0 10px;
  font-family: var(--font-dxc);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.prospan-hero-badge {
  position: absolute;
  right: 5.5%;
  bottom: 6%;
  width: clamp(6.5rem, 9vw, 8.2rem);
  height: auto;
}

.prospan-intro {
  position: relative;
  background: #ffffff;
}

.prospan-intro-inner {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: center;
  padding-top: 13.5rem;
  padding-bottom: 4rem;
  text-align: center;
}

.prospan-intro-product {
  position: absolute;
  top: -4.5rem;
  left: 50%;
  width: 268px;
  max-width: 68vw;
  height: auto;
  transform: translateX(-50%);
}

.prospan-intro h2 {
  display: block;
  max-width: 27rem;
  margin: 0;
  font-family: var(--font-dxc);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.24;
  color: var(--prospan-blue);
}

.prospan-intro h2::before {
  display: none;
}

.prospan-intro h2::after {
  display: block;
  width: 3.5rem;
  height: 1px;
  margin: 0.8rem auto;
  background: var(--prospan-blue);
  content: "";
}

.prospan-intro-text {
  max-width: 425px;
  font-size: 16px;
  line-height: 1.4;
}

.prospan-intro-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .prospan-shell {
    width: 90%;
  }

  .prospan-header-inner {
    min-height: 88px;
  }

  .prospan-hero,
  .prospan-hero-inner {
    min-height: 470px;
  }

  .prospan-hero {
    background-position: 60% center;
  }

  .prospan-hero::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent 72%);
    content: "";
  }

  .prospan-hero-inner {
    z-index: 1;
  }

  .prospan-hero-content {
    top: 12%;
    width: 340px;
    max-width: 75%;
  }

  .prospan-hero h1 {
    font-size: 36px;
  }

  .prospan-hero-badge {
    right: 1rem;
    bottom: 2.5rem;
    width: 6.5rem;
  }

  .prospan-intro-inner {
    min-height: 390px;
    padding-top: 12rem;
  }
}

@media (max-width: 479px) {
  .prospan-hero h1 {
    font-size: 30px;
  }

  .prospan-intro h2 {
    font-size: 26px;
  }

  .prospan-intro-text {
    font-size: 14px;
  }
}

.prospan-error-page {
  display: flex;
  min-height: 620px;
  align-items: center;
  padding-block: 100px;
  background: #ffffff;
  color: var(--prospan-blue);
}

.prospan-error-content {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.prospan-error-code {
  margin: 0;
  font-family: var(--font-dxc);
  font-size: clamp(7rem, 15vw, 11rem);
  font-weight: 700;
  line-height: 0.8;
  color: var(--prospan-blue);
}

.prospan-error-content h1 {
  margin: 40px 0 0;
  font-family: var(--font-dxc);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--prospan-blue);
}

.prospan-error-content h1::after {
  display: block;
  width: 58px;
  height: 1px;
  margin: 16px auto 0;
  background: var(--prospan-blue);
  content: "";
}

.prospan-error-action {
  margin-top: 32px;
}

.prospan-page-hero {
  display: flex;
  min-height: 220px;
  align-items: center;
  background: var(--prospan-yellow);
  color: var(--prospan-blue);
}

.prospan-page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-dxc);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}

.prospan-page-content {
  padding-block: 100px;
  background: #ffffff;
  color: var(--prospan-blue);
}

.prospan-page-wysiwyg {
  max-width: 760px;
}

.prospan-page-wysiwyg h2,
.prospan-page-wysiwyg h3,
.prospan-page-wysiwyg h4 {
  margin: 40px 0 16px;
  font-family: var(--font-dxc);
  font-weight: 700;
  line-height: 1.25;
  color: var(--prospan-blue);
}

.prospan-page-wysiwyg h2:first-child,
.prospan-page-wysiwyg h3:first-child,
.prospan-page-wysiwyg h4:first-child {
  margin-top: 0;
}

.prospan-page-wysiwyg h2 {
  font-size: 32px;
}

.prospan-page-wysiwyg h3 {
  font-size: 22px;
}

.prospan-page-wysiwyg h4 {
  font-size: 18px;
}

.prospan-page-wysiwyg p,
.prospan-page-wysiwyg ul,
.prospan-page-wysiwyg ol {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
}

.prospan-page-wysiwyg ul,
.prospan-page-wysiwyg ol {
  padding-left: 24px;
}

.prospan-page-wysiwyg ul {
  list-style: disc;
}

.prospan-page-wysiwyg ol {
  list-style: decimal;
}

.prospan-page-wysiwyg a {
  color: var(--prospan-green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prospan-page-wysiwyg img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .prospan-error-page {
    min-height: 480px;
    padding-block: 70px;
  }

  .prospan-error-content h1 {
    font-size: 30px;
  }

  .prospan-page-hero {
    min-height: 160px;
  }

  .prospan-page-hero h1 {
    font-size: 36px;
  }

  .prospan-page-content {
    padding-block: 70px;
  }

  .prospan-page-wysiwyg h2 {
    font-size: 26px;
  }

  .prospan-page-wysiwyg p,
  .prospan-page-wysiwyg ul,
  .prospan-page-wysiwyg ol {
    font-size: 14px;
  }
}

.prospan-home h2::before {
  display: none;
}

.prospan-section {
  position: relative;
  padding-block: 100px;
}

.prospan-section h2,
.prospan-section h3,
.prospan-footer h2,
.prospan-footer h3 {
  font-family: var(--font-dxc);
  font-weight: 700;
}

.prospan-section p {
  max-width: 425px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
}

.prospan-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.prospan-section-heading h2 {
  display: block;
  max-width: 500px;
  margin: 0;
  color: var(--prospan-blue);
  font-size: 34px;
  line-height: 1.24;
}

.prospan-section-heading h2::after {
  display: block;
  width: 58px;
  height: 1px;
  margin: 10px auto 0;
  background: var(--prospan-blue);
  content: "";
}

.prospan-section-lead {
  text-align: center;
}

.prospan-section-lead p {
  margin-inline: auto;
}

.prospan-why {
  padding-top: 20px;
}

.prospan-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.prospan-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.prospan-feature-card > img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.prospan-feature-card h3,
.prospan-effect-card h3,
.prospan-split-content h3 {
  margin: 20px 0 10px;
  color: var(--prospan-blue);
  font-size: 22px;
  line-height: 1.3;
}

.prospan-feature-card p,
.prospan-effect-card p {
  font-size: 14px;
  line-height: 20px;
}

.prospan-section-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.prospan-content-stack,
.prospan-cough-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.prospan-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.prospan-split-image-right .prospan-split-media {
  order: 2;
}

.prospan-split-media {
  position: relative;
}

.prospan-split-image {
  display: block;
  width: 100%;
  height: auto;
}

.prospan-split-badge {
  position: absolute;
  top: 5%;
  right: -5%;
  width: 120px;
  height: auto;
}

.prospan-split-content h2 {
  display: block;
  margin: 20px 0 10px;
  color: var(--prospan-blue);
  font-size: 32px;
  line-height: 1.2;
}

.prospan-split-content h3 {
  margin-top: 0;
}

.prospan-split-content .prospan-button {
  margin-top: 6px;
}

.prospan-video {
  display: block;
  width: 100%;
  min-height: 0;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.prospan-cough-list {
  margin-top: 0;
}

.prospan-cough-heading h2 {
  max-width: 420px;
}

.prospan-product-callout {
  padding-block: 100px;
}

.prospan-product-panel {
  position: relative;
  min-height: 258px;
  overflow: hidden;
  background: var(--prospan-green);
  color: #ffffff;
}

.prospan-product-person {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.prospan-product-pack {
  position: absolute;
  z-index: 2;
  top: 4%;
  left: 45%;
  width: auto;
  height: 250px;
}

.prospan-product-content {
  position: relative;
  z-index: 3;
  display: flex;
  width: 55%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
}

.prospan-product-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.3;
}

.prospan-product-content h3::after {
  display: block;
  width: 58px;
  height: 1px;
  margin-top: 10px;
  background: #ffffff;
  content: "";
}

.prospan-product-content ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.prospan-product-content li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 20px;
}

.prospan-product-content li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: #ffffff;
  font-size: 17px;
  content: "✓";
}

.prospan-button-yellow {
  background: var(--prospan-yellow);
  color: var(--prospan-green);
}

.prospan-button-yellow:hover {
  background: #a8ac00;
}

.prospan-effects {
  padding-top: 0;
}

.prospan-effects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.prospan-effect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.prospan-effect-card > img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.prospan-shops {
  padding-block: 100px;
}

.prospan-shop-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.prospan-shop-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.prospan-shop-grid img {
  display: block;
  width: 100%;
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
}

.prospan-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding-block: 40px;
  background: var(--prospan-yellow);
  color: var(--prospan-blue);
}

.prospan-footer-logo {
  display: block;
  width: 137px;
}

.prospan-footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.prospan-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.prospan-footer-column,
.prospan-footer-column p {
  font-size: 14px;
  line-height: 20px;
}

.prospan-footer-column a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prospan-footer-company p {
  margin: 0 0 20px;
}

.prospan-footer-company p:last-child {
  margin-bottom: 0;
}

.prospan-footer-privacy {
  margin-top: 16px;
}

@media (max-width: 991px) {
  .prospan-feature-card {
    padding: 16px 12px;
  }

  .prospan-product-pack {
    top: 20%;
    left: 38%;
    height: 200px;
  }

  .prospan-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .prospan-section {
    padding-block: 70px;
  }

  .prospan-section-heading h2 {
    font-size: 26px;
  }

  .prospan-section p {
    font-size: 14px;
  }

  .prospan-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prospan-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .prospan-split-image-right .prospan-split-media {
    order: 0;
  }

  .prospan-split-content h2 {
    font-size: 26px;
  }

  .prospan-split-content h3 {
    font-size: 18px;
  }

  .prospan-product-person {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    max-height: 340px;
  }

  .prospan-product-pack {
    top: auto;
    right: 1%;
    bottom: 2%;
    left: auto;
    height: 39vw;
  }

  .prospan-product-content {
    width: 100%;
  }

  .prospan-effects-grid {
    grid-template-columns: 1fr;
  }

  .prospan-effect-card {
    flex-direction: row;
    gap: 20px;
    text-align: left;
  }

  .prospan-effect-card h3 {
    margin-top: 0;
  }

  .prospan-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prospan-shop-grid a {
    padding: 16px;
  }

  .prospan-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 479px) {
  .prospan-feature-grid {
    grid-template-columns: 1fr;
  }

  .prospan-product-pack {
    display: none;
  }

  .prospan-shop-grid {
    gap: 10px;
  }

  .prospan-shop-grid img {
    max-width: 110px;
  }
}
