:root {
    --navy: #0a2745;
    --navy-2: #12395e;
    --red: #c91525;
    --red-dark: #a90f1d;
    --ink: #162230;
    --text: #4b5d6d;
    --muted: #718192;
    --line: #dbe2e8;
    --soft: #f4f6f8;
    --white: #fff;
    --shell: 1180px;
    --shadow: 0 18px 48px rgba(10, 39, 69, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3 { margin: 0 0 .75em; color: var(--navy); line-height: 1.2; letter-spacing: -.018em; }
h1 { font-size: clamp(26px, 2.2vw, 28px); }
h2 { font-size: clamp(23px, 2vw, 25px); }
h3 { font-size: 18px; }
p { margin: 0 0 1.15em; color: var(--text); }
ul, ol { margin-top: 0; }

.shell { width: min(var(--shell), calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 780px; }
.section { padding: clamp(64px, 7vw, 100px) 0; }
.section--white { background: var(--white); }
.section--soft { background: var(--soft); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #b9c6d2; }
.eyebrow { margin: 0 0 13px; color: #66788b; font-size: 12px; font-weight: 800; letter-spacing: .16em; line-height: 1.4; text-transform: uppercase; }
.eyebrow--red { color: #ef3340; }
.eyebrow--light { color: var(--white); }
.eyebrow--muted { color: #8094a8; }
.lead { font-size: 18px; }
.prose { max-width: 720px; }
.prose p:last-child { margin-bottom: 0; }
.text-link { color: var(--red); font-size: 14px; font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--red-dark); text-decoration: underline; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button-row--center { justify-content: center; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 11px 18px; border: 1px solid transparent; border-radius: 2px; font-size: 14px; font-weight: 800; text-decoration: none; transition: background .2s, border-color .2s, color .2s, transform .2s; }
.button:hover { transform: translateY(-1px); }
.button--red { background: var(--red); color: var(--white); }
.button--red:hover { background: var(--red-dark); }
.button--navy { background: var(--navy); color: var(--white); }
.button--navy:hover { background: var(--navy-2); }
.button--outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.button--outline:hover { background: var(--navy); color: var(--white); }
.button--light { background: var(--white); color: var(--navy); }
.button--light:hover { background: #eef2f5; }
.button--outline-light { border-color: rgba(255,255,255,.72); color: var(--white); background: rgba(255,255,255,.03); }
.button--outline-light:hover { background: var(--white); color: var(--navy); }
.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; left: 16px; top: -80px; padding: 10px 14px; background: var(--white); color: var(--navy); }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; z-index: 100; top: 0; height: 78px; border-bottom: 1px solid rgba(10,39,69,.12); background: rgba(255,255,255,.97); backdrop-filter: blur(12px); }
.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); text-decoration: none; }
.brand img { width: 50px; height: 50px; object-fit: contain; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 15px; letter-spacing: .02em; }
.brand small { color: var(--muted); font-size: 10px; letter-spacing: .06em; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 27px); }
.site-nav > a { position: relative; color: #293846; font-size: 13px; font-weight: 700; text-decoration: none; }
.site-nav > a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--red); content: ""; transform: scaleX(0); transition: transform .2s; }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.nav-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy); }
.language-menu { position: relative; }
.language-button { min-width: 72px; padding: 11px 13px; border: 0; border-radius: 2px; background: var(--red); color: var(--white); font-size: 12px; font-weight: 900; letter-spacing: .06em; cursor: pointer; }
.language-button:hover, .language-button[aria-expanded="true"] { background: var(--red-dark); }
.language-list { position: absolute; right: 0; top: calc(100% + 10px); width: 228px; max-height: min(480px, calc(100vh - 110px)); overflow: auto; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.language-list a, .language-list > span { display: flex; min-height: 44px; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px; border-bottom: 1px solid #edf0f3; color: var(--ink); font-size: 14px; text-decoration: none; }
.language-list a:hover { background: var(--red); color: var(--white); }
.language-list > span[aria-disabled="true"] { color: #8a96a2; cursor: not-allowed; }
.language-list small { font-size: 10px; white-space: nowrap; }

.hero { position: relative; min-height: clamp(520px, 41.45vw, 700px); overflow: hidden; background: var(--navy); }
.hero__image, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: center; }
.hero__shade { background: linear-gradient(90deg, rgba(5,24,43,.88) 0%, rgba(5,24,43,.7) 34%, rgba(5,24,43,.18) 67%, rgba(5,24,43,.05) 100%); }
.hero__inner { position: relative; display: flex; min-height: inherit; align-items: center; }
.hero__content { width: min(640px, 61%); margin-left: clamp(12px, 4vw, 56px); padding: 58px 0; }
.hero h1 { max-width: 620px; color: var(--white); text-wrap: balance; }
.hero__content > p:not(.eyebrow) { max-width: 610px; color: #e4ebf1; font-size: clamp(16px, 1.4vw, 18px); }

.split-intro { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(40px, 8vw, 120px); align-items: start; }
.split-intro h2 { max-width: 480px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.section-heading > p { max-width: 430px; margin-bottom: .8em; }
.section-heading--compact { margin-top: 70px; }
.priority-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.priority-card { position: relative; min-height: 310px; overflow: hidden; padding: clamp(30px, 4vw, 54px); background: var(--navy); color: var(--white); text-decoration: none; }
.priority-card::before, .priority-card::after { position: absolute; border-radius: 50%; content: ""; }
.priority-card::before { width: 320px; height: 320px; right: -90px; bottom: -150px; border: 46px solid rgba(255,255,255,.08); }
.priority-card::after { width: 170px; height: 170px; right: 34px; bottom: -95px; border: 25px solid rgba(201,21,37,.45); }
.priority-card--2 { background: #38556f; }
.priority-card h3 { margin-top: 66px; color: var(--white); font-size: 25px; }
.priority-card p { max-width: 470px; color: #d9e2ea; }
.priority-card strong { color: #ff7b84; font-size: 14px; }
.collection-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.collection-card { position: relative; min-height: 230px; padding: 30px; border: 1px solid var(--line); background: var(--white); transition: border-color .2s, transform .2s, box-shadow .2s; }
.collection-card:hover { transform: translateY(-3px); border-color: #a9b7c3; box-shadow: var(--shadow); }
.collection-card__mark { display: block; width: 38px; height: 5px; margin-bottom: 31px; background: linear-gradient(90deg,var(--red) 0 42%,var(--navy) 42%); }
.collection-card p { font-size: 14px; }
.capability-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin: 46px 0 40px; border-top: 1px solid #26445f; border-bottom: 1px solid #26445f; }
.capability-grid article { min-height: 220px; padding: 30px 26px; border-right: 1px solid #26445f; }
.capability-grid article:last-child { border-right: 0; }
.capability-grid span { display: inline-block; margin-bottom: 42px; color: #ff5965; font-size: 12px; font-weight: 900; }
.capability-grid p { font-size: 14px; }
.quality-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px,8vw,120px); align-items: center; }
.quality-panel > div > p:not(.eyebrow) { max-width: 620px; }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; padding: 12px 0 12px 32px; border-bottom: 1px solid var(--line); color: var(--text); }
.check-list li::before { position: absolute; left: 0; top: 12px; color: var(--red); font-weight: 900; content: "✓"; }
.reason-list { padding: 0; list-style: none; }
.reason-list li { display: grid; grid-template-columns: 48px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.reason-list span { color: var(--red); font-size: 12px; font-weight: 900; }
.insight-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.insight-grid article { padding: 28px; border: 1px solid var(--line); }
.insight-grid__line { display: block; width: 52px; height: 4px; margin-bottom: 50px; background: var(--red); }
.insight-grid p { font-size: 14px; }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(42px,8vw,120px); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 20px 44px 20px 0; color: var(--navy); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::after { position: absolute; right: 3px; content: "+"; color: var(--red); font-size: 22px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding-right: 45px; }
.catalogue-strip { padding: 48px 0; background: var(--red); }
.catalogue-strip h2 { margin: 0; color: var(--white); }
.catalogue-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }

.page-hero { padding: clamp(88px,10vw,142px) 0; background: linear-gradient(115deg,#081f38,#123e66); }
.page-hero--compact { padding: clamp(70px,8vw,106px) 0; }
.page-hero__inner { padding-left: clamp(12px,4vw,56px); }
.page-hero h1 { max-width: 780px; color: var(--white); }
.page-hero p:not(.eyebrow) { max-width: 760px; color: #ccd7e0; font-size: 18px; }
.content-sections { display: grid; gap: 0; }
.content-section { display: grid; grid-template-columns: 110px minmax(0,760px); gap: 30px; padding: 55px 0; border-top: 1px solid var(--line); }
.content-section:first-child { border-top: 0; padding-top: 0; }
.content-section__number { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.filter-bar { display: grid; grid-template-columns: minmax(240px,1fr) minmax(220px,.6fr) auto; gap: 14px; align-items: end; margin-bottom: 48px; padding: 24px; border: 1px solid var(--line); background: var(--white); }
.filter-bar label, .inquiry-form label { display: grid; gap: 7px; color: var(--navy); font-size: 13px; font-weight: 800; }
input, textarea, select { width: 100%; border: 1px solid #aab6c1; border-radius: 2px; background: var(--white); color: var(--ink); }
input, select { min-height: 46px; padding: 9px 12px; }
textarea { padding: 12px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(201,21,37,.13); border-color: var(--red); }
.archive-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.archive-heading h2 { margin: 0; }
.product-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 34px 22px; }
.product-card__image { display: grid; min-height: 290px; margin-bottom: 20px; place-items: center; overflow: hidden; background: #e5eaee; text-decoration: none; }
.product-card__image img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .35s; }
.product-card:hover .product-card__image img { transform: scale(1.025); }
.product-card__image span { color: var(--muted); font-size: 13px; }
.product-card .eyebrow { margin-bottom: 8px; }
.product-card h3 { margin-bottom: 8px; }
.product-card h3 a { text-decoration: none; }
.product-card > p:not(.eyebrow) { font-size: 13px; }
.product-code { color: var(--muted); }
.empty-state { padding: 60px; border: 1px dashed #aab6c1; text-align: center; background: var(--white); }
.empty-state p { max-width: 650px; margin-inline: auto; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { color: var(--navy); }
.product-top { display: grid; grid-template-columns: minmax(0,1.03fr) minmax(0,.97fr); gap: clamp(38px,6vw,78px); align-items: center; }
.gallery__main { display: grid; min-height: 520px; place-items: center; overflow: hidden; background: var(--soft); }
.gallery__main[data-gallery-zoom] { cursor: zoom-in; }
.gallery__main img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; transform-origin: center; transition: transform .22s ease; will-change: transform; }
.gallery__main.is-zoomed { cursor: zoom-out; }
.gallery__main.is-zoomed img { transform: scale(1.75); }
.gallery__placeholder { color: var(--muted); }
.gallery__thumbs { display: grid; grid-template-columns: repeat(5,1fr); gap: 9px; margin-top: 10px; }
.gallery__thumbs button { padding: 0; border: 2px solid transparent; background: none; cursor: pointer; }
.gallery__thumbs button:hover, .gallery__thumbs button:focus { border-color: var(--red); }
.gallery__thumbs img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-category-jump { margin-top: 26px; padding: 22px; border-top: 3px solid var(--red); background: var(--soft); }
.product-category-jump__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.product-category-jump__heading .eyebrow { margin: 0; }
.product-category-jump__heading h2 { margin: 0; color: var(--navy); font-size: 18px; }
.product-category-jump__links { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.product-category-jump__links a { display: flex; min-width: 0; min-height: 46px; align-items: center; justify-content: space-between; gap: 9px; padding: 10px 12px; border: 1px solid var(--line); background: var(--white); color: var(--navy); font-size: 12px; font-weight: 750; line-height: 1.25; text-decoration: none; transition: color .2s,border-color .2s,box-shadow .2s; }
.product-category-jump__links a span { overflow-wrap: anywhere; }
.product-category-jump__links a b { flex: 0 0 auto; color: var(--red); font-size: 16px; }
.product-category-jump__links a:hover { border-color: var(--red); color: var(--red); box-shadow: 0 7px 18px rgba(7,28,49,.07); }
.product-category-jump__links a.is-current { border-color: var(--red); background: var(--red); color: var(--white); }
.product-category-jump__links a.is-current b { color: var(--white); }
.product-category-jump--mobile, .product-category-mobile-section { display: none; }
.product-summary h1 { margin-bottom: 16px; }
.product-code-row { display: flex; justify-content: space-between; gap: 20px; margin: 24px 0 16px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--text); font-size: 13px; }
.product-code-row strong { color: var(--navy); }
.spec-table { margin-bottom: 25px; border: 1px solid var(--line); }
.spec-table > div { display: grid; grid-template-columns: 42% 58%; border-bottom: 1px solid var(--line); }
.spec-table > div:last-child { border-bottom: 0; }
.spec-table span, .spec-table strong { padding: 12px; font-size: 13px; }
.spec-table span { border-right: 1px solid var(--line); color: var(--text); font-weight: 500; }
.spec-table strong { color: var(--ink); font-weight: 650; }
.product-content { max-width: 850px; }
.product-content h2 { margin-top: 48px; }
.product-content > h2:first-of-type { margin-top: 0; }
.product-description-disclosure { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 4px solid var(--red); background: #f7f9fb; transition: background .2s,box-shadow .2s; }
.product-description-disclosure:hover { background: var(--white); box-shadow: 0 12px 34px rgba(7,28,49,.07); }
.product-description-disclosure[open] { background: var(--white); box-shadow: 0 16px 38px rgba(7,28,49,.08); }
.product-description-disclosure > summary { position: relative; display: flex; min-height: 70px; align-items: center; padding: 18px 72px 18px 26px; color: var(--navy); font-size: 18px; font-weight: 850; cursor: pointer; list-style: none; }
.product-description-disclosure > summary::-webkit-details-marker { display: none; }
.product-description-disclosure > summary::after { position: absolute; top: 50%; right: 25px; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid #c8d2dc; border-radius: 50%; content: "\2193"; color: var(--red); font-size: 17px; font-weight: 750; line-height: 1; transform: translateY(-50%); transition: color .2s,border-color .2s,background .2s; }
.product-description-disclosure > summary:hover::after { border-color: var(--red); background: var(--red); color: var(--white); }
.product-description-disclosure[open] > summary::after { content: "\2191"; border-color: var(--red); background: var(--red); color: var(--white); }
.product-description-body { padding: 4px 30px 38px; border-top: 1px solid var(--line); }
.product-description-body h2:first-child { margin-top: 30px; }
.product-content > .product-description-disclosure + h2 { margin-top: 42px; }

.contact-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr); gap: clamp(40px,8vw,110px); align-items: start; }
.inquiry-form { display: grid; gap: 18px; margin-top: 30px; }
.form-grid, .admin-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.consent { grid-template-columns: 20px 1fr !important; align-items: start; color: var(--text) !important; font-weight: 500 !important; }
.consent input { width: 18px; min-height: 18px; margin: 3px 0 0; }
.honeypot { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-card, .article-aside { padding: clamp(30px,4vw,48px); background: var(--navy); color: var(--white); }
.contact-card h2, .contact-card h3, .article-aside h2 { color: var(--white); }
.contact-card a, .article-aside a { color: inherit; }
.contact-card p, .contact-card dd, .contact-card li, .article-aside p { color: #c6d2dc; }
.contact-card dl { margin: 34px 0; }
.contact-card dl div { padding: 14px 0; border-bottom: 1px solid #27435c; }
.contact-card dt { color: #8fa3b5; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.contact-card dd { margin: 5px 0 0; }
.contact-card ul { padding-left: 20px; }
.catalogue-card { padding: 38px; border: 1px solid var(--line); background: var(--soft); }
.catalogue-card ol { padding: 0; list-style: none; }
.catalogue-card li { display: grid; grid-template-columns: 46px 1fr; padding: 17px 0; border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 800; }
.catalogue-card li span { color: var(--red); font-size: 12px; }
.small-note, .review-note { margin-top: 28px; font-size: 12px; }
.notice { padding: 14px 16px; margin: 20px 0; border-left: 4px solid var(--navy); }
.notice--success { background: #e8f7ef; border-color: #18864b; color: #0c6033; }
.notice--error { background: #fff0f1; border-color: var(--red); color: #8d111b; }
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 370px; gap: clamp(48px,7vw,100px); align-items: start; }
.longform { max-width: 780px; }
.longform h2 { margin-top: 52px; }
.longform h2:first-child { margin-top: 0; }
.process-list { margin: 30px 0; border-top: 1px solid var(--line); }
.process-list > div { display: grid; grid-template-columns: 46px 220px 1fr; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.process-list span { color: var(--red); font-size: 12px; font-weight: 900; }
.process-list h3, .process-list p { margin: 0; }
.article-aside { position: sticky; top: 104px; }

.footer-cta { padding: 54px 0; background: var(--red); }
.footer-cta h2 { margin: 0; color: var(--white); }
.footer-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-footer { padding: 66px 0 24px; background: #071c31; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 42px; }
.site-footer h2 { color: #8fa4b7; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.site-footer p, .site-footer li, .site-footer a { color: #b8c6d2; font-size: 13px; }
.footer-brand { display: inline-block; margin-bottom: 14px; color: var(--white) !important; font-size: 18px !important; font-weight: 900; text-decoration: none; }
.footer-links { padding: 0; list-style: none; }
.footer-links li { margin-bottom: 7px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 20px; border-top: 1px solid #1d354b; color: #8194a7; font-size: 11px; }
.back-to-top { position: fixed; z-index: 90; right: 22px; bottom: 22px; width: 42px; height: 42px; border: 0; border-radius: 2px; background: var(--red); color: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,.2); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .2s,transform .2s,background .2s; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); }
.language-suggestion{position:fixed;z-index:120;right:22px;bottom:78px;width:min(440px,calc(100% - 32px));padding:20px;border:1px solid var(--line);background:#fff;box-shadow:var(--shadow)}.language-suggestion p{margin:0 0 14px;color:var(--navy);font-weight:750}.language-suggestion .button{min-height:40px;padding:8px 13px;cursor:pointer}
[dir="rtl"] .site-nav,[dir="rtl"] .footer-cta__inner,[dir="rtl"] .archive-heading{direction:rtl}[dir="rtl"] .page-hero__inner,[dir="rtl"] .hero__content{padding-right:clamp(12px,4vw,56px);padding-left:0}[dir="rtl"] .language-list{right:auto;left:0}[dir="rtl"] .language-list a,[dir="rtl"] .language-list>span{text-align:right}[dir="rtl"] .breadcrumbs{direction:rtl}[dir="rtl"] .spec-table span{border-right:0;border-left:1px solid var(--line)}[dir="rtl"] .check-list li{padding-right:32px;padding-left:0}[dir="rtl"] .check-list li::before{right:0;left:auto}[dir="rtl"] .faq-list summary{padding-right:0;padding-left:44px}[dir="rtl"] .faq-list summary::after{right:auto;left:3px}[dir="rtl"] .product-description-disclosure{border-right:4px solid var(--red);border-left:0}[dir="rtl"] .product-description-disclosure>summary{padding-right:26px;padding-left:72px}[dir="rtl"] .product-description-disclosure>summary::after{right:auto;left:25px}[dir="rtl"] .language-suggestion{right:auto;left:22px}
.language-home-hero .button-row{margin-top:26px}.collection-card{text-decoration:none}

@media (max-width: 1040px) {
    .site-header { height: 70px; }
    .nav-toggle { display: block; }
    .site-nav { position: absolute; top: 70px; right: 0; left: 0; display: none; max-height: calc(100vh - 70px); overflow: auto; align-items: stretch; padding: 18px 20px 28px; border-top: 1px solid var(--line); background: var(--white); box-shadow: 0 16px 30px rgba(10,39,69,.12); }
    .site-nav.is-open { display: grid; }
    .site-nav > a { padding: 10px 4px; }
    .site-nav > a::after { bottom: 3px; transform-origin: left; }
    .language-menu { margin-top: 5px; }
    .language-button { width: 100%; text-align: left; }
    .language-list { position: static; width: 100%; max-height: none; margin-top: 8px; box-shadow: none; }
    .capability-grid { grid-template-columns: repeat(2,1fr); }
    .capability-grid article:nth-child(2) { border-right: 0; }
    .capability-grid article:nth-child(-n+2) { border-bottom: 1px solid #26445f; }
    .collection-grid, .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .article-layout { grid-template-columns: 1fr; }
    .article-aside { position: static; }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
    .shell { width: min(100% - 28px,var(--shell)); }
    .brand small { display: none; }
    .hero { min-height: 590px; }
    .hero__image { object-position: 48% center; }
    .hero__shade { background: linear-gradient(90deg,rgba(5,24,43,.9),rgba(5,24,43,.54)); }
    .hero__content { width: 100%; margin-left: 0; padding: 72px 8px 58px; }
    .split-intro, .quality-panel, .faq-layout, .contact-grid, .product-top { grid-template-columns: 1fr; }
    .product-top { align-items: start; }
    .priority-grid, .collection-grid, .insight-grid, .product-grid { grid-template-columns: 1fr; }
    .priority-card { min-height: 280px; }
    .capability-grid { grid-template-columns: 1fr; }
    .capability-grid article, .capability-grid article:nth-child(2) { border-right: 0; border-bottom: 1px solid #26445f; }
    .capability-grid article:last-child { border-bottom: 0; }
    .section-heading, .catalogue-strip__inner, .footer-cta__inner, .archive-heading { align-items: flex-start; flex-direction: column; }
    .filter-bar { grid-template-columns: 1fr; }
    .content-section { grid-template-columns: 38px 1fr; gap: 14px; }
    .product-card__image { min-height: 0; }
    .gallery__main { min-height: 0; }
    .product-category-jump--desktop { display: none; }
    .product-category-mobile-section { display: block; padding: 10px 0 64px; background: var(--white); }
    .product-category-jump--mobile { display: block; margin-top: 0; }
    .product-category-jump__heading { align-items: flex-start; flex-direction: column; gap: 4px; }
    .product-category-jump__links { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .process-list > div { grid-template-columns: 40px 1fr; }
    .process-list p { grid-column: 2; }
    .form-grid, .admin-form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .empty-state { padding: 36px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
}

.article-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.article-card{overflow:hidden;border:1px solid var(--line);background:#fff}.article-card__body{padding:26px}.article-card__image,.article-card__placeholder{display:block;aspect-ratio:16/9;overflow:hidden;background:#0b2c4c}.article-card__image img{width:100%;height:100%;object-fit:cover;transition:transform .25s ease}.article-card__image:hover img{transform:scale(1.025)}.article-card__placeholder{display:grid;place-items:center;background:linear-gradient(135deg,#092a49,#3e5d78)}.article-card__placeholder span{color:rgba(255,255,255,.22);font-size:56px;font-weight:900}.article-card h2{font-size:22px}.article-card h2 a{color:var(--navy);text-decoration:none}.article-card h2 a:hover{color:var(--red)}.article-featured{width:min(1080px,calc(100% - 40px));margin:-58px auto 0;position:relative}.article-featured img{display:block;width:100%;max-height:610px;object-fit:cover;aspect-ratio:16/9}.prose{max-width:820px}.prose>p{font-size:17px;line-height:1.85}.prose>h2{margin-top:42px}.article-faq{margin-top:52px;padding-top:30px;border-top:1px solid var(--line)}.article-faq details{padding:18px 0;border-bottom:1px solid var(--line)}.article-faq summary{color:var(--navy);font-weight:800;cursor:pointer}
@media(max-width:800px){.article-grid{grid-template-columns:1fr}.prose>p{font-size:16px}}
