
.site-header-wrapper {
  position: relative;
  z-index: 5;
}

.site-header-spacer {
  height: 100px;
}

@media (max-width: 991.98px) {
  .site-header-spacer {
    height: 72px;
  }
}

.product-detail-page,
.info-page {
  background: #f7f9fc;
}

.product-detail-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.08), transparent 45%),
    radial-gradient(circle at 20% 20%, rgba(31, 111, 237, 0.25), transparent 55%),
    linear-gradient(135deg, #02050b 0%, #07101f 40%, #040404 100%);
  color: #ffffff;
  padding: 5rem 0;
}

.info-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, #fefefe 0%, #f5f7fb 65%, rgba(245, 247, 251, 0.6) 100%);
  border-bottom: 1px solid rgba(15, 77, 162, 0.08);
}

.info-hero h1 {
  color: #07172c;
  margin-bottom: 1.5rem;
}

.info-hero .eyebrow {
  color: #f7a731;
}

.info-hero .lede {
  color: #4a5468;
}

.hero-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: #0f4da2;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(15, 77, 162, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-download:hover,
.hero-download:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(15, 77, 162, 0.3);
  color: #ffffff;
}

.info-body {
  padding-top: 0;
}

.info-body .detail-card {
  margin-bottom: 2rem;
}

.material-article {
  padding: clamp(2.5rem, 4vw, 4.5rem) 0 clamp(3rem, 5vw, 5rem);
  background: linear-gradient(180deg, #f8f9fb 0%, rgba(248, 249, 251, 0)) 0 0/100% 50% no-repeat;
}

.material-article__intro {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.material-article__intro h2 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.material-article__layout {
  display: flex;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: flex-start;
}

.material-reference-block {
  padding: 0;
}

.material-reference {
  display: block;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 77, 162, 0.15);
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(6, 35, 71, 0.08);
  overflow: hidden;
}

.material-reference summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  font-weight: 600;
  color: #07172c;
}

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

.material-reference__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: #73819b;
  display: block;
}

.material-reference__title {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
}

.material-reference__hint {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5468;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.material-reference__icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 2px solid rgba(15, 77, 162, 0.4);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.material-reference__icon::before,
.material-reference__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 2px;
  background: rgba(15, 77, 162, 0.8);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.material-reference__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.material-reference[open] .material-reference__icon {
  transform: rotate(180deg);
  border-color: #0f4da2;
}

.material-reference[open] .material-reference__icon::after {
  opacity: 0;
}

.material-reference[open] summary {
  border-bottom: 1px solid rgba(15, 77, 162, 0.12);
}

.material-reference__disclaimer {
  font-size: 0.9rem;
  color: #4a5468;
  margin: 1.5rem 1.75rem 0;
}

.material-reference__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.25rem 1.75rem 0;
}

.material-reference__filter {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #4a5468;
}

.material-reference__filter input,
.material-reference__filter select {
  border-radius: 0.85rem;
  border: 1px solid rgba(15, 77, 162, 0.3);
  padding: 0.6rem 0.85rem;
  font-size: 0.95rem;
}

.material-reference__reset {
  align-self: flex-start;
  border-radius: 999px;
  border: none;
  background: #0f4da2;
  color: #ffffff;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.material-reference__reset:hover,
.material-reference__reset:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 77, 162, 0.25);
}

.material-reference__status {
  margin: 0.75rem 1.75rem 0;
  font-size: 0.9rem;
  color: #4a5468;
  font-weight: 500;
}

@media (max-width: 768px) {
  .material-reference__filters {
    flex-direction: column;
  }

  .material-reference__reset {
    width: 100%;
    text-align: center;
  }
}

.material-modal-open {
  overflow: hidden;
}

.material-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.material-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.material-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 44, 0.7);
}

.material-modal__dialog {
  position: relative;
  background: #ffffff;
  border-radius: 1.5rem;
  max-width: 90vw;
  width: 900px;
  max-height: 90vh;
  padding: 1rem;
  box-shadow: 0 40px 90px rgba(7, 23, 44, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1;
}

.material-modal__close {
  border: none;
  background: none;
  align-self: flex-end;
  font-size: 1.2rem;
  cursor: pointer;
  color: #4a5468;
}

.material-modal__close:hover,
.material-modal__close:focus-visible {
  color: #0f4da2;
}

.material-modal__dialog iframe {
  width: 100%;
  height: 70vh;
  border: none;
  border-radius: 1rem;
  background: #f4f6fb;
}

.material-reference__table {
  padding: 1.5rem 1.75rem 1.75rem;
  overflow-x: auto;
}

.material-reference__table-inner {
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(15, 77, 162, 0.05), rgba(247, 167, 49, 0.04));
}

