:root {
  --color-navy: #0f2c57;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-border: #d7deea;
  --color-overlay: rgba(6, 19, 41, 0.45);
  --container-max: 1260px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: var(--color-navy);
  background: #ffffff;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.btn-pill {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  background: #162b48;
  color: #ffffff;
  transition: color 0.35s ease;
  isolation: isolate;
  padding: 12px 50px;
}

.btn-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f4d44a;
  border-radius: 0 999px 999px 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.38s ease;
  z-index: -1;
}

.btn-pill:hover,
.btn-pill:focus-visible {
  color: #162b48;
}

.btn-pill:hover::before,
.btn-pill:focus-visible::before {
  transform: scaleX(1);
}

.btn-pill--yellow {
  background: #f4d44a;
  color: #162b48!important;
}

.btn-pill--yellow::before {
  background: #ffffff;
}

.container {
  width: min(100% - 40px, var(--container-max));
  margin-inline: auto;
}

.section-title {
  color: #162b48;
  font-size: clamp(2rem, 4vw, 50px);
  line-height: 0.95;
  font-weight: 900;
}

.section-lead {
  color: #162b48;
  font-size: clamp(1.2rem, 4vw, 24px);
  font-weight: 500;
}

.js-reveal--section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.js-reveal--section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Common Components
======================================== */
.breadcrumb {
  font-size: 12px;
  font-weight: 400;
  color: #162b48;
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: #f4d44a;
  opacity: 1;
}

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

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  opacity: 0.5;
}

.media-overlay-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  isolation: isolate;
}

.media-overlay-card__media {
  display: block;
  width: 100%;
  height: auto;
}

.media-overlay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  transition: background 0.28s ease;
  z-index: 1;
}

.media-overlay-card:hover::after,
.media-overlay-card:focus-visible::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.media-overlay-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 clamp(15px, 1.8vw, 40px)  clamp(20px, 2vw, 60px);
}

/* Site Header (shared) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: var(--color-white);
  border-bottom: 1px solid #edf1f8;
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  width: 100px;
  height: auto;
  display: block;
}

.primary-nav {
  margin-left: auto;
}

.primary-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 24px;
}

.nav-link {
  border: 0;
  background: transparent;
  color: var(--color-black);
  text-decoration: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}

.nav-link:hover {
  opacity: 0.5;
}

.caret {
  font-size: 0.72rem;
  line-height: 1;
  transition: transform 0.2s ease;
  transform-origin: center;
}

.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0 15px;
  min-width: 190px;
  background: var(--color-white);
  border: 0;
  position: absolute;
  left: 0;
  top: calc(100% + 23px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.dropdown-menu a {
  display: block;
  text-decoration: none;
  color: var(--color-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  padding: 5px 14px;
  white-space: nowrap;
}

.dropdown-menu li + li {
  margin-top: 5px;
}

.dropdown-menu a:hover {
  opacity: 0.5;
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.has-dropdown:hover > .nav-link .caret,
.has-dropdown:focus-within > .nav-link .caret,
.has-dropdown.is-open > .nav-link .caret {
  transform: rotate(180deg);
}

.has-dropdown:hover > .nav-link,
.has-dropdown:focus-within > .nav-link,
.has-dropdown.is-open > .nav-link {
  opacity: 0.5;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 1300;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  display: block;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1100;
}

body.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

main {
  min-height: 60vh;
}

/* Bootstrap breakpoints */
@media (max-width: 1199.98px) {
  .site-header__inner {
    min-height: 74px;
  }
}

@media (max-width: 991.98px) {
  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 340px);
    background: var(--color-white);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 1250;
    padding: 86px 24px 32px;
    margin-left: 0;
    overflow-y: auto;
  }

  body.nav-open .primary-nav {
    transform: translateX(0);
  }

  .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-item {
    border-bottom: 1px solid #edf1f8;
    padding-block: 12px;
  }

  .has-dropdown::after {
    display: none;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    font-size: 1rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    border: 0;
    border-left: 2px solid #d8e4f8;
    background: #fbfdff;
    min-width: 0;
    margin-top: 0;
    padding: 0;
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.2s ease, margin-top 0.2s ease;
  }

  .dropdown-menu a {
    white-space: normal;
    font-size: 0.92rem;
    padding: 8px 12px;
  }

  .has-dropdown.is-open > .dropdown-menu {
    max-height: var(--dropdown-height, 320px);
    opacity: 1;
    margin-top: 10px;
    padding: 4px 0;
  }

  .has-dropdown:hover > .dropdown-menu,
  .has-dropdown:focus-within > .dropdown-menu {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .container {
    width: min(100% - 32px, var(--container-max));
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-logo img {
    width: 90px;
  }
}

@media (max-width: 575.98px) {
  .site-logo img {
    width: 84px;
  }

  .primary-nav {
    width: min(90vw, 320px);
    padding-top: 74px;
  }
}

/* Hero foundation */
.hero-block {
  position: relative;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: 560px;
  height: clamp(480px, 62vw, 760px);
}

.hero__bg,
.hero__overlay,
.hero__layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
}

.hero__bg {
  z-index: 0;
  background: #cfe6f6;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(207, 230, 246, 0.32) 0%, rgba(207, 230, 246, 0.05) 50%, rgba(207, 230, 246, 0) 100%);
}

.hero__container {
  position: relative;
  z-index: 6;
  height: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 10%;
}

.hero__content {
  width: min(100%, 640px);
  color: var(--color-navy);
}

