:root {
  --color-white: #ffffff;
  --color-blue: #0d437a;
  --color-blue-dark: #002950;
  --color-blue-soft: #eaf2fb;
  --color-yellow: #fccd05;
  --color-ink: #0a2340;
  --color-text: #28425f;
  --color-border: rgba(13, 67, 122, 0.12);
  --shadow-card: 0 24px 48px rgba(0, 41, 80, 0.12);
  --shadow-soft: 0 18px 36px rgba(0, 41, 80, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1220px;
  --ticker-h: 58px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(252, 205, 5, 0.14), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #eef5fc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 67, 122, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 67, 122, 0.028) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 84%);
  opacity: 0.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex-shrink: 0;
  fill: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--color-blue-dark);
  background: linear-gradient(135deg, #ffd43a 0%, var(--color-yellow) 100%);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.button--accent {
  color: var(--color-blue-dark);
  background: var(--color-yellow);
  box-shadow: 0 18px 30px rgba(252, 205, 5, 0.28);
}

.button--secondary {
  color: var(--color-blue-dark);
  background: var(--color-yellow);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.ticker {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  color: var(--color-blue-dark);
  background: var(--color-yellow);
  box-shadow: 0 8px 20px rgba(0, 41, 80, 0.12);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 24s linear infinite;
}

.ticker-group {
  display: flex;
  flex-shrink: 0;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 34px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 34px;
  border-radius: 50%;
  background: rgba(0, 41, 80, 0.4);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%);
  }
}

.floating-wpp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  box-shadow: var(--shadow-card);
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: clamp(140px, 16vw, 188px);
  height: auto;
}

.brand--hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 26px 34px 30px;
  border-radius: 30px;
  line-height: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.96));
  border: 1px solid rgba(13, 67, 122, 0.1);
  box-shadow:
    0 22px 42px rgba(0, 41, 80, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.brand--hero img {
  width: clamp(250px, 30vw, 390px);
  max-width: 100%;
  height: auto;
  filter:
    drop-shadow(0 10px 18px rgba(0, 41, 80, 0.12))
    contrast(1.05)
    saturate(1.02);
}

.logo-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(100%, 460px);
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(13, 67, 122, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 251, 0.94));
  color: var(--color-blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0, 41, 80, 0.08);
}

.logo-tag--about {
  max-width: 360px;
  background: rgba(255, 255, 255, 0.78);
}

.logo-tag--footer {
  max-width: 320px;
  margin-top: 16px;
  font-size: 0.72rem;
}