.material-reference__table-inner thead th {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #0f4da2, #1f6fed);
  color: #ffffff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem;
}

.material-reference__table-inner tbody tr {
  background: #ffffff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.material-reference__table-inner tbody tr:nth-of-type(odd) {
  background: rgba(248, 249, 252, 0.9);
}

.material-reference__table-inner tbody tr:nth-of-type(even) {
  background: #ffffff;
}

.material-reference__table-inner tbody tr:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 18px rgba(6, 35, 71, 0.12);
}

.material-reference__table-inner td,
.material-reference__table-inner th {
  border-bottom: 1px solid rgba(15, 77, 162, 0.12);
  padding: 0.75rem;
}

.material-reference__table-inner td {
  vertical-align: top;
}

.material-reference__table-inner td:last-child {
  white-space: normal;
}

.material-reference__datasheet {
  text-align: center;
  white-space: nowrap;
}

.material-reference__datasheet .download-icon-link[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}

.download-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(15, 77, 162, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.download-icon-link i {
  font-size: 1.15rem;
  color: #0f4da2;
}

.download-icon-link:hover,
.download-icon-link:focus-visible {
  background: #0f4da2;
  transform: translateY(-1px);
}

.download-icon-link:hover i,
.download-icon-link:focus-visible i {
  color: #ffffff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.material-article__toc {
  position: static;
  top: auto;
  flex: 0 0 230px;
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 77, 162, 0.12);
  box-shadow: 0 18px 45px rgba(7, 23, 44, 0.08);
  padding: 1.5rem;
}

.material-article__toc-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: #6c778f;
  margin-bottom: 0.75rem;
}

.material-article__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.material-article__toc a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 0.85rem;
  text-decoration: none;
  font-weight: 600;
  color: #0b1f38;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.material-article__toc a::before {
  content: '•';
  font-size: 0.9rem;
  margin-right: 0.45rem;
  color: #9aa3b8;
}

.material-article__toc a:hover,
.material-article__toc a:focus-visible {
  border-color: rgba(15, 77, 162, 0.25);
  color: #0f4da2;
}

.material-article__toc a.is-active {
  border-color: rgba(15, 77, 162, 0.3);
  background: rgba(15, 77, 162, 0.05);
  color: #0f4da2;
}

.material-article__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.material-article__block {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 77, 162, 0.12);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 20px 55px rgba(6, 35, 71, 0.08);
}

.material-article__block h2,
.material-article__block h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #07172c;
}

.material-article__block p {
  color: #4a5468;
}

.material-article__note {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid #f7a731;
  background: rgba(247, 167, 49, 0.1);
  border-radius: 0.75rem;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .material-article__layout {
    flex-direction: column;
  }

  .material-article__toc {
    position: static;
    width: 100%;
  }
}
.product-detail-hero::before,
.product-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-detail-hero::before {
  background: radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.15), transparent 55%);
  opacity: 0.6;
}

.product-detail-hero::after {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0%, transparent 45%, rgba(255, 255, 255, 0.03) 100%);
  mix-blend-mode: screen;
  opacity: 0.4;
}

.size-chart-hero {
  background:
    radial-gradient(circle at 70% 20%, rgba(7, 74, 181, 0.35), transparent 45%),
    radial-gradient(circle at 15% 45%, rgba(245, 167, 49, 0.25), transparent 55%),
    linear-gradient(135deg, #030304 0%, #050a14 55%, #050505 100%);
}

.product-detail-hero h1,
.product-detail-hero p {
  color: #ffffff;
}

.product-detail-hero .pill {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.product-detail-hero .pill:hover {
  background: rgba(255, 255, 255, 0.2);
}

.product-detail-hero .btn {
  margin-top: 1.5rem;
}

.hero__media {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(5, 9, 20, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.4s ease;
}

.hero__media-caption {
  margin: 0;
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(5, 12, 22, 0.7);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-btns .custom-btn {
  padding: 0.85rem 1.75rem;
}

.hero-btns .custom-border-btn {
  border-width: 2px;
}

.hero__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25), transparent 70%);
  transform: translateX(-150%);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.hero__media:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 70px rgba(5, 9, 20, 0.45);
}

.hero__media:hover img {
  transform: scale(1.03);
}

.hero__media:hover::before {
  transform: translateX(160%);
  opacity: 1;
}

.detail-grid {
  display: grid;
  gap: 2rem;
}

.container--detail {
  max-width: 1340px;
}

.detail-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: flex-start;
}