.hero__eyebrow {
  margin: 14px 0 0;
  font-size: clamp(1.25rem, 2.1vw, 2.1rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.hero__eyebrow span {
  display: inline-block;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 7.25rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  font-weight: 900;
}

.hero__cta {
  margin-top: 26px;
  min-height: 48px;
  font-size: 1rem;
  font-weight: 500;
}

/* Layer placeholders */
.hero__splash-back {
  z-index: 2;
  background-image: url("../images/hero-splash-back.webp");
  background-size: 100% auto;
  background-position: center bottom;
}

.hero__product-main {
  z-index: 4;
  background-image: url("../images/hero-can-main.webp");
  background-size: min(35vw, 560px) auto;
  background-position: 75% 20%;
}

.hero__splash-front {
  z-index: 5;
  background-image: url("../images/hero-splash-front.webp");
  background-size: min(50vw, 780px) auto;
  background-position: 120% bottom;
  pointer-events: none;
  filter: blur(4px);
}

.hero__splash-back-bottom {
  width: 100%;
  aspect-ratio: 1920 / 187;
  background: url("../images/hero-splash-back-bottom.webp") center top / 100% 100% no-repeat;
}

/* Animation hooks */
.js-reveal .hero__item,
.js-reveal .hero__layer,
.js-reveal .hero__splash-back-bottom,
.js-reveal .hero__overlay {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal.is-visible .hero__overlay {
  opacity: 1;
  transform: none;
  transition-delay: 0ms;
}

.js-reveal.is-visible .hero__item {
  opacity: 1;
  transform: none;
  transition-delay: 120ms;
}

.js-reveal.is-visible .hero__splash-back {
  opacity: 1;
  transform: none;
  transition-delay: 220ms;
}

.js-reveal.is-visible .hero__product-main {
  opacity: 1;
  transform: none;
  transition-delay: 320ms;
}

.js-reveal.is-visible .hero__splash-front {
  opacity: 1;
  transform: none;
  transition-delay: 420ms;
}

.js-reveal.is-visible .hero__splash-back-bottom {
  opacity: 1;
  transform: none;
  transition-delay: 260ms;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 520px;
    height: clamp(460px, 90vw, 620px);
  }

  .hero__container {
    padding-bottom: 30%;
    }

  .hero__title {
    margin-top: 10px;
  }

  .hero__splash-back {
    background-size: 100% auto;
    background-position: center bottom;
  }

  .hero__product-main {
    background-size: min(52vw, 410px) auto;
    background-position: 82% 10%;
  }

  .hero__splash-front {
    background-size: min(70vw, 540px) auto;
    background-position: 130% bottom;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 420px;
    height: clamp(420px, 118vw, 480px);
  }

  .hero__content {
    width: min(100%, 430px);
  }

  .hero__cta {
    min-height: 44px;
    padding-inline: 26px;
  }

  .hero__splash-back {
    background-size: 100% auto;
    background-position: center bottom;
  }

  .hero__product-main {
    background-size: 62vw auto;
    background-position: 100% 10%;
  }

  .hero__splash-front {
    background-size: 84vw auto;
    background-position: 250% 110%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal--section {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js-reveal .hero__item,
  .js-reveal .hero__layer,
  .js-reveal .hero__splash-back-bottom,
  .js-reveal .hero__overlay {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* News section */
.news-section {
  padding: clamp(40px, 8vw, 88px) 0 clamp(52px, 8vw, 96px);
}

.news-section__inner {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.news-section__title {
  margin: 0;
}

.news-section__cta {
  margin-top: 26px;
  min-height: 44px;
  font-size: 1.0625rem;
}

.news-section__cta-mobile-wrap {
  display: none;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list li + li {
  margin-top: 18px;
}

.news-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 80px;
  align-items: start;
  gap: 30px;
  text-decoration: none;
  color: #162b48;
  padding: 14px 0;
  border-bottom: 1px solid #d3dceb;
}

.news-card__thumb {
  width: 150px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background-color: #d6e4f2;
  background-image: url("../images/news-sample.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.news-card__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-position: inherit;
  background-size: inherit;
  background-repeat: inherit;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.news-card__body {
  min-width: 0;
}

.news-card__date {
  margin: 0;
  color: #162b48;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.news-card__title {
  margin: 6px 0 0;
  color: #162b48;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.news-card__arrow {
  width: 60px;
  color: #000000;
  display: inline-flex;
  align-items: start;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.news-card__arrow-icon {
  width: 100%;
  height: auto;
}

.news-card__arrow-icon path,
.news-card__arrow-icon line,
.news-card__arrow-icon polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

.news-card:hover .news-card__arrow,
.news-card:focus-visible .news-card__arrow {
  transform: translateX(3px);
  color: #f4d44a;
}

.news-card:hover .news-card__thumb::before,
.news-card:focus-visible .news-card__thumb::before {
  transform: scale(1.08);
}

.js-reveal .news__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal.is-visible .news__item {
  opacity: 1;
  transform: none;
}

.js-reveal.is-visible .news-section__intro {
  transition-delay: 60ms;
}

.js-reveal.is-visible .news-list-wrap {
  transition-delay: 170ms;
}

@media (max-width: 991.98px) {
  .news-section__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-section__intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
  }

  .news-section__cta {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .news-card {
    grid-template-columns: 100px minmax(0, 1fr) 60px;
    gap: 15px;
    padding-block: 12px;
  }

  .news-card__thumb {
    width: 100px;
  }

  .news-card__date {
    font-size: 16px;
  }

  .news-card__title {
    font-size: 16px;
  }
  .news-card__arrow {
    width: 50px;
  }
}

@media (max-width: 575.98px) {
  .news-section__intro {
    display: block;
  }

  .news-section__cta--desktop {
    display: none;
  }

  .news-section__cta-mobile-wrap {
    display: flex;
    justify-content: center;
    margin-top: 18px;
  }

  .news-section__cta--mobile {
    margin-top: 0;
  }
}

/* Products section */
.products-section {
  background: #fafafa;
  padding: clamp(60px, 10vw, 120px) 0 clamp(60px, 10vw, 120px);
  position: relative;
  overflow: visible;
  isolation: isolate;
  z-index: 3;
}

.products-section .container {
  position: relative;
  z-index: 2;
}

.products-section__splash {
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: min(38vw, 520px);
  aspect-ratio: 1 / 1;
  background: url("../images/products-splash.webp") left bottom / contain no-repeat;
  z-index: 1;
  pointer-events: none;
}

.products-section__intro {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.products-section__title {
  margin: 0;
}

.products-section__lead {
  margin: 14px 0 0;
}

.products-grid {
  list-style: none;
  margin: clamp(30px, 5vw, 60px) 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: transparent;
  box-shadow: 0 0 5px rgba(22, 43, 72, 0.14);
  color: #162b48;
  height: 100%;
  transition: box-shadow 0.25s ease;
}

.product-card__thumb {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: #d6e4f2;
}

.product-card__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.product-card__thumb--running-gear::before {
  background-image: url("../images/products-running_gear.webp");
}

.product-card__thumb--silicone::before {
  background-image: url("../images/products-silicone_bottom_paints.webp");
}

.product-card__thumb--bottom-paints::before {
  background-image: url("../images/products-bottom_paints.webp");
}

.product-card__thumb--primers::before {
  background-image: url("../images/products-primers.webp");
}

.product-card__thumb--specialty-coatings::before {
  background-image: url("../images/products-specialty-coatings.webp");
}

.product-card__body {
  background: #ffffff;
  padding: clamp(15px, 2vw, 20px);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.product-card__title {
  margin: 0;
  color: #162b48;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 500;
  line-height: 1.05;
}

.product-card__text {
  margin: 10px 0 0;
  color: rgba(22, 43, 72, 0.8);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.4;
}

.product-card__link {
  margin-top: auto;
  padding-top: 18px;
  display: inline-block;
  color: #123962;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.products-section__cta-wrap {
  margin-top: clamp(28px, 4vw, 44px);
  display: flex;
  justify-content: center;
}

.products-section__cta {
  min-height: 44px;
  font-size: 1.0625rem;
}

.product-card:hover,
.product-card:focus-visible {
  box-shadow: 0 0 10px rgba(22, 43, 72, 0.25);
}

.product-card:hover .product-card__thumb::before,
.product-card:focus-visible .product-card__thumb::before {
  transform: scale(1.08);
}

.product-card:hover .product-card__link,
.product-card:focus-visible .product-card__link {
  color: #f4d44a;
}

.js-reveal .product__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal.is-visible .product__item {
  opacity: 1;
  transform: none;
}

.js-reveal.is-visible .products-section__intro {
  transition-delay: 60ms;
}

.js-reveal.is-visible .products-grid .product__item:nth-child(1) {
  transition-delay: 140ms;
}

.js-reveal.is-visible .products-grid .product__item:nth-child(2) {
  transition-delay: 200ms;
}

.js-reveal.is-visible .products-grid .product__item:nth-child(3) {
  transition-delay: 260ms;
}

.js-reveal.is-visible .products-grid .product__item:nth-child(4) {
  transition-delay: 320ms;
}

.js-reveal.is-visible .products-section__cta-wrap {
  transition-delay: 380ms;
}

@media (max-width: 991.98px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-section__splash {
    left: -90px;
    bottom: -90px;
    width: min(46vw, 420px);
  }
}

@media (max-width: 767.98px) {
  .products-section__lead {
    margin-top: 10px;
  }

}

@media (max-width: 575.98px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .products-section__splash {
    left: -72px;
    bottom: -70px;
    width: min(62vw, 320px);
  }
}

/* Made In USA */
.made-usa-section {
  position: relative;
  padding: clamp(90px, 12vw, 160px) 0 clamp(80px, 10vw, 130px);
  background: #ffffff;
  z-index: 1;
}

.made-usa-section__bg {
  position: absolute;
  inset: 0;
  background: url("../images/made-in-usa-bg.webp") center 38% / 100% auto no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.made-usa-section__inner {
  position: relative;
  z-index: 2;
}

.made-usa-section__top {
  display: grid;
  grid-template-columns: 4.5fr 6fr;
  align-items: center;
  position: relative;
  z-index: 1;
}

.made-usa-section__heading-group {
  min-width: 0;
}

.made-usa-section__title {
  margin: 0;
  line-height: 0.9;
}

.made-usa-section__sub {
  margin: 24px 0 0;
}

.made-usa-section__text-wrap {
  position: relative;
  z-index: 1;
}

.made-usa-section__text {
  margin: 0;
  max-width: 100%;
  color: #162b48;
  font-size: 16px;
  line-height: 1.65;
}

.made-usa-section__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.js-reveal .made__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal.is-visible .made__item {
  opacity: 1;
  transform: none;
}

.js-reveal.is-visible .made-usa-section__top {
  transition-delay: 90ms;
}

.js-reveal.is-visible .made-usa-section__visual {
  transition-delay: 180ms;
}

@media (max-width: 991.98px) {
  .made-usa-section__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .made-usa-section__heading-group,
  .made-usa-section__visual {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .made-usa-section {
    padding-top: clamp(70px, 12vw, 110px);
  }

  .made-usa-section__title br {
    display: none;
  }

  .made-usa-section__bg {
    background-size: 110vw auto;
    background-position: bottom;
  }

  .made-usa-section__sub {
    margin-top: 18px;
    font-size: 20px;
  }

  .made-usa-section__text {
    margin-top: 22px;
  }
}

/* Video section */
.video-section {
  position: relative;
  padding: 70px 0;
  overflow: visible;
}

.video-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.video-section__bg {
  background: url("../images/video-section-bg.webp") center / cover no-repeat;
  z-index: 0;
}

.video-section__splash {
  position: absolute;
  right: 0;
  bottom: -227px;
  width: 300px;
  background: url("../images/video-section-splash.webp") center / contain no-repeat;
  z-index: 4;
  pointer-events: none;
  aspect-ratio: 1 / 1;
}

.video-section__inner {
  position: relative;
}

.video-section__frame {
  width: 100%;
  aspect-ratio: 1920 / 682;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 3vw, 36px);
}

.video-section__copy {
  color: #8da5d5;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  padding-left: clamp(10px, 2vw, 28px);
}

.video-section__copy p {
  margin: 0;
}

.video-section__copy p + p {
  margin-top: clamp(8px, 1vw, 14px);
}

.video-section__embed {
  width: min(100%, 760px);
  justify-self: end;
  aspect-ratio: 16 / 9;
  background: #0b1f3d;
  box-shadow: 0 18px 44px rgba(6, 19, 41, 0.34);
}

.video-section__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.js-reveal .video__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal .video-section__copy.video__item {
  transform: none;
}

.js-reveal.is-visible .video__item {
  opacity: 1;
  transform: none;
  transition-delay: 120ms;
}

@media (max-width: 991.98px) {
  .video-section__bg {
    background-image: url("../images/video-section-sp-bg.webp");
    background-position: top center;
  }

  .video-section__frame {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    min-height:380px;
  }

  .video-section__embed {
    justify-self: start;
    width: min(100%, 740px);
    margin: 0 auto;
  }

  .video-section__splash {
    display: none;
  }
}


/* Testimonial section */
.testimonial-section {
  position: relative;
  background: #fafafa;
  padding: clamp(120px, 15vw, 220px) 0 clamp(70px, 10vw, 120px);
}

.testimonial-section__inner {
  display: grid;
  grid-template-columns: minmax(240px, 3fr) minmax(0, 7fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.testimonial-section__body {
  min-width: 0;
}

.testimonial-section__title {
  margin: 0;
}

.testimonial-section__text {
  margin: 0;
  color: #162b48;
  font-size: clamp(1rem, 3vw, 18px);
  line-height: 1.8;
  font-weight: 300;
}

.testimonial-section__author {
  margin: 18px 0 0;
  color: #162b48;
  font-size: clamp(1.1rem, 4vw, 20px);
  line-height: 1.2;
  font-weight: 500;
}

.testimonial-slider {
  position: relative;
  --testimonial-arrow-size: 60px;
  --testimonial-control-pad: 6px;
  padding-bottom: 30px;
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid #162b48;
}

.testimonial-slide {
  outline: none;
  padding-bottom: 80px;
}

.testimonial-slider .slick-list {
  overflow: hidden;
  max-width: 100%;
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
  position: absolute;
  top: auto;
  bottom: 20px;
  width: calc(var(--testimonial-arrow-size) + 12px);
  height: calc(var(--testimonial-arrow-size) + 12px);
  z-index: 3;
}

.testimonial-slider .slick-prev {
  left: var(--testimonial-control-pad);
  transform: none;
}

.testimonial-slider .slick-next {
  right: var(--testimonial-control-pad);
  left: auto;
  transform: none;
}

.testimonial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 6px;
  color: #162b48;
  --arrow-stroke: #162b48;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.testimonial-arrow__icon {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial-arrow__icon path {
  fill: none;
  stroke: var(--arrow-stroke);
  stroke-width: 2;
  stroke-miterlimit: 10;
}

.testimonial-arrow--prev .testimonial-arrow__icon {
  transform: scaleX(-1);
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  color: #f4d44a;
  --arrow-stroke: #f4d44a;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
  content: "";
}

.testimonial-slider .slick-dots {
  bottom: 23px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-inline: calc(var(--testimonial-arrow-size) + 16px);
}

.testimonial-slider .slick-dots li {
  margin: 0 4px;
}

.testimonial-slider .slick-dots li button:before {
  color: #6f8fb5;
  opacity: 0.5;
  font-size: 12px;
}

.testimonial-slider .slick-dots li.slick-active button:before {
  color: #162b48;
  opacity: 1;
}

.js-reveal .testimonial__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal.is-visible .testimonial__item {
  opacity: 1;
  transform: none;
}

.js-reveal.is-visible .testimonial-section__head {
  transition-delay: 60ms;
}

.js-reveal.is-visible .testimonial-section__body {
  transition-delay: 150ms;
}

@media (max-width: 991.98px) {
  .testimonial-section__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 575.98px) {
  .testimonial-section {
    padding-top: clamp(84px, 14vw, 120px);
  }

  .testimonial-slider {
    --testimonial-arrow-size: 54px;
    --testimonial-control-pad: 2px;
    padding-bottom: 52px;
  }

  .testimonial-slide {
    min-height: auto;
    padding-bottom: 50px;
  }
}

/* Instagram section */
.instagram-section {
  position: relative;
  background: #ffffff;
  padding: clamp(70px, 10vw, 130px) 0;
  overflow: hidden;
}

.instagram-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  background: url("../images/instagram-bg.webp") left center / 100% auto no-repeat;
  pointer-events: none;
  z-index: 0;
}

.instagram-section__inner {
  margin-bottom: clamp(48px, 6vw, 96px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
}

.instagram-section__title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.instagram-section__icon {
  width: clamp(3rem, 5vw, 56px);
  display: inline-flex;
}

.instagram-section__icon svg {
  width: 100%;
  height: auto;
  fill: #162b48;
}

.instagram-section__link {
  margin-top: 18px;
  display: inline-block;
  color: #1c4e81;
  font-size: clamp(1.2rem, 4vw, 24px);
  font-weight: 400;
  text-decoration: none;
}

.instagram-section__link:hover {
  opacity: 0.5;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #dbe5f1;
}

.instagram-grid__item {
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #b9cde4 0%, #e6eef7 100%);
}

.js-reveal .instagram__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal.is-visible .instagram__item {
  opacity: 1;
  transform: none;
}

.js-reveal.is-visible .instagram-section__content {
  transition-delay: 80ms;
}

.js-reveal.is-visible .instagram-section__feed {
  transition-delay: 170ms;
}

@media (max-width: 991.98px) {
  .instagram-section::before {
    width: 58%;
    background-size: cover;
  }
}

@media (max-width: 767.98px) {
  .instagram-section::before {
    width: 100%;
    opacity: 0.28;
  }

  .instagram-section__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Footer */
.site-footer {
  background: #162b48;
  color: #ffffff;
  padding: clamp(44px, 6vw, 72px) 0;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: clamp(26px, 4vw, 64px);
  flex: 1 1 auto;
}

.site-footer__left,
.site-footer__right {
  min-width: 0;
}

.site-footer__logo {
  display: inline-flex;
}

.site-footer__logo img {
  width: clamp(120px, 11vw, 152px);
  height: auto;
}

.site-footer__social {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.site-footer__social a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  color: #ffffff;
  transition: color 0.24s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  color: #f4d44a;
}

.site-footer__social svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.site-footer__address {
  margin-top: 28px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}

.site-footer__address a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 34px;
}

.site-footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li + li {
  margin-top: 15px;
}

.site-footer__links a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.3;
  margin-top: 0;
}

.site-footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #f4d44a;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.site-footer__links a:hover::after,
.site-footer__links a:focus-visible::after {
  transform: scaleX(1);
}

.site-footer__cta {
  margin-top: 18px;
  min-height: 44px;
  min-width: 190px;
  width: fit-content;
}

.site-footer__copyright {
  margin: 0;
  text-align: right;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 300;
}

@media (max-width: 991.98px) {
  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .site-footer__copyright {
    margin-top: 20px;
  }
}

@media (max-width: 575.98px) {
  .site-footer__left,
  .site-footer__right {
    text-align: center;
  }

  .site-footer__social {
    justify-content: center;
  }

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

  .site-footer__address,
  .site-footer__links {
    text-align: center;
  }

  .site-footer__cta {
    margin-top: 24px!important;
    margin-bottom: 24px;
  }

  .site-footer__copyright {
    text-align: center;
  }
}

/* ========================================
   Products Page (products.html only)
======================================== */
.products-page {
  overflow: clip;
}

.collection-hero {
  position: relative;
  min-height: clamp(360px, 41vw, 560px);
  display: flex;
  align-items: center;
  color: #ffffff;
  z-index: 1;
}

.collection-hero__bg,
.collection-hero__overlay {
  position: absolute;
  inset: 0;
}

.collection-hero__bg {
  background: #0b1f3d;
}

.collection-hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-hero__overlay {
  background: linear-gradient(90deg, rgba(7, 20, 40, 0.4) 0%, rgba(7, 20, 40, 0.12) 52%, rgba(7, 20, 40, 0.06) 100%);
}

.collection-hero__inner {
  position: relative;
  z-index: 2;
}

.collection-hero__content {
  max-width: 680px;
}

.collection-hero__eyebrow {
  margin: 0;
  display: inline-block;
  font-size: clamp(1.1rem, 2.2vw, 32px);
  line-height: 1.1;
  font-weight: 300;
}

.collection-hero__title {
  margin: 12px 0 0;
  font-size: clamp(2.2rem, 5vw, 68px);
  line-height: 1.02;
  font-weight: 900;
  color: #ffffff;
}

.collection-hero__lead {
  margin: 14px 0 0;
  max-width: 640px;
  font-size: clamp(1rem, 1.5vw, 20px);
  line-height: 1.3;
  font-weight: 500;
}

.collection-hero__splash {
  position: absolute;
  right: -10%;
  bottom: -20vw;
  width: min(40vw, 800px);
  aspect-ratio: 1 / 1.1;
  background: center / contain no-repeat url("../images/products-hero-splash.webp");
  z-index: 3;
  pointer-events: none;
}

.collection-products {
  position: relative;
  background: #ffffff;
  padding: clamp(30px, 5vw, 50px) 0 clamp(150px, 15vw, 400px);
}

.collection-products__inner {
  position: relative;
  z-index: 2;
}

.collection-products .breadcrumb {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.product-collection + .product-collection {
  margin-top: clamp(42px, 6vw, 84px);
}

.product-collection + .product-collection--primers-title-bg,
.product-collection--primers-title-bg + .product-collection {
  margin-top: clamp(42px, 6vw, 84px);
}

.product-collection__title {
  margin: 0 0 clamp(14px, 2vw, 22px);
  color: #162b48;
  font-size: clamp(2rem, 3.1vw, 50px);
  line-height: 1.08;
  font-weight: 900;
}

.product-collection--primers-title-bg {
  position: relative;
}

.product-collection--primers-title-bg::before {
  content: "";
  position: absolute;
  left: calc(50% - 60vw);
  top: 60%;
  transform: translateY(-50%);
  width: 50vw;
  aspect-ratio: 1858 / 1232;
  background: left center / contain no-repeat url("../images/products-title-splash.webp");
  pointer-events: none;
  z-index: 0;
}

.product-collection--primers-title-bg > * {
  position: relative;
  z-index: 1;
}

.collection-grid {
  display: grid;
  gap: 16px;
}

.collection-grid--single {
  grid-template-columns: 1fr;
}

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

.collection-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-card {
  min-width: 0;
}

.collection-card .media-overlay-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.collection-card--wide .media-overlay-card__media {
  aspect-ratio: 1260 / 478;
}

.collection-grid--silicone .media-overlay-card__media {
  aspect-ratio: 1200 / 930;
}

.collection-grid--bottom .media-overlay-card__media,
.collection-grid--primers .media-overlay-card__media {
  aspect-ratio: 820 / 976;
}

.collection-card__title {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 30px);
  line-height: 1.14;
  font-weight: 400;
}

.collection-card__text {
  margin: 6px 0 0;
  font-size: clamp(0.95rem, 1.25vw, 16px);
  line-height: 1.3;
  font-weight: 200;
  min-height: calc(1em * 1.3 * 2);
  display: flex;
  align-items: flex-end;
}

.collection-card__text > span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.collection-card__text--single {
  min-height: calc(1em * 1.3);
}

.collection-card__text--single > span {
  -webkit-line-clamp: 1;
}

.collection-products__splash {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(40vw, 740px);
  aspect-ratio: 500 / 220;
  background: center / contain no-repeat url("../images/products-list-splash.webp");
  pointer-events: none;
  z-index: 1;
}

.news-archive-page {
  overflow: clip;
}

.news-archive-hero {
  min-height: clamp(320px, 36vw, 500px);
}

.news-archive-hero__splash {
  right: -6%;
  bottom: -18vw;
  width: min(36vw, 620px);
  background-image: url("../images/hero-splash-front.webp");
}

.news-archive-listing {
  position: relative;
  padding: clamp(30px, 5vw, 54px) 0 clamp(80px, 9vw, 140px);
  background: #ffffff;
}

.news-archive-listing__inner {
  position: relative;
  z-index: 1;
}

.news-archive-listing .breadcrumb {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.news-archive-listing__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(18px, 3vw, 30px);
}

.news-archive-listing__count {
  margin: 0;
  color: rgba(22, 43, 72, 0.72);
  font-size: 14px;
  font-weight: 400;
}

.news-pagination {
  margin-top: clamp(24px, 4vw, 40px);
}

.news-pagination .page-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.news-pagination a,
.news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #d3dceb;
  border-radius: 999px;
  color: #162b48;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news-pagination a:hover,
.news-pagination a:focus-visible,
.news-pagination .current {
  background: #162b48;
  border-color: #162b48;
  color: #ffffff;
}

.news-pagination .prev,
.news-pagination .next {
  min-width: 0;
  padding: 6px;
  border: 0;
  background: transparent;
  color: #162b48;
  outline: none;
  box-shadow: none;
}

.news-pagination .prev:hover,
.news-pagination .prev:focus-visible,
.news-pagination .next:hover,
.news-pagination .next:focus-visible {
  background: transparent;
  border-color: transparent;
  color: #f4d44a;
  outline: none;
  box-shadow: none;
}

.news-pagination .prev:focus,
.news-pagination .prev:active,
.news-pagination .next:focus,
.news-pagination .next:active {
  outline: none;
  box-shadow: none;
}

.news-pagination__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  border: 0 !important;
  padding: 0 !important;
  --arrow-stroke: currentColor;
}

.news-pagination__arrow .testimonial-arrow__icon {
  width: 100%;
  height: auto;
  display: block;
}

.news-pagination__arrow .testimonial-arrow__icon path {
  fill: none;
  stroke: var(--arrow-stroke);
  stroke-width: 2;
  stroke-miterlimit: 10;
  transition: stroke 0.2s ease;
}

.news-pagination__arrow--prev .testimonial-arrow__icon {
  transform: scaleX(-1);
}

.news-pagination .prev:hover .testimonial-arrow__icon path,
.news-pagination .prev:focus-visible .testimonial-arrow__icon path,
.news-pagination .next:hover .testimonial-arrow__icon path,
.news-pagination .next:focus-visible .testimonial-arrow__icon path {
  stroke: #f4d44a;
}

.news-single-page {
  overflow: clip;
}

.news-single-hero {
  min-height: clamp(320px, 36vw, 500px);
}

.news-single-hero__splash {
  right: -6%;
  bottom: -18vw;
  width: min(36vw, 620px);
  background-image: url("../images/hero-splash-front.webp");
}

.news-single-article {
  padding: clamp(30px, 5vw, 54px) 0 clamp(80px, 9vw, 140px);
  background: #ffffff;
}

.news-single-article__inner {
  max-width: 980px;
}

.news-single-article .breadcrumb {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.news-single-article__header {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.news-single-article__category {
  margin: 0;
  color: #1c4e81;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-single-article__title {
  margin: 12px 0 0;
  color: #162b48;
  font-size: clamp(2rem, 4vw, 50px);
  line-height: 1.08;
  font-weight: 900;
}

.news-single-article__meta {
  margin: 14px 0 0;
  color: rgba(22, 43, 72, 0.72);
  font-size: 15px;
  font-weight: 400;
}

.news-single-article__content {
  color: #162b48;
  font-size: 18px;
  line-height: 1.8;
}

.news-single-article__content > *:first-child {
  margin-top: 0;
}

.news-single-article__content > *:last-child {
  margin-bottom: 0;
}

.news-single-article__content h2,
.news-single-article__content h3,
.news-single-article__content h4 {
  margin: 2.2em 0 0.7em;
  color: #162b48;
  line-height: 1.2;
  font-weight: 800;
}

.news-single-article__content p,
.news-single-article__content ul,
.news-single-article__content ol,
.news-single-article__content blockquote {
  margin: 0 0 1.2em;
}

.news-single-article__content ul,
.news-single-article__content ol {
  padding-left: 1.4em;
}

.news-single-article__content a {
  color: #1c4e81;
}

.news-single-article__content a:hover,
.news-single-article__content a:focus-visible {
  opacity: 0.7;
}

.news-single-article__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em auto;
}

.news-single-article__content figure {
  margin: 1.8em 0;
}

.news-single-article__content blockquote {
  padding: 1.2em 1.4em;
  border-left: 4px solid #f4d44a;
  background: #f7f9fc;
}

.news-single-article__footer {
  margin-top: clamp(32px, 5vw, 52px);
}

.downloads-page {
  overflow: clip;
}

.downloads-hero__splash {
  right: -8%;
  bottom: -18vw;
  width: min(40vw, 720px);
  background-image: url("../images/products-hero-splash.webp");
}

.downloads-directory {
  position: relative;
  padding: clamp(30px, 5vw, 54px) 0 clamp(90px, 10vw, 150px);
  background: #ffffff;
}

.downloads-directory__inner {
  position: relative;
  z-index: 1;
}

.downloads-directory .breadcrumb {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.downloads-directory__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.downloads-directory__count {
  margin: 0;
  color: rgba(22, 43, 72, 0.72);
  font-size: 14px;
  font-weight: 400;
}

.downloads-grid {
  display: grid;
  gap: 18px;
}

.downloads-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid #d3dceb;
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.75) 0%, rgba(255, 255, 255, 1) 100%);
}

.downloads-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #eef3f8;
}

.downloads-card__title {
  margin: 0 0 18px;
  color: #162b48;
  font-size: clamp(1.4rem, 2vw, 28px);
  line-height: 1.1;
  font-weight: 800;
}

.downloads-card__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.downloads-card__link {
  min-height: 64px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid #d3dceb;
  text-decoration: none;
  color: #162b48;
  background: #ffffff;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.downloads-card__link:hover,
.downloads-card__link:focus-visible {
  border-color: #162b48;
  box-shadow: 0 10px 24px rgba(22, 43, 72, 0.08);
  transform: translateY(-1px);
  color: #162b48;
}

.downloads-card__link-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1c4e81;
}

.downloads-card__link-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.downloads-card__link-label {
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.downloads-card__link-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #162b48;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.downloads-card__link:hover .downloads-card__link-icon,
.downloads-card__link:focus-visible .downloads-card__link-icon {
  color: #f4d44a;
}

.downloads-card__link:hover .downloads-card__link-action,
.downloads-card__link:focus-visible .downloads-card__link-action {
  background: #f4d44a;
  color: #162b48;
}

.directory-page {
  overflow: clip;
}

.directory-hero__splash {
  right: -8%;
  bottom: -18vw;
  width: min(40vw, 720px);
  background-image: url("../images/products-hero-splash.webp");
}

.directory-listing {
  padding: clamp(30px, 5vw, 54px) 0 clamp(90px, 10vw, 150px);
  background: #ffffff;
}

.directory-listing .breadcrumb {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.directory-section + .directory-section {
  margin-top: clamp(42px, 6vw, 80px);
}

.directory-section__title {
  margin: 0 0 18px;
  padding-bottom: 10px;
  color: #162b48;
  font-size: clamp(1.6rem, 2.3vw, 34px);
  font-weight: 800;
  line-height: 1.1;
  border-bottom: 4px solid #f4d44a;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.directory-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid #d3dceb;
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.78) 0%, rgba(255, 255, 255, 1) 100%);
}

.directory-card__title {
  margin: 0 0 14px;
  color: #162b48;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.directory-card__meta + .directory-card__meta {
  margin-top: 10px;
}

.directory-card__meta {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #294a71;
  font-size: 15px;
  line-height: 1.5;
}

.directory-card__meta-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1c4e81;
  margin-top: 2px;
}

.directory-card__meta-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.directory-card__meta-text a {
  color: #1c4e81;
  text-decoration: none;
  word-break: break-word;
}

.directory-card__meta-text a:hover,
.directory-card__meta-text a:focus-visible {
  opacity: 0.7;
}

.directory-card__footer {
  margin-top: 18px;
}

.directory-card__map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #162b48;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.directory-card__map-link:hover,
.directory-card__map-link:focus-visible {
  background: #f4d44a;
  color: #162b48;
}

.directory-card__map-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.directory-card__map-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.apply-page {
  overflow: clip;
}

.apply-hero__splash {
  right: -8%;
  bottom: -18vw;
  width: min(40vw, 720px);
  background-image: url("../images/products-hero-splash.webp");
}

.apply-videos {
  padding: clamp(30px, 5vw, 54px) 0 clamp(90px, 10vw, 150px);
  background: #ffffff;
}

.apply-videos .breadcrumb {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.apply-videos__header {
  margin-bottom: clamp(24px, 4vw, 36px);
}

.apply-videos__lead {
  margin: 10px 0 0;
  color: rgba(22, 43, 72, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.apply-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.apply-video-card {
  background: #162b48;
  color: #ffffff;
  overflow: hidden;
}

.apply-video-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.apply-video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apply-video-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 19, 41, 0.08) 0%, rgba(6, 19, 41, 0.45) 100%);
}

.apply-video-card__play {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(244, 212, 74, 0.92);
  z-index: 1;
}

.apply-video-card__play::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 23px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid #162b48;
}

.apply-video-card__body {
  padding: 22px 24px 26px;
}

.apply-video-card__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.8vw, 26px);
  line-height: 1.2;
  font-weight: 700;
}

.apply-video-card__link {
  margin-top: 18px;
  min-height: 44px;
  gap: 10px;
}

.apply-video-card__link-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

.apply-video-card__link-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.apply-video-card__link.btn-pill--yellow:hover,
.apply-video-card__link.btn-pill--yellow:focus-visible {
  color: #162b48 !important;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.video-modal[hidden] {
  display: none;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 19, 41, 0.72);
}

.video-modal__dialog {
  position: relative;
  width: min(100% - 32px, 960px);
  background: #0b1f3d;
  padding: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(18px);
  transition: transform 0.28s ease, opacity 0.28s ease;
  opacity: 0;
}

.video-modal.is-open .video-modal__dialog {
  transform: translateY(0);
  opacity: 1;
}

.video-modal__close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.video-modal__title {
  margin: 0 44px 14px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.video-modal__frame {
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.faq-page .breadcrumb {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.faq-page__intro {
  padding: clamp(24px, 4vw, 44px) 0 0;
  background: #ffffff;
}

.faq-page__inner {
  max-width: 980px;
}

.faq-page__title {
  margin: 0;
}

.faq-page__list {
  padding: 0 0 clamp(90px, 10vw, 150px)!important;
}

.faq-page__list .details-apply__item summary {
  transition: background-color 0.2s ease, color 0.2s ease;
  padding-top: 20px!important;
  padding-bottom: 20px!important;
}

.faq-page__list .details-apply__item.is-open summary {
  background: #162b48;
  color: #ffffff;
}

.faq-page__list .details-apply__item.is-open summary::before,
.faq-page__list .details-apply__item.is-open summary::after {
  background: #ffffff;
}

.faq-page__list .details-apply__content p a {
  color: #1c4e81;
}

.faq-page__list .details-apply__content p a:hover,
.faq-page__list .details-apply__content p a:focus-visible {
  opacity: 0.7;
}

@media (max-width: 991.98px) {
  .collection-hero__splash {
    width: min(40vw, 400px);
    bottom: -30vw;
  }

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

  .downloads-card {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .downloads-card__links {
    grid-template-columns: 1fr;
  }

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

  .apply-videos__grid {
    grid-template-columns: 1fr;
  }

  .video-modal__dialog {
    width: min(100% - 20px, 960px);
    padding: 14px;
  }
}

@media (max-width: 767.98px) {
  .collection-hero {
    min-height: 420px;
    align-items: flex-start;
    padding-top: 64px;
  }

  .collection-hero__splash {
    width: min(60vw, 400px);
    bottom: -40vw;
  }

  .collection-grid--two,
  .collection-grid--three {
    grid-template-columns: 1fr;
  }

  .collection-card--wide .media-overlay-card__media {
    aspect-ratio: 1200 / 930;
  }

  .collection-grid--bottom,
  .collection-grid--primers {
    grid-template-columns: 1fr;
  }

  .collection-grid--bottom .media-overlay-card__media,
  .collection-grid--primers .media-overlay-card__media {
    aspect-ratio: 1200 / 930;
  }

  .news-archive-listing__header {
    display: block;
  }

  .news-archive-listing__count {
    margin-top: 8px;
  }

  .news-pagination__arrow {
    width: 56px;
  }

  .news-single-article__content {
    font-size: 17px;
  }

  .downloads-directory__header {
    display: block;
  }

  .downloads-directory__count {
    margin-top: 8px;
  }

  .downloads-card {
    grid-template-columns: 1fr;
  }

  .downloads-card__media {
    max-width: 180px;
  }

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

  .collection-products__splash {
    width: min(62vw, 340px);
  }

  .product-collection--primers-title-bg::before {
    display: none;
  }
}

/* ========================================
   Details Page (details.html only)
======================================== */
.details-page {
  background: #FFFFFF;
}

.details-page section {
  padding: clamp(30px, 5vw, 50px) 0;
  z-index: 1;
}

.details-top {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.details-top__bg-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1440px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.details-top > section {
  position: relative;
  z-index: 1;
}

.details-section-title {
  margin: 0 0 clamp(24px, 3vw, 36px);
  color: #162b48;
  font-size: clamp(1.5rem, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  display: flex;
  text-transform: uppercase;
}

.details-section-title--lined {
  padding: 16px 0;
  border-top: 1px solid #162b48;
  border-bottom: 1px solid #162b48;
}

.details-hero {
  background: transparent;
}

.details-hero__strap {
  margin: 20px 0 28px;
  padding: clamp(10px, 1.2vw, 18px) 0;
  border-top: 2px solid #f4d44a;
  border-bottom: 2px solid #f4d44a;
  color: #162b48;
  font-size: clamp(1.25rem, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: clamp(0px, 0.08vw, 1px);
  display: flex;
  justify-content: center;
}

.details-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  align-items: center;
  padding: clamp(12px, 2vw, 24px) 0;
}

.details-hero__category {
  margin: 0;
  display: inline-block;
  color: #162b48;
  font-size: clamp(1.25rem, 2vw, 33px);
  line-height: 1;
  font-weight: 500;
}

.details-hero__title {
  margin: 14px 0 0;
  color: #162b48;
  font-size: clamp(2.5rem, 6vw, 80px);
  line-height: 0.98;
  font-weight: 900;
}

.details-hero__features {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.details-hero__features li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #162b48;
  font-size: clamp(1rem, 1.2vw, 20px);
  font-weight: 500;
  text-transform: uppercase;
  min-width: 220px;
}

.details-hero__features li.is-break {
  margin-right: 30%;
}

.details-hero__feature-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #162b48;
}

.details-hero__feature-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.details-hero__cta {
  margin-top: 24px;
}

.details-hero__visual {
  position: relative;
  width: min(70%, 500px);
  justify-self: start;
}

.details-hero__product-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 900 / 600;
  object-fit: contain;
}

.details-hero__badge-image {
  position: absolute;
  top: -6%;
  right: -3%;
  width: clamp(90px, 23%, 220px);
  height: auto;
  display: block;
  z-index: 2;
}

.details-compare {
  margin-bottom: clamp(30px, 5vw, 100px);
}

.details-compare__title {
  margin: 0 0 clamp(24px, 3vw, 36px);
  color: #162b48;
  font-size: clamp(1.25rem, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.1;
  display: flex;
  justify-content: center;
}

.details-compare__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(20px, 3vw, 34px) 0
}

.details-compare__grid.is-1col {
  grid-template-columns: minmax(0, 1fr);
}

.details-compare__grid h3 {
  margin: 0 0 10px;
  color: #162b48;
  font-size: clamp(1.25rem, 2.2vw, 28px);
  font-weight: 800;
  display: flex;
  justify-self: center;
  text-align: center;
}

.details-compare__grid p {
  margin: 0;
  color: #162b48;
  font-size: clamp(1rem, 1.2vw, 20px);
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.details-video {
  position: relative;
  overflow: visible;
  background: #162b48;
  color: #ffffff;
}

.details-video__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 8vw, 150px);
  align-items: center;
  padding: clamp(20px, 4vw, 50px) 0;
}

.details-video h2 {
  margin: 0 0 16px;
  font-size: clamp(1.25rem, 2.2vw, 28px);
  line-height: 1.08;
  font-weight: 800;
}

.details-video p {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 20px);
  line-height: 1.5;
}

.details-video__embed {
  aspect-ratio: 16 / 9;
}

.details-video__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.details-video__embed img {
  width: 100%;
  height: auto;
}

.details-video__splash {
  position: absolute;
  left: 0;
  bottom: -157px;
  width: 300px;
  aspect-ratio: 1 / 1;
  background: center / contain no-repeat url("../images/video-section-splash.webp");
  transform: scaleX(-1);
  transform-origin: center;
  pointer-events: none;
  z-index: 2;
}

.details-product,
.details-tech {
  background-color: #FAFAFA;
  padding: clamp(50px, 10vw, 150px) 0!important;
}

.details-product__grid,
.details-tech__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
}

.details-product__colors-title {
  margin: 0 0 10px;
  color: #162b48;
  font-size: 18px;
  font-weight: 500;
}

.details-product__colors {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 55px));
  gap: 10px;
}

.details-product__colors li {
  position: relative;
  color: #162b48;
  font-size: 11px;
  text-align: center;
  width: 100%;
  padding-top: 40px;
}

.details-product__colors li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #FFF;
  background: var(--chip);
  box-shadow: 0 0 1px;
}

.details-product__list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.details-product__list li {
  color: #162b48;
  font-size: clamp(1rem, 1.1vw, 20px);
  line-height: 1.35;
  font-weight: 500;
  display: flex;
}

.details-product__list li span{
  font-size: clamp(0.9rem, 1vw, 18px);
  display: block;
  font-weight: 300;
  line-height: 1.25;
}

.details-product__list li::before {
  content: "✓";
  margin-right: 0.5em;
}

.details-product__actions {
  margin-top: clamp(30px, 7vw, 100px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.details-download-btn {
  gap: 8px;
  padding: 12px 15px;
}

.details-download-btn__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.details-download-btn__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.details-product__visual img,
.details-tech__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.details-panel-test {
  position: relative;
  padding: clamp(50px, 8vw, 100px) 0!important;
}

.details-panel-test__lead {
  margin: 0 0 clamp(24px, 3vw, 36px);
  color: #162b48;
  font-size: clamp(1rem, 1.1vw, 20px);
}

.details-panel-test__hint {
  display: none;
  margin: 0 0 12px;
  color: #162b48;
  font-size: 14px;
  font-weight: 400;
  align-items: center;
  gap: 10px;
}

.details-panel-test__hint-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  flex: 0 0 22px;
  color: #162b48;
  animation: swipeNudge 1.35s ease-in-out infinite;
}

.details-panel-test__hint-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.details-panel-test__scroller {
  overflow: hidden;
}

.details-panel-test__track {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.panel-card {
  min-width: 0;
}

.panel-card__label {
  margin: 0;
  min-height: 60px;
  color: #162b48;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-card img {
  width: 100%;
  aspect-ratio: 8 / 15;
  object-fit: cover;
  display: block;
}

.panel-card__score {
  margin: 0;
  padding: 0 0 20px 0;
  color: #162b48;
  font-size: clamp(1.5rem, 1.8vw, 40px);
  font-weight: 500;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-card__score::before {
  content: '';
  height: 20px;
  margin-bottom: 20px;
  display: block;
  border-bottom: 2px solid #162b48;
}

.panel-card--highlight .panel-card__label,
.panel-card--highlight .panel-card__score {
  background: #f4d44a;
  padding-inline: 4px;
}

.details-tech {
  margin-bottom: 0;
}

.details-tech__grid {
  margin-top: clamp(2rem, 6vw, 60px);
}

.details-tech__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.5rem, 0.5vw, 16px);
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.details-tech__product {
  margin: 0;
  color: #162b48;
  font-size: clamp(1.35rem, 2vw, 28px);
  font-weight: 800;
  margin-left: 1rem;
}

.details-tech__tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 4px 16px;
  background: #f4d44a;
  color: #162b48;
  font-size: clamp(0.8rem, 1vw, 20px);
  font-weight: 800;
  line-height: 1;
}

.details-tech__tag::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border: 7px solid #d5b523;
  border-right-color: #fff;
  border-bottom-color: #fff;
  box-sizing: border-box;
}

.details-tech__table {
  position: relative;
  margin-top: clamp(2rem, 2vw, 40px);
  display: grid;
}

.details-tech__table div {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 12px 20px;
  padding: 12px 0;
  border-bottom: 0;
}

.details-tech__table::before,
.details-tech__table div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #162b48 0 2px,
    transparent 2px 6px
  );
}

.details-tech__table::before {
  top: 0;
  bottom: auto;
}

.details-tech__table dt {
  margin: 0;
  color: #162b48;
  font-size: clamp(1rem, 1.1vw, 20px);
  font-weight: 700;
  padding-left: 1rem;
}

.details-tech__table dd {
  margin: 0;
  color: #162b48;
  font-size: clamp(0.9rem, 1vw, 18px);
  font-weight: 400;
}

.details-tech__visual {
  display: flex;
  flex-direction: column;
}

.details-tech__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 18px;
  margin-left: auto;
  text-decoration: none;
}