.hero {
  position: relative;
  padding: calc(var(--ticker-h) + 20px) 0 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(8, 39, 68, 0.52), rgba(8, 39, 68, 0.4)),
    url("../images/hero-background.png") center center / cover no-repeat;
  transform: scale(1.03);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-card {
  display: grid;
  justify-items: center;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(234, 242, 251, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 24px 48px rgba(0, 27, 52, 0.22);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 720px;
  padding: 18px 8px 24px;
}

.button--hero {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

@media (min-width: 761px) {
  .hero-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    grid-template-areas: "content brand";
    align-items: center;
    justify-items: center;
    gap: 12px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 18px 24px 20px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(234, 242, 251, 0.56)),
      linear-gradient(135deg, rgba(13, 67, 122, 0.04) 25%, transparent 25%) 0 0 / 28px 28px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 24px 48px rgba(0, 27, 52, 0.22);
  }

  .brand--hero {
    grid-area: brand;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-self: center;
    align-self: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

.brand--hero img {
  width: clamp(175px, 18vw, 230px);
  filter: drop-shadow(0 18px 26px rgba(0, 41, 80, 0.16));
}

.brand--hero-mobile {
  display: none;
}

  .logo-tag {
    max-width: 400px;
    margin-top: 4px;
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(13, 67, 122, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: var(--color-blue-dark);
    font-size: 0.92rem;
    font-weight: 700;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: none;
  }

  .logo-tag--hero-side {
    max-width: 220px;
    margin-top: 0;
    padding: 8px 12px;
    font-size: 0.68rem;
    line-height: 1.28;
    text-align: center;
  }

  .hero-content {
    grid-area: content;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    gap: 8px;
    max-width: 460px;
    padding: 0;
  }

  .hero h1 {
    width: fit-content;
    font-size: clamp(3.3rem, 4.8vw, 4.5rem);
    letter-spacing: 0.02em;
    line-height: 0.84;
    color: var(--color-blue-dark);
    text-shadow: none;
    margin-bottom: 12px;
  }

  .hero-subhead {
    display: block;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    color: var(--color-blue);
    font-size: clamp(1.05rem, 1.2vw, 1.18rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-left: 22px;
    text-align: left;
  }

  .title-accent {
    padding: 14px 20px 16px;
    border-radius: 20px;
  }

  .hero-content .button--hero {
    min-height: 48px;
    padding-inline: 22px;
    font-size: 0.9rem;
    margin-top: 6px;
  }
}

.eyebrow,
.section-label,
.benefit-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(13, 67, 122, 0.62);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before,
.benefit-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--color-yellow);
}

h1,
.section-heading h2,
.benefits-section h2,
.about-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 {
  display: grid;
  gap: 4px;
  margin-top: 6px;
  color: var(--color-blue-dark);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.9;
  font-weight: 800;
  text-shadow: 0 8px 18px rgba(255, 255, 255, 0.16);
}

.title-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px 12px;
  border-radius: 18px;
  color: var(--color-blue-dark);
  background: linear-gradient(135deg, rgba(255, 212, 58, 0.96) 0%, rgba(252, 205, 5, 0.92) 100%);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  font-weight: 800;
}

.hero-subhead {
  margin: -12px 0 0;
  color: var(--color-blue-dark);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.carousel-section {
  padding: 28px 0 82px;
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2 {
  color: var(--color-blue-dark);
  font-size: clamp(2.6rem, 4vw, 4.1rem);
}

.carousel {
  position: relative;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 2px);
}

.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  transition: transform 0.8s ease;
  will-change: transform;
}

.slide {
  opacity: 0.72;
  transform: scale(0.985);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.slide.is-active,
.slide.is-near {
  opacity: 1;
  transform: scale(1);
}

.slide__art {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  height: 360px;
  padding: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: transparent;
  border: none;
}

.slide__art::before {
  content: none;
}

.slide__art img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.slide--steel .slide__art img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  object-position: center;
}

.slide__art--gate::after,
.slide__art--galvalume::after,
.slide__art--sandwich::after,
.slide__art--liner::after,
.slide__art--steel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 67, 122, 0.06) 100%);
  pointer-events: none;
}

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--color-blue-dark);
  background: rgba(252, 205, 5, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.art-gate {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  height: 250px;
  align-items: end;
}

.art-gate span {
  display: block;
  height: 100%;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #32689c 0%, #0d437a 100%);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.art-gate span:nth-child(odd) {
  height: 90%;
}

.art-gate span:nth-child(3) {
  height: 74%;
}

.art-roof {
  position: relative;
  width: 100%;
  height: 220px;
  margin-top: auto;
}

.art-roof::before,
.art-roof::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  border-radius: 28px;
}

.art-roof--simple::before {
  top: 46px;
  bottom: 62px;
  background:
    repeating-linear-gradient(
      90deg,
      #d7dee7 0 16px,
      #f8fbff 16px 32px
    );
  transform: skew(-18deg);
  box-shadow: 0 26px 30px rgba(13, 67, 122, 0.12);
}

.art-roof--sandwich::before {
  top: 28px;
  bottom: 92px;
  background:
    repeating-linear-gradient(
      90deg,
      #c6d0dc 0 18px,
      #eef4fa 18px 36px
    );
  transform: skew(-18deg);
}