.detail-layout__aside {
  width: 260px;
  flex-shrink: 0;
}

.detail-layout__content {
  flex: 1;
  min-width: 0;
}

.product-info-nav {
  position: sticky;
  top: 110px;
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 77, 162, 0.12);
  box-shadow: 0 18px 45px rgba(7, 23, 44, 0.08);
  padding: 1.75rem;
}

.product-info-nav__title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #6c778f;
  margin-bottom: 1rem;
}

.product-info-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.product-info-nav a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  font-weight: 600;
  color: #0b1f38;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.product-info-nav a:hover,
.product-info-nav a:focus-visible {
  background: rgba(15, 77, 162, 0.08);
  border-color: rgba(15, 77, 162, 0.3);
}

.product-info-nav a.is-active {
  background: rgba(15, 77, 162, 0.12);
  border-color: rgba(15, 77, 162, 0.45);
  color: #0f4da2;
}

.detail-grid--feature {
  grid-template-columns: 1fr;
  grid-template-areas:
    "why"
    "body"
    "datasheet";
}

.detail-card--why {
  grid-area: why;
}

.detail-card--datasheet {
  grid-area: datasheet;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-card--datasheet .pdf-preview {
  flex-grow: 1;
}

.detail-card--datasheet .pdf-preview iframe {
  min-height: 520px;
}

.detail-card--datasheet .pdf-download {
  margin-top: auto;
}

.detail-card--bodycopy {
  grid-area: body;
}

.detail-card--bodycopy h3,
.detail-card--bodycopy h4 {
  margin-top: 1.25rem;
}

.detail-card--bodycopy h3:first-child {
  margin-top: 0;
}

.detail-card--bodycopy p,
.detail-card--bodycopy ul {
  break-inside: avoid;
}

.detail-card--bodycopy ul {
  padding-left: 1.25rem;
}

.detail-card--bodycopy ul li {
  margin-bottom: 0.4rem;
}

.detail-card--animated {
  position: relative;
  overflow: hidden;
}

.detail-card--animated p {
  color: #3e4b63;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .detail-card--animated p {
    color: transparent;
    background-image: linear-gradient(120deg,
        rgba(62, 77, 101, 0.92) 0%,
        rgba(247, 167, 49, 0.95) 18%,
        rgba(62, 77, 101, 0.92) 36%,
        rgba(31, 111, 237, 0.95) 54%,
        rgba(62, 77, 101, 0.92) 72%,
        rgba(247, 167, 49, 0.95) 90%,
        rgba(62, 77, 101, 0.92) 100%);
    background-size: 260% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: textGlowSweep 14s ease-in-out infinite;
  }

  .detail-card--animated p:nth-of-type(2n) {
    animation-delay: 2.5s;
  }
}

@keyframes textGlowSweep {
  0% {
    background-position: 200% 0;
  }

  50% {
    background-position: 50% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

.detail-card--animated h3,
.detail-card--animated h4 {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .detail-card--animated p {
    animation: none;
    background-position: 50% 0;
  }
}

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

@media (min-width: 992px) {
  .detail-grid {
    grid-template-columns: 2fr 1fr;
  }

  .detail-grid--feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    grid-template-areas:
      "why body"
      "datasheet datasheet";
    align-items: stretch;
  }
}

@media (max-width: 991.98px) {
  .detail-layout {
    flex-direction: column;
  }

  .detail-layout__aside,
  .product-info-nav {
    width: 100%;
    position: static;
  }

  .product-info-nav ul {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
  }

  .product-info-nav a {
    white-space: nowrap;
  }
}

@media (min-width: 1200px) {
  .detail-card--datasheet .pdf-preview iframe {
    min-height: 640px;
  }
}

.detail-card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 77, 162, 0.1);
  padding: 2rem;
  box-shadow: 0 20px 55px rgba(6, 35, 71, 0.08);
}