.details-tech__buy img {
  display: block;
  width: min(100%, 290px);
  height: auto;
}

.details-spec {
  padding: clamp(50px, 10vw, 150px) 0 !important;
}

.details-spec__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.details-spec__copy p {
  margin: 0;
  color: #162b48;
  font-size: clamp(1rem, 1.1vw, 20px);
  line-height: 1.6;
}

.details-spec__copy p + p {
  margin-top: 1.2rem;
}

.details-spec__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.details-spec__table th,
.details-spec__table td {
  padding: 10px 0;
  border-bottom: 1px solid #d7deea;
  color: #162b48;
  font-size: clamp(0.95rem, 1vw, 18px);
  line-height: 1.4;
}

.details-spec__table th {
  width: 65%;
  text-align: left;
  font-weight: 700;
  padding-right: 12px;
}

.details-spec__table td {
  text-align: left;
  font-weight: 500;
}

.details-spec__table span {
  color: #00a3cf;
  margin-right: 6px;
}

.details-spec__note {
  margin: 0 0 16px;
  color: #162b48;
  font-size: clamp(1rem, 1.2vw, 22px);
  line-height: 1.35;
  font-weight: 700;
}

.details-spec__cta {
  min-height: 48px;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .details-spec__grid {
    grid-template-columns: 1fr;
  }

  .details-spec__table th {
    width: 52%;
  }
}

