:root {
    --blue: #0878d1;
    --blue-dark: #0753a0;
    --blue-deep: #062d59;
    --cyan: #25b7e8;
    --ink: #0b1b34;
    --copy: #536177;
    --muted: #728096;
    --line: #e3eaf2;
    --paper: #ffffff;
    --soft: #f4f8fc;
    --shell: 1240px;
    --shadow: 0 18px 45px rgba(13, 47, 83, .10);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-width: 280px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button, select, input, textarea {
    font: inherit;
}

button, a, select {
    -webkit-tap-highlight-color: transparent;
}

.shell {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding-right: 24px;
    padding-left: 24px;
}

.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;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 12px;
    padding: 9px 14px;
    color: #fff;
    background: var(--blue-deep);
    border-radius: 6px;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.brand-line {
    height: 4px;
    background: #0878d1;
    background: linear-gradient(90deg, #0753a0 0%, #22afe2 52%, #0753a0 100%);
}

.site-header {
    position: -webkit-sticky;
    position: sticky;
    z-index: 100;
    top: 0;
    height: 82px;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .2s ease, height .2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 30px rgba(6, 45, 89, .10);
}

.header-row {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    color: #fff;
    background: #0878d1;
    background: linear-gradient(145deg, #0756ad, #079de0);
    border-radius: 11px;
    box-shadow: 0 7px 18px rgba(8, 120, 209, .22);
    font-size: 21px;
    font-weight: 800;
}

.brand-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.2;
}

.brand-copy strong {
    overflow: hidden;
    max-width: 200px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-copy small {
    overflow: hidden;
    max-width: 230px;
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .08em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-logo-image {
    width: auto;
    max-width: 210px;
    height: 54px;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    min-width: 0;
    margin-left: auto;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}

.primary-nav > a {
    position: relative;
    padding: 28px 14px 25px;
    color: #405069;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease;
}

.primary-nav > a::after {
    position: absolute;
    right: 14px;
    bottom: 17px;
    left: 14px;
    height: 2px;
    content: "";
    background: var(--blue);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.primary-nav > a.is-current {
    color: var(--blue);
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.primary-nav > a.is-current::after {
    transform: scaleX(1);
}

.language-picker {
    position: relative;
    display: inline-flex;
    margin-left: 6px;
}

.language-picker select {
    min-width: 74px;
    padding: 7px 25px 7px 10px;
    color: #405069;
    background: #f5f8fb;
    border: 1px solid var(--line);
    border-radius: 7px;
    cursor: pointer;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.header-phone span {
    font-size: 18px;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 9px;
    background: transparent;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.menu-button > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
}

.menu-button[aria-expanded="true"] > span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 548px;
    overflow: hidden;
    color: #fff;
    background: #dce9f4;
}

.hero-background {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background: linear-gradient(90deg, rgba(4, 38, 76, .93) 0%, rgba(5, 67, 123, .78) 38%, rgba(5, 78, 137, .28) 64%, rgba(5, 78, 137, .02) 100%);
}

.hero::after {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 120px;
    content: "";
    background: linear-gradient(0deg, rgba(6, 45, 89, .26), transparent);
}

.hero-grid,
.cta-grid {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .12;
    background-image: linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 548px;
    align-items: center;
}

.hero-copy {
    width: 620px;
    max-width: 62%;
    padding: 58px 0 48px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
}

.hero .eyebrow {
    color: #8edfff;
}

.hero h1 {
    max-width: 620px;
    margin: 0;
    font-size: 48px;
    line-height: 1.18;
    letter-spacing: -.02em;
    text-shadow: 0 3px 22px rgba(0, 0, 0, .28);
}

.hero-subtitle {
    max-width: 590px;
    margin: 20px 0 0;
    color: #e5f3ff;
    font-size: 18px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .26);
}

.hero-actions {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 46px;
    padding: 11px 22px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

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

.button-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 10px 25px rgba(8, 120, 209, .24);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--blue-dark);
    box-shadow: 0 14px 28px rgba(8, 91, 167, .28);
}

.button-ghost {
    color: #fff;
    background: rgba(255, 255, 255, .11);
    border-color: rgba(255, 255, 255, .46);
}

.button-ghost:hover,
.button-ghost:focus-visible {
    background: rgba(255, 255, 255, .20);
}

.button-outline {
    color: var(--blue);
    background: #fff;
    border-color: var(--blue);
}

.button-outline:hover,
.button-outline:focus-visible {
    color: #fff;
    background: var(--blue);
}

.button-light {
    color: var(--blue-deep);
    background: #fff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
}

.hero-points {
    display: flex;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
    gap: 0;
}

.hero-points li {
    display: flex;
    min-width: 122px;
    padding: 0 22px;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, .30);
}

.hero-points li:first-child {
    padding-left: 0;
    border-left: 0;
}

.hero-points strong {
    font-size: 20px;
    line-height: 1.2;
}

.hero-points span {
    margin-top: 5px;
    color: #b9d6ea;
    font-size: 12px;
}

.section {
    padding: 82px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading h2,
.about-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: 36px;
    line-height: 1.28;
}

.section-heading > p:last-child {
    margin: 14px 0 0;
    color: var(--muted);
}

.section-rule {
    display: block;
    width: 62px;
    height: 4px;
    margin: 17px auto 0;
    background: var(--blue);
    border-radius: 2px;
}

.category-pills {
    display: flex;
    margin: -4px auto 34px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.category-pills a {
    padding: 9px 18px;
    color: #46546a;
    background: #f3f6fa;
    border: 1px solid transparent;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    transition: .2s ease;
}

.category-pills a:hover,
.category-pills a:focus-visible,
.category-pills a.is-active {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 7px 17px rgba(8, 120, 209, .20);
}

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

.product-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 7px 24px rgba(13, 47, 83, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover,
.product-card:focus-within {
    border-color: #b7d8ef;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    display: block;
    height: 255px;
    overflow: hidden;
    background: #eef3f7;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.035);
}

.product-image > span {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 9px;
    color: #fff;
    background: var(--blue);
    border-radius: 14px;
    box-shadow: 0 5px 14px rgba(8, 91, 167, .20);
    font-size: 11px;
    font-weight: 700;
}

.product-body {
    padding: 17px 17px 19px;
}

.product-body h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
}

.product-body h3 a {
    display: -webkit-box;
    overflow: hidden;
    min-height: 46px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-body h3 a:hover,
.product-body h3 a:focus-visible {
    color: var(--blue);
}

.product-body > p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 43px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-price {
    display: flex;
    min-height: 30px;
    margin-top: 13px;
    align-items: baseline;
    gap: 6px;
}

.product-price small,
.product-price span {
    color: var(--muted);
    font-size: 11px;
}

.product-price strong {
    color: #e14f37;
    font-size: 19px;
    line-height: 1;
}

.section-action {
    margin-top: 38px;
    text-align: center;
}

.empty-state {
    margin: 0;
    padding: 38px;
    color: var(--muted);
    background: var(--soft);
    border: 1px dashed #c8d6e4;
    border-radius: 12px;
    text-align: center;
}

.category-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #062d59;
    background: linear-gradient(135deg, #062d59 0%, #084d87 58%, #0878b7 100%);
}

.category-section::before {
    position: absolute;
    top: -220px;
    right: -140px;
    width: 520px;
    height: 520px;
    content: "";
    background: rgba(60, 196, 239, .10);
    border-radius: 50%;
}

.category-section .shell {
    position: relative;
}

.section-heading-light h2 {
    color: #fff;
}

.section-heading-light > p:last-child {
    color: #c0d9eb;
}

.section-heading-light .section-kicker {
    color: #70d4f7;
}

.section-heading-light .section-rule {
    background: #42c4ee;
}

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

.category-card {
    display: flex;
    min-width: 0;
    min-height: 136px;
    padding: 21px;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, .085);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 13px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.category-card:hover,
.category-card:focus-visible {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(101, 214, 248, .68);
    transform: translateY(-3px);
}

.category-mark {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    color: #a8edff;
    background: rgba(31, 171, 221, .17);
    border: 1px solid rgba(112, 212, 247, .30);
    border-radius: 12px;
    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 800;
}

.category-copy {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}

.category-copy strong {
    font-size: 18px;
}

.category-copy small {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 6px;
    color: #c2d9e9;
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.category-arrow {
    color: #70d4f7;
    font-size: 20px;
}

.about-section {
    background: var(--soft);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 70px;
}

.about-copy .section-rule {
    margin-right: 0;
    margin-left: 0;
}

.about-lead {
    margin: 23px 0 12px;
    color: var(--blue-dark);
    font-size: 19px;
    font-weight: 700;
}

.about-body {
    margin: 0;
    color: var(--copy);
    line-height: 1.95;
}

.stats-grid {
    display: grid;
    margin: 28px 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.stats-grid > div {
    padding: 14px 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    text-align: center;
}

.stats-grid dt {
    color: var(--blue);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.25;
}

.stats-grid dd {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.about-visual {
    position: relative;
    margin: 0;
    padding: 0 0 22px 22px;
}

.about-visual::before {
    position: absolute;
    z-index: 0;
    right: 22px;
    bottom: 0;
    left: 0;
    height: 75%;
    content: "";
    background: #ddecf7;
    border-radius: 16px;
}

.about-visual > img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-visual figcaption {
    position: absolute;
    z-index: 2;
    right: -12px;
    bottom: 0;
    display: flex;
    min-width: 178px;
    padding: 16px 19px;
    flex-direction: column;
    color: #fff;
    background: var(--blue);
    border-radius: 11px;
    box-shadow: 0 12px 26px rgba(8, 91, 167, .28);
}

.about-visual figcaption strong {
    font-size: 22px;
}

.about-visual figcaption span {
    margin-top: 3px;
    color: #d9f1ff;
    font-size: 11px;
}

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

.news-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.news-card:hover,
.news-card:focus-within {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.news-image {
    display: block;
    height: 180px;
    overflow: hidden;
    background: var(--soft);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.035);
}

.news-body {
    padding: 19px;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 11px;
}

.news-meta span {
    padding: 3px 7px;
    color: var(--blue-dark);
    background: #eaf5fd;
    border-radius: 4px;
}

.news-body h3 {
    margin: 14px 0 0;
    font-size: 17px;
    line-height: 1.55;
}

.news-body h3 a {
    display: -webkit-box;
    overflow: hidden;
    min-height: 53px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-body h3 a:hover,
.news-body h3 a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
    color: var(--blue);
}

.news-body > p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 66px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.text-link {
    display: inline-flex;
    margin-top: 16px;
    align-items: center;
    gap: 7px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 700;
}

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    color: #fff;
    background: #063d72;
    background: linear-gradient(125deg, #062d59 0%, #075dab 58%, #0888c4 100%);
}

.cta-section::before,
.cta-section::after {
    position: absolute;
    content: "";
    background: rgba(70, 207, 247, .12);
    border-radius: 50%;
}

.cta-section::before {
    top: -260px;
    left: -140px;
    width: 550px;
    height: 550px;
}

.cta-section::after {
    right: -120px;
    bottom: -220px;
    width: 460px;
    height: 460px;
}

.cta-inner {
    position: relative;
    z-index: 3;
    text-align: center;
}

.cta-inner .section-kicker {
    color: #89e4ff;
}

.cta-inner h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.3;
}

.cta-inner > p:not(.section-kicker) {
    margin: 15px auto 0;
    color: #d3e7f6;
    font-size: 17px;
}

.cta-cards {
    display: grid;
    width: 820px;
    max-width: 100%;
    margin: 32px auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.cta-cards a {
    display: flex;
    min-width: 0;
    min-height: 124px;
    padding: 18px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 12px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.cta-cards a:hover,
.cta-cards a:focus-visible {
    background: rgba(255, 255, 255, .17);
    border-color: rgba(137, 228, 255, .62);
    transform: translateY(-3px);
}

.cta-cards b {
    color: #89e4ff;
    font-size: 26px;
    line-height: 1;
}

.cta-cards strong {
    margin-top: 11px;
    font-size: 15px;
}

.cta-cards span {
    overflow: hidden;
    max-width: 100%;
    margin-top: 5px;
    color: #cae1f0;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-footer {
    color: #c2cedb;
    background: #07182c;
}

.footer-grid {
    display: grid;
    padding-top: 58px;
    padding-bottom: 48px;
    grid-template-columns: 1.5fr .8fr .9fr 1.25fr;
    gap: 50px;
}

.brand-footer .brand-copy strong {
    color: #fff;
}

.brand-footer .brand-copy small {
    color: #8091a4;
}

.footer-brand > p {
    max-width: 350px;
    margin: 19px 0 0;
    color: #8fa0b3;
    font-size: 13px;
}

.footer-grid h2 {
    margin: 3px 0 18px;
    color: #fff;
    font-size: 15px;
}

.footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid li + li {
    margin-top: 8px;
}

.footer-grid li a,
.footer-grid address a,
.footer-grid address span {
    display: block;
    color: #8fa0b3;
    font-size: 13px;
    font-style: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: #7dddf8;
}

.footer-grid address a + a,
.footer-grid address a + span {
    margin-top: 9px;
}

.footer-bottom {
    display: flex;
    min-height: 65px;
    padding-top: 17px;
    padding-bottom: 17px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #6f8195;
    border-top: 1px solid rgba(255, 255, 255, .09);
    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: #7dddf8;
}

[dir="rtl"] .primary-nav {
    margin-right: auto;
    margin-left: 0;
}

[dir="rtl"] .about-copy .section-rule {
    margin-right: 0;
    margin-left: auto;
}

@media (max-width: 1120px) {
    .header-phone {
        display: none;
    }

    .primary-nav > a {
        padding-right: 11px;
        padding-left: 11px;
    }

    .hero-copy {
        max-width: 70%;
    }

    .hero h1 {
        font-size: 43px;
    }

    .product-image {
        height: 225px;
    }

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

    .news-card {
        display: grid;
        grid-template-columns: 210px minmax(0, 1fr);
    }

    .news-image {
        height: 100%;
        min-height: 225px;
    }
}

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

    .menu-button {
        display: block;
        order: 3;
    }

    .primary-nav {
        position: fixed;
        z-index: 105;
        top: 76px;
        right: 0;
        bottom: 0;
        left: 0;
        display: none;
        overflow-y: auto;
        margin: 0;
        padding: 17px 20px 36px;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 3px;
        background: rgba(255, 255, 255, .995);
        border-top: 1px solid var(--line);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav > a {
        padding: 13px 15px;
        border-radius: 8px;
    }

    .primary-nav > a::after {
        display: none;
    }

    .primary-nav > a:hover,
    .primary-nav > a:focus-visible,
    .primary-nav > a.is-current {
        background: #eff7fd;
    }

    .language-picker {
        margin: 12px 0 0;
    }

    .language-picker select {
        width: 100%;
        padding: 11px 14px;
    }

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

    .hero::before {
        background: linear-gradient(90deg, rgba(4, 38, 76, .94), rgba(5, 67, 123, .72) 72%, rgba(5, 78, 137, .30));
    }

    .hero-copy {
        width: 620px;
        max-width: 80%;
    }

    .hero h1 {
        font-size: 39px;
    }

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

    .product-image {
        height: 300px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        min-width: 0;
    }

    .about-grid > * {
        min-width: 0;
    }

    .about-visual {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px;
    }
}

@media (max-width: 680px) {
    .shell {
        padding-right: 18px;
        padding-left: 18px;
    }

    .brand-copy strong {
        max-width: 164px;
        font-size: 16px;
    }

    .brand-copy small {
        max-width: 172px;
        font-size: 8px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .brand-logo-image {
        max-width: 180px;
        height: 48px;
    }

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

    .hero-background {
        object-position: 62% center;
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(4, 38, 76, .96), rgba(5, 67, 123, .79) 82%, rgba(5, 78, 137, .56));
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
        padding: 46px 0 40px;
    }

    .hero h1 {
        max-width: 520px;
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.75;
    }

    .hero-points li {
        min-width: 0;
        padding: 0 13px;
        flex: 1;
    }

    .hero-points strong {
        font-size: 17px;
    }

    .section {
        padding: 63px 0;
    }

    .section-heading {
        margin-bottom: 31px;
    }

    .section-heading h2,
    .about-copy h2,
    .cta-inner h2 {
        font-size: 30px;
    }

    .category-pills {
        margin-bottom: 27px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 1px 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-pills::-webkit-scrollbar {
        display: none;
    }

    .category-pills a {
        flex: 0 0 auto;
    }

    .product-grid {
        gap: 12px;
    }

    .product-image {
        height: auto;
        padding-top: 100%;
    }

    .product-image img {
        position: absolute;
        top: 0;
        left: 0;
    }

    .product-body {
        padding: 13px;
    }

    .product-body h3 {
        font-size: 14px;
    }

    .product-body h3 a {
        min-height: 41px;
    }

    .product-price {
        align-items: flex-end;
        flex-wrap: wrap;
    }

    .product-price small {
        width: 100%;
    }

    .product-price strong {
        font-size: 17px;
    }

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

    .category-card {
        min-height: 116px;
    }

    .about-grid {
        gap: 38px;
    }

    .about-visual {
        padding-left: 12px;
    }

    .about-visual > img {
        height: 285px;
    }

    .about-visual figcaption {
        right: 0;
    }

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

    .news-card {
        display: grid;
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .news-image {
        min-height: 224px;
    }

    .news-body {
        padding: 15px;
    }

    .news-body h3 {
        font-size: 15px;
    }

    .news-body > p {
        -webkit-line-clamp: 2;
        min-height: 44px;
    }

    .cta-section {
        padding: 62px 0;
    }

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

    .cta-cards a {
        min-height: 100px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 26px;
    }

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

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 430px) {
    .shell {
        padding-right: 14px;
        padding-left: 14px;
    }

    .header-row {
        gap: 8px;
    }

    .brand {
        gap: 9px;
    }

    .brand-copy strong {
        max-width: 142px;
        font-size: 15px;
    }

    .brand-copy small {
        max-width: 145px;
    }

    .menu-button {
        margin-right: -5px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-actions {
        gap: 9px;
    }

    .hero-actions .button {
        padding-right: 16px;
        padding-left: 16px;
        font-size: 14px;
    }

    .hero-points {
        margin-top: 29px;
    }

    .hero-points span {
        font-size: 10px;
    }

    .section-heading h2,
    .about-copy h2,
    .cta-inner h2 {
        font-size: 27px;
    }

    .section-heading > p:last-child {
        font-size: 14px;
    }

    .product-grid {
        gap: 9px;
    }

    .product-body {
        padding: 11px;
    }

    .product-body > p {
        display: none;
    }

    .product-price {
        margin-top: 9px;
    }

    .product-image > span {
        top: 7px;
        left: 7px;
    }

    .stats-grid {
        gap: 7px;
    }

    .stats-grid > div {
        padding: 11px 5px;
    }

    .stats-grid dt {
        font-size: 21px;
    }

    .about-visual > img {
        height: 230px;
    }

    .about-visual figcaption {
        min-width: 150px;
        padding: 12px 15px;
    }

    .news-card {
        display: block;
    }

    .news-image {
        height: 190px;
        min-height: 0;
    }

    .news-body h3 a,
    .news-body > p {
        min-height: 0;
    }

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

    .footer-brand,
    .footer-grid > div:last-child {
        grid-column: auto;
    }
}

/* Public content pages: news, article, company and contact. */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 68px 0 72px;
    color: #fff;
    background: #0867bc;
    background: linear-gradient(118deg, #07509b 0%, #0879ce 55%, #14aade 100%);
}

.page-hero::before,
.page-hero::after {
    position: absolute;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.page-hero::before {
    width: 520px;
    height: 520px;
    right: -90px;
    top: -300px;
}

.page-hero::after {
    width: 300px;
    height: 300px;
    right: 70px;
    top: -155px;
}

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

.page-hero .section-kicker {
    margin: 24px 0 8px;
    color: #aeeaff;
}

.page-hero h1 {
    max-width: 960px;
    margin: 0;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.page-hero h1 + p,
.page-hero .article-heading > p:not(.section-kicker) {
    max-width: 820px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
}

.breadcrumbs {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
    color: #fff;
}

.breadcrumbs span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-toolbar {
    position: relative;
    z-index: 2;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(13, 47, 83, .05);
}

.news-toolbar-inner {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.filter-pills {
    display: flex;
    min-width: 0;
    overflow-x: auto;
    gap: 9px;
    scrollbar-width: thin;
}

.filter-pills a {
    flex: 0 0 auto;
    padding: 9px 16px;
    color: #536177;
    background: #f3f6fa;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.filter-pills a.is-active,
.filter-pills a:hover,
.filter-pills a:focus-visible {
    color: #fff;
    background: var(--blue);
}

.news-search {
    display: flex;
    width: min(310px, 100%);
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.news-search label {
    min-width: 0;
    flex: 1;
}

.news-search input {
    width: 100%;
    padding: 10px 4px 10px 14px;
    color: var(--ink);
    border: 0;
    outline: 0;
    background: transparent;
}

.news-search button {
    width: 46px;
    color: var(--blue);
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 21px;
}

.news-list-section {
    padding: 64px 0 88px;
    background: var(--soft);
}

.news-list-grid {
    display: grid;
    gap: 24px;
}

.news-list-card {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(260px, 36%) minmax(0, 1fr);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(13, 47, 83, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.news-list-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.news-list-image {
    min-height: 240px;
    overflow: hidden;
    background: #e8eef5;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.news-list-card:hover .news-list-image img {
    transform: scale(1.025);
}

.image-placeholder {
    display: flex;
    width: 100%;
    min-height: 220px;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #87a0ba;
    background: linear-gradient(135deg, #e9f1f8, #d7e4ef);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: .15em;
}

.news-list-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 30px 34px;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
}

.news-meta span {
    padding: 4px 10px;
    color: var(--blue-dark);
    background: #eaf5ff;
    border-radius: 999px;
    font-weight: 700;
}

.news-list-copy h2 {
    margin: 13px 0 9px;
    font-size: clamp(21px, 2.4vw, 30px);
    line-height: 1.35;
}

.news-list-copy h2 a:hover,
.news-list-copy h2 a:focus-visible {
    color: var(--blue);
}

.news-list-copy p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 17px;
    color: var(--copy);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-list-copy .text-link {
    align-self: flex-start;
    color: var(--blue);
    font-weight: 800;
}

.content-empty {
    display: grid;
    min-height: 240px;
    place-items: center;
    align-content: center;
    gap: 12px;
    color: var(--muted);
    background: #fff;
    border: 1px dashed #cbd9e6;
    border-radius: 18px;
    text-align: center;
}

.content-empty span {
    color: #9fb2c5;
    font-size: 44px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 38px;
}

.pagination a {
    display: inline-flex;
    min-width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    color: var(--copy);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-weight: 700;
}

.pagination a.is-current,
.pagination a:hover,
.pagination a:focus-visible {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}

.article-hero {
    padding-bottom: 62px;
}

.article-heading time {
    display: inline-block;
    margin-top: 20px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.article-heading h1 {
    max-width: 1050px;
    font-size: clamp(34px, 4.5vw, 58px);
}

.article-section {
    padding: 56px 0 92px;
    background: var(--soft);
}

.article-shell {
    max-width: 980px;
}

.article-cover {
    overflow: hidden;
    margin: 0 0 26px;
    background: #eaf0f6;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.article-cover img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-cover figcaption {
    padding: 10px 16px;
    color: var(--muted);
    background: #fff;
    font-size: 12px;
}

.article-governance {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 0 0 22px;
    padding: 16px 20px;
    color: var(--copy);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    font-size: 13px;
}

.article-governance span {
    display: flex;
    gap: 7px;
}

.article-governance b {
    color: var(--ink);
}

.article-content,
.article-reference-panel,
.article-related {
    padding: clamp(24px, 5vw, 52px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.article-content {
    color: #34445a;
    font-size: 17px;
    line-height: 1.92;
}

.article-content > :first-child,
.rich-copy > :first-child {
    margin-top: 0;
}

.article-content > :last-child,
.rich-copy > :last-child {
    margin-bottom: 0;
}

.article-content h2,
.article-content h3 {
    margin: 1.8em 0 .65em;
    color: var(--ink);
    line-height: 1.35;
}

.article-content a,
.article-reference-panel a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
}

.article-content th,
.article-content td {
    padding: 10px 12px;
    border: 1px solid var(--line);
    text-align: start;
}

.article-reference-panel,
.article-related {
    margin-top: 22px;
}

.article-reference-panel h2,
.article-related h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.article-reference-panel ul,
.related-reading ul {
    margin: 0;
    padding-left: 20px;
}

.article-reference-panel li + li {
    margin-top: 10px;
}

.article-reference-panel small {
    display: block;
    color: var(--muted);
}

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

.related-card-grid a {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.related-card-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.related-card-grid span {
    display: block;
    padding: 10px 12px;
    font-weight: 700;
}

.related-reading li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.related-reading time {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 13px;
}

.article-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
}

.article-actions a,
.article-actions button {
    padding: 11px 16px;
    color: var(--blue-dark);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
}

.about-capabilities {
    position: relative;
    z-index: 2;
    margin-top: -28px;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.capability-card {
    display: flex;
    min-width: 0;
    min-height: 116px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 14px 34px rgba(13, 47, 83, .09);
    text-align: center;
}

.capability-card span {
    color: var(--blue);
    font-size: 25px;
}

.capability-card strong {
    font-size: 14px;
}

.about-sections {
    padding: 70px 0 96px;
}

.about-section-row {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .92fr);
    align-items: center;
    gap: clamp(34px, 7vw, 90px);
    padding: 44px 0;
}

.about-section-row + .about-section-row {
    border-top: 1px solid var(--line);
}

.about-section-row.is-reversed .about-section-copy {
    order: 2;
}

.about-section-row.is-reversed .about-section-image {
    order: 1;
}

.about-section-copy,
.about-section-image {
    min-width: 0;
}

.section-number {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .16em;
}

.about-section-copy h2 {
    margin: 0;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.2;
}

.section-subtitle {
    margin: 12px 0 18px;
    color: var(--blue-dark);
    font-weight: 700;
}

.rich-copy {
    color: var(--copy);
    line-height: 1.9;
}

.about-section-image {
    overflow: hidden;
    margin: 0;
    background: #eaf1f7;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-section-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.contact-overview {
    position: relative;
    z-index: 2;
    margin-top: -28px;
}

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

.contact-info-card {
    display: flex;
    min-width: 0;
    min-height: 158px;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(13, 47, 83, .09);
}

.contact-info-card > span {
    color: var(--blue);
    font-size: 25px;
}

.contact-info-card small {
    margin: 8px 0 4px;
    color: var(--muted);
}

.contact-info-card strong {
    overflow-wrap: anywhere;
    font-size: 15px;
}

.regional-section,
.message-section {
    padding: 76px 0;
}

.message-section {
    background: var(--soft);
}

.content-section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.content-section-heading h2 {
    margin: 4px 0 10px;
    font-size: clamp(30px, 4vw, 44px);
}

.content-section-heading > p:not(.section-kicker) {
    margin: 0;
    color: var(--copy);
}

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

.regional-card {
    min-width: 0;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
}

.regional-card h3 {
    margin: 0 0 16px;
    color: var(--blue-dark);
    font-size: 18px;
}

.regional-card strong,
.regional-card p,
.regional-card a {
    display: block;
}

.regional-card p {
    min-height: 3.3em;
    margin: 7px 0 14px;
    color: var(--muted);
    font-size: 13px;
}

.regional-card a {
    color: var(--blue);
    font-weight: 800;
}

.message-container {
    max-width: 980px;
}

.contact-form {
    position: relative;
    padding: clamp(24px, 5vw, 48px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.inquiry-form-selection {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px auto;
    align-items: end;
    gap: 16px;
    margin-bottom: 22px;
    padding: 18px;
    background: linear-gradient(135deg, #eef7ff, #f8fbff);
    border: 1px solid #bddcf5;
    border-radius: 14px;
}

.inquiry-form-selection-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.inquiry-form-selection-copy span {
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.inquiry-form-selection-copy strong {
    color: var(--ink);
    line-height: 1.45;
}

.inquiry-form-selection-copy code {
    width: fit-content;
    padding: 3px 8px;
    color: #0753a0;
    background: #fff;
    border: 1px solid #cee4f7;
    border-radius: 6px;
}

.inquiry-form-selection > a {
    align-self: center;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.inquiry-quantity {
    display: grid;
    gap: 6px;
    margin: 0;
    color: #33445b;
    font-size: 13px;
    font-weight: 700;
}

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

.contact-form > label,
.form-grid label {
    display: grid;
    gap: 7px;
    margin-top: 18px;
    color: #33445b;
    font-size: 14px;
    font-weight: 700;
}

.form-grid label {
    margin-top: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    color: var(--ink);
    background: #fbfdff;
    border: 1px solid #cfdae6;
    border-radius: 10px;
    outline: none;
    font-weight: 400;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(8, 120, 209, .12);
}

.form-honeypot {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    white-space: nowrap !important;
}

.privacy-consent {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px !important;
    color: var(--copy) !important;
    font-weight: 400 !important;
}

.privacy-consent input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 3px;
}

.primary-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 0 26px;
    color: #fff;
    background: var(--blue);
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(8, 120, 209, .24);
}

.primary-button:hover,
.primary-button:focus-visible {
    background: var(--blue-dark);
}

.form-notice {
    margin-bottom: 18px;
    padding: 13px 16px;
    border-radius: 10px;
}

.form-notice.success {
    color: #176f45;
    background: #e9f8f0;
    border: 1px solid #bfe9d2;
}

.form-notice.error {
    color: #9a312d;
    background: #fff0ef;
    border: 1px solid #f2c6c2;
}

@media (max-width: 920px) {
    .page-hero {
        padding: 52px 0 58px;
    }

    .news-toolbar-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .news-search {
        width: 100%;
    }

    .news-list-card {
        grid-template-columns: minmax(220px, 38%) minmax(0, 1fr);
    }

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

    .about-section-row,
    .about-section-row.is-reversed {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-section-row.is-reversed .about-section-copy,
    .about-section-row.is-reversed .about-section-image {
        order: initial;
    }

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

@media (max-width: 700px) {
    .page-hero {
        padding: 38px 0 44px;
    }

    .page-hero::before,
    .page-hero::after {
        opacity: .55;
    }

    .page-hero h1,
    .article-heading h1 {
        font-size: clamp(30px, 10vw, 43px);
    }

    .page-hero h1 + p,
    .page-hero .article-heading > p:not(.section-kicker) {
        font-size: 15px;
    }

    .breadcrumbs {
        overflow: hidden;
        font-size: 12px;
    }

    .news-list-section,
    .article-section,
    .about-sections,
    .regional-section,
    .message-section {
        padding-top: 42px;
        padding-bottom: 58px;
    }

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

    .news-list-image {
        min-height: 190px;
        aspect-ratio: 16 / 9;
    }

    .news-list-copy {
        padding: 22px;
    }

    .article-content,
    .article-reference-panel,
    .article-related {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .article-content {
        overflow-x: auto;
        font-size: 16px;
    }

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

    .article-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .article-actions a,
    .article-actions button {
        text-align: center;
    }

    .about-capabilities,
    .contact-overview {
        margin-top: 0;
        padding-top: 20px;
    }

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

    .capability-card {
        min-height: 100px;
    }

    .about-section-row {
        padding: 30px 0;
    }

    .contact-card-grid,
    .regional-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        min-height: 128px;
    }

    .regional-card p {
        min-height: 0;
    }

    .contact-form {
        padding: 22px 18px;
    }

    .inquiry-form-selection {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .inquiry-form-selection > a {
        justify-self: start;
    }

    [dir="rtl"] .article-reference-panel ul,
    [dir="rtl"] .related-reading ul {
        padding-right: 20px;
        padding-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Product catalog ------------------------------------------------------- */
.catalog-public-page main {
    min-width: 0;
}

.catalog-public-page .section-eyebrow {
    margin: 0;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.35;
    text-transform: uppercase;
}

.catalog-page-banner,
.product-title-banner {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #0753a0;
    background: linear-gradient(125deg, #063c78 0%, #0878d1 58%, #18a9dc 100%);
}

.catalog-page-banner::after,
.product-title-banner::after {
    position: absolute;
    top: -210px;
    right: -120px;
    width: 510px;
    height: 510px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, .035), 0 0 0 145px rgba(255, 255, 255, .025);
}

.catalog-banner-grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 310px;
    padding-top: 56px;
    padding-bottom: 56px;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 56px;
}

.catalog-breadcrumb {
    display: flex;
    min-width: 0;
    margin-bottom: 25px;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
}

.catalog-breadcrumb a:hover,
.catalog-breadcrumb a:focus-visible {
    color: #fff;
    text-decoration: underline;
}

.catalog-page-banner .section-eyebrow,
.product-title-banner .section-eyebrow,
.history-replacement-cta .section-eyebrow {
    color: #8edcff;
}

.catalog-page-banner h1,
.product-title-banner h1 {
    max-width: 920px;
    margin: 7px 0 13px;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.13;
    letter-spacing: -.035em;
}

.catalog-page-banner .catalog-banner-grid > div:first-child > p:last-child,
.product-title-banner .shell > p:last-child {
    max-width: 810px;
    margin: 0;
    color: rgba(255, 255, 255, .83);
    font-size: 17px;
}

.catalog-banner-stat {
    display: flex;
    width: 180px;
    height: 180px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    box-shadow: inset 0 0 35px rgba(255, 255, 255, .06);
    backdrop-filter: blur(5px);
    text-align: center;
}

.catalog-banner-stat strong {
    font-size: 48px;
    line-height: 1;
}

.catalog-banner-stat span {
    margin-top: 10px;
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    font-weight: 700;
}

.catalog-category-section {
    padding: 48px 0 40px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.catalog-section-heading,
.catalog-result-bar,
.sku-selector-heading {
    display: flex;
    min-width: 0;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.catalog-section-heading h2,
.catalog-result-bar h2,
.sku-selector-heading h3 {
    margin: 3px 0 0;
    color: var(--ink);
    font-size: 27px;
    line-height: 1.25;
}

.catalog-history-link {
    display: inline-flex;
    padding: 8px 0;
    align-items: center;
    gap: 9px;
    color: #9a6812;
    font-size: 14px;
    font-weight: 700;
}

.catalog-history-link:hover,
.catalog-history-link:focus-visible {
    color: #704600;
}

.catalog-category-strip {
    display: flex;
    max-width: 100%;
    margin-top: 24px;
    padding: 3px 3px 10px;
    align-items: center;
    gap: 9px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.catalog-filter-pill {
    display: inline-flex;
    min-height: 43px;
    padding: 9px 17px;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: #465873;
    background: #f4f7fa;
    border: 1px solid #e4ebf2;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.catalog-filter-pill span {
    min-width: 22px;
    padding: 1px 6px;
    color: var(--muted);
    background: #fff;
    border-radius: 10px;
    font-size: 11px;
    text-align: center;
}

.catalog-filter-pill:hover,
.catalog-filter-pill:focus-visible,
.catalog-filter-pill.is-current {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 7px 18px rgba(8, 120, 209, .18);
}

.catalog-results-section {
    padding: 58px 0 76px;
    background: #f5f8fb;
}

.catalog-result-bar {
    margin-bottom: 27px;
}

.catalog-result-bar > p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.catalog-result-bar > p strong {
    margin-right: 4px;
    color: var(--blue-dark);
    font-size: 23px;
}

.catalog-result-bar > a {
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 700;
}

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

.catalog-product-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e9f0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(15, 52, 89, .04);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.catalog-product-card:hover,
.catalog-product-card:focus-within {
    border-color: #b8d8ed;
    box-shadow: 0 18px 36px rgba(12, 63, 110, .11);
    transform: translateY(-4px);
}

.catalog-product-image {
    position: relative;
    display: block;
    height: 248px;
    overflow: hidden;
    background: #edf1f4;
}

.catalog-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.catalog-product-card:hover .catalog-product-image img {
    transform: scale(1.035);
}

.catalog-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    padding: 4px 9px;
    color: #fff;
    background: var(--blue);
    border-radius: 11px;
    font-size: 11px;
    font-weight: 800;
}

.catalog-badge.badge-stopped {
    color: #704600;
    background: #fff2c9;
}

.catalog-product-copy {
    display: flex;
    min-width: 0;
    padding: 20px;
    flex: 1 1 auto;
    flex-direction: column;
}

.catalog-card-category {
    margin: 0 0 7px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.catalog-product-copy h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.42;
    overflow-wrap: anywhere;
}

.catalog-product-copy h2 a:hover,
.catalog-product-copy h2 a:focus-visible {
    color: var(--blue);
}

.catalog-card-subtitle {
    display: -webkit-box;
    min-height: 45px;
    margin: 9px 0 0;
    overflow: hidden;
    color: var(--copy);
    font-size: 13px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.catalog-feature-tags {
    display: flex;
    margin: 13px 0 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
}

.catalog-feature-tags li {
    padding: 3px 8px;
    color: #5c6b7e;
    background: #f4f7fa;
    border-radius: 5px;
    font-size: 10px;
}

.catalog-card-bottom {
    display: flex;
    min-width: 0;
    margin-top: auto;
    padding-top: 18px;
    align-items: flex-end;
    gap: 9px;
}

.catalog-card-price {
    display: flex;
    min-width: 0;
    align-items: baseline;
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 4px;
}

.catalog-card-price small {
    width: 100%;
    color: var(--muted);
    font-size: 11px;
}

.catalog-card-price strong {
    color: #0878d1;
    font-size: 22px;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.catalog-card-price span {
    color: var(--muted);
    font-size: 11px;
}

.sku-count-badge {
    padding: 3px 7px;
    color: #5b6c83;
    background: #f0f4f8;
    border-radius: 8px;
    font-size: 9px;
    white-space: nowrap;
}

.catalog-detail-link {
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    flex: 0 0 35px;
    color: var(--blue-dark);
    background: #edf6fc;
    border-radius: 50%;
    font-weight: 800;
}

.catalog-detail-link:hover,
.catalog-detail-link:focus-visible {
    color: #fff;
    background: var(--blue);
}

.catalog-pagination {
    display: flex;
    margin-top: 42px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
}

.catalog-pagination a,
.catalog-pagination span {
    display: inline-flex;
    min-width: 39px;
    height: 39px;
    padding: 0 8px;
    align-items: center;
    justify-content: center;
    color: #52647d;
    background: #fff;
    border: 1px solid #dce6ef;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
}

.catalog-pagination a:hover,
.catalog-pagination a:focus-visible,
.catalog-pagination a.is-current {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}

.catalog-pagination .is-disabled {
    opacity: .45;
    pointer-events: none;
}

.catalog-pagination span {
    background: transparent;
    border-color: transparent;
}

.catalog-empty-state {
    padding: 74px 20px;
    color: var(--copy);
    background: #fff;
    border: 1px dashed #cfdbe7;
    border-radius: 14px;
    text-align: center;
}

.catalog-empty-state > span {
    color: #b6c9da;
    font-size: 48px;
}

.catalog-empty-state h2 {
    margin: 7px 0 21px;
    font-size: 22px;
}

/* Product detail -------------------------------------------------------- */
.product-title-banner .shell {
    position: relative;
    z-index: 1;
    min-height: 266px;
    padding-top: 43px;
    padding-bottom: 43px;
}

.product-title-banner .catalog-breadcrumb {
    margin-bottom: 24px;
}

.product-title-banner h1 {
    font-size: clamp(31px, 3.8vw, 50px);
}

.product-detail-section {
    padding: 52px 0 67px;
    background: #f6f9fc;
}

.product-detail-grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
    gap: 42px;
}

.product-gallery-panel,
.product-summary-panel {
    min-width: 0;
}

.product-main-media {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0;
    overflow: hidden;
    background: #e9eef2;
    border: 1px solid #dde5ec;
    border-radius: 17px;
    box-shadow: 0 17px 42px rgba(12, 52, 88, .09);
}

.product-main-media::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.product-main-media img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-thumbnail-strip {
    display: flex;
    max-width: 100%;
    margin-top: 12px;
    padding: 2px 2px 8px;
    gap: 9px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: #9fb8ce transparent;
    -webkit-overflow-scrolling: touch;
}

.product-gallery-thumb {
    width: 78px;
    height: 78px;
    aspect-ratio: 1 / 1;
    padding: 3px;
    overflow: hidden;
    flex: 0 0 78px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 9px;
    cursor: pointer;
    scroll-snap-align: start;
}

.product-gallery-thumb.is-active,
.product-gallery-thumb:hover,
.product-gallery-thumb:focus-visible {
    border-color: var(--blue);
    outline: none;
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-summary-panel {
    padding: 3px 0;
}

.product-history-alert {
    margin-bottom: 18px;
    padding: 15px 17px;
    color: #674b17;
    background: #fff8e5;
    border: 1px solid #ecd793;
    border-radius: 9px;
}

.product-history-alert strong {
    font-size: 14px;
}

.product-history-alert p {
    margin: 3px 0 0;
    font-size: 12px;
}

.product-category-chip {
    display: inline-flex;
    padding: 5px 11px;
    color: var(--blue-dark);
    background: #e9f4fc;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 800;
}

.product-summary-panel > h2 {
    margin: 15px 0 7px;
    font-size: clamp(27px, 3vw, 39px);
    line-height: 1.27;
    letter-spacing: -.025em;
    overflow-wrap: anywhere;
}

.product-summary-subtitle {
    margin: 0;
    color: var(--copy);
    font-size: 14px;
}

.product-reference-price {
    display: flex;
    margin-top: 24px;
    padding: 17px 20px;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
    background: #fff;
    border: 1px solid #dce7f0;
    border-radius: 11px;
}

.product-reference-price > span {
    width: 100%;
    color: var(--muted);
    font-size: 12px;
}

.product-reference-price strong {
    color: var(--blue);
    font-size: 34px;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.product-reference-price small {
    color: var(--muted);
    font-size: 12px;
}

.product-price-notice,
.sku-selector-help {
    margin: 9px 2px 0;
    color: var(--muted);
    font-size: 12px;
}

.product-sku-selector {
    margin-top: 28px;
}

.sku-selector-heading {
    align-items: center;
}

.sku-selector-heading h3 {
    font-size: 21px;
}

.sku-selector-heading > span {
    color: var(--muted);
    font-size: 12px;
}

.sku-search {
    display: block;
    margin-top: 13px;
}

.sku-search input {
    width: 100%;
    height: 43px;
    padding: 9px 13px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #d7e2ec;
    border-radius: 8px;
    outline: none;
}

.sku-search input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(8, 120, 209, .11);
}

.product-sku-options {
    display: grid;
    max-height: 408px;
    margin-top: 13px;
    padding-right: 4px;
    overflow-y: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.product-sku-option {
    display: block;
    min-width: 0;
    padding: 13px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #dbe5ee;
    border-radius: 9px;
    cursor: pointer;
    text-align: left;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

[dir="rtl"] .product-sku-option {
    text-align: right;
}

.product-sku-option:hover,
.product-sku-option:focus-visible,
.product-sku-option.is-selected {
    background: #f2f9fe;
    border-color: var(--blue);
    box-shadow: inset 0 0 0 1px var(--blue);
    outline: none;
}

.sku-option-top {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    justify-content: space-between;
    gap: 9px;
}

.sku-option-top strong {
    min-width: 0;
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.sku-option-top b {
    flex: 0 0 auto;
    color: var(--blue);
    font-size: 14px;
}

.product-sku-option code,
.selected-sku-title code {
    display: block;
    margin-top: 5px;
    color: #4f6882;
    font-family: Consolas, "Courier New", monospace;
    font-size: 11px;
    overflow-wrap: anywhere;
    white-space: normal;
}

.product-sku-option small {
    display: -webkit-box;
    margin-top: 6px;
    overflow: hidden;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.sku-no-results {
    margin: 15px 0;
    padding: 18px;
    color: var(--muted);
    background: #fff;
    border-radius: 8px;
    text-align: center;
}

.selected-sku-panel {
    margin-top: 18px;
    padding: 18px;
    background: #fff;
    border: 1px solid #dbe6ef;
    border-radius: 11px;
    box-shadow: 0 9px 28px rgba(13, 54, 90, .05);
}

.selected-sku-panel > p {
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.selected-sku-title {
    display: flex;
    min-width: 0;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.selected-sku-title strong {
    min-width: 0;
    font-size: 16px;
    overflow-wrap: anywhere;
}

.selected-sku-title code {
    flex: 0 1 auto;
    text-align: right;
}

#tyck-selected-sku-specifications {
    display: grid;
    margin: 13px 0 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: #e4ebf1;
    border: 1px solid #e4ebf1;
    border-radius: 7px;
}

#tyck-selected-sku-specifications > div {
    min-width: 0;
    padding: 8px 10px;
    background: #f8fafc;
}

#tyck-selected-sku-specifications dt {
    color: var(--muted);
    font-size: 10px;
}

#tyck-selected-sku-specifications dd {
    margin: 2px 0 0;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.selected-sku-action {
    display: flex;
    margin-top: 16px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.selected-sku-action > span {
    display: flex;
    color: var(--muted);
    flex-direction: column;
    font-size: 10px;
}

.selected-sku-action > span strong {
    color: var(--blue);
    font-size: 22px;
}

.product-standalone-inquiry {
    margin-top: 24px;
}

.product-section-nav {
    position: sticky;
    z-index: 20;
    top: 82px;
    background: rgba(255, 255, 255, .97);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 7px 20px rgba(16, 50, 83, .04);
}

.product-section-nav .shell {
    display: flex;
    max-width: 980px;
    overflow-x: auto;
    gap: 2px;
    -webkit-overflow-scrolling: touch;
}

.product-section-nav a {
    padding: 16px 18px 14px;
    flex: 0 0 auto;
    color: #51637b;
    border-bottom: 2px solid transparent;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.product-section-nav a:hover,
.product-section-nav a:focus-visible {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

.product-information {
    max-width: 1020px;
    padding-top: 58px;
    padding-bottom: 72px;
}

.product-content-card {
    min-width: 0;
    padding: 36px 40px;
    background: #fff;
    border: 1px solid #e2e9f0;
    border-radius: 13px;
    box-shadow: 0 7px 25px rgba(17, 52, 87, .045);
    scroll-margin-top: 165px;
}

.product-content-card + .product-content-card {
    margin-top: 23px;
}

.product-content-card > header {
    margin-bottom: 25px;
}

.product-content-card > header h2 {
    margin: 4px 0 0;
    font-size: 29px;
}

.product-content-card > header > p:last-child:not(.section-eyebrow) {
    margin: 7px 0 0;
    color: var(--copy);
    font-size: 13px;
}

.approved-product-content {
    color: #40516a;
    font-size: 15px;
}

.approved-product-content h2,
.approved-product-content h3,
.approved-product-content h4 {
    margin: 29px 0 9px;
    color: var(--ink);
    line-height: 1.35;
}

.approved-product-content h2:first-child,
.approved-product-content h3:first-child,
.approved-product-content p:first-child {
    margin-top: 0;
}

.approved-product-content p,
.approved-product-content ul,
.approved-product-content ol,
.approved-product-content blockquote {
    margin: 10px 0;
}

.approved-product-content table {
    width: 100%;
    border-collapse: collapse;
}

.approved-product-content th,
.approved-product-content td {
    padding: 10px;
    border: 1px solid var(--line);
}

.product-parameter-list {
    display: grid;
    margin: 0;
    overflow: hidden;
    background: #e5ebf1;
    border: 1px solid #e5ebf1;
    border-radius: 9px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
}

.product-parameter-list > div {
    display: grid;
    min-width: 0;
    padding: 13px 15px;
    background: #f9fbfc;
    grid-template-columns: minmax(90px, .65fr) minmax(0, 1.35fr);
    gap: 12px;
}

.product-parameter-list dt {
    color: #66768a;
    font-size: 12px;
}

.product-parameter-list dd {
    margin: 0;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.responsive-table {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid #dfe7ef;
    border-radius: 9px;
    -webkit-overflow-scrolling: touch;
}

.responsive-table table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    text-align: left;
}

[dir="rtl"] .responsive-table table {
    text-align: right;
}

.responsive-table th,
.responsive-table td {
    padding: 14px 13px;
    vertical-align: top;
    border-bottom: 1px solid #e7edf2;
    font-size: 12px;
}

.responsive-table thead th {
    color: #53657d;
    background: #f1f5f8;
    font-size: 11px;
    text-transform: uppercase;
}

.responsive-table tbody th {
    min-width: 150px;
    color: var(--ink);
}

.responsive-table tbody tr:last-child > * {
    border-bottom: 0;
}

.responsive-table code {
    color: #205d8e;
    font-size: 11px;
    white-space: nowrap;
}

.responsive-table td > strong {
    color: var(--blue);
    font-size: 14px;
    white-space: nowrap;
}

.responsive-table dl {
    margin: 0;
}

.responsive-table dl > div {
    display: flex;
    gap: 5px;
}

.responsive-table dt {
    color: var(--muted);
}

.responsive-table dt::after {
    content: ":";
}

.responsive-table dd {
    margin: 0;
    color: #344760;
}

.product-faq-list details {
    border-top: 1px solid var(--line);
}

.product-faq-list details:last-child {
    border-bottom: 1px solid var(--line);
}

.product-faq-list summary {
    display: flex;
    padding: 17px 2px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--ink);
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    list-style: none;
}

.product-faq-list summary::-webkit-details-marker {
    display: none;
}

.product-faq-list summary span {
    color: var(--blue);
    font-size: 20px;
    font-weight: 400;
}

.product-faq-list details[open] summary span {
    transform: rotate(45deg);
}

.product-faq-list details > p {
    margin: -2px 0 17px;
    padding-right: 45px;
    color: var(--copy);
    font-size: 14px;
}

.related-products-section {
    padding: 65px 0 78px;
    background: #f4f8fb;
    border-top: 1px solid var(--line);
}

.related-product-grid {
    margin-top: 24px;
}

/* Discontinued archive -------------------------------------------------- */
.history-page-banner {
    background: #173c62;
    background: linear-gradient(125deg, #18354f 0%, #295b84 64%, #4b7393 100%);
}

.history-banner-stat {
    color: #fff8e2;
    background: rgba(255, 196, 82, .12);
    border-color: rgba(255, 218, 143, .32);
}

.history-notice-section {
    padding: 30px 0 0;
    background: #f7f9fb;
}

.history-notice {
    display: grid;
    padding: 20px 23px;
    align-items: center;
    color: #60481c;
    background: #fff9e9;
    border: 1px solid #f0d994;
    border-radius: 11px;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 16px;
}

.history-notice-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #c28a19;
    border-radius: 50%;
    font-family: Georgia, serif;
    font-weight: 800;
}

.history-notice h2 {
    margin: 0;
    font-size: 16px;
}

.history-notice p {
    margin: 3px 0 0;
    font-size: 13px;
}

.history-notice > a {
    color: #8e6010;
    font-size: 13px;
    font-weight: 800;
}

.history-results-section {
    padding-top: 47px;
}

.catalog-product-card.is-discontinued .catalog-product-image img {
    filter: saturate(.72);
}

.catalog-product-card.is-discontinued .catalog-card-price strong {
    color: #8a651c;
    font-size: 15px;
}

.history-replacement-cta {
    padding: 0 0 74px;
    background: #f5f8fb;
}

.history-cta-card {
    display: flex;
    padding: 38px 42px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #fff;
    background: #073f79;
    background: linear-gradient(120deg, #062f5c, #096cae);
    border-radius: 15px;
    box-shadow: 0 18px 42px rgba(7, 61, 110, .2);
}

.history-cta-card h2 {
    margin: 4px 0 5px;
    font-size: 27px;
}

.history-cta-card p {
    max-width: 730px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

@media (max-width: 1120px) {
    .catalog-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-main-media {
        height: auto;
    }
}

@media (max-width: 920px) {
    .catalog-banner-grid {
        grid-template-columns: minmax(0, 1fr) 150px;
        gap: 30px;
    }

    .catalog-banner-stat {
        width: 145px;
        height: 145px;
    }

    .catalog-banner-stat strong {
        font-size: 39px;
    }

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

    .product-detail-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
    }

    .product-main-media {
        height: auto;
        min-height: 0;
    }

    .product-main-media img {
        height: 100%;
        min-height: 0;
    }

    .product-summary-panel {
        max-width: 760px;
    }

    .product-section-nav {
        top: 70px;
    }
}

@media (max-width: 700px) {
    .catalog-banner-grid {
        min-height: 260px;
        padding-top: 37px;
        padding-bottom: 40px;
        grid-template-columns: minmax(0, 1fr);
    }

    .catalog-banner-stat {
        display: none;
    }

    .catalog-page-banner h1,
    .product-title-banner h1 {
        font-size: 31px;
    }

    .catalog-page-banner .catalog-banner-grid > div:first-child > p:last-child,
    .product-title-banner .shell > p:last-child {
        font-size: 14px;
    }

    .catalog-category-section {
        padding: 36px 0 27px;
    }

    .catalog-section-heading,
    .catalog-result-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .catalog-history-link {
        padding: 0;
    }

    .catalog-results-section {
        padding: 42px 0 56px;
    }

    .catalog-product-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .catalog-product-image {
        height: auto;
    }

    .catalog-product-image img {
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .product-title-banner .shell {
        min-height: 235px;
        padding-top: 33px;
        padding-bottom: 36px;
    }

    .product-detail-section {
        padding: 28px 0 44px;
    }

    .product-sku-options {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-content-card {
        padding: 27px 24px;
    }

    .product-parameter-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .history-notice {
        align-items: start;
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .history-notice > a {
        grid-column: 2;
    }

    .history-cta-card {
        padding: 30px 25px;
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 430px) {
    .catalog-public-page .shell {
        padding-right: 15px;
        padding-left: 15px;
    }

    .catalog-breadcrumb {
        margin-bottom: 18px;
        gap: 6px;
        font-size: 11px;
    }

    .catalog-page-banner h1,
    .product-title-banner h1 {
        font-size: 27px;
        overflow-wrap: anywhere;
    }

    .catalog-section-heading h2,
    .catalog-result-bar h2 {
        font-size: 23px;
    }

    .catalog-category-strip {
        margin-right: -15px;
        margin-left: -15px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .catalog-product-copy {
        padding: 17px;
    }

    .catalog-card-bottom {
        flex-wrap: wrap;
    }

    .catalog-pagination a,
    .catalog-pagination span {
        min-width: 35px;
        height: 35px;
        padding: 0 6px;
    }

    .product-thumbnail-strip {
        margin-right: 0;
        padding-right: 2px;
    }

    .product-gallery-thumb {
        width: 67px;
        height: 67px;
        flex-basis: 67px;
    }

    .product-summary-panel > h2 {
        font-size: 26px;
    }

    .product-reference-price {
        padding: 15px;
    }

    .product-reference-price strong {
        font-size: 29px;
    }

    .sku-option-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .selected-sku-title,
    .selected-sku-action {
        align-items: flex-start;
        flex-direction: column;
    }

    .selected-sku-title code {
        text-align: left;
    }

    #tyck-selected-sku-specifications {
        grid-template-columns: minmax(0, 1fr);
    }

    .selected-sku-action .button {
        width: 100%;
    }

    .product-section-nav .shell {
        padding-right: 0;
        padding-left: 0;
    }

    .product-section-nav a {
        padding-right: 13px;
        padding-left: 13px;
    }

    .product-information {
        padding-top: 36px;
        padding-bottom: 48px;
    }

    .product-content-card {
        padding: 22px 17px;
        border-radius: 10px;
    }

    .product-content-card > header h2 {
        font-size: 24px;
    }

    .product-parameter-list > div {
        grid-template-columns: minmax(0, 1fr);
        gap: 3px;
    }

    .product-faq-list summary {
        font-size: 14px;
    }

    .product-faq-list details > p {
        padding-right: 0;
    }

    .history-notice {
        padding: 17px 15px;
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 11px;
    }

    .history-notice-icon {
        width: 30px;
        height: 30px;
    }

    .history-cta-card {
        margin-right: 0;
        margin-left: 0;
        border-radius: 10px;
    }
}
.system-message-body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: start center;
  padding: 12vh 20px 40px;
  background: #eef4f9;
}

.system-message-card {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid #dce6ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgb(15 43 70 / 10%);
  font: 16px/1.7 system-ui, -apple-system, "Segoe UI", sans-serif;
}

.system-message-card h1 {
  margin: 0 0 12px;
  color: #0b2c50;
  font-size: clamp(36px, 8vw, 68px);
}

.system-message-card .button {
  margin-top: 12px;
}