.detail-card h2,
.detail-card h3 {
  margin-bottom: 1rem;
  color: #07172c;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.detail-list li {
  padding-left: 1.6rem;
  position: relative;
  color: #4a5468;
  font-weight: 500;
}

.detail-list li::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f7a731;
  position: absolute;
  left: 0;
  top: 0.45rem;
}

.spec-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.spec-list dt {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6c778f;
  margin-bottom: 0.25rem;
}

.spec-list dd {
  margin: 0;
  font-size: 1rem;
  color: #101b2d;
  font-weight: 600;
}

.application-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .application-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.application-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(15, 77, 162, 0.08);
  box-shadow: 0 12px 30px rgba(7, 23, 44, 0.08);
}

.application-card h4 {
  margin-bottom: 0.5rem;
  color: #0f4da2;
}

.sub-product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2.5rem;
}

.sub-product-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 77, 162, 0.12);
  box-shadow: 0 18px 45px rgba(7, 23, 44, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sub-product-card__media {
  background: #f5f7fb;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(15, 77, 162, 0.08);
}

.sub-product-card__media img {
  width: 100%;
  max-height: 160px;
  height: auto;
  object-fit: contain;
  display: block;
}

.sub-product-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.sub-product-card__body h4 {
  margin: 0;
  color: #07172c;
}

.sub-product-card__body p {
  margin: 0;
  color: #4a5468;
}

.sub-product-card__cta {
  margin-top: auto;
}

.cta-panel {
  background: linear-gradient(120deg, #0f4da2, #1f6fed);
  color: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  box-shadow: 0 25px 70px rgba(15, 77, 162, 0.35);
}

@media (min-width: 768px) {
  .cta-panel {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }
}

.cta-panel h3 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.cta-panel .custom-btn {
  width: 100%;
  text-align: center;
  background: #fff;
  color: #0f4da2;
  border-color: transparent;
}

.cta-panel .custom-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #0b1f38;
}

.contact-page__layout {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 992px) {
  .contact-page__layout {
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.25fr);
    align-items: start;
  }
}

.contact-page__sidebar {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 77, 162, 0.1);
  box-shadow: 0 18px 45px rgba(7, 23, 44, 0.08);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #0f4da2, #f7a731);
  opacity: 0;
}

.contact-card--form::before,
.contact-card--map::before {
  opacity: 1;
}

.contact-card--form {
  order: 1;
}

.contact-page__sidebar {
  order: 2;
}

@media (min-width: 992px) {
  .contact-page__sidebar {
    order: 1;
  }

  .contact-card--form {
    order: 2;
  }
}

.contact-card h2,
.contact-card h3 {
  margin-bottom: 0.75rem;
}

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

.contact-context-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.contact-context-list div {
  padding: 1rem 1.1rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 77, 162, 0.1);
  border-radius: 1rem;
}

.contact-context-list dt {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5c6a82;
}

.contact-context-list dd {
  margin: 0;
  font-weight: 700;
  color: #07172c;
}

.contact-context-note,
.contact-form-page__intro,
.contact-form-page__helper {
  color: #4a5468;
}

.contact-card--map {
  overflow: hidden;
}

.contact-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  overflow: hidden;
  border-radius: 1.1rem;
  border: 1px solid rgba(15, 77, 162, 0.12);
  background: #e9eef6;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map__link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: #0f4da2;
  font-weight: 800;
  text-decoration: none;
}

.contact-map__link:hover,
.contact-map__link:focus-visible {
  color: #1f6fed;
  text-decoration: underline;
}

.contact-form-page {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.contact-card--form {
  padding: 2rem;
}

.contact-form-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.contact-form-highlights span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(15, 77, 162, 0.08);
  color: #0f4da2;
  font-weight: 800;
  font-size: 0.88rem;
}

.contact-form-page__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .contact-form-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-form-page__field {
  display: grid;
  gap: 0.45rem;
}

.contact-form-page__field label {
  font-weight: 700;
  color: #07172c;
}

