:root {
    --ink: #17212b;
    --muted: #5c6875;
    --line: #d8e0e7;
    --paper: #ffffff;
    --soft: #f3f6f8;
    --deep: #0e2f3c;
    --blue: #1f6f9f;
    --teal: #158071;
    --gold: #c0832d;
    --red: #a83d32;
    --radius: 8px;
    --shadow: 0 18px 50px rgba(16, 35, 48, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

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

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

a:hover {
    color: var(--blue);
}

h1,
h2,
h3 {
    margin: 0 0 16px;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(38px, 6vw, 72px);
    max-width: 960px;
}

h2 {
    font-size: 34px;
}

h3 {
    font-size: 21px;
}

p {
    margin: 0 0 16px;
}

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

.narrow {
    width: min(820px, calc(100% - 40px));
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 78px;
}

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

.brand img {
    width: auto;
    max-width: 190px;
    max-height: 54px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #fff;
    background: var(--deep);
    border-radius: 6px;
}

.brand-text {
    max-width: 250px;
    line-height: 1.2;
}

.primary-nav {
    justify-self: end;
}

.menu {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 15px;
    font-weight: 700;
}

.menu a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
}

.mobile-home-link {
    display: none;
}

.has-mega {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 80;
    display: grid;
    grid-template-columns: 0.92fr 1.55fr 0.78fr;
    gap: 24px;
    width: min(1120px, calc(100vw - 40px));
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translate(-50%, 8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.mega-menu::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 20px;
}

.small-mega {
    grid-template-columns: 0.8fr 1.4fr;
}

.mega-intro h2 {
    margin-bottom: 12px;
    font-size: 24px;
}

.mega-intro p {
    color: var(--muted);
}

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

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

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

.mega-links h3 {
    margin-bottom: 8px;
    color: var(--deep);
    font-size: 14px;
    text-transform: uppercase;
}

.mega-links a {
    display: flex;
    min-height: 34px;
    color: var(--ink);
    font-weight: 600;
}

.mega-visual {
    display: grid;
    overflow: hidden;
    color: #fff;
    background: var(--deep);
    border-radius: var(--radius);
}

.mega-visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.mega-visual span {
    padding: 14px;
    font-weight: 800;
}

.mega-hint {
    grid-column: 1 / -1;
    padding: 12px 16px;
    color: var(--deep);
    background: #edf5f4;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
}

.header-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    color: #fff;
    background: var(--blue);
    border-radius: 6px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: var(--deep);
}

.hero-slider,
.hero-slide {
    min-height: 640px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    background-color: var(--deep);
    background-position: center;
    background-size: cover;
    transition: opacity 800ms ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 47, 60, 0.86), rgba(14, 47, 60, 0.58), rgba(14, 47, 60, 0.18));
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 120px 0 90px;
}

.hero-content h1 {
    color: #fff;
}

.hero-content p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    color: #fff;
    background: var(--red);
    border: 0;
    border-radius: 6px;
    font-weight: 800;
}

.button:hover {
    color: #fff;
    background: #8f3028;
}

.button.secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.52);
}

.button.secondary:hover {
    background: rgba(255, 255, 255, 0.28);
}

.button.light {
    color: var(--deep);
    background: #fff;
}

.procurement-hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 680px;
    background-color: var(--deep);
    background-position: center;
    background-size: cover;
}

.procurement-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 47, 60, 0.92), rgba(14, 47, 60, 0.64), rgba(14, 47, 60, 0.22));
}

.procurement-hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 86px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 860px;
}

.hero-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.stats-band {
    background: var(--soft);
    border-bottom: 1px solid var(--line);
}

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

.stat-item {
    padding: 28px;
    background: #fff;
}

.stat-item strong {
    display: block;
    color: var(--blue);
    font-size: 34px;
    line-height: 1.1;
}

.stat-item span {
    color: var(--muted);
}

.section {
    padding: 88px 0;
}

.muted {
    background: var(--soft);
}

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

.section-heading h2 {
    max-width: 760px;
}

.section-heading > p:not(.eyebrow) {
    max-width: 780px;
    color: var(--muted);
    font-size: 18px;
}

