/* =========================================
   DORICO INC. DEMO
   HEADER + HERO
========================================= */


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f9fa;
    color: #15222c;
    line-height: 1.6;
}

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

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 100;

    padding: 10px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

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

.logo img {
    display: block;

    height: 82px;
    width: auto;

    opacity: 0.88;
    filter: saturate(75%) brightness(1.05) contrast(0.92);
}

/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;

    gap: 34px;
}

.main-nav a {
    position: relative;

    color: rgba(255, 255, 255, 0.88);

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: #8bd5cd;

    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

.main-nav a:hover::after {
    width: 100%;
}


/* HEADER BUTTON */

.header-btn {
    padding: 12px 21px;

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 30px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.header-btn:hover {
    background: #ffffff;
    color: #123e46;

    transform: translateY(-2px);
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 760px;

    padding-top: 150px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(143, 175, 209, 0.22),
            transparent 30%
        ),
        radial-gradient(
            circle at 20% 90%,
            rgba(95, 128, 168, 0.18),
            transparent 35%
        ),
        linear-gradient(
            125deg,
            #102A46 0%,
            #1C456B 45%,
            #3D6E9A 100%
        );
}


/* Decorative background */

.hero::before {
    content: "";

    position: absolute;

    width: 540px;
    height: 540px;

    right: -180px;
    top: -170px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
}

.hero::after {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    left: -180px;
    bottom: -130px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}


/* HERO LAYOUT */

.hero-container {
    position: relative;
    z-index: 5;

    min-height: 515px;

    display: grid;

    grid-template-columns: minmax(0, 1.05fr) minmax(520px, 0.95fr);

    align-items: center;

    gap: 45px;
}


/* =========================================
   HERO TEXT
========================================= */

.hero-content {
    max-width: 660px;
}

.hero-eyebrow {
    margin-bottom: 18px;

    color: #C8DBEE;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.2px;
}

.hero h1 {
    color: #ffffff;

    font-size: clamp(48px, 6vw, 78px);

    line-height: 1.02;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;

    color: #B7CDE5;
}

.hero-description {
    max-width: 590px;

    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 51px;

    padding: 0 25px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.btn-primary {
    background: #C9DAEC;
    color: #173A63;
}

.btn-primary:hover {
    background: #E8F1FA;

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.45);

    color: #ffffff;

    background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);

    border-color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    display: flex;

    justify-content: center;
    align-items: center;
}

.hero-card {
    position: relative;

    width: 400px;
    height: 435px;

    padding: 48px;

    overflow: hidden;

    border-radius: 38px;

    background:
        linear-gradient(
            145deg,
            rgba(220, 232, 244, 0.22),
            rgba(255, 255, 255, 0.06)
        );

    border: 1px solid rgba(220, 232, 244, 0.28);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.28);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.card-label {
    position: relative;
    z-index: 5;

    margin-bottom: 25px;

    color: #9ce6dc;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;
}

.hero-card h2 {
    position: relative;
    z-index: 5;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.12;

    font-weight: 700;
}


/* =========================================
   DECORATIVE INGREDIENT CIRCLES
========================================= */

.ingredient-circle {
    position: absolute;

    border-radius: 50%;
}

.circle-one {
    width: 190px;
    height: 190px;

    right: -40px;
    bottom: -35px;

    background:
        radial-gradient(
            circle at 30% 30%,
            #F2F7FC,
            #B8CCE3 42%,
            #5B7FA6 100%
        );

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.20);
}

.circle-two {
    width: 88px;
    height: 88px;

    right: 45px;
    top: 48px;

    background:
        radial-gradient(
            circle at 30% 30%,
            #ffffff,
            #D9E7F5 55%,
            #8EA8C4
        );

    opacity: 0.9;
}

.circle-three {
    width: 55px;
    height: 55px;

    left: 32px;
    bottom: 45px;

    background:
        radial-gradient(
            circle at 30% 30%,
            #EAF2FA,
            #7293B8
        );

    opacity: 0.8;
}


/* =========================================
   HERO BOTTOM INFO
========================================= */

.hero-bottom {
    position: relative;
    z-index: 5;

    width: min(1180px, 90%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-bottom > div {
    padding: 25px 30px;

    display: flex;
    flex-direction: column;

    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-bottom > div:first-child {
    padding-left: 0;
}

.hero-bottom > div:last-child {
    border-right: none;
}

.hero-bottom strong {
    color: #ffffff;

    font-size: 15px;
}

.hero-bottom span {
    margin-top: 2px;

    color: rgba(255, 255, 255, 0.57);

    font-size: 12px;
}


/* =========================================
   INDUSTRIES — COMPACT PREMIUM
========================================= */

.industries {
    position: relative;
    padding: 78px 0 82px;
    background: #f3f7fb;
    overflow: hidden;
}

.industries::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -190px;
    top: 60px;
    border: 1px solid rgba(49, 95, 140, 0.07);
    border-radius: 50%;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;

    gap: 55px;
    margin-bottom: 38px;
}

.section-eyebrow {
    margin-bottom: 10px;

    color: #456f99;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.2px;
}

.section-heading h2 {
    max-width: 610px;

    color: #173a63;

    font-size: clamp(36px, 4.4vw, 54px);
    line-height: 1.05;

    letter-spacing: -2.2px;
}

.section-heading h2 span {
    display: block;
    color: #5f82a7;
}

.section-intro {
    max-width: 440px;

    color: #697b8d;

    font-size: 15px;
    line-height: 1.65;
}


/* =========================================
   INDUSTRY GRID
========================================= */

.industry-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}


/* =========================================
   INDUSTRY CARD
========================================= */

.industry-card {
    position: relative;

    min-height: 235px;
    padding: 27px 26px 24px;

    display: flex;
    flex-direction: column;

    background: rgba(255, 255, 255, 0.92);

    border: 1px solid #d9e3ed;
    border-radius: 18px;

    box-shadow:
        0 12px 30px rgba(30, 66, 103, 0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.industry-card:hover {
    transform: translateY(-4px);

    border-color: rgba(72, 111, 153, 0.38);

    box-shadow:
        0 18px 38px rgba(30, 66, 103, 0.10);
}

.industry-number {
    display: block;

    margin-bottom: 27px;

    color: #9ab0c6;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.industry-card h3 {
    margin-bottom: 9px;

    color: #173a63;

    font-size: 23px;
    line-height: 1.1;

    letter-spacing: -0.7px;
}

.industry-card p {
    margin-bottom: 20px;

    color: #6d7d8c;

    font-size: 13.5px;
    line-height: 1.6;
}

.industry-card a {
    margin-top: auto;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #315f8c;

    font-size: 13px;
    font-weight: 800;
}

.industry-card a span {
    font-size: 17px;
    transition: transform 0.2s ease;
}

.industry-card:hover a span {
    transform: translateX(4px);
}


/* =========================================
   INDUSTRIES RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .industries {
        padding: 65px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

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

    .industry-card {
        min-height: 0;
        padding: 22px 24px;
    }

    .industry-number {
        margin-bottom: 15px;
    }

}


@media (max-width: 650px) {

    .industries {
        padding: 52px 0;
    }

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

    .section-heading h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .section-intro {
        font-size: 14px;
        line-height: 1.55;
    }

    .industry-card {
        padding: 20px;
        border-radius: 15px;
    }

    .industry-card h3 {
        font-size: 21px;
    }

    .industry-card p {
        margin-bottom: 14px;
        font-size: 13px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .main-nav {
        display: none;
    }

    .hero {
        padding-top: 145px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-bottom: 60px;
    }

    .hero-content {
        max-width: 720px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-card {
        width: min(450px, 100%);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .site-header {
        padding: 20px 0;
    }

        .logo img {
        height: 52px;
    }

    .header-btn {
        padding: 10px 15px;

        font-size: 11px;
    }

    .hero {
        min-height: auto;

        padding-top: 125px;
    }

    .hero-container {
        width: 88%;

        gap: 38px;

        padding-bottom: 45px;
    }

    .hero-eyebrow {
        font-size: 10px;

        letter-spacing: 1.5px;
    }

    .hero h1 {
        font-size: 47px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        align-items: stretch;

        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-card {
        width: 100%;
        height: 370px;

        padding: 35px;

        border-radius: 28px;
    }

    .hero-card h2 {
        font-size: 35px;
    }

    .circle-one {
        width: 160px;
        height: 160px;
    }

    .hero-bottom {
        width: 88%;

        grid-template-columns: 1fr;
    }

    .hero-bottom > div {
        padding: 18px 0;

        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .hero-bottom > div:last-child {
        border-bottom: none;
    }
}

/* =========================================
   TOP PRODUCTS — COMPACT PREMIUM
========================================= */

.featured-products {
    padding: 78px 0 82px;

    background: #173a63;
}


/* =========================================
   FEATURED HEADER
========================================= */

.featured-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 35px;

    margin-bottom: 34px;
}

.featured-products .section-eyebrow {
    color: #b9d0e8;
}

.featured-header h2 {
    max-width: 610px;

    color: #ffffff;

    font-size: clamp(36px, 4.4vw, 54px);
    line-height: 1.05;

    letter-spacing: -2.2px;
}

.featured-header h2 span {
    display: block;

    color: #b9d0e8;
}

.view-all-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding-bottom: 4px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.32);

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}

.view-all-link span {
    transition: transform 0.2s ease;
}

.view-all-link:hover span {
    transform: translateX(4px);
}


/* =========================================
   PRODUCT GRID
========================================= */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================
   PRODUCT CARD
========================================= */

.product-card {
    min-width: 0;
    min-height: 255px;

    padding: 24px;

    display: flex;
    flex-direction: column;

    background:
        rgba(255, 255, 255, 0.97);

    border:
        1px solid rgba(255, 255, 255, 0.16);

    border-radius: 18px;

    box-shadow:
        0 14px 35px rgba(6, 27, 49, 0.10);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 42px rgba(6, 27, 49, 0.20);
}


/* =========================================
   PRODUCT TOP
========================================= */

.product-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 30px;
}