.contact-form-page__field .form-control {
  min-height: 52px;
  border-radius: 0.95rem;
  border: 1px solid rgba(15, 77, 162, 0.16);
  background: #f8fafc;
  color: #07172c;
  box-shadow: none;
}

.contact-form-page__field textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

.contact-form-page__field .form-control:focus {
  border-color: rgba(15, 77, 162, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(15, 77, 162, 0.12);
  background: #ffffff;
}

.contact-form-page__actions {
  display: grid;
  gap: 0.85rem;
}

.contact-form-page__consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: #4a5468;
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-form-page__consent input {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: 0.2rem;
  accent-color: #0f4da2;
}

.contact-form-page__consent a {
  color: #0f4da2;
  font-weight: 700;
}

.contact-form-page__actions .custom-btn {
  width: 100%;
}

@media (min-width: 576px) {
  .contact-form-page__actions .custom-btn {
    width: auto;
  }
}

.contact-form-page__alert {
  display: none;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form-page__alert.is-visible {
  display: block;
}

.contact-form-page__alert--success {
  background: rgba(46, 245, 175, 0.12);
  border: 1px solid rgba(46, 245, 175, 0.35);
  color: #0f6b4a;
}

.contact-form-page__alert--error {
  background: rgba(255, 99, 132, 0.12);
  border: 1px solid rgba(255, 99, 132, 0.35);
  color: #a02a45;
}

@media (max-width: 575.98px) {
  .contact-card {
    border-radius: 1.1rem;
    padding: 1.25rem;
  }

  .contact-card--form {
    padding: 1.25rem;
  }

  .contact-map {
    min-height: 240px;
    border-radius: 0.9rem;
  }
}

.pdf-preview {
  position: relative;
  border: 1px solid rgba(15, 77, 162, 0.15);
  border-radius: 1rem;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: inset 0 1px 4px rgba(15, 23, 42, 0.08);
}

.pdf-preview iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.pdf-preview__fallback {
  margin: 0;
  padding: 1rem;
  font-size: 0.875rem;
  color: #4a5468;
}

.pdf-download {
  display: inline-block;
  margin-top: 1.25rem;
  width: 100%;
  text-align: center;
}

.download-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 77, 162, 0.1);
  background: #fff;
  box-shadow: 0 18px 40px rgba(7, 23, 44, 0.08);
}

.download-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-start;
}

.download-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: #0f4da2;
}

.download-inline:hover {
  color: #1f6fed;
}

.download-card .custom-btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
}

.download-card .custom-btn.is-disabled,
.download-card .custom-btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.download-section {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.product-info-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 1.5rem;
}

.product-info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.product-info-table th,
.product-info-table td {
  border: 1px solid rgba(15, 77, 162, 0.12);
  padding: 1rem;
  vertical-align: top;
  text-align: left;
}

.product-info-table th {
  background: #0f4da2;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.product-info-table td {
  background: #ffffff;
  color: #07172c;
  font-weight: 500;
}

.product-info-table td p {
  margin-bottom: 0.25rem;
}

.material-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.material-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(15, 77, 162, 0.12);
  box-shadow: 0 12px 30px rgba(6, 35, 71, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
  text-decoration: none;
  text-decoration: none;
}

.material-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(120deg, #0f4da2, #1f6fed);
}

.material-card:hover,
.material-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(6, 35, 71, 0.15);
}

.material-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #081b33;
}

.material-card p {
  margin: 0;
  color: #4a5468;
  font-size: 0.95rem;
}

.material-card:focus-visible {
  outline: 3px solid rgba(15, 77, 162, 0.5);
  outline-offset: 4px;
}

.terms-updated {
  margin-top: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
}

.terms-nav {
  position: sticky;
  top: 110px;
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 77, 162, 0.12);
  box-shadow: 0 18px 45px rgba(7, 23, 44, 0.08);
  padding: 1.5rem;
}

.terms-nav a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 0.8rem;
  color: #0b1f38;
  font-weight: 700;
  text-decoration: none;
}

.terms-nav a:hover,
.terms-nav a:focus-visible {
  background: rgba(15, 77, 162, 0.08);
  color: #0f4da2;
}

.terms-card {
  margin-bottom: 1.25rem;
}

.terms-card--notice {
  border-left: 5px solid #f7a731;
}