.art-roof--sandwich::after {
  top: 104px;
  bottom: 42px;
  background: linear-gradient(180deg, #fccd05 0%, #f1be00 100%);
  transform: skew(-18deg);
  box-shadow: 0 24px 30px rgba(13, 67, 122, 0.12);
}

.art-roof--liner::before {
  top: 28px;
  bottom: 108px;
  background:
    repeating-linear-gradient(
      90deg,
      #ccd6e1 0 18px,
      #f6fbff 18px 36px
    );
  transform: skew(-18deg);
}

.art-roof--liner::after {
  top: 98px;
  bottom: 28px;
  background:
    linear-gradient(180deg, #ffffff 0%, #edf4fb 100%);
  transform: skew(-18deg);
  box-shadow:
    inset 0 0 0 3px rgba(13, 67, 122, 0.08),
    0 24px 30px rgba(13, 67, 122, 0.12);
}

.art-beams {
  position: relative;
  width: 100%;
  height: 250px;
}

.art-beams span {
  position: absolute;
  display: block;
  border-radius: 18px;
  background: linear-gradient(135deg, #3d75aa 0%, #0d437a 100%);
  box-shadow: 0 18px 26px rgba(13, 67, 122, 0.18);
}

.art-beams span:nth-child(1) {
  left: 10%;
  right: 18%;
  top: 36px;
  height: 42px;
}

.art-beams span:nth-child(2) {
  left: 16%;
  right: 8%;
  top: 112px;
  height: 42px;
}

.art-beams span:nth-child(3) {
  left: 26%;
  right: 24%;
  top: 186px;
  height: 42px;
}

.slide__caption {
  margin-top: 16px;
  color: var(--color-blue-dark);
  text-align: center;
}

.slide__caption strong {
  display: block;
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
  line-height: 1.24;
}

.carousel__button {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-blue-dark);
  cursor: pointer;
}

.carousel__button--prev {
  left: -16px;
}

.carousel__button--next {
  right: -16px;
}

.carousel__dots {
  display: none;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.section-cta .button {
  padding-inline: 34px;
  text-align: center;
  gap: 10px;
}

.benefits-section {
  padding: 82px 0;
  background: linear-gradient(180deg, rgba(13, 67, 122, 0.98) 0%, rgba(0, 41, 80, 0.98) 100%);
}

.benefits-section h2 {
  color: var(--color-white);
  font-size: clamp(2.5rem, 4vw, 4rem);
  text-align: center;
}

.benefits-section h2 span {
  color: var(--color-yellow);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  align-items: stretch;
}

.benefit-card {
  min-height: 230px;
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 251, 0.95));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.benefit-kicker {
  margin-bottom: 0;
}

.benefit-number,
.benefit-icon-word {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 82px;
  border-radius: 24px;
  color: var(--color-blue-dark);
  background: rgba(252, 205, 5, 0.32);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.benefit-icon-word--icon .icon {
  width: 2.7rem;
  height: 2.7rem;
}

.benefit-kicker::before {
  display: none;
}

.benefit-card h3 {
  margin: 0;
  color: var(--color-blue-dark);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.button--benefits {
  min-width: min(100%, 340px);
  padding-inline: 30px;
  white-space: nowrap;
}

.about-section {
  padding: 88px 0 96px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: stretch;
}

.about-copy,
.about-card {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.about-image {
  display: grid;
}

.about-copy {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 251, 0.92));
}

.about-copy h2 {
  color: var(--color-blue-dark);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.about-copy p {
  margin: 18px 0 0;
  color: var(--color-text);
  line-height: 1.76;
}

.about-card {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 20px;
  min-height: 100%;
  color: var(--color-blue-dark);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.62), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 251, 0.94) 100%);
}

.about-card img {
  width: clamp(250px, 26vw, 340px);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 41, 80, 0.12));
}

.about-copy ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-copy li {
  color: var(--color-blue-dark);
  font-weight: 700;
}