.product-category {
    color: #6685a4;

    font-size: 9px;
    font-weight: 800;

    line-height: 1.4;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.product-index {
    flex-shrink: 0;

    color: #a9bacb;

    font-size: 11px;
    font-weight: 800;
}


/* =========================================
   PRODUCT TEXT
========================================= */

.product-card h3 {
    margin-bottom: 11px;

    color: #173a63;

    font-size: 22px;
    line-height: 1.08;

    letter-spacing: -0.7px;
}

.product-card p {
    margin-bottom: 20px;

    color: #6d7d8c;

    font-size: 13px;
    line-height: 1.58;
}


/* =========================================
   SAMPLE BUTTON
========================================= */

.product-link {
    margin-top: auto;

    padding: 0;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    border: 0;

    background: transparent;

    color: #315f8c;

    font: inherit;

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;
}

.product-link span {
    font-size: 16px;

    transition: transform 0.2s ease;
}

.product-link:hover span {
    transform: translateX(4px);
}


/* =========================================
   TOP PRODUCTS RESPONSIVE
========================================= */

@media (max-width: 1050px) {

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

}


@media (max-width: 650px) {

    .featured-products {
        padding: 54px 0;
    }

    .featured-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;

        margin-bottom: 26px;
    }

    .featured-header h2 {
        font-size: 36px;

        letter-spacing: -1.5px;
    }

    .product-grid {
        grid-template-columns: 1fr;

        gap: 11px;
    }

    .product-card {
        min-height: 0;

        padding: 20px;

        border-radius: 15px;
    }

    .product-top {
        margin-bottom: 20px;
    }

    .product-card h3 {
        font-size: 21px;
    }

    .product-card p {
        margin-bottom: 15px;

        font-size: 13px;
    }

}

/* =========================================
   ABOUT DORICO — COMPACT PREMIUM
========================================= */

.why-dorico {
    position: relative;

    padding: 78px 0 82px;

    background: #edf3f8;

    overflow: hidden;
}

.why-dorico::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    left: -230px;
    bottom: -210px;

    border:
        1px solid rgba(49, 95, 140, 0.08);

    border-radius: 50%;
}


/* =========================================
   ABOUT LAYOUT
========================================= */

.why-dorico-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        0.92fr 1.08fr;

    align-items: center;

    gap: 72px;
}


/* =========================================
   ABOUT CONTENT
========================================= */

.why-dorico-content h2 {
    max-width: 530px;

    margin-bottom: 20px;

    color: #173a63;

    font-size: clamp(38px, 4.6vw, 56px);

    line-height: 1.04;

    letter-spacing: -2.3px;
}

.why-dorico-content h2 span {
    display: block;

    color: #5f82a7;
}

.why-dorico-description {
    max-width: 520px;

    margin-bottom: 14px;

    color: #536b82;

    font-size: 15px;

    line-height: 1.68;
}

.why-dorico-secondary {
    max-width: 520px;

    margin-bottom: 27px;

    color: #74869a;

    font-size: 13.5px;

    line-height: 1.65;
}


/* =========================================
   ABOUT BUTTON
========================================= */

.why-btn {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    padding: 13px 21px;

    border-radius: 25px;

    background: #173a63;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.why-btn span {
    font-size: 17px;

    transition: transform 0.2s ease;
}

.why-btn:hover {
    transform: translateY(-2px);

    background: #315f8c;
}

.why-btn:hover span {
    transform: translateX(4px);
}


/* =========================================
   ABOUT POINTS
========================================= */

.why-dorico-grid {
    display: grid;

    gap: 11px;
}

.why-card {
    min-height: 112px;

    padding: 22px 24px;

    display: grid;

    grid-template-columns: 42px 1fr;

    gap: 17px;

    align-items: start;

    background:
        rgba(255, 255, 255, 0.92);

    border: 1px solid #d9e3ed;

    border-radius: 17px;

    box-shadow:
        0 10px 26px rgba(30, 66, 103, 0.035);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.why-card:hover {
    transform: translateX(4px);

    border-color:
        rgba(72, 111, 153, 0.30);

    box-shadow:
        0 14px 32px rgba(30, 66, 103, 0.08);
}

.why-number {
    padding-top: 3px;

    color: #7c9aba;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.why-card h3 {
    margin-bottom: 6px;

    color: #173a63;

    font-size: 18px;

    letter-spacing: -0.4px;
}

.why-card p {
    color: #6d7d8c;

    font-size: 13px;

    line-height: 1.55;
}


/* =========================================
   ABOUT DORICO RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .why-dorico-container {
        grid-template-columns: 1fr;

        gap: 38px;
    }

}


@media (max-width: 650px) {

    .why-dorico {
        padding: 54px 0;
    }

    .why-dorico-container {
        gap: 30px;
    }

    .why-dorico-content h2 {
        font-size: 36px;

        letter-spacing: -1.5px;
    }

    .why-dorico-description {
        font-size: 14px;
    }

    .why-dorico-secondary {
        font-size: 13px;
    }

    .why-card {
        min-height: 0;

        padding: 19px;

        grid-template-columns: 35px 1fr;

        gap: 12px;

        border-radius: 14px;
    }

    .why-card h3 {
        font-size: 17px;
    }

}

/* =========================================
   REQUEST CTA
========================================= */

.request-cta {
    padding: 100px 0;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(173, 198, 225, 0.20),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #0E2C4A,
            #315D88
        );
}

.request-cta-container {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 70px;
}

.request-content {
    max-width: 690px;
}

.cta-eyebrow {
    margin-bottom: 17px;

    color: #98e4da;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.3px;
}

.request-content h2 {
    margin-bottom: 22px;

    color: #ffffff;

    font-size: clamp(44px, 6vw, 68px);

    line-height: 1.03;

    letter-spacing: -2.8px;
}

.request-content h2 span {
    display: block;

    color: #96e1d8;
}

.request-content p {
    max-width: 570px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   CTA BUTTONS
========================================= */

.request-actions {
    min-width: 220px;

    display: flex;

    flex-direction: column;

    gap: 13px;
}

.cta-btn {
    min-width: 210px;

    padding: 15px 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 800;

    transition: 0.3s ease;
}

.cta-primary {
    background: #9ce6dc;

    color: #0b353c;
}

.cta-primary:hover {
    background: #ffffff;

    transform: translateY(-3px);
}

.cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.45);

    color: #ffffff;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.10);

    border-color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================
   REQUEST CTA RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .request-cta-container {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 650px) {

    .request-cta {
        padding: 80px 0;
    }

    .request-content h2 {
        font-size: 42px;

        letter-spacing: -1.8px;
    }

    .request-actions {
        width: 100%;
    }

    .cta-btn {
        width: 100%;
    }

}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    padding: 85px 0 30px;

    background: #0C2742;

    color: #ffffff;
}


/* =========================================
   FOOTER MAIN
========================================= */

.footer-main {
    display: grid;

    grid-template-columns: 1.5fr 0.7fr 0.9fr 1fr;

    gap: 60px;

    padding-bottom: 65px;
}


/* =========================================
   FOOTER BRAND
========================================= */

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

    margin-bottom: 22px;
}

.footer-logo img {
    display: block;

    height: 82px;
    width: auto;

    opacity: 0.88;
    filter: saturate(75%) brightness(1.05) contrast(0.92);
}

.footer-brand p {
    max-width: 340px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 10px;

    color: #8edbd2;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.footer-column a {
    position: relative;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


/* CONTACT */

.footer-contact p {
    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 14px;

    line-height: 1.7;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.45);

    font-size: 13px;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    padding-top: 25px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.40);

    font-size: 12px;
}

.demo-note {
    text-transform: uppercase;

    letter-spacing: 1.5px;
}


/* =========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .footer-main {
        grid-template-columns: repeat(2, 1fr);

        gap: 45px;
    }

}


@media (max-width: 600px) {

    .site-footer {
        padding-top: 65px;
    }

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

        gap: 38px;
    }

    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

        .footer-logo img {
        height: 68px;
    }

}

/* =========================================
   DORICO BLUE PALETTE — FINAL OVERRIDES
   Matches the corporate logo
========================================= */


/* =========================================
   GLOBAL SECTION EYEBROWS
========================================= */

.section-eyebrow {
    color: #456f99;
}


/* =========================================
   FINAL CTA
========================================= */

.cta-eyebrow {
    color: #c8d9ea;
}

.request-content h2 span {
    color: #b9d0e8;
}

.cta-primary {
    background: #d6e4f2;

    color: #173a63;
}

.cta-primary:hover {
    background: #ffffff;
}


/* =========================================
   FOOTER ACCENTS
========================================= */

.footer-column h3 {
    color: #a9c3dc;
}

/* =========================================
   REQUEST MODAL
========================================= */

.request-modal {
    position: fixed;
    inset: 0;

    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

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


/* =========================================
   BACKDROP
========================================= */

.request-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(8, 27, 47, 0.72);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}


/* =========================================
   PANEL
========================================= */

.request-modal-panel {
    position: relative;
    z-index: 2;

    width: min(1120px, 100%);
    max-height: 90vh;

    display: grid;
    grid-template-columns: 0.78fr 1.22fr;

    overflow: auto;

    border-radius: 30px;

    background: #ffffff;

    box-shadow:
        0 35px 100px rgba(3, 21, 39, 0.35);

    transform: translateY(25px) scale(0.98);

    transition: transform 0.35s ease;
}

.request-modal.is-open .request-modal-panel {
    transform: translateY(0) scale(1);
}


/* =========================================
   CLOSE BUTTON
========================================= */

.request-modal-close {
    position: absolute;

    right: 22px;
    top: 18px;

    z-index: 20;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(23, 58, 99, 0.15);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.85);

    color: #173a63;

    font-size: 24px;

    cursor: pointer;
}


/* =========================================
   LEFT INTRO
========================================= */

.request-modal-intro {
    padding: 60px 48px;

    background:
        radial-gradient(
            circle at 10% 90%,
            rgba(184, 206, 229, 0.20),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #173a63,
            #315f8c
        );

    color: #ffffff;
}

.request-modal-eyebrow {
    margin-bottom: 18px;

    color: #c8d9ea;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.request-modal-intro h2 {
    margin-bottom: 25px;

    font-size: 48px;

    line-height: 1.05;

    letter-spacing: -2px;
}

.request-modal-intro h2 span {
    display: block;

    color: #bdd1e6;
}

.request-modal-intro > p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   INTRO STEPS
========================================= */

.request-modal-details {
    margin-top: 55px;

    display: flex;
    flex-direction: column;

    gap: 20px;
}

.request-modal-details div {
    display: grid;

    grid-template-columns: 35px 1fr;

    gap: 13px;

    align-items: center;
}

.request-modal-details strong {
    color: #9eb9d4;

    font-size: 10px;
}

.request-modal-details span {
    color: rgba(255, 255, 255, 0.76);

    font-size: 13px;
}


/* =========================================
   FORM AREA
========================================= */

.request-modal-form-area {
    padding: 58px 48px 48px;

    background: #f7fafe;
}


/* TYPE SWITCH */