.details-apply {
    padding: clamp(50px, 10vw, 150px) 0 !important;
}

.details-apply__item {
  border-top: 1px solid #162b48;
}

.details-apply__item:last-child {
  border-bottom: 1px solid #162b48;
}

.details-apply__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  padding-right: 48px;
  position: relative;
  cursor: pointer;
  color: #162b48;
  font-size: clamp(1.15rem, 1.5vw, 24px);
  font-weight: 700;
}

.details-apply__item summary::-webkit-details-marker {
  display: none;
}

.details-apply__item summary::before,
.details-apply__item summary::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #162b48;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.22s ease;
}

.details-apply__item summary::before {
  transform: translateY(-50%);
}

.details-apply__item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.details-apply__item.is-open summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 40px;
  border-radius: 999px;
  background: #162b48;
  color: #ffffff;
  font-size: clamp(1rem, 1.1vw, 18px);
}

.step-pill--repair {
  background: #f4d44a;
  color: #162b48;
  font-weight: 700;
  padding: 0 24px;
}

.details-apply__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.details-apply__item.is-open .details-apply__panel {
  max-height: 900px;
}

.details-apply__content {
  padding: 30px 30px 45px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 20px 30px;
  align-items: start;
}
.details-apply__content--no-image {
  grid-template-columns: 1fr;
}