.footer {
  color: var(--color-white);
  background: linear-gradient(180deg, #082744 0%, #001d39 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
}

.footer-logo-card,
.footer-col {
  min-height: 100%;
  padding: 26px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-card {
  display: grid;
  justify-items: center;
  align-content: center;
}

.footer-logo-card img {
  width: clamp(150px, 16vw, 210px);
  height: auto;
}

.footer-col {
  display: grid;
  gap: 8px;
  text-align: center;
  align-content: center;
  justify-items: center;
}

.footer-col h3 {
  margin: 0 0 6px;
  color: var(--color-yellow);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col span,
.footer-col a {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.footer-phone {
  font-weight: 800;
}

.footer-phone--with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
  font-size: 1.02rem;
  line-height: 1.2;
}

.footer-col:last-child {
  gap: 4px;
}

.footer-col:last-child span {
  margin-top: 0;
}

.footer-col:last-child .footer-phone--with-icon {
  margin-top: 0;
  transform: none;
}

.footer-bottom {
  padding: 18px 16px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1100px) {
  .about-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    justify-items: center;
    text-align: center;
  }

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

  .carousel__track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .carousel__button--prev {
    left: 10px;
  }

  .carousel__button--next {
    right: 10px;
  }
}

@media (max-width: 760px) {
  .hero::before {
    background:
      linear-gradient(rgba(8, 39, 68, 0.68), rgba(8, 39, 68, 0.56)),
      url("../images/hero-background.png") center center / cover no-repeat;
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 54px;
  }

  .hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 340px;
    margin: 0 auto;
    padding: 10px 16px 18px;
    border-radius: 28px;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .carousel__track {
    grid-auto-columns: 100%;
    gap: 0;
  }

  .carousel {
    overflow: hidden;
  }

  .slide {
    padding-inline: 0;
  }

  .slide__art {
    height: 292px;
    border-radius: 24px;
  }

  .slide__caption {
    margin-top: 8px;
  }

  .carousel-section {
    padding: 20px 0 64px;
  }

  .carousel__button {
    width: 48px;
    height: 48px;
  }

  .ticker-track {
    animation-duration: 36s;
  }

  .ticker span {
    padding: 0 26px;
    font-size: 0.88rem;
  }

  .ticker span::before {
    margin-right: 26px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card h3 {
    font-size: 1.72rem;
  }

  .about-copy,
  .about-card {
    padding: 24px 22px;
  }

  .brand--hero img {
    display: none;
  }

  .brand--hero img.brand--hero-mobile {
    display: block;
    width: clamp(132px, 36vw, 168px);
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.42));
  }

  .brand--hero {
    order: -1;
    align-self: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .logo-tag {
    max-width: 278px;
    font-size: 0.62rem;
    padding: 8px 10px;
    line-height: 1.28;
    letter-spacing: 0.01em;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 9.6vw, 3.2rem);
    margin-top: 0;
    line-height: 0.92;
  }

  .hero-subhead {
    margin-top: -4px;
    color: var(--color-white);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .section-heading h2,
  .benefits-section h2,
  .about-copy h2 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .slide__caption strong {
    font-size: 1.05rem;
  }

  .button {
    min-height: 52px;
    padding: 0 22px;
    font-size: 0.9rem;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 8px 0 0;
  }

  .hero-content .button--primary {
    min-height: 48px;
    padding-inline: 22px;
    font-size: 0.86rem;
  }

  .hero-content .button--hero {
    color: var(--color-blue-dark);
    background: #ffffff;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
    margin-top: 4px;
  }

  .hero-content .button--hero .icon {
    color: var(--color-blue-dark);
  }

  .about-copy p,
  .about-copy li,
  .footer-col span,
  .footer-col a {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .footer-inner {
    gap: 16px;
    align-items: stretch;
  }

  .footer-logo-card,
  .footer-col {
    width: 100%;
    min-height: 188px;
    padding: 22px 18px;
    justify-items: center;
    align-content: center;
  }

  .footer-logo-card img {
    width: min(210px, 62vw);
  }

  .footer-col h3 {
    margin-bottom: 4px;
    font-size: 0.78rem;
  }

  .floating-wpp {
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-wpp span {
    display: none;
  }
}