.request-type-switch {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    margin-bottom: 35px;

    padding: 0;

    background: transparent;
}

.request-type-btn {
    width: min(100%, 420px);
    min-height: 52px;

    padding: 0 34px;

    border: 0;
    border-radius: 28px;

    background: transparent;

    color: #5f7488;

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;

    cursor: pointer;

    transition: 0.25s ease;
}

.request-type-btn[hidden] {
    display: none !important;
}

.request-type-btn.active {
    background: #ffffff;

    color: #173a63;

    box-shadow:
        0 6px 18px rgba(28, 69, 107, 0.10);
}


/* =========================================
   FORM GRID
========================================= */

.request-form {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    color: #173a63;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #d5e0eb;
    border-radius: 13px;

    outline: none;

    background: #ffffff;

    color: #173a63;

    font: inherit;

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
    height: 48px;

    padding: 0 15px;
}

.form-group textarea {
    padding: 14px 15px;

    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #7295b8;

    box-shadow:
        0 0 0 3px rgba(93, 132, 170, 0.10);
}


/* =========================================
   SUBMIT
========================================= */

.request-submit-btn {
    width: 100%;
    min-height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    border: 0;
    border-radius: 28px;

    background: #173a63;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.3s ease;
}

.request-submit-btn:hover {
    background: #315f8c;

    transform: translateY(-2px);
}

.request-submit-btn span {
    font-size: 18px;
}

.request-form-note {
    margin-top: 10px;

    text-align: center;

    color: #8797a6;

    font-size: 10px;
}


/* =========================================
   SUCCESS
========================================= */

.request-success {
    padding: 75px 20px;

    text-align: center;
}

.success-mark {
    width: 64px;
    height: 64px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dce8f4;

    color: #173a63;

    font-size: 27px;
    font-weight: 800;
}

.request-success h3 {
    margin-bottom: 15px;

    color: #173a63;

    font-size: 38px;
}

.request-success > p:not(.request-modal-eyebrow) {
    max-width: 450px;

    margin: 0 auto 28px;

    color: #697b8d;

    line-height: 1.7;
}

.request-success-close {
    padding: 13px 28px;

    border: 0;
    border-radius: 25px;

    background: #173a63;

    color: #ffffff;

    font-weight: 800;

    cursor: pointer;
}


/* =========================================
   BUTTON RESET
========================================= */

.header-btn,
.btn,
.cta-btn {
    font-family: inherit;

    cursor: pointer;
}


/* =========================================
   MODAL RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .request-modal {
        padding: 15px;
    }

    .request-modal-panel {
        grid-template-columns: 1fr;
    }

    .request-modal-intro {
        padding: 45px 35px;
    }

    .request-modal-intro h2 {
        font-size: 40px;
    }

    .request-modal-details {
        display: none;
    }

    .request-modal-form-area {
        padding: 45px 35px;
    }

}


@media (max-width: 600px) {

    .request-modal {
        padding: 0;
    }

    .request-modal-panel {
        width: 100%;
        max-height: 100vh;

        border-radius: 0;
    }

    .request-modal-intro {
        padding: 45px 25px 35px;
    }

    .request-modal-intro h2 {
        font-size: 35px;
    }

    .request-modal-form-area {
        padding: 35px 22px;
    }

    .request-form {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: auto;
    }

}

/* =========================================
   REQUEST SUCCESS — VISIBILITY FIX
========================================= */

.request-success[hidden] {
    display: none;
}

.request-success:not([hidden]) {
    display: block;
}

.success-demo-message {
    margin-top: -12px !important;
    margin-bottom: 28px !important;

    color: #8a99a8 !important;

    font-size: 11px !important;

    font-style: italic;
}

/* =========================================
   DORICO HERO SHOWCASE — DESKTOP DEMO
========================================= */

.hero-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    min-width: 0;
}


/* =========================================
   SHOWCASE CANVAS
========================================= */

.hero-showcase {
    position: relative;

    width: 545px;
    height: 505px;

    flex-shrink: 0;
}


/* =========================================
   SHARED IMAGE STYLE
========================================= */

.hero-photo {
    position: absolute;

    overflow: hidden;

    border-radius: 26px;

    border: 1px solid rgba(255, 255, 255, 0.22);

    box-shadow:
        0 25px 60px rgba(6, 24, 42, 0.30);

    background: #dce8f4;
}

.hero-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================
   MAIN LAB IMAGE
========================================= */

.hero-photo-main {
    width: 340px;
    height: 430px;

    right: 0;
    top: 26px;

    z-index: 2;
}

.hero-photo-main::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(9, 30, 51, 0.03) 35%,
            rgba(11, 39, 67, 0.76) 100%
        );

    pointer-events: none;
}


/* =========================================
   MAIN IMAGE TEXT
========================================= */

.hero-photo-overlay {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 5;
}

.hero-photo-tag {
    display: inline-flex;

    margin-bottom: 11px;

    padding: 7px 11px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.16);

    border: 1px solid rgba(255, 255, 255, 0.25);

    color: #ffffff;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.hero-photo-overlay h3 {
    max-width: 245px;

    color: #ffffff;

    font-size: 25px;
    line-height: 1.12;

    letter-spacing: -0.8px;
}


/* =========================================
   INGREDIENT IMAGE — TOP LEFT
========================================= */

.hero-photo-ingredients {
    width: 245px;
    height: 170px;

    left: 0;
    top: 0;

    z-index: 4;
}


/* =========================================
   FORMULATION IMAGE — BOTTOM LEFT
========================================= */

.hero-photo-formulation {
    width: 255px;
    height: 175px;

    left: 15px;
    bottom: 5px;

    z-index: 4;
}


/* =========================================
   SMALL IMAGE OVERLAYS
========================================= */

.hero-photo-ingredients::after,
.hero-photo-formulation::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(9, 32, 55, 0.48) 100%
        );

    pointer-events: none;
}

.hero-mini-label {
    position: absolute;

    left: 15px;
    bottom: 14px;

    z-index: 5;

    padding: 7px 12px;

    border-radius: 18px;

    background: rgba(248, 251, 255, 0.92);

    color: #173a63;

    font-size: 10px;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(9, 32, 55, 0.15);
}


/* =========================================
   FLOATING INFORMATION CARD
========================================= */