.details-apply__content p {
  margin: 0;
  color: #162b48;
  font-size: clamp(1rem, 1.1vw, 20px);
  line-height: 1.5;
}

.details-apply__lead {
  font-size: clamp(1.05rem, 1.25vw, 22px);
  font-weight: 600;
}

.details-apply__list {
  margin: 0;
  padding-left: 1.25em;
  color: #162b48;
}

.details-apply__list + .details-apply__list,
.details-apply__subsection + .details-apply__list,
.details-apply__list + .details-apply__subsection,
.details-apply__lead + .details-apply__list,
.details-apply__lead + .details-apply__formula {
  margin-top: 18px;
}

.details-apply__list li {
  font-size: clamp(1rem, 1.1vw, 20px);
  line-height: 1.6;
}

.details-apply__list li + li {
  margin-top: 10px;
}

.details-apply__list .details-apply__list {
  margin-top: 18px;
}

.details-apply__list .details-apply__list li {
  font-size: clamp(0.95rem, 1vw, 18px);
}

.details-apply__text--inherit {
  font-size: inherit;
  line-height: inherit;
}

.details-apply__text--semibold {
  font-weight: 600;
}

.details-apply__text--bold {
  font-weight: 700;
}

.details-apply__subsection + .details-apply__subsection {
  margin-top: 24px;
}