.terms-card h2 {
  margin-bottom: 1rem;
}

.terms-card h3 {
  margin-top: 1.35rem;
}

.terms-card ul {
  padding-left: 1.25rem;
}

.terms-card li {
  margin-bottom: 0.55rem;
  color: #4a5468;
}

.terms-card p {
  color: #4a5468;
  line-height: 1.7;
}

.terms-card a {
  color: #0f4da2;
  font-weight: 700;
}

.glossary-nav {
  gap: 1rem;
}

.glossary-nav__hint {
  margin: -0.5rem 0 0;
  color: #657087;
  font-size: 0.9rem;
  line-height: 1.45;
}

.glossary-letter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.glossary-letter {
  border: 1px solid rgba(15, 77, 162, 0.18);
  border-radius: 0.65rem;
  background: #ffffff;
  color: #0f4da2;
  font-weight: 800;
  min-height: 2.5rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.glossary-letter:not(:disabled):hover,
.glossary-letter:not(:disabled):focus-visible,
.glossary-letter.is-active {
  background: #0f4da2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 77, 162, 0.2);
}

.glossary-letter:disabled {
  color: #8b95a8;
  background: #f3f6fb;
  cursor: not-allowed;
}

.glossary-toolbar {
  position: sticky;
  top: 6.5rem;
  z-index: 5;
  display: grid;
  gap: 1.25rem;
  align-items: end;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 77, 162, 0.12);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 18px 45px rgba(6, 35, 71, 0.1);
  backdrop-filter: blur(14px);
}

.glossary-toolbar__copy h2 {
  margin: 0 0 0.4rem;
  color: #07172c;
}

.glossary-toolbar__copy p {
  margin: 0;
  color: #4a5468;
  line-height: 1.55;
}

.glossary-search {
  display: grid;
  gap: 0.45rem;
  margin: 0;
}

.glossary-search span {
  color: #07172c;
  font-weight: 700;
}

.glossary-search input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(15, 77, 162, 0.2);
  border-radius: 0.85rem;
  padding: 0.75rem 1rem;
  color: #07172c;
  background: #ffffff;
}

.glossary-search input:focus {
  border-color: #0f4da2;
  box-shadow: 0 0 0 4px rgba(15, 77, 162, 0.12);
  outline: none;
}

.glossary-global-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1rem;
  border-radius: 0.85rem;
  background: #fff7e8;
  color: #7a4a00;
  font-weight: 700;
}

.glossary-panel {
  display: none;
  margin-top: 1.75rem;
}

.glossary-panel.is-active {
  display: block;
}

.glossary-panel__heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #07172c 0%, #0f4da2 100%);
  border-radius: 1.25rem;
  padding: 1.25rem;
  color: #ffffff;
}

.glossary-panel__heading span {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: #f7a731;
  color: #07172c;
  font-size: 1.5rem;
  font-weight: 800;
}

.glossary-panel__heading h2 {
  margin: 0;
  color: #ffffff;
}

.glossary-panel__heading p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.glossary-term-list {
  display: grid;
  gap: 1rem;
}

.glossary-term {
  background: #ffffff;
  border: 1px solid rgba(15, 77, 162, 0.1);
  border-radius: 0.95rem;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 14px 35px rgba(6, 35, 71, 0.07);
  border-left: 5px solid #f7a731;
}

.glossary-term h3 {
  margin: 0 0 0.5rem;
  color: #07172c;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.glossary-term p {
  margin: 0;
  color: #4a5468;
  line-height: 1.65;
}

.glossary-empty {
  margin: 1.5rem 0 0;
  padding: 1.25rem;
  border-radius: 1rem;
  background: #fff7e8;
  color: #7a4a00;
  font-weight: 700;
}

@media (min-width: 900px) {
  .glossary-toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  }

  .glossary-term-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

@media (max-width: 991.98px) {
  .glossary-page .detail-layout {
    gap: 1.25rem;
  }

  .glossary-page .detail-layout__aside {
    order: 1;
  }

  .glossary-page .detail-layout__content {
    order: 2;
  }

  .glossary-nav {
    padding: 1.25rem;
  }

  .glossary-toolbar {
    position: static;
    padding: 1.25rem;
  }

  .glossary-letter-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    overflow-x: visible;
  }
}