.hero-focus-card {
    position: absolute;

    width: 245px;

    left: 125px;
    top: 188px;

    z-index: 8;

    padding: 21px;

    border-radius: 22px;

    background:
        rgba(244, 249, 254, 0.94);

    border:
        1px solid rgba(255, 255, 255, 0.70);

    box-shadow:
        0 20px 45px rgba(7, 30, 53, 0.22);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-focus-card > p {
    margin-bottom: 8px;

    color: #6c8bab;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.6px;
}

.hero-focus-card > strong {
    display: block;

    margin-bottom: 14px;

    color: #173a63;

    font-size: 16px;
    line-height: 1.3;
}

.hero-focus-card > div {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;
}

.hero-focus-card span {
    padding: 6px 8px;

    border-radius: 14px;

    background: #ffffff;

    border: 1px solid #d9e4ef;

    color: #41698f;

    font-size: 8px;
    font-weight: 800;
}

/* =========================================
   HEADER BUTTON — VISIBILITY FIX
========================================= */

.header-btn {
    background: rgba(255, 255, 255, 0.96) !important;
    color: #173a63 !important;

    border: 1px solid rgba(255, 255, 255, 0.40) !important;

    box-shadow:
        0 10px 24px rgba(7, 30, 53, 0.14);
}

.header-btn:hover {
    background: #eef5fb !important;
    color: #173a63 !important;
}

/* =========================================
   HERO CLEANUP — PREMIUM SINGLE VISUAL
========================================= */

/* Ocultar las 2 imágenes secundarias */
.hero-photo-ingredients,
.hero-photo-formulation {
    display: none !important;
}


/* Reducir el canvas para que no se vea vacío */
.hero-showcase {
    width: 410px !important;
    height: 470px !important;
}


/* Dejar una sola imagen principal más protagonista */
.hero-photo-main {
    width: 360px !important;
    height: 430px !important;

    right: 0 !important;
    top: 18px !important;
}


/* Mejor posición del texto dentro de la imagen */
.hero-photo-overlay {
    left: 28px !important;
    right: 28px !important;
    bottom: 28px !important;
}

.hero-photo-overlay h3 {
    max-width: 220px !important;

    font-size: 28px !important;
    line-height: 1.1 !important;
}


/* Mover la tarjeta blanca para que flote mejor */
.hero-focus-card {
    left: 18px !important;
    top: auto !important;
    bottom: 8px !important;

    width: 270px !important;
}

.hero-focus-card > strong {
    font-size: 18px !important;
    line-height: 1.3 !important;
}

/* =========================================
   PREMIUM FULL HERO BACKGROUND
========================================= */

.hero {
    position: relative;

    min-height: 780px;

    background:
        linear-gradient(
            90deg,
            rgba(13, 43, 73, 0.94) 0%,
            rgba(20, 57, 91, 0.88) 34%,
            rgba(33, 75, 113, 0.48) 58%,
            rgba(33, 75, 113, 0.08) 100%
        ),
        url("../images/hero/hero-background.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/* Remove old decorative circles */
.hero::before,
.hero::after {
    display: none;
}


/* Hero now uses one content column */
.hero-container {
    grid-template-columns: 1fr !important;

    gap: 0 !important;
}


/* Keep text in the left side */
.hero-content {
    max-width: 680px;

    position: relative;
    z-index: 5;
}


/* Hide the old image collage */
.hero-visual {
    display: none !important;
}


/* Refine headline for full-background composition */
.hero h1 {
    max-width: 680px;
}


/* Slightly improve paragraph readability */
.hero-description {
    max-width: 620px;

    color: rgba(255, 255, 255, 0.82);
}

/* =========================================
   PREMIUM HERO TYPOGRAPHY
========================================= */

.hero-eyebrow {
    margin-bottom: 22px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.8px;
}


.hero h1 {
    max-width: 650px;

    margin-bottom: 28px;

    color: #ffffff;

    font-size: clamp(60px, 5.4vw, 82px);

    line-height: 0.98;

    letter-spacing: -4px;

    font-weight: 700;
}


.hero h1 span {
    display: block;

    margin-top: 8px;

    color: #d3e2f1;

    font-weight: 600;
}


.hero-description {
    max-width: 565px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;

    line-height: 1.75;
}

/* =========================================================
   COMPANY PAGE
========================================================= */

.company-page {
    background: #ffffff;
}


/* =========================================================
   COMPANY HERO
========================================================= */

.company-hero {
    min-height: 520px;

    padding: 190px 0 95px;

    display: flex;
    align-items: flex-end;

    background:
        radial-gradient(
            circle at 78% 30%,
            rgba(151, 185, 216, 0.18),
            transparent 31%
        ),
        linear-gradient(
            125deg,
            #102f50 0%,
            #173a63 55%,
            #315f8c 100%
        );
}

.company-hero-inner {
    max-width: 1180px;
}

.company-eyebrow {
    margin-bottom: 17px;

    color: #b9d0e8;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.company-hero h1 {
    max-width: 780px;

    margin-bottom: 24px;

    color: #ffffff;

    font-size: clamp(55px, 7vw, 86px);

    line-height: 0.98;

    letter-spacing: -4px;
}

.company-hero h1 span {
    display: block;

    color: #c8daeb;
}

.company-hero > .container > p:last-child {
    max-width: 620px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 17px;
    line-height: 1.65;
}


/* =========================================================
   STORY
========================================================= */

.company-story {
    padding: 82px 0;
}

.company-story-grid {
    display: grid;

    grid-template-columns: 0.82fr 1.18fr;

    gap: 85px;
}

.company-section-title h2 {
    max-width: 500px;

    color: #173a63;

    font-size: clamp(38px, 4.4vw, 55px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.company-section-title h2 span {
    display: block;

    color: #5f82a7;
}

.company-story-copy {
    max-width: 690px;
}

.company-story-copy p {
    margin-bottom: 18px;

    color: #617487;

    font-size: 15px;

    line-height: 1.75;
}

.company-story-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   MISSION + VISION
========================================================= */

.company-direction {
    padding: 0 0 82px;
}

.company-direction-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;
}

.direction-card {
    min-height: 440px;

    padding: 40px;

    display: flex;
    flex-direction: column;

    border: 1px solid #d9e3ed;

    border-radius: 22px;

    background: #f3f7fb;
}

.direction-number {
    margin-bottom: 42px;

    color: #7c9aba;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.direction-card h2 {
    max-width: 480px;

    margin-bottom: 24px;

    color: #173a63;

    font-size: clamp(30px, 3.5vw, 44px);

    line-height: 1.06;

    letter-spacing: -1.7px;
}

.direction-card > p:not(.section-eyebrow) {
    max-width: 520px;

    margin-bottom: 14px;

    color: #617487;

    font-size: 14px;

    line-height: 1.7;
}

.direction-card-dark {
    background: #173a63;

    border-color: #173a63;
}

.direction-card-dark .direction-number,
.direction-card-dark .section-eyebrow {
    color: #b9d0e8;
}

.direction-card-dark h2 {
    color: #ffffff;
}

.direction-card-dark > p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   VALUES
========================================================= */

.company-values {
    padding: 82px 0;

    background: #edf3f8;
}

.company-values-heading {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: end;

    gap: 65px;

    margin-bottom: 40px;
}

.company-values-heading h2 {
    max-width: 600px;

    color: #173a63;

    font-size: clamp(38px, 4.4vw, 54px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.company-values-heading h2 span {
    display: block;

    color: #5f82a7;
}

.company-values-heading > p {
    max-width: 440px;

    color: #697b8d;

    font-size: 14px;

    line-height: 1.65;
}

.values-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    border-top: 1px solid #d2dde8;
}

.value-item {
    min-height: 145px;

    padding: 27px 10px;

    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 18px;

    border-bottom: 1px solid #d2dde8;
}

.value-item:nth-child(odd) {
    padding-right: 35px;

    border-right: 1px solid #d2dde8;
}

.value-item:nth-child(even) {
    padding-left: 35px;
}

.value-item > span {
    color: #7898b9;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}

.value-item h3 {
    margin-bottom: 7px;

    color: #173a63;

    font-size: 19px;
}

.value-item p {
    max-width: 440px;

    color: #6d7d8c;

    font-size: 13px;

    line-height: 1.55;
}


/* =========================================================
   MARKETS + WHAT WE OFFER
========================================================= */

.company-capabilities {
    padding: 82px 0;
}

.company-capabilities-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 85px;
}

.capability-block h2 {
    max-width: 500px;

    margin-bottom: 30px;

    color: #173a63;

    font-size: clamp(31px, 3.6vw, 44px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.market-list {
    border-top: 1px solid #d9e3ed;
}

.market-list > div {
    min-height: 57px;

    display: flex;

    align-items: center;

    gap: 22px;

    border-bottom: 1px solid #d9e3ed;
}

.market-list span {
    color: #8da6be;

    font-size: 10px;
    font-weight: 800;
}

.market-list strong {
    color: #315f8c;

    font-size: 14px;
}

.offer-list {
    margin: 0;

    padding: 0;

    list-style: none;
}

.offer-list li {
    position: relative;

    padding: 0 0 17px 23px;

    color: #617487;

    font-size: 14px;

    line-height: 1.55;
}

.offer-list li::before {
    content: "—";

    position: absolute;

    left: 0;

    color: #7898b9;
}


/* =========================================================
   CUSTOMER FOCUS
========================================================= */

.company-focus {
    padding: 78px 0;

    background: #173a63;
}

.company-focus-inner {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.company-focus .section-eyebrow {
    color: #b9d0e8;
}

.company-focus h2 {
    max-width: 560px;

    color: #ffffff;

    font-size: clamp(38px, 4.5vw, 56px);

    line-height: 1.04;

    letter-spacing: -2.2px;
}

.company-focus h2 span {
    display: block;

    color: #b9d0e8;
}

.company-focus-copy > p {
    max-width: 590px;

    margin-bottom: 27px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 14px;

    line-height: 1.7;
}

.company-focus-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 11px;
}

.company-quote-btn {
    border: 1px solid rgba(255, 255, 255, 0.35);

    background: transparent;

    color: #ffffff;
}


/* =========================================================
   COMPANY RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .company-story-grid,
    .company-values-heading,
    .company-capabilities-grid,
    .company-focus-inner {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .company-direction-grid {
        grid-template-columns: 1fr;
    }

    .direction-card {
        min-height: 0;
    }

}


@media (max-width: 650px) {

    .company-hero {
        min-height: 430px;

        padding: 150px 0 60px;
    }

    .company-hero h1 {
        font-size: 49px;

        letter-spacing: -2.5px;
    }

    .company-hero > .container > p:last-child {
        font-size: 15px;
    }

    .company-story,
    .company-values,
    .company-capabilities,
    .company-focus {
        padding: 55px 0;
    }

    .company-direction {
        padding-bottom: 55px;
    }

    .company-story-grid {
        gap: 30px;
    }

    .direction-card {
        padding: 26px;

        border-radius: 17px;
    }

    .direction-number {
        margin-bottom: 28px;
    }

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

    .value-item,
    .value-item:nth-child(odd),
    .value-item:nth-child(even) {
        min-height: 0;

        padding: 21px 0;

        border-right: 0;
    }

    .company-focus-actions {
        flex-direction: column;
    }

    .company-focus-actions .btn {
        width: 100%;
    }

}



/* =========================================================
   PRODUCTS PAGE
========================================================= */

.products-page {
    background: #ffffff;
}


/* =========================================================
   PRODUCTS HERO
========================================================= */

.products-hero {
    min-height: 500px;

    padding: 185px 0 90px;

    display: flex;
    align-items: flex-end;

    background:
        radial-gradient(
            circle at 82% 24%,
            rgba(176, 202, 226, 0.17),
            transparent 30%
        ),
        linear-gradient(
            125deg,
            #102f50 0%,
            #173a63 58%,
            #315f8c 100%
        );
}

.products-eyebrow {
    margin-bottom: 16px;

    color: #b9d0e8;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.4px;
}

.products-hero h1 {
    max-width: 790px;

    margin-bottom: 23px;

    color: #ffffff;

    font-size: clamp(54px, 7vw, 84px);

    line-height: 0.98;

    letter-spacing: -4px;
}

.products-hero h1 span {
    display: block;

    color: #c8daeb;
}

.products-hero-inner > p:last-child {
    max-width: 620px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 16px;

    line-height: 1.65;
}


/* =========================================================
   DISCOVERY BAR
========================================================= */

.product-discovery {
    padding: 24px 0;

    border-bottom: 1px solid #d9e3ed;

    background: #ffffff;
}

.discovery-bar {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 35px;
}

.product-search-wrap {
    position: relative;

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

.product-search-wrap label {
    display: block;

    margin-bottom: 8px;

    color: #6c89a6;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.7px;
}

.product-search-control {
    position: relative;
}

.product-search-wrap input {
    width: 100%;
    height: 44px;

    padding: 0 52px 0 15px;

    border: 1px solid #d9e3ed;
    border-radius: 12px;

    outline: 0;

    color: #173a63;

    font: inherit;
    font-size: 13px;

    background: #f7f9fb;
}

.product-search-wrap input:focus {
    border-color: #7898b9;
}


/* Search dropdown arrow */

.product-search-toggle {
    position: absolute;

    top: 0;
    right: 0;

    width: 48px;
    height: 44px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.product-search-chevron {
    width: 10px;
    height: 10px;

    border-right: 2px solid #315f8c;
    border-bottom: 2px solid #315f8c;

    transform: rotate(45deg) translate(-2px, -2px);

    transition: transform 0.2s ease;
}

.product-search-toggle[aria-expanded="true"]
.product-search-chevron {
    transform: rotate(225deg) translate(-2px, -2px);
}


/* Product dropdown */

.product-search-dropdown {
    position: absolute;

    top: calc(100% + 8px);
    left: 0;
    right: 0;

    z-index: 50;

    max-height: 360px;

    overflow-y: auto;

    padding: 6px;

    border: 1px solid #d9e3ed;
    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 18px 45px rgba(23, 58, 99, 0.14);
}

.product-search-dropdown[hidden] {
    display: none;
}

.product-search-result {
    display: block;

    padding: 11px 13px;

    border-radius: 8px;

    color: #315f8c;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.35;

    text-decoration: none;
}

.product-search-result:hover,
.product-search-result:focus {
    outline: 0;

    background: #f1f6fa;

    color: #173a63;
}

.product-search-empty {
    padding: 12px 13px;

    color: #728397;

    font-size: 13px;
}


.discovery-links {
    display: flex;

    gap: 25px;
}

.discovery-links a {
    color: #315f8c;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   SHARED CATALOG HEADING
========================================================= */

.catalog-heading {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: end;

    gap: 65px;

    margin-bottom: 36px;
}

.catalog-heading h2 {
    max-width: 600px;

    color: #173a63;

    font-size: clamp(37px, 4.4vw, 54px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.catalog-heading h2 span {
    display: block;

    color: #5f82a7;
}

.catalog-heading > p {
    max-width: 460px;

    color: #697b8d;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   TOP PRODUCTS
========================================================= */

.catalog-top {
    padding: 72px 0 78px;

    background: #f3f7fb;
}

.catalog-top-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 13px;
}

.catalog-product {
    min-height: 265px;

    padding: 23px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #d9e3ed;

    border-radius: 17px;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.catalog-product:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 35px rgba(30, 66, 103, 0.08);
}

.catalog-number {
    margin-bottom: 23px;

    color: #9bb0c4;

    font-size: 10px;
    font-weight: 800;
}

.catalog-tag {
    margin-bottom: 9px !important;

    color: #6483a3 !important;

    font-size: 9px !important;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.catalog-product h3 {
    margin-bottom: 10px;

    color: #173a63;

    font-size: 21px;

    line-height: 1.08;
}

.catalog-product > p {
    margin-bottom: 18px;

    color: #6d7d8c;

    font-size: 12.5px;

    line-height: 1.55;
}

.catalog-product button {
    margin-top: auto;

    padding: 0;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    border: 0;

    background: transparent;

    color: #315f8c;

    font: inherit;

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;
}


/* =========================================================
   BY INDUSTRY
========================================================= */

.catalog-industries {
    padding: 78px 0;
}

.industry-product-group {
    display: grid;

    grid-template-columns: 0.72fr 1.28fr;

    gap: 60px;

    padding: 35px 0;

    border-top: 1px solid #d9e3ed;
}

.industry-product-group:last-child {
    border-bottom: 1px solid #d9e3ed;
}

.industry-product-title {
    display: grid;

    grid-template-columns: 35px 1fr;

    gap: 16px;
}

.industry-product-title > span {
    color: #89a3bc;

    font-size: 10px;
    font-weight: 800;
}

.industry-product-title h3 {
    margin-bottom: 6px;

    color: #173a63;

    font-size: 25px;
}

.industry-product-title p {
    max-width: 330px;

    color: #728397;

    font-size: 13px;

    line-height: 1.55;
}

.industry-product-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}

.mini-product {
    min-height: 74px;

    padding: 17px;

    display: flex;

    align-items: center;

    gap: 14px;

    background: #f6f9fb;

    border: 1px solid #dfe7ef;

    border-radius: 13px;
}

.mini-product span {
    color: #96abc0;

    font-size: 9px;
    font-weight: 800;
}

.mini-product strong {
    color: #315f8c;

    font-size: 13px;
}


/* =========================================================
   CATEGORIES
========================================================= */

.catalog-categories {
    padding: 78px 0;

    background: #edf3f8;
}

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    border-top: 1px solid #d2dde8;
}

.category-item {
    min-height: 84px;

    padding: 20px 15px;

    display: grid;

    grid-template-columns: 35px 1fr;

    gap: 12px;

    align-items: center;

    border-bottom: 1px solid #d2dde8;
}

.category-item span {
    color: #8da6be;

    font-size: 9px;
    font-weight: 800;
}

.category-item strong {
    color: #173a63;

    font-size: 13px;

    line-height: 1.35;
}


/* =========================================================
   PRODUCTS CTA
========================================================= */

.products-cta {
    padding: 72px 0;

    background: #173a63;
}

.products-cta-inner {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.products-cta .section-eyebrow {
    color: #b9d0e8;
}

.products-cta h2 {
    color: #ffffff;

    font-size: clamp(38px, 4.5vw, 55px);

    line-height: 1.04;

    letter-spacing: -2px;
}

.products-cta h2 span {
    display: block;

    color: #b9d0e8;
}

.products-cta-inner > div:last-child > p {
    max-width: 520px;

    margin-bottom: 24px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;

    line-height: 1.65;
}

.products-cta-actions {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}

.products-quote-btn {
    background: #ffffff;
    border-color: #ffffff;
    color: #173a63;
}


/* =========================================================
   PRODUCTS RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

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

}


@media (max-width: 850px) {

    .catalog-heading,
    .industry-product-group,
    .products-cta-inner {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .discovery-bar {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 650px) {

    .products-hero {
        min-height: 420px;

        padding: 145px 0 58px;
    }

    .products-hero h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

    .discovery-links {
        width: 100%;

        gap: 15px;

        overflow-x: auto;
    }

    .catalog-top,
    .catalog-industries,
    .catalog-categories,
    .products-cta {
        padding: 54px 0;
    }

    .catalog-heading {
        margin-bottom: 27px;
    }

    .catalog-heading h2 {
        font-size: 36px;

        letter-spacing: -1.5px;
    }

    .catalog-top-grid,
    .industry-product-list,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .catalog-product {
        min-height: 0;
    }

    .industry-product-group {
        padding: 27px 0;
    }

    .category-item {
        min-height: 66px;
    }

    .products-cta-actions {
        flex-direction: column;
    }

    .products-cta-actions .btn {
        width: 100%;
    }

}



/* =========================================================
   INDUSTRY PRODUCTS — PRODUCT DESCRIPTIONS
========================================================= */

.mini-product {
    min-height: 108px;

    align-items: flex-start;
}

.mini-product > span {
    padding-top: 2px;
}

.mini-product strong {
    display: block;

    margin-bottom: 6px;
}

.mini-product-description {
    grid-column: 2;

    margin-top: -35px;
    padding-left: 0;

    color: #728397;

    font-size: 11.5px;

    line-height: 1.45;
}


/* Keep product cards compact on mobile */

@media (max-width: 650px) {

    .mini-product {
        min-height: 0;

        display: grid;

        grid-template-columns: 30px 1fr;

        align-items: start;
    }

    .mini-product-description {
        grid-column: 2;

        margin-top: -6px;
    }

}



/* =========================================================
   INDUSTRY PRODUCTS — FINAL STRUCTURE
========================================================= */

.mini-product {
    display: grid;

    grid-template-columns: 28px 1fr;

    gap: 12px;

    align-items: start;

    min-height: 108px;

    padding: 17px 18px;
}

.mini-product-content strong {
    display: block;

    margin-bottom: 6px;

    color: #315f8c;

    font-size: 13px;
}

.mini-product-content p {
    max-width: 310px;

    color: #728397;

    font-size: 11.5px;

    line-height: 1.45;
}



/* =========================================================
   INDUSTRY PRODUCT DETAILS
========================================================= */

.mini-product {
    min-height: 132px;

    display: grid;

    grid-template-columns: 28px 1fr;

    align-items: start;

    gap: 12px;

    padding: 18px;
}

.mini-product > span {
    padding-top: 2px;
}

.mini-product-content strong {
    display: block;

    margin-bottom: 6px;

    color: #315f8c;

    font-size: 13px;
}

.mini-product-content p {
    max-width: 330px;

    margin-bottom: 10px;

    color: #728397;

    font-size: 11.5px;

    line-height: 1.45;
}

.mini-product-view {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #315f8c;

    font-size: 10.5px;

    font-weight: 800;
}

.mini-product-view span {
    transition: transform 0.2s ease;
}

.mini-product-view:hover span {
    transform: translateX(3px);
}


/* =========================================================
   PRODUCT DETAIL PAGE
========================================================= */

.product-detail-page {
    background: #ffffff;
}

.product-detail-hero {
    min-height: 520px;

    padding: 165px 0 75px;

    display: flex;

    align-items: flex-end;

    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(176, 202, 226, 0.16),
            transparent 31%
        ),
        linear-gradient(
            125deg,
            #102f50 0%,
            #173a63 58%,
            #315f8c 100%
        );
}

.product-back {
    display: inline-block;

    margin-bottom: 35px;

    color: #b9d0e8;

    font-size: 12px;

    font-weight: 700;
}

.product-detail-eyebrow {
    margin-bottom: 13px;

    color: #b9d0e8;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.product-detail-hero h1 {
    max-width: 850px;

    margin-bottom: 20px;

    color: #ffffff;

    font-size: clamp(52px, 7vw, 82px);

    line-height: 0.98;

    letter-spacing: -3.5px;
}

.product-detail-lead {
    max-width: 660px;

    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 16px;

    line-height: 1.65;
}

.product-detail-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.product-detail-quote {
    border: 1px solid rgba(255, 255, 255, 0.35);

    background: transparent;

    color: #ffffff;
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.product-detail-body {
    padding: 78px 0;
}

.product-detail-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 85px;
}

.product-detail-copy h2 {
    max-width: 500px;

    margin-bottom: 20px;

    color: #173a63;

    font-size: clamp(38px, 4.4vw, 54px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.product-detail-copy h2 span {
    display: block;

    color: #5f82a7;
}

.product-detail-copy > p:last-child {
    max-width: 550px;

    color: #697b8d;

    font-size: 14px;

    line-height: 1.75;
}

.product-specs {
    border-top: 1px solid #d9e3ed;
}

.product-spec {
    padding: 24px 4px;

    display: grid;

    grid-template-columns: 145px 1fr;

    gap: 24px;

    border-bottom: 1px solid #d9e3ed;
}

.product-spec span {
    color: #849bb1;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.product-spec strong {
    color: #173a63;

    font-size: 14px;

    line-height: 1.55;
}


/* =========================================================
   PRODUCT DETAIL CTA
========================================================= */

.product-detail-cta {
    padding: 70px 0;

    background: #edf3f8;
}

.product-detail-cta-inner {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;
}

.product-detail-cta h2 {
    color: #173a63;

    font-size: clamp(37px, 4.3vw, 52px);

    line-height: 1.04;

    letter-spacing: -2px;
}

.product-detail-cta h2 span {
    display: block;

    color: #5f82a7;
}

.product-detail-cta-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.product-detail-cta .product-detail-quote {
    border-color: #9fb4c8;

    color: #315f8c;
}


@media (max-width: 850px) {

    .product-detail-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .product-detail-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 650px) {

    .mini-product {
        min-height: 0;
    }

    .product-detail-hero {
        min-height: 450px;

        padding: 145px 0 58px;
    }

    .product-detail-hero h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

    .product-detail-body,
    .product-detail-cta {
        padding: 54px 0;
    }

    .product-spec {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .product-detail-actions,
    .product-detail-cta-actions {
        flex-direction: column;
    }

    .product-detail-actions .btn,
    .product-detail-cta-actions .btn {
        width: 100%;
    }

}


/* =========================================================
   SAFE UX / ACCESSIBILITY REFINEMENTS
========================================================= */


/* ---------------------------------------------------------
   HEADER
   Keep original design.
   Only make it stay visible while scrolling.
--------------------------------------------------------- */

.site-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    width: 100%;

    z-index: 9999;

    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        backdrop-filter 0.25s ease;
}


/* Header keeps original hero appearance at the top */

.site-header.header-scrolled {
    background:
        rgba(16, 47, 80, 0.94);

    box-shadow:
        0 8px 25px rgba(7, 27, 47, 0.12);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


/* Anchors remain visible below fixed navigation */

section[id] {
    scroll-margin-top: 105px;
}


/* ---------------------------------------------------------
   PRODUCT DESCRIPTIONS
--------------------------------------------------------- */

.mini-product-content p {
    max-width: none;

    margin-bottom: 14px;

    color: #617487;

    font-size: 16px;

    line-height: 1.6;
}


.catalog-product > p {
    font-size: 16px;

    line-height: 1.6;
}


.product-detail-copy > p:last-child {
    font-size: 16px;

    line-height: 1.75;
}


.product-detail-lead {
    font-size: 17px;

    line-height: 1.65;
}


.product-spec strong {
    font-size: 16px;

    line-height: 1.6;
}


/* ---------------------------------------------------------
   VIEW PRODUCT
--------------------------------------------------------- */

.mini-product-view {
    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    border: 1px solid #173a63;

    border-radius: 22px;

    background: #173a63;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.mini-product-view:hover {
    transform: translateY(-2px);

    background: #315f8c;

    border-color: #315f8c;

    color: #ffffff;
}


.mini-product-view span {
    font-size: 16px;
}


/* ---------------------------------------------------------
   PRODUCT PORTFOLIO BACK BUTTON
--------------------------------------------------------- */

.product-back {
    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 30px;

    padding: 10px 16px;

    border:
        1px solid rgba(255, 255, 255, 0.55);

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.product-back:hover {
    transform: translateX(-3px);

    background:
        rgba(255, 255, 255, 0.22);

    color: #ffffff;
}


/* ---------------------------------------------------------
   PRODUCT DETAIL — FINAL CTA
--------------------------------------------------------- */

.product-detail-cta .btn-primary {
    background: #173a63;

    border: 1px solid #173a63;

    color: #ffffff;
}


.product-detail-cta .btn-primary:hover {
    background: #315f8c;

    border-color: #315f8c;

    color: #ffffff;
}


.product-detail-cta .product-detail-quote {
    background: #ffffff;

    border: 1px solid #8da6be;

    color: #173a63;
}


/* ---------------------------------------------------------
   CONTACT / FAX
--------------------------------------------------------- */

.contact-detail a,
.contact-detail strong,
.contact-detail address {
    opacity: 1;

    color: #173a63;

    font-size: 17px;

    font-weight: 800;
}


/* Contact values inside dark footer */

.site-footer a[href^="tel:"],
.site-footer a[href^="mailto:"],
.site-footer strong {
    color:
        rgba(255, 255, 255, 0.84);
}


/* ---------------------------------------------------------
   KEYBOARD ACCESSIBILITY
--------------------------------------------------------- */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #9dc3e6;

    outline-offset: 3px;
}


@media (max-width: 650px) {

    section[id] {
        scroll-margin-top: 90px;
    }

    .mini-product-content p {
        font-size: 16px;
    }

}



/* =========================================================
   HOME — FEATURED PRODUCT ACTIONS
   Exact selectors from current index.html
========================================================= */


/* Explore All Products */

.view-all-link {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    width: fit-content;

    padding: 11px 18px;

    border: 1px solid #173a63;

    border-radius: 999px;

    background: #173a63;

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;

    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 7px 18px rgba(23, 58, 99, 0.14);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.view-all-link span {
    font-size: 17px;

    line-height: 1;

    transition: transform 0.2s ease;
}


.view-all-link:hover {
    transform: translateY(-2px);

    background: #315f8c;

    border-color: #315f8c;

    color: #ffffff;

    box-shadow:
        0 10px 24px rgba(23, 58, 99, 0.19);
}


.view-all-link:hover span {
    transform: translateX(3px);
}


/* Request Sample inside Featured Products */

.product-card .product-link {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    width: fit-content;

    margin-top: auto;

    padding: 10px 15px;

    border: 1px solid #173a63;

    border-radius: 999px;

    background: #173a63;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 6px 15px rgba(23, 58, 99, 0.12);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.product-card .product-link span {
    font-size: 16px;

    line-height: 1;

    transition: transform 0.2s ease;
}


.product-card .product-link:hover {
    transform: translateY(-2px);

    background: #315f8c;

    border-color: #315f8c;

    color: #ffffff;

    box-shadow:
        0 9px 20px rgba(23, 58, 99, 0.18);
}


.product-card .product-link:hover span {
    transform: translateX(3px);
}


@media (max-width: 650px) {

    .view-all-link {
        padding: 11px 16px;

        font-size: 14px;
    }

    .product-card .product-link {
        padding: 10px 15px;

        font-size: 13px;
    }

}



/* =========================================================
   HOME — EXPLORE ALL PRODUCTS
   Contrast correction for dark Featured Products section
========================================================= */

.view-all-link {
    background: #ffffff;

    color: #173a63;

    border: 1px solid #ffffff;

    box-shadow:
        0 8px 20px rgba(5, 25, 45, 0.16);
}


.view-all-link:hover {
    background: #dce8f4;

    color: #173a63;

    border-color: #dce8f4;

    transform: translateY(-2px);

    box-shadow:
        0 11px 25px rgba(5, 25, 45, 0.22);
}


.view-all-link span {
    color: inherit;
}



/* =========================================================
   TOP PRODUCT DETAIL PAGES
========================================================= */

.top-product-section {
    padding: 78px 0;

    background: #ffffff;
}


.top-product-intro {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 85px;

    align-items: start;
}


.top-product-intro h2,
.top-data-heading h2 {
    max-width: 570px;

    color: #173a63;

    font-size: clamp(38px, 4.3vw, 54px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.top-product-intro h2 span,
.top-data-heading h2 span {
    display: block;

    color: #5f82a7;
}


.top-product-copy p {
    margin-bottom: 17px;

    color: #617487;

    font-size: 16px;

    line-height: 1.75;
}


.top-product-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 25px;
}


.top-product-tags span {
    padding: 8px 13px;

    border: 1px solid #cbd8e4;

    border-radius: 999px;

    color: #315f8c;

    font-size: 12px;

    font-weight: 800;
}


/* BENEFITS */

.top-product-benefits {
    padding: 72px 0;

    background: #edf3f8;
}


.top-benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 13px;

    margin-top: 30px;
}


.top-benefit-grid article {
    min-height: 205px;

    padding: 24px;

    background: #ffffff;

    border: 1px solid #d9e3ed;

    border-radius: 17px;
}


.top-benefit-grid article > span {
    display: block;

    margin-bottom: 34px;

    color: #8da6be;

    font-size: 10px;

    font-weight: 800;
}


.top-benefit-grid h3 {
    margin-bottom: 9px;

    color: #173a63;

    font-size: 19px;
}


.top-benefit-grid p {
    color: #617487;

    font-size: 15px;

    line-height: 1.6;
}


/* TECHNICAL DATA */

.top-product-data {
    padding: 78px 0;

    background: #f7f9fb;
}


.top-data-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.65fr);

    gap: 60px;

    align-items: end;

    margin-bottom: 33px;
}


.top-data-heading > p {
    color: #617487;

    font-size: 15px;

    line-height: 1.65;
}


.technical-table-wrap {
    width: 100%;

    overflow-x: auto;

    border: 1px solid #d9e3ed;

    border-radius: 16px;

    background: #ffffff;
}


.technical-table {
    width: 100%;

    min-width: 620px;

    border-collapse: collapse;
}


.technical-table th,
.technical-table td {
    padding: 17px 19px;

    text-align: left;

    border-bottom: 1px solid #e2e9f0;
}


.technical-table th {
    color: #849bb1;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.1px;

    background: #f4f7fa;
}


.technical-table td {
    color: #173a63;

    font-size: 14px;

    line-height: 1.5;
}


.technical-table tbody tr:last-child td {
    border-bottom: 0;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .top-product-intro,
    .top-data-heading {
        grid-template-columns: 1fr;

        gap: 32px;
    }


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

}


@media (max-width: 650px) {

    .top-product-section,
    .top-product-benefits,
    .top-product-data {
        padding: 54px 0;
    }


    .top-benefit-grid {
        grid-template-columns: 1fr;
    }


    .top-benefit-grid article {
        min-height: 0;
    }


    .top-product-copy p {
        font-size: 16px;
    }

}



/* =========================================================
   TOP PRODUCT TITLE LINKS
========================================================= */

.top-product-title-link {
    color: inherit;

    text-decoration: none;

    transition: color 0.2s ease;
}


.top-product-title-link:hover {
    color: #315f8c;

    text-decoration: underline;

    text-underline-offset: 4px;
}



/* =========================================================
   TOP PRODUCTS — VIEW PRODUCT ACTION
========================================================= */

.top-product-view {
    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: auto;
    margin-bottom: 10px;

    padding: 9px 14px;

    border: 1px solid #b8cadb;

    border-radius: 999px;

    background: #ffffff;

    color: #173a63;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.top-product-view span {
    font-size: 16px;

    transition: transform 0.2s ease;
}


.top-product-view:hover {
    transform: translateY(-1px);

    background: #edf3f8;

    border-color: #8da6be;

    color: #173a63;
}


.top-product-view:hover span {
    transform: translateX(3px);
}


/* Request Sample remains the stronger action */

.catalog-product .product-link {
    margin-top: 0;
}



/* =========================================================
   PRODUCT DETAIL — FIX SPACE BELOW STICKY HEADER
========================================================= */

.product-detail-hero {
    padding-top: 190px;
}

@media (max-width: 650px) {
    .product-detail-hero {
        padding-top: 165px;
    }
}



/* =========================================================
   FULL PRODUCT CATALOG
========================================================= */

.full-catalog {
    padding: 78px 0;

    background: #ffffff;
}


.full-catalog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
}


.full-catalog-card {
    min-height: 280px;

    padding: 24px;

    display: flex;
    flex-direction: column;

    border: 1px solid #d9e3ed;

    border-radius: 17px;

    background: #f7f9fb;
}


.full-catalog-meta {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;

    color: #7896b3;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.full-catalog-card h3 {
    margin-bottom: 10px;

    color: #173a63;

    font-size: 22px;
}


.full-catalog-card > p {
    margin-bottom: 15px;

    color: #617487;

    font-size: 16px;

    line-height: 1.6;
}


.full-catalog-industries {
    color: #7890a7 !important;

    font-size: 13px !important;

    font-weight: 700;
}


.full-catalog-card .mini-product-view {
    margin-top: auto;
}


@media (max-width: 900px) {

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

}


@media (max-width: 650px) {

    .full-catalog {
        padding: 54px 0;
    }

    .full-catalog-grid {
        grid-template-columns: 1fr;
    }

    .full-catalog-card {
        min-height: 0;
    }

}


/* =========================================================
   DORICO CONTACT PAGE — SAFE RECOVERY
   Scoped only to contact.html
========================================================= */


/* ---------------------------------------------------------
   PAGE
--------------------------------------------------------- */

.contact-page {
    background: #ffffff;
}


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.contact-hero {
    position: relative;

    overflow: hidden;

    padding: 190px 0 105px;

    background:
        linear-gradient(
            135deg,
            #14395f 0%,
            #1e4b78 58%,
            #2a628f 100%
        );

    color: #ffffff;
}


.contact-hero::before {
    content: "";

    position: absolute;

    top: -180px;
    right: -120px;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.10) 0%,
            rgba(255, 255, 255, 0) 68%
        );

    pointer-events: none;
}


.contact-hero-inner {
    position: relative;

    z-index: 1;

    max-width: 900px;
}


.contact-eyebrow {
    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.18em;
}


.contact-hero h1 {
    max-width: 760px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 78px);
    font-weight: 700;

    line-height: 0.98;
    letter-spacing: -3px;
}


.contact-hero h1 span {
    display: block;

    color: rgba(255, 255, 255, 0.68);
}


.contact-hero-inner > p:last-child {
    max-width: 720px;

    margin: 30px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 18px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   CONTACT INFORMATION
--------------------------------------------------------- */

.contact-info-section {
    padding: 100px 0;

    background: #ffffff;
}


.contact-info-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 90px;

    align-items: start;
}


.contact-intro h2,
.contact-options-heading h2,
.contact-final h2 {
    margin: 12px 0 20px;

    color: #112d49;

    font-size: clamp(38px, 4vw, 58px);
    font-weight: 700;

    line-height: 1.05;
    letter-spacing: -2px;
}


.contact-intro h2 span,
.contact-options-heading h2 span,
.contact-final h2 span {
    display: block;

    color: #6a8198;
}


.contact-intro > p:last-child {
    max-width: 560px;

    margin: 0;

    color: #5d7185;

    font-size: 16px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   CONTACT DETAILS
--------------------------------------------------------- */

.contact-details {
    display: grid;

    border-top: 1px solid #d7e1ea;
}


.contact-detail {
    display: grid;

    grid-template-columns: 54px 1fr;

    gap: 20px;

    padding: 27px 0;

    border-bottom: 1px solid #d7e1ea;
}


.contact-detail > span {
    padding-top: 3px;

    color: #7290ac;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.08em;
}


.contact-detail p {
    margin: 0 0 7px;

    color: #6d8296;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.14em;
}


.contact-detail a,
.contact-detail strong,
.contact-detail address {
    display: inline-block;

    margin: 0;

    color: #173a63;

    font-size: 19px;
    font-style: normal;
    font-weight: 800;

    line-height: 1.55;

    text-decoration: none;
}


.contact-detail a:hover {
    text-decoration: underline;
}


/* ---------------------------------------------------------
   HOW CAN WE HELP
--------------------------------------------------------- */

.contact-options {
    padding: 100px 0;

    background: #f4f7fa;
}


.contact-options-heading {
    max-width: 760px;

    margin-bottom: 55px;
}


.contact-options-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;
}


.contact-option-card {
    display: flex;

    min-height: 355px;

    flex-direction: column;

    padding: 34px;

    border: 1px solid #d9e3ec;
    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(17, 45, 73, 0.05);
}


.contact-option-card > span {
    margin-bottom: 42px;

    color: #7893ac;

    font-size: 12px;
    font-weight: 800;
}


.contact-option-card h3 {
    margin: 0 0 14px;

    color: #153858;

    font-size: 24px;
    line-height: 1.2;
}


.contact-option-card p {
    margin: 0 0 30px;

    color: #63778a;

    font-size: 16px;
    line-height: 1.7;
}


.contact-option-card button,
.contact-option-card a {
    display: inline-flex;

    width: fit-content;

    align-items: center;
    gap: 16px;

    margin-top: auto;

    padding: 14px 20px;

    border: 0;
    border-radius: 999px;

    background: #173f6b;

    color: #ffffff;

    font: inherit;
    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.contact-option-card button:hover,
.contact-option-card a:hover {
    transform: translateY(-2px);

    background: #22527f;
}


/* ---------------------------------------------------------
   FINAL CTA
--------------------------------------------------------- */

.contact-final {
    padding: 95px 0;

    background: #173a63;

    color: #ffffff;
}


.contact-final-inner {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 0.8fr);

    gap: 80px;

    align-items: center;
}


.contact-final .section-eyebrow {
    color: rgba(255, 255, 255, 0.64);
}


.contact-final h2 {
    margin-bottom: 0;

    color: #ffffff;
}


.contact-final h2 span {
    color: rgba(255, 255, 255, 0.64);
}


.contact-final-inner > div:last-child > p {
    margin: 0 0 27px;

    color: rgba(255, 255, 255, 0.74);

    font-size: 16px;
    line-height: 1.75;
}


.contact-final-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


.contact-final-actions .btn {
    display: inline-flex;

    min-height: 50px;

    align-items: center;
    justify-content: center;

    padding: 0 22px;

    border-radius: 999px;

    font-weight: 800;

    cursor: pointer;
}


.contact-final-actions .btn-primary {
    border: 1px solid #ffffff;

    background: #ffffff;

    color: #173a63;
}


.contact-final-actions .contact-quote-btn {
    border: 1px solid rgba(255, 255, 255, 0.45);

    background: transparent;

    color: #ffffff;
}


.contact-final-actions .contact-quote-btn:hover {
    background: rgba(255, 255, 255, 0.10);
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 900px) {

    .contact-info-grid,
    .contact-final-inner {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .contact-options-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 650px) {

    .contact-hero {
        padding: 165px 0 72px;
    }


    .contact-hero h1 {
        font-size: 46px;

        letter-spacing: -2px;
    }


    .contact-hero-inner > p:last-child {
        font-size: 16px;
    }


    .contact-info-section,
    .contact-options,
    .contact-final {
        padding: 68px 0;
    }


    .contact-info-grid {
        gap: 42px;
    }


    .contact-options-grid {
        grid-template-columns: 1fr;
    }


    .contact-option-card {
        min-height: auto;

        padding: 28px;
    }


    .contact-option-card > span {
        margin-bottom: 28px;
    }


    .contact-final-inner {
        gap: 38px;
    }


    .contact-final-actions {
        flex-direction: column;
    }


    .contact-final-actions .btn {
        width: 100%;
    }

}



/* =========================================================
   REQUEST MODAL — VIEWPORT / HEADER FIX
========================================================= */

.request-modal {
    z-index: 20000;

    padding: 20px;
}

.request-modal-panel {
    max-height: calc(100dvh - 40px);

    overflow-y: auto;
    overflow-x: hidden;

    overscroll-behavior: contain;
}


/* Safari / browsers without dynamic viewport support */
@supports not (height: 100dvh) {

    .request-modal-panel {
        max-height: calc(100vh - 40px);
    }

}


@media (max-width: 600px) {

    .request-modal {
        padding: 0;
    }

    .request-modal-panel {
        width: 100%;

        max-height: 100dvh;

        border-radius: 0;
    }

}






/* PRODUCTS BY INDUSTRY — THREE INDUSTRY LABELS */

.industry-title-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.industry-title-stack .industry-product-title {
    align-items: start;
}

.industry-title-stack
.industry-product-title
+
.industry-product-title {
    padding-top: 32px;
    border-top: 1px solid #d9e3ed;
}



/* =========================================
   MAIN NAV — ACTIVE STATE
========================================= */

.main-nav a.is-active {
    color: #ffffff;
}

.main-nav a.is-active::after {
    width: 100%;
}


/* =========================================
   FINAL CTA — QUOTE BUTTON
========================================= */

.contact-quote-btn {
    background: #ffffff !important;
    color: #173a63 !important;
    border-color: #ffffff !important;

    box-shadow:
        0 10px 25px rgba(7, 30, 53, 0.16);
}

.contact-quote-btn:hover {
    background: #eef4fa !important;
    color: #173a63 !important;
    border-color: #eef4fa !important;

    transform: translateY(-2px);
}


/* =========================================
   CONTACT PAGE — QUOTE CTA
========================================= */

.contact-final .contact-page-quote-btn {
    background: #ffffff !important;
    color: #173a63 !important;
    border-color: #ffffff !important;

    box-shadow:
        0 10px 25px rgba(7, 30, 53, 0.16);
}

.contact-final .contact-page-quote-btn:hover {
    background: #eef4fa !important;
    color: #173a63 !important;
    border-color: #eef4fa !important;

    transform: translateY(-2px);
}




/* PRODUCTS BY INDUSTRY — HEADING CENTER */

#by-industry .catalog-heading {
    display: block;
    width: 100%;
    text-align: center;
}

#by-industry .catalog-heading > div {
    width: 100%;
}

#by-industry .catalog-heading .section-eyebrow {
    text-align: center;
}

#by-industry .catalog-heading h2 {
    width: 100%;
    max-width: 900px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;

    line-height: 1.05;
}

#by-industry .catalog-heading h2 span {
    display: block;
}

#by-industry .catalog-heading > p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 18px;
    text-align: center;
}

@media (max-width: 650px) {

    #by-industry .catalog-heading h2 {
        white-space: normal;
    }

}


/* =========================================================
   PRODUCTS BY INDUSTRY — APPLICATION GRID REDESIGN
   Scoped to #by-industry so Categories / Top Products
   keep their existing layouts.
========================================================= */

/* Industry row:
   01 Hair Care | 02 Skin Care | 03 Toiletries & Spa */

#by-industry .industry-product-group {
    display: block;

    padding: 0;

    border-top: 0;
    border-bottom: 0;
}

#by-industry .industry-title-stack {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 0;

    margin-top: 38px;
    margin-bottom: 34px;

    padding-bottom: 24px;

    border-bottom: 1px solid #d9e3ed;
}

#by-industry .industry-title-stack .industry-product-title {
    display: grid;

    grid-template-columns: 28px 1fr;

    align-items: center;

    gap: 10px;

    min-width: 0;

    padding: 0;

    border: 0;
}