.product-strip {
    display: grid;
    gap: 18px;
}

.product-entry-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    min-height: 190px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(16, 35, 48, 0.08);
}

.product-entry-media {
    display: block;
    min-height: 190px;
    background: var(--soft);
}

.product-entry-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-entry-body {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 24px 26px 24px 0;
}

.product-entry-body strong {
    color: var(--ink);
    font-size: 26px;
    line-height: 1.15;
}

.product-entry-body > span:not(.tag-row) {
    color: var(--muted);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-row em {
    display: inline-flex;
    padding: 5px 10px;
    color: var(--deep);
    background: #edf5f4;
    border-radius: 999px;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

.align-start {
    align-items: start;
}

.lead-text {
    color: var(--muted);
    font-size: 19px;
}

.custom-matrix {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.custom-matrix div {
    display: grid;
    gap: 8px;
    min-height: 150px;
    padding: 22px;
    background: #fff;
}

.custom-matrix strong {
    color: var(--deep);
    font-size: 18px;
}

.custom-matrix span {
    color: var(--muted);
}

.industry-matrix {
    display: grid;
    border-top: 1px solid var(--line);
}

.industry-row {
    display: grid;
    grid-template-columns: 70px minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.industry-row span {
    color: var(--blue);
    font-weight: 900;
}

.industry-row strong {
    color: var(--ink);
    font-size: 20px;
}

.industry-row em {
    color: var(--muted);
    font-style: normal;
}

.proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: center;
}

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

.proof-stats div {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.proof-stats dt {
    color: var(--blue);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.proof-stats dd {
    margin: 6px 0 0;
    color: var(--muted);
}

.proof-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.proof-images a {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: var(--deep);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.proof-images img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.proof-images span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 12px 14px;
    color: #fff;
    background: rgba(14, 47, 60, 0.86);
    border-radius: 6px;
    font-weight: 800;
}

.document-wall {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 0.75fr)) minmax(300px, 1fr);
    gap: 20px;
}

.document-card,
.quality-note {
    display: grid;
    gap: 14px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(16, 35, 48, 0.08);
}

.document-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    background: var(--soft);
    border-radius: 6px;
}

.document-card strong {
    color: var(--ink);
    font-size: 18px;
}

.document-card span {
    color: var(--muted);
}

.quality-note {
    align-content: center;
    background: var(--deep);
    color: rgba(255, 255, 255, 0.82);
}

.quality-note h3 {
    color: #fff;
}

.quote-checklist {
    padding: 58px 0;
    color: #fff;
    background: var(--deep);
}

.quote-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr) auto;
    gap: 36px;
    align-items: center;
}

.quote-grid h2,
.quote-grid p {
    color: #fff;
}

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

.quote-grid li {
    padding-left: 18px;
    position: relative;
}