.details-apply__subheading {
  margin: 0 0 12px;
  color: #162b48;
  font-size: clamp(1.05rem, 1.2vw, 22px);
  font-weight: 700;
}

.details-apply__formula {
  margin-top: 14px;
  padding: 16px 18px;
  border-left: 4px solid #162b48;
  background: rgba(22, 43, 72, 0.06);
  color: #162b48;
  font-size: clamp(1.05rem, 1.2vw, 22px);
  line-height: 1.6;
}

.details-apply__content img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991.98px) {
  .details-top__bg-image {
    top: 40%;
  }

  .details-top__bg-image.top-25 {
    top: 25%;
  }
  .details-top__bg-image.top-30 {
    top: 30%;
  }
  .details-top__bg-image.top-35 {
    top: 35%;
  }
  .details-top__bg-image.top-45 {
    top: 45%;
  }
  .details-top__bg-image.top-50 {
    top: 50%;
  }

  .details-hero__grid,
  .details-video__grid,
  .details-product__grid,
  .details-tech__grid,
  .details-apply__content {
    grid-template-columns: 1fr;
  }

  .details-hero__grid {
    gap: 30px;
  }

  .details-compare__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .details-compare__grid h3 {
    justify-self: start;
  }

  .details-compare__grid p {
    text-align: left;
  }

}