#by-industry
.industry-title-stack
.industry-product-title
+
.industry-product-title {
    padding-top: 0;

    border-top: 0;
}

#by-industry .industry-product-title > span {
    color: #89a3bc;

    font-size: 12px;
    font-weight: 800;

    line-height: 1;
}

#by-industry .industry-product-title h3 {
    margin: 0;

    color: #617487;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.6;
}


/* Product grid */

#by-industry .industry-product-list {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* Product card */

#by-industry .mini-product {
    min-height: 285px;

    display: grid;

    grid-template-columns: 28px 1fr;

    align-items: start;

    gap: 12px;

    padding: 24px 22px;

    background: #f6f9fb;

    border: 1px solid #dfe7ef;

    border-radius: 16px;
}

#by-industry .mini-product > span {
    padding-top: 3px;

    color: #96abc0;

    font-size: 11px;
    font-weight: 800;

    line-height: 1;
}

#by-industry .mini-product-content {
    min-height: 235px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

#by-industry .mini-product-content strong {
    display: block;

    margin: 0 0 12px;

    color: #315f8c;

    font-size: 18px;
    font-weight: 800;

    line-height: 1.3;
}

#by-industry .mini-product-content p {
    max-width: none;

    margin: 0 0 14px;

    color: #617487;

    font-size: 16px;

    line-height: 1.6;
}