@media (max-width: 575.98px) {
  .glossary-letter-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .glossary-letter {
    min-height: 2.35rem;
    border-radius: 0.55rem;
  }

  .glossary-toolbar__copy h2 {
    font-size: 1.25rem;
  }

  .glossary-search input {
    min-height: 2.85rem;
  }

  .glossary-panel__heading {
    align-items: flex-start;
    border-radius: 1rem;
    padding: 1rem;
  }

  .glossary-panel__heading span {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }

  .glossary-panel__heading h2 {
    font-size: 1.25rem;
  }

  .glossary-term {
    padding: 1.15rem;
  }
}

@media (max-width: 767.98px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header-spacer {
    height: 70px;
  }

  .product-detail-hero,
  .info-hero {
    padding: 2.5rem 0 2rem;
  }

  .product-detail-hero h1,
  .info-hero h1 {
    font-size: clamp(2rem, 12vw, 2.75rem);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .product-detail-hero .lead,
  .info-hero .lede {
    font-size: 1rem;
    line-height: 1.65;
  }

  .container--detail,
  .detail-layout,
  .detail-layout__content,
  .detail-layout__aside {
    min-width: 0;
  }

  .detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .detail-layout__aside {
    width: 100%;
    position: static;
  }

  .detail-nav,
  .terms-nav {
    position: static;
    top: auto;
    max-height: none;
    border-radius: 1rem;
    padding: 1rem;
  }

  .detail-nav a,
  .terms-nav a {
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  .detail-card,
  .terms-card,
  .contact-card {
    border-radius: 1rem;
    padding: 1.2rem;
    margin-bottom: 1rem;
  }

  .detail-card h2,
  .terms-card h2,
  .contact-card h2,
  .contact-card h3 {
    font-size: clamp(1.35rem, 8vw, 1.75rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .detail-card h3,
  .terms-card h3 {
    font-size: 1.1rem;
    line-height: 1.25;
  }

  .detail-card p,
  .terms-card p,
  .detail-card li,
  .terms-card li {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .material-article {
    padding: 2rem 0 2.5rem;
  }

  .material-article__intro {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .material-article__layout,
  .material-reference__filters,
  .contact-page__layout,
  .contact-form-page__grid,
  .account-address-grid,
  .sub-product-grid,
  .sector-grid,
  .info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .material-reference summary {
    align-items: flex-start;
    padding: 1.1rem;
  }

  .material-reference__hint {
    display: none;
  }

  .material-reference__disclaimer,
  .material-reference__filters {
    margin-left: 1.1rem;
    margin-right: 1.1rem;
  }

  .material-reference__filter {
    min-width: 0;
  }

  .reference-table-wrap,
  .spec-table-wrap,
  .table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .reference-table,
  .spec-table {
    min-width: 620px;
  }

  .contact-card--form {
    order: 1;
    padding: 1.2rem;
  }

  .contact-page__sidebar {
    order: 2;
  }

  .contact-form-page__grid > *,
  .contact-form-page__grid .field-full {
    min-width: 0;
    grid-column: auto;
  }

  .contact-map {
    aspect-ratio: 1 / 1;
    min-height: 240px;
  }

  .glossary-toolbar,
  .glossary-nav {
    position: static;
    border-radius: 1rem;
    padding: 1rem;
  }

  .glossary-letter-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .glossary-panel__heading {
    gap: 0.75rem;
  }

  .glossary-term-list {
    grid-template-columns: 1fr;
  }

  .team-intro,
  .team-section {
    padding-left: 0;
    padding-right: 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .team-card,
  .team-card__photo,
  .team-card__photo img {
    min-width: 0;
  }

  .team-card__photo img {
    width: 100%;
    height: auto;
  }

  .profile-hero,
  .profile-layout,
  .profile-card-grid,
  .profile-quickfire {
    display: grid;
    grid-template-columns: 1fr;
  }

  .profile-hero__image,
  .profile-hero__image img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .product-detail-hero,
  .info-hero {
    padding: 2rem 0 1.6rem;
  }

  .detail-card,
  .terms-card,
  .contact-card,
  .glossary-toolbar,
  .glossary-nav {
    padding: 1rem;
  }

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

  .glossary-letter-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-form-highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-form-highlights span {
    justify-content: center;
  }
}