@media (max-width: 767.98px) {
  .details-hero__visual {
    justify-self: center;
  }

  .details-hero__features {
    grid-template-columns: 1fr;
  }

  .details-tech__table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .details-tech__product {
    margin-left: 0;
  }

  .details-tech__table dt {
    padding-left: 0;
  }

  .details-tech__table dd {
    padding: 0 0.5em;
  }

  .details-tech__buy {
    margin-left: auto;
    margin-right: auto;
  }

  .details-product__colors {
    grid-template-columns: repeat(6, minmax(0, 55px));
  }

  .step-pill {
    min-width: 102px;
    min-height: 36px;
  }

  .details-video__splash {
    display: none;
  }

  .details-panel-test__scroller {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .details-panel-test__hint {
    display: inline-flex;
  }

  .details-panel-test__track {
    display: flex;
    gap: 10px;
    min-width: max-content;
  }

  .panel-card {
    width: 138px;
    flex: 0 0 138px;
  }

  .details-product__actions {
    grid-template-columns: 1fr;
  }

  .details-apply__item summary {
    padding-left:10px;
    gap: 12px;
    font-size: clamp(1.05rem, 3.8vw, 24px);
  }

  .details-apply__item.details-apply__item--repair summary {
    gap: 5px;
    flex-direction: column;
    align-items: flex-start;
  }
  .details-apply__item summary::before,
  .details-apply__item summary::after {
    right: 10px;
  }
}

@keyframes swipeNudge {
  0%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(7px);
  }
  70% {
    transform: translateX(-3px);
  }
}