#by-industry .mini-product-content .mini-product-category {
    margin-top: 0;
    margin-bottom: 18px;
}

#by-industry .mini-product-view {
    width: fit-content;

    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    border: 1px solid #173a63;

    border-radius: 22px;

    background: #173a63;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    line-height: 1.2;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

#by-industry .mini-product-view:hover {
    transform: translateY(-2px);

    background: #315f8c;

    border-color: #315f8c;

    color: #ffffff;
}

#by-industry .mini-product-view span {
    color: #ffffff;

    font-size: 16px;
}


/* Tablet */

@media (max-width: 1000px) {

    #by-industry .industry-product-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* Mobile */

@media (max-width: 650px) {

    #by-industry .industry-title-stack {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 28px;
        margin-bottom: 26px;

        padding-bottom: 22px;
    }

    #by-industry
    .industry-title-stack
    .industry-product-title {
        grid-template-columns: 28px 1fr;
    }

    #by-industry .industry-product-list {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    #by-industry .mini-product {
        min-height: 0;
    }

    #by-industry .mini-product-content {
        min-height: 0;
    }

}




/* PRODUCT BY CATEGORY — HEADING CENTER */

#categories .catalog-heading {
    display: block;
    width: 100%;
    text-align: center;
}

#categories .catalog-heading > div {
    width: 100%;
    max-width: none;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