.quote-grid li::before {
    content: "";
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.faq-list summary {
    min-height: 62px;
    padding: 18px 22px;
    cursor: pointer;
    color: var(--ink);
    font-weight: 800;
}

.faq-list p {
    padding: 0 22px 20px;
    color: var(--muted);
}

.next-path {
    padding-top: 0;
}

.next-path-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.next-path-grid a {
    display: grid;
    min-height: 100px;
    align-items: center;
    padding: 20px;
    background: var(--soft);
    color: var(--deep);
    font-weight: 800;
}

.next-path-grid a:hover {
    color: #fff;
    background: var(--blue);
}

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

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

.product-card,
.content-card,
.feature-card,
.news-card,
.contact-panel,
.side-panel,
.feature-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.product-card {
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(16, 35, 48, 0.08);
}

.card-media {
    display: block;
    aspect-ratio: 4 / 3;
    background: var(--soft);
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-media {
    background:
        linear-gradient(135deg, rgba(31, 111, 159, 0.12), rgba(21, 128, 113, 0.16)),
        repeating-linear-gradient(45deg, rgba(23, 33, 43, 0.08) 0, rgba(23, 33, 43, 0.08) 1px, transparent 1px, transparent 14px);
}

.card-body {
    padding: 24px;
}

.card-kicker {
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-card h2,
.product-card h3 {
    font-size: 23px;
}

.split,
.two-column-content,
.product-hero-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
    gap: 48px;
    align-items: start;
}

.feature-panel,
.side-panel,
.contact-panel {
    padding: 32px;
    box-shadow: var(--shadow);
}

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

.feature-card,
.content-card {
    padding: 28px;
}

.text-link {
    color: var(--blue);
    font-weight: 800;
}

.cta-section {
    padding: 56px 0;
    color: #fff;
    background: var(--deep);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-inner h2 {
    color: #fff;
}

.page-hero {
    padding: 96px 0;
    color: #fff;
    background: var(--deep);
}

.page-hero.compact {
    padding: 78px 0;
}

.page-hero h1,
.page-hero p {
    color: #fff;
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.product-hero {
    padding: 74px 0;
    background: var(--soft);
}

.lead {
    color: var(--deep);
    font-size: 22px;
    font-weight: 700;
}

.product-main-image {
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.rich-text {
    font-size: 18px;
}

.rich-text h2 {
    margin-top: 34px;
}

.spec-list {
    display: grid;
    grid-template-columns: minmax(120px, 0.75fr) 1fr;
    gap: 12px 18px;
    margin: 0;
}

.spec-list dt {
    color: var(--muted);
    font-weight: 700;
}

.spec-list dd {
    margin: 0;
}

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

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
}

.content-list {
    display: grid;
    gap: 18px;
}

.news-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    padding: 22px;
}

.news-media img,
.article-cover img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius);
}

.article-cover {
    margin-top: 40px;
}

.contact-panel.accent {
    color: #fff;
    background: var(--deep);
}

.contact-panel.accent h2 {
    color: #fff;
}

.contact-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.contact-list dt {
    color: var(--muted);
    font-weight: 800;
}

.contact-list dd {
    margin: 0 0 16px;
}

.check-list {
    padding-left: 20px;
    margin: 0;
}

.check-list li {
    margin-bottom: 10px;
}

.pagination-wrap {
    margin-top: 36px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: #101820;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 48px;
    padding: 58px 0;
}

.expanded-footer {
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-title {
    margin-bottom: 14px;
    color: #fff;
    font-weight: 800;
}

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

.footer-list li {
    margin-bottom: 10px;
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 920px) {
    .header-inner {
        grid-template-columns: auto auto;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .primary-nav {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
    }

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

    .menu {
        display: grid;
        gap: 6px;
        padding: 0 0 18px;
    }

    .mobile-home-link {
        display: block;
    }

    .mega-menu,
    .small-mega {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        padding: 14px;
        margin: 8px 0 14px;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        transform: none;
    }

    .mega-visual,
    .mega-hint {
        display: none;
    }

    .mega-links,
    .mega-links.two-col,
    .product-mega .mega-links {
        grid-template-columns: 1fr;
    }

    .header-contact {
        display: none;
    }

    .hero,
    .hero-slider,
    .hero-slide {
        min-height: 560px;
    }

    .card-grid,
    .feature-grid,
    .stats-grid,
    .footer-grid,
    .expanded-footer,
    .gallery-grid,
    .split,
    .two-column-content,
    .product-hero-grid,
    .contact-grid,
    .proof-grid,
    .document-wall,
    .quote-grid,
    .next-path-grid {
        grid-template-columns: 1fr;
    }

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

    .product-entry-card {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .industry-row {
        grid-template-columns: 50px 1fr;
    }

    .industry-row em {
        grid-column: 2;
    }
}

@media (max-width: 560px) {
    .container,
    .narrow {
        width: min(100% - 28px, 1180px);
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 28px;
    }

    .section {
        padding: 62px 0;
    }

    .hero-content {
        padding: 90px 0 70px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .cta-inner {
        display: grid;
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .product-entry-card,
    .custom-matrix,
    .proof-images,
    .proof-stats,
    .quote-grid ul {
        grid-template-columns: 1fr;
    }

    .product-entry-body {
        padding: 0 18px 20px;
    }

    .product-entry-media {
        min-height: 220px;
    }

    .industry-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .industry-row em {
        grid-column: auto;
    }
}