/* ========================================
   Contact Page
======================================== */
.contact-page .breadcrumb {
    margin-bottom: clamp(28px, 4vw, 46px);
}

.contact-page__intro {
  padding: clamp(30px, 5vw, 54px) 0 0;
}

.contact-page__title {
  margin: 0 0 clamp(14px, 2vw, 22px);
  color: #162b48;
  font-size: clamp(2rem, 3.1vw, 50px);
  line-height: 1.08;
  font-weight: 900;
}

.contact-page__content {
  padding: clamp(10px, 2vw, 24px) 0 clamp(20px, 4vw, 48px);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.contact-page__heading {
  margin: 0 0 24px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.05;
  font-weight: 900;
  color: #162b48;
}

.contact-page__copy {
  display: grid;
  gap: 18px;
}

.contact-page__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(22, 43, 72, 0.88);
}

.contact-page__image {
  margin: clamp(20px, 4vw, 48px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(22, 43, 72, 0.08);
}

.contact-page__image img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-page__card {
  margin-top: clamp(20px, 4vw, 48px);
  padding: clamp(10px, 2vw, 24px);
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.78) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid #d3dceb;
}

.contact-page__card-title {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #162b48;
}

.contact-page__card p {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.7;
}

.contact-page__card p:last-child {
  margin-bottom: 0;
}

.contact-page__card a {
  color: inherit;
  text-decoration: none;
}

.contact-page__form-wrap {
  position: sticky;
  top: 110px;
}

.contact-page__form-card {
  padding: clamp(14px, 3vw, 36px);
  background: linear-gradient(180deg, rgba(15, 44, 87, 0.05), rgba(15, 44, 87, 0.09));
  border: 1px solid #d3dceb;
}

.contact-page__form .wpcf7 {
  width: 100%;
}

.contact-page__form p {
  margin: 0 0 18px;
}

.contact-page__form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #162b48;
}

.contact-page__form input,
.contact-page__form textarea,
.contact-page__form select {
  width: 100%;
  margin-top: 10px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(22, 43, 72, 0.16);
  background: #ffffff;
  color: #162b48;
  font: inherit;
}

.contact-page__form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-page__form input:focus,
.contact-page__form textarea:focus,
.contact-page__form select:focus {
  outline: none;
  border-color: #f4d44a;
  box-shadow: 0 0 0 4px rgba(244, 212, 74, 0.2);
}

.contact-page__form .wpcf7-spinner {
  display: none;
}

.contact-page__form .wpcf7-submit {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 14px 36px;
  background: #f4d44a;
  color: #162b48;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.contact-page__form .wpcf7-submit:hover,
.contact-page__form .wpcf7-submit:focus-visible {
  background: #ffffff;
  color: #162b48;
}

.contact-page__form .wpcf7-not-valid-tip,
.contact-page__form .wpcf7-response-output {
  margin: 10px 0 0;
  font-size: 13px;
}

.contact-page__map {
  margin: 0;
  height: 500px;
}

.contact-page__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991.98px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-page__form-wrap {
    position: static;
  }

  .contact-page__form-card {
    padding: 26px 22px;
    border-radius: 28px;
  }

  .contact-page__card {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .contact-page__map {
    height: 380px;
  }
}

/* ========================================
   Policy Page
======================================== */
.policy-page .breadcrumb {
    margin-bottom: clamp(28px, 4vw, 46px);
}

.policy-page__intro {
  padding: clamp(30px, 5vw, 54px) 0 0;
}

.policy-page__title {
  margin: 0 0 clamp(14px, 2vw, 22px);
  color: #162b48;
  font-size: clamp(2rem, 3.1vw, 50px);
  line-height: 1.08;
  font-weight: 900;
}

.policy-page__content {
  padding: clamp(10px, 2vw, 24px) 0 90px;
}

.policy-page__inner {
  max-width: 100%;
}

.policy-page__updated {
  margin: 0 0 24px;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(22, 43, 72, 0.68);
}

.policy-page__lead,
.policy-page__body {
  color: rgba(22, 43, 72, 0.92);
}

.policy-page__lead p,
.policy-page__body p,
.policy-page__body li {
  font-size: 16px;
  line-height: 1.85;
}

.policy-page__lead p,
.policy-page__body p,
.policy-page__body ul,
.policy-page__body ol {
  margin: 0 0 16px;
}

.policy-page__section {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(22, 43, 72, 0.1);
}

.policy-page__section h2 {
  margin: 0 0 18px;
  color: #162b48;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 900;
}

.policy-page__body ul,
.policy-page__body ol {
  padding-left: 1.2em;
}

.policy-page__body a {
  color: #162b48;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.policy-page__body a:hover,
.policy-page__body a:focus-visible {
  color: #0c2140;
}

@media (max-width: 767.98px) {
  .policy-page__content {
    padding-bottom: 64px;
  }

  .policy-page__updated {
    text-align: left;
  }

  .policy-page__section {
    margin-top: 34px;
    padding-top: 22px;
  }
}