#categories .catalog-heading h2 {
    width: 100%;
    max-width: none;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

#categories .catalog-heading .section-eyebrow {
    width: 100%;

    text-align: center;
}

#categories .catalog-heading .section-eyebrow {
    text-align: center;
}

#categories .catalog-heading h2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    white-space: nowrap;
}

#categories .catalog-heading h2 span {
    display: inline;
}

/* Mobile: allow wrapping only if the screen is too narrow */

@media (max-width: 650px) {

    #categories .catalog-heading h2 {
        white-space: normal;
    }

}


/* =========================================================
   PRODUCT BY CATEGORY — CATEGORY GRID REDESIGN
   Scoped only to #categories.
========================================================= */

/* Category row */

#categories .industry-product-group {
    display: block;

    padding: 0;

    border-top: 0;
    border-bottom: 0;
}

#categories .industry-title-stack {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 24px;

    margin-top: 38px;
    margin-bottom: 34px;

    padding-bottom: 24px;

    border-bottom: 1px solid #d9e3ed;
}

#categories .industry-title-stack .industry-product-title {
    display: grid;

    grid-template-columns: 28px 1fr;

    align-items: start;

    gap: 10px;

    min-width: 0;

    padding: 0;

    border: 0;
}

#categories
.industry-title-stack
.industry-product-title
+
.industry-product-title {
    padding-top: 0;

    border-top: 0;
}

#categories .industry-product-title > span {
    padding-top: 6px;

    color: #89a3bc;

    font-size: 12px;
    font-weight: 800;

    line-height: 1;
}

#categories .industry-product-title h3 {
    margin: 0;

    color: #617487;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.6;
}


/* Product grid */

#categories .industry-product-list {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* Product cards */

#categories .mini-product {
    min-height: 320px;

    display: grid;

    grid-template-columns: 28px 1fr;

    align-items: start;

    gap: 12px;

    padding: 24px 22px;

    background: #f6f9fb;

    border: 1px solid #dfe7ef;

    border-radius: 16px;
}

#categories .mini-product > span {
    padding-top: 3px;

    color: #96abc0;

    font-size: 11px;
    font-weight: 800;

    line-height: 1;
}

#categories .mini-product-content {
    min-height: 270px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

#categories .mini-product-content strong {
    display: block;

    margin: 0 0 12px;

    color: #315f8c;

    font-size: 18px;
    font-weight: 800;

    line-height: 1.3;
}

#categories .mini-product-content p {
    max-width: none;

    margin: 0 0 14px;

    color: #617487;

    font-size: 16px;

    line-height: 1.6;
}

#categories .mini-product-content .mini-product-category {
    margin-top: 0;
    margin-bottom: 18px;
}

#categories .mini-product-view {
    width: fit-content;

    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    border: 1px solid #173a63;

    border-radius: 22px;

    background: #173a63;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    line-height: 1.2;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

#categories .mini-product-view:hover {
    transform: translateY(-2px);

    background: #315f8c;

    border-color: #315f8c;

    color: #ffffff;
}

#categories .mini-product-view span {
    color: #ffffff;

    font-size: 16px;
}


/* Tablet */

@media (max-width: 1100px) {

    #categories .industry-title-stack {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    #categories .industry-product-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* Mobile */

@media (max-width: 650px) {

    #categories .industry-title-stack {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 28px;
        margin-bottom: 26px;

        padding-bottom: 22px;
    }

    #categories
    .industry-title-stack
    .industry-product-title {
        grid-template-columns: 28px 1fr;
    }

    #categories .industry-product-list {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    #categories .mini-product {
        min-height: 0;
    }

    #categories .mini-product-content {
        min-height: 0;
    }

}


/* =========================================================
   TOP PRODUCTS — HEADING CENTER
   Scoped only to #top-products.
========================================================= */

#top-products .catalog-heading {
    display: block;

    width: 100%;

    text-align: center;
}

#top-products .catalog-heading > div {
    width: 100%;
}

#top-products .catalog-heading .section-eyebrow {
    text-align: center;
}

#top-products .catalog-heading h2 {
    width: 100%;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
    white-space: nowrap;
}

#top-products .catalog-heading h2 span {
    display: inline;
}

#top-products .catalog-heading > p {
    max-width: none;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


/* Mobile */

@media (max-width: 650px) {

    #top-products .catalog-heading h2 {
        white-space: normal;
    }

}



/* =========================================================
   COMPANY — CUSTOMER FOCUS QUOTE BUTTON
========================================================= */

.company-customer-quote-btn {
    background: #ffffff;
    border-color: #ffffff;
    color: #173a63;
}

.company-customer-quote-btn:hover {
    background: #f1f6fa;
    border-color: #f1f6fa;
    color: #173a63;
}



/* =========================================================
   FOOTER — DEVELOPER CREDIT
========================================================= */

.developer-credit {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin: 0;
}

.developer-credit > span {
    color: #8fa5bb;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.2px;
}

.developer-credit a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    line-height: 0;
}

.developer-credit img {
    width: 38px;
    height: 38px;

    display: block;

    object-fit: contain;

    border-radius: 50%;

    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.developer-credit a:hover img {
    transform: translateY(-2px) scale(1.05);

    filter: brightness(1.12);
}


/* Mobile */

@media (max-width: 650px) {

    .developer-credit {
        justify-content: center;
    }

    .developer-credit img {
        width: 34px;
        height: 34px;
    }

}






/* =========================================================
   PRODUCT BY CATEGORY — UNIFIED TEST
========================================================= */

#categories .catalog-heading {
    justify-content: center;
    text-align: center;
}

#categories .catalog-heading > div {
    width: 100%;
}

#categories .category-bar {
    margin-top: 42px;

    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 18px 24px;
}

#categories .category-bar-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

#categories .category-bar-item span {
    color: #89a3bc;

    font-size: 12px;
    font-weight: 800;

    line-height: 1;
}

#categories .category-bar-item strong {
    color: #617487;

    font-size: 15px;
    font-weight: 500;

    line-height: 1.55;
}

#categories .category-bar-divider {
    margin: 26px 0 34px;

    height: 1px;
    background: #d9e3ed;
}

#categories .category-unified-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;
}

#categories .mini-product {
    min-width: 0;

    display: grid;

    grid-template-columns: 26px minmax(0, 1fr);

    gap: 12px;

    padding: 24px 22px;

    background: #f6f9fb;

    border: 1px solid #dfe7ef;
    border-radius: 16px;
}

#categories .mini-product > span {
    color: #96abc0;

    font-size: 11px;
    font-weight: 800;

    line-height: 1.2;
}

#categories .mini-product-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-height: 100%;
}

#categories .mini-product-content strong {
    margin-bottom: 10px;

    color: #315f8c;

    font-size: 18px;
    font-weight: 800;

    line-height: 1.3;
}

#categories .mini-product-content p {
    margin-top: 0;
    margin-bottom: 14px;

    color: #617487;

    font-size: 15px;

    line-height: 1.6;
}

#categories .mini-product-category {
    margin-bottom: 18px;

    color: #89a3bc;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.5;
}

#categories .mini-product-view {
    margin-top: auto;
}

@media (max-width: 1200px) {

    #categories .category-bar {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

}

@media (max-width: 1000px) {

    #categories .category-bar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

}

@media (max-width: 650px) {

    #categories .category-bar {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 12px;
    }

    #categories .category-bar-divider {
        margin: 22px 0 26px;
    }

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

}

/* =========================================================
   END PRODUCT BY CATEGORY — UNIFIED TEST
========================================================= */

/* =========================================================
   CATEGORY + INDUSTRY — MERGED CATALOG
========================================================= */

#categories .catalog-anchor-alias {
    display: block;
    position: relative;
    top: -110px;
    visibility: hidden;
    pointer-events: none;
}

