/*
=========================
GLOBAL SETTINGS
=========================
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

body {
    background: white;
    color: #123;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

section {
    padding: 90px 0;
}

/*
=========================
HEADER
=========================
*/

header {
    position: sticky;
    top: 0;
    height: 120px;
    background: white;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.navbar {
    height: 120px;
    width: 95%;
    max-width: 1500px;
    margin: auto;
    display: flex;
    align-items: center;
}

.brand-area {
    display: flex;
    align-items: center;
}

.logo-card {
    width: 95px;
    height: 95px;
    background: white;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

.logo-card img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

/* SEARCH */

.search-box {
    margin-left: auto;
    margin-right: 25px;
}

.search-box input {
    width: 210px;
    height: 45px;
    border-radius: 25px;
    border: 1px solid #ddd;
    padding: 0 20px;
    font-size: 15px;
    outline: none;
}

.search-box input:focus {
    border-color: #0077c8;
}

/* NAVIGATION */

.nav-menu {
    display: flex;
    gap: 45px;
    list-style: none;
    margin-left: auto;
    justify-content: flex-end;
}

.nav-menu a {
    font-size: 18px;
    font-weight: 700;
    transition: .3s;
}

.nav-menu a:hover {
    color: #0077c8;
}

/*
=========================
BUTTON
=========================
*/

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    background: #0077c8;
    color: white;
    font-weight: 700;
    transition: .3s;
}

.btn:hover {
    background: #005fa3;
    transform: translateY(-3px);
}

.btn-light {
    background: white;
    color: #0077c8;
}

/*
=========================
HERO
=========================
*/

.hero-new {
    height: 800px;
    background-image: url("../images/banner1.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .15));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1400px;
    margin: auto;
    color: white;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
}

.hero-content p {
    font-size: 22px;
    margin-top: 25px;
}

/*
=========================
SECTION TITLE
=========================
*/

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #123;
}

.section-title p {
    font-size: 18px;
    color: #666;
}

/*
=========================
PRODUCT CARDS
=========================
*/

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.product-content {
    padding: 30px;
}

.product-tag {
    font-size: 14px;
    font-weight: 800;
    color: #0077c8;
}

.product-content h3 {
    font-size: 25px;
    margin: 12px 0;
}

/*
=========================
PRODUCT COLLECTIONS
=========================
*/

.collections-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.collection-card {
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.collection-card:hover img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0) 100% );
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    transition: background .42s ease;
}

.collection-overlay h3 {
    display: flex;
    align-items: flex-end;
    min-height: 38px;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .35s ease, transform .42s cubic-bezier(.22, .72, .18, 1);
}

.collection-overlay span {
    margin-top: 10px;
    font-size: 15px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .35s ease .04s, transform .42s cubic-bezier(.22, .72, .18, 1) .04s;
}

.collection-card:hover .collection-overlay {
    background: linear-gradient( to top, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .20) 18%, rgba(0, 0, 0, .07) 31%, rgba(0, 0, 0, 0) 42% );
}

.collection-card:hover .collection-overlay h3, .collection-card:hover .collection-overlay span {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: none) {
    .collection-card:active .collection-overlay, .collection-card:focus-within .collection-overlay {
        background: linear-gradient( to top, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .20) 18%, rgba(0, 0, 0, .07) 31%, rgba(0, 0, 0, 0) 42% );
    }

    .collection-card:active .collection-overlay h3, .collection-card:active .collection-overlay span, .collection-card:focus-within .collection-overlay h3, .collection-card:focus-within .collection-overlay span {
        opacity: 1;
        transform: translateY(0);
    }
}

/*
=========================
ABOUT PAGE
=========================
*/

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 30px;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

/*
=========================
CONTACT
=========================
*/

/*
=========================
CONTACT
=========================
*/

.contact-container {
    display: grid;
    grid-template-columns: minmax(460px, .92fr) minmax(0, 1.08fr);
    gap: 52px;
    align-items: stretch;
}

.contact-info {
    position: relative;
    min-height: 100%;
    padding: 48px;
    border-radius: 30px;
    background: linear-gradient(145deg, #f8fbfd 0%, #eef6fb 100%);
    border: 1px solid rgba(0, 119, 200, .14);
    box-shadow: 0 18px 45px rgba(18, 51, 74, .08);
    overflow: hidden;
}

.contact-info::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(0, 119, 200, .08);
}

/* Keep both card headings visually identical. */

.contact-info h2, .customer-service h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #123;
}

.contact-info>p {
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 1.95;
    color: #4f5f6d;
}

.contact-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    min-width: 0;
    height: 100%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    min-width: 0;
    min-height: 94px;
    padding: 17px 22px;
    border-radius: 21px;
    background: #fff;
    border: 1px solid rgba(18, 51, 74, .08);
    box-shadow: 0 10px 26px rgba(18, 51, 74, .08);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(18, 51, 74, .12);
    border-color: rgba(0, 119, 200, .25);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 50%;
    background: #0077c8;
    color: #fff;
    font-size: 23px;
    font-weight: 700;
}

.contact-item>div:nth-child(2) {
    min-width: 0;
}

.contact-item h4 {
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 6px;
    color: #123;
}

.contact-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    color: #667684;
    overflow-wrap: anywhere;
}

.contact-arrow {
    margin-left: auto;
    flex: 0 0 auto;
    font-size: 25px;
    line-height: 1;
    color: #0077c8;
    transition: transform .3s ease;
}

.contact-item:hover .contact-arrow {
    transform: translateX(3px);
}

/*
=========================
CUSTOMER SERVICE
=========================
*/

.customer-service {
    background: #fff;
    padding: 38px 40px;
    border-radius: 30px;
    box-shadow: 0 14px 38px rgba(18, 51, 74, .09);
    border-top: 4px solid #0077c8;
}

.customer-service p {
    font-size: 17px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

.customer-service p:last-child {
    margin-bottom: 0;
}

/*
=========================
CONTACT FORM
=========================
*/

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 18px;
    border-radius: 15px;
    border: 1px solid #ddd;
    font-size: 16px;
    outline: none;
}

.contact-form textarea {
    resize: none;
}

/*
=========================
FACTORY VISIT
=========================
*/

.factory-visit {
    background: #e9eef2;
}

.factory-text {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    width: 100%;
    margin: auto;
}

.factory-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}

.factory-text h3 {
    font-size: 25px;
    color: #0077c8;
    margin-bottom: 15px;
}

/*
=========================
GOOGLE MAP
=========================
*/

.map {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.map iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

/*
=========================
FOOTER
=========================
*/

footer {
    background: #1f2933;
    color: white;
    padding: 70px 0 25px;
}

.footer-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #cbd5e1;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links h3, .footer-social h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ddd;
    transition: .3s;
}

.footer-links a:hover {
    color: #00a8ff;
}

/* FOLLOW US ICONS */

.social-icons {
    display: grid;
    grid-template-columns: repeat(3, 45px);
    gap: 20px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .3s ease;
}

.social-icons a:hover {
    background-color: #0060A9;
    transform: none;
}

.social-icons i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2933;
    font-size: 28px;
    line-height: 1;
    transition: color .3s ease;
}

.social-icons a:hover i {
    color: #fff;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: #aaa;
}

/*
=========================
WHATSAPP FLOAT BUTTON
=========================
*/

.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/*
=========================
RESPONSIVE
=========================
*/

@media (max-width:1200px) {
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nav-menu {
        gap: 25px;
    }
}

@media (max-width:900px) {
    .navbar {
        height: auto;
        padding: 20px 0;
        flex-wrap: wrap;
    }

    .search-box {
        order: 3;
        width: 100%;
        margin: 15px 0 0;
    }

    .search-box input {
        width: 100%;
    }

    .nav-menu {
        width: 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .products-grid, .factory-grid, .contact-container, .about-grid {
        grid-template-columns: 1fr;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width:600px) {
    header, .navbar {
        height: auto;
    }

    .logo-card {
        width: 70px;
        height: 70px;
    }

    .hero-new {
        height: 420px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .collection-card {
        height: 420px;
    }

    .factory-text {
        padding: 30px;
    }

    .map iframe {
        height: 350px;
    }
}

/* Contact page responsive refinements */

@media (max-width:1200px) {
    .contact-container {
        grid-template-columns: minmax(400px, .95fr) minmax(0, 1.05fr);
        gap: 40px;
    }
}

@media (max-width:900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-side {
        height: auto;
    }
}

@media (max-width:700px) {
    .contact-info {
        padding: 34px 26px;
    }

    .contact-info h2, .customer-service h2 {
        font-size: 28px;
    }

    .contact-info>p {
        font-size: 16px;
        line-height: 1.8;
    }

    .contact-item {
        min-height: 78px;
        padding: 13px 16px;
        gap: 14px;
    }

    .contact-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 20px;
    }

    .contact-item h4 {
        font-size: 17px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .customer-service {
        padding: 30px 26px;
    }
}

/* Updated transparent logo */

.logo-link {
    display: flex;
    align-items: center;
}

.logo-link img {
    width: 120px;
    height: auto;
    object-fit: contain;
    display: block;
    transition: .3s;
}

.logo-link:hover img {
    transform: scale(1.05);
}

/* Updated footer typography */

.footer-links h3, .footer-social h3, .footer-about h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Catalog banner */

.catalog-section {
    padding: 110px 0 120px;
}

.catalog-box {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    padding: 90px 80px;
    background: linear-gradient(135deg, #06243d, #0077c8);
    color: white;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
}

.catalog-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.catalog-content h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.catalog-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 40px;
}

.catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border-radius: 40px;
    background: white;
    color: #0077c8;
    font-weight: 800;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.logo-link img {
    width: 95px;
    height: 95px;
    object-fit: contain;
}

.footer-links h3, .footer-social h3, .footer-about h2 {
    font-size: 22px;
    font-weight: 700;
}

.catalog-box {
    background: linear-gradient(135deg, #b9e8ff, #0878c9) !important;
    text-align: center;
}

.catalog-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.catalog-content h2 {
    font-size: 42px;
}

.catalog-content p {
    text-align: left;
}

.team-section {
    padding: 100px 0;
}

.team-wrapper {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

.team-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
    background: #f7f7f7;
}

.team-profile.reverse .team-media {
    order: 2;
}

.team-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.team-text {
    padding: 50px;
}

.team-name {
    font-size: 52px;
    font-weight: 700;
}

.team-role {
    font-size: 28px;
    margin-bottom: 25px;
}

.team-text p {
    font-size: 18px;
    line-height: 1.75;
}

@media (max-width:900px) {
    .team-profile {
        grid-template-columns: 1fr;
    }

    .team-profile.reverse .team-media {
        order: 0;
    }
}

/* ===== Final requested updates ===== */

.logo-link:hover img {
    transform: none !important;
}

.catalog-box {
    background: linear-gradient(135deg, #b9e8ff, #0878c9) !important;
    text-align: center;
}

.catalog-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.catalog-content h2 {
    margin-bottom: 45px;
}

.catalog-content p {
    margin-bottom: 55px;
    text-align: left;
}

.catalog-btn, .btn-light {
    border-radius: 12px !important;
    transition: none !important;
}

.catalog-btn:hover, .btn-light:hover {
    background: white !important;
    color: #0077c8 !important;
    transform: none !important;
    box-shadow: none !important;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.why-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.why-item.reverse .why-media, .why-item.reverse .why-image {
    order: 2;
}

.why-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 25px;
}

.why-content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-line {
    height: 2px;
    background: #111;
    width: 100%;
    margin-bottom: 25px;
}

.why-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.reveal-left, .reveal-right {
    opacity: 0;
    transition: .8s ease;
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: none;
}

.about-gallery-slider {
    margin: 70px 0 90px;
}

.gallery-slider-container {
    height: 520px;
    position: relative;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: .8s;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: white;
    font-size: 30px;
    z-index: 3;
    cursor: pointer;
}

.gallery-prev {
    left: 35px;
}

.gallery-next {
    right: 35px;
}

.gallery-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.gallery-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 0;
    background: white;
    opacity: .55;
    cursor: pointer;
}

.gallery-dot.active {
    opacity: 1;
    transform: scale(1.2);
}

.team-profile {
    height: 650px !important;
    overflow: hidden;
}

.team-media, .team-text {
    height: 650px !important;
}

.team-media img {
    height: 100% !important;
    object-fit: cover;
}

.team-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width:900px) {
    .team-profile, .team-media, .team-text {
        height: auto !important;
    }

    .why-item {
        grid-template-columns: 1fr;
    }

    .gallery-slider-container {
        height: 350px;
    }
}

/* Founder Quote Section */

.founder-quote-section {
    padding: 90px 0;
    background: #f5f5f5;
}

.founder-quote-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: -80px;
    left: -10px;
    font-size: 240px;
    font-weight: 900;
    line-height: 1;
    color: #999;
    opacity: .45;
    z-index: 0;
    font-family: Georgia, serif;
}

.founder-quote-content {
    position: relative;
    z-index: 2;
    padding: 30px 50px;
}

.quote-text {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.35;
    color: #111;
    max-width: 1000px;
}

.quote-author {
    margin-top: 35px;
    text-align: right;
    font-size: 20px;
    color: #222;
    padding-right: 30px;
}

/* Why Choose title alignment only */

.why-item:not(.reverse) .why-content h3 {
    text-align: right;
}

.why-item.reverse .why-content h3 {
    text-align: left;
}

.why-content p {
    text-align: left;
}

.why-item:not(.reverse) .why-line {
    margin-left: auto;
}

.why-item.reverse .why-line {
    margin-left: 0;
}

@media (max-width:900px) {
    .quote-text {
        font-size: 24px;
    }

    .quote-author {
        font-size: 17px;
    }

    .quote-mark {
        font-size: 150px;
    }
}

/* Catalog download content spacing (index & products pages) */

.catalog-box > h2 {
    margin-bottom: 42px;
}

.catalog-box > p {
    max-width: 980px;
    margin: 0 auto 52px;
    line-height: 1.85;
    text-align: left;
}

/* Product showcase filter controls */

.product-filter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 12px minmax(0, 1fr) 30px minmax(0, 1fr) 12px minmax(0, 1fr) 30px minmax(0, 1fr) 12px minmax(0, 1fr);
    gap: 0;
    margin: 0 0 44px;
}

.product-filter .filter-btn:nth-child(1) {
    grid-column: 1;
}

.product-filter .filter-btn:nth-child(2) {
    grid-column: 3;
}

.product-filter .filter-btn:nth-child(3) {
    grid-column: 5;
}

.product-filter .filter-btn:nth-child(4) {
    grid-column: 7;
}

.product-filter .filter-btn:nth-child(5) {
    grid-column: 9;
}

.product-filter .filter-btn:nth-child(6) {
    grid-column: 11;
}

.filter-btn {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 72px;
    padding: 18px 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 119, 200, .22);
    border-radius: 20px;
    background: #fff;
    color: #123;
    box-shadow: 0 10px 26px rgba(18, 51, 74, .08);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .35px;
    white-space: nowrap;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.filter-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, #0077c8, #00a8ff);
    opacity: 0;
    transition: opacity .3s ease;
}

.filter-btn::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -35%;
    width: 28%;
    height: 220%;
    background: rgba(255, 255, 255, .3);
    transform: rotate(24deg) translateX(-240%);
    transition: transform .55s ease;
    pointer-events: none;
}

.filter-btn:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 119, 200, .48);
    box-shadow: 0 18px 38px rgba(0, 119, 200, .16);
}

.filter-btn:hover::after {
    transform: rotate(24deg) translateX(560%);
}

.filter-btn.active {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 16px 36px rgba(0, 119, 200, .26);
}

.filter-btn.active::before {
    opacity: 1;
}

.filter-btn:focus-visible {
    outline: 3px solid rgba(0, 119, 200, .24);
    outline-offset: 4px;
}

.filter-btn:active {
    transform: translateY(-1px) scale(.99);
}

@media (max-width:900px) {
    .product-filter {
        grid-template-columns: repeat(6, minmax(145px, 1fr));
        gap: 12px;
        margin-bottom: 34px;
        padding-bottom: 10px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
    }

    .product-filter .filter-btn:nth-child(n) {
        grid-column: auto;
    }

    .filter-btn {
        min-height: 64px;
        border-radius: 17px;
    }
}

@media (max-width:600px) {
    .product-filter {
        grid-template-columns: repeat(6, minmax(132px, 1fr));
    }

    .filter-btn {
        min-height: 58px;
        padding: 15px 18px;
        font-size: 14px;
    }
}

/* ===== Product Showcase card redesign ===== */

.product-showcase-section .product-card {
    height: 450px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 20px;
    background: #fff;
    box-shadow: none;
    transition: border-color .45s ease, box-shadow .45s ease, transform .35s ease;
}

.product-showcase-section .product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 96, 169, .52);
    box-shadow: 0 14px 34px rgba(0, 96, 169, .12);
}

.product-showcase-section .product-card img {
    width: 100%;
    height: 360px;
    flex: 0 0 360px;
    object-fit: cover;
    transition: transform .45s ease;
}

.product-showcase-section .product-card:hover img {
    transform: scale(1.015);
}

.product-showcase-section .product-content {
    height: 90px;
    flex: 0 0 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 13px 18px 14px;
}

.product-showcase-section .product-content h3 {
    order: 1;
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: #123;
}

.product-showcase-section .product-tag {
    order: 2;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .35px;
    color: #0060A9;
}

.product-showcase-section .product-content p {
    display: none;
}

/* ===== Footer company and contact details ===== */

.footer-container {
    align-items: start;
}

.footer-about h2, .footer-links h3, .footer-social h3 {
    min-height: 29px;
    margin-top: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.footer-about h2 {
    margin-bottom: 20px;
}

/*
The links column uses a 15px flex gap, so 5px here gives the same
   20px heading-to-content spacing as the company description column.
*/

.footer-links h3 {
    margin-bottom: 5px;
}

.footer-social h3 {
    margin-bottom: 20px;
}

.footer-description {
    max-width: 680px;
    margin: 0;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.8;
}

.footer-contact-info {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(190px, .9fr);
    gap: 22px 42px;
    margin-top: 32px;
}

.footer-contact-item {
    min-width: 0;
}

.footer-contact-item h4 {
    margin: 0 0 8px;
    color: #0060A9;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 2px;
}

.footer-contact-item p, .footer-contact-item a {
    margin: 0;
    color: #f3f7fa;
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.footer-contact-item a {
    display: inline-block;
    transition: color .3s ease;
}

.footer-contact-item a:hover {
    color: #0060A9;
}

@media (max-width:1100px) {
    .footer-container {
        grid-template-columns: 1.65fr .8fr .8fr;
        gap: 36px;
    }

    .footer-contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width:900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-description {
        margin-inline: auto;
    }

    .footer-contact-info {
        max-width: 620px;
        margin: 32px auto 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-contact-address {
        grid-column: 1 / -1;
    }

    .footer-links h3 {
        margin-bottom: 5px;
    }
}

@media (max-width:600px) {
    .footer-contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-contact-address {
        grid-column: auto;
    }
}

/*
=========================================================
FINAL OPTIMIZATION OVERRIDES
=========================================================
*/

/* Unified brand-blue hover color */

.nav-menu a:hover, .nav-menu a.active, .footer-links a:hover {
    color: #0060A9;
}

/* Footer contact details: ADDRESS, EMAIL and PHONE stacked vertically */

.footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 32px;
}

.footer-contact-address {
    width: 100%;
}

.footer-contact-address p {
    white-space: nowrap;
}

/*
Product filter: six equal buttons. Two buttons exactly span one product card.
   The 30px button gaps match the 30px product-card gaps.
*/

.product-filter {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 30px;
    margin: 0 0 44px;
}

.product-filter .filter-btn:nth-child(n) {
    grid-column: auto;
}

.product-showcase-grid, .featured-products-grid {
    gap: 30px;
}

/* Shared Featured Products / Product Showcase card design */

.product-showcase-section .product-card, .featured-products-section .product-card {
    height: 450px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 20px;
    background: #fff;
    box-shadow: none;
    transition: border-color .45s ease, box-shadow .45s ease, transform .35s ease;
}

.product-showcase-section .product-card:hover, .featured-products-section .product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 96, 169, .52);
    box-shadow: 0 14px 34px rgba(0, 96, 169, .12);
}

.product-showcase-section .product-card img, .featured-products-section .product-card img {
    width: 100%;
    height: 360px;
    flex: 0 0 360px;
    object-fit: cover;
    transition: transform .45s ease;
}

.product-showcase-section .product-card:hover img, .featured-products-section .product-card:hover img {
    transform: scale(1.015);
}

.product-showcase-section .product-content, .featured-products-section .product-content {
    height: 90px;
    flex: 0 0 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 13px 18px 14px;
}

.product-showcase-section .product-content h3, .featured-products-section .product-content h3 {
    order: 1;
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: #123;
}

.product-showcase-section .product-tag, .featured-products-section .product-tag {
    order: 2;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .35px;
    color: #0060A9;
}

.product-showcase-section .product-content p, .featured-products-section .product-content p {
    display: none;
}

/* Catalog description remains left aligned while the title and CTA stay centered */

.catalog-box > p {
    text-align: left;
}

/* Core values section above the index footer */

.core-values-section {
    padding: 72px 0;
    background: #fff;
    border-top: 1px solid #e3e7eb;
}

.core-values-container {
    width: 94%;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.core-value-card {
    position: relative;
    min-width: 0;
    padding: 8px 42px;
    text-align: center;
}

.core-value-card + .core-value-card {
    border-left: 1px solid #d8dde2;
}

.core-value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    color: #1f2933;
}



/* Core service values: Remix Icon replacements */
.core-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-value-icon i {
    display: block;
    color: currentColor;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
}

.core-value-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.core-value-card:first-child .core-value-icon svg path {
    fill: none;
}

.core-value-card h3 {
    margin: 0 0 14px;
    color: #0060A9;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.core-value-card p {
    margin: 0 auto;
    max-width: 320px;
    color: #111;
    font-size: 16px;
    line-height: 1.75;
}

@media (max-width:1100px) {
    .product-filter {
        grid-template-columns: repeat(6, minmax(140px, 1fr));
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .core-values-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .core-value-card {
        padding: 34px 42px;
    }

    .core-value-card + .core-value-card {
        border-left: 0;
    }

    .core-value-card:nth-child(even) {
        border-left: 1px solid #d8dde2;
    }

    .core-value-card:nth-child(n/**/+3) {
        border-top: 1px solid #d8dde2;
    }
}

@media (max-width:900px) {
    .footer-contact-info {
        max-width: none;
        margin: 32px auto 0;
        align-items: center;
    }

    .footer-contact-address p {
        white-space: normal;
    }
}

@media (max-width:700px) {
    .core-values-container {
        grid-template-columns: 1fr;
        width: 90%;
    }

    .core-value-card {
        padding: 34px 18px;
    }

    .core-value-card:nth-child(even) {
        border-left: 0;
    }

    .core-value-card + .core-value-card, .core-value-card:nth-child(n/**/+3) {
        border-top: 1px solid #d8dde2;
    }
}

@media (max-width:600px) {
    .product-filter {
        grid-template-columns: repeat(6, minmax(132px, 1fr));
        gap: 14px;
    }

    .product-showcase-section .product-card, .featured-products-section .product-card {
        height: 410px;
    }

    .product-showcase-section .product-card img, .featured-products-section .product-card img {
        height: 328px;
        flex-basis: 328px;
    }

    .product-showcase-section .product-content, .featured-products-section .product-content {
        height: 82px;
        flex-basis: 82px;
    }
}

/*
=========================================================
CATALOG DOWNLOAD SECTION — COMPACT, WIDER COPY, MUTED GRADIENT
=========================================================
*/

.catalog-download-section {
    padding: 64px 0;
}

.catalog-download-section .catalog-box {
    padding: 54px 56px 56px;
    background: linear-gradient( 135deg, #92bfd2 0%, #568fad 52%, #0060A9 100% ) !important;
}

.catalog-download-section .catalog-box > h2 {
    margin-bottom: 28px;
}

.catalog-download-section .catalog-box > p {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto 34px;
    line-height: 1.75;
}

@media (max-width:900px) {
    .catalog-download-section {
        padding: 52px 0;
    }

    .catalog-download-section .catalog-box {
        padding: 46px 38px 48px;
    }
}

@media (max-width:600px) {
    .catalog-download-section {
        padding: 42px 0;
    }

    .catalog-download-section .catalog-box {
        padding: 38px 24px 40px;
        border-radius: 26px;
    }

    .catalog-download-section .catalog-box > h2 {
        margin-bottom: 22px;
    }

    .catalog-download-section .catalog-box > p {
        margin-bottom: 28px;
        line-height: 1.7;
    }
}

/*
=========================================================
FINAL WEBSITE REFINEMENTS — AUGUST 2026
=========================================================
*/

/* Catalog download blocks on the index and products pages */

.catalog-download-section {
    padding: 52px 0;
}

.catalog-download-section .catalog-box {
    padding: 46px 48px 48px;
    border-radius: 32px;
    background: linear-gradient(135deg, #a9cad8 0%, #6e9fb8 54%, #0060A9 100%) !important;
}

.catalog-download-section .catalog-box > h2 {
    margin-bottom: 24px;
}

.catalog-download-section .catalog-box > p {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto 30px;
    line-height: 1.72;
    text-align: left;
}

/* Core service values: centered icon/title, left-aligned copy */

.core-value-card p {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-align: left;
}

/* Footer typography and compact contact spacing across all pages */

.footer-description {
    color: #f3f7fa;
}

.footer-contact-info {
    margin-top: 20px;
    gap: 12px;
}

.footer-contact-item h4 {
    margin-bottom: 5px;
}

/* About page: overlapping two-image story composition */

.story-section {
    padding: 96px 0 110px;
    background: #f5f5f5;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(70px, 8vw, 130px);
    align-items: center;
}

.story-visual {
    position: relative;
    min-height: 500px;
}

.story-image {
    position: absolute;
    overflow: hidden;
    border-radius: 24px;
    background: #dfe8ee;
    box-shadow: 0 24px 60px rgba(18, 35, 51, .18);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image-back {
    top: 4%;
    left: 42%;
    width: 58%;
    height: 84%;
    transform: rotate(2.2deg);
}

.story-image-front {
    top: 10%;
    left: 2%;
    width: 58%;
    height: 84%;
    z-index: 2;
    transform: rotate(-3.6deg);
}

.story-content h2 {
    margin: 0 0 26px;
    color: #111;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.story-content p {
    margin: 0 0 22px;
    color: #333f49;
    font-size: 17px;
    line-height: 1.85;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* About page: end-to-end manufacturing journey */

.manufacturing-journey-section {
    padding: 105px 0 115px;
    background: radial-gradient(circle at 8% 12%, rgba(0, 96, 169, .10), transparent 30%), #f7f8f9;
    overflow: hidden;
}

.manufacturing-journey-container {
    width: 94%;
    max-width: 1500px;
    margin: 0 auto;
}

.journey-intro {
    display: grid;
    grid-template-columns: minmax(350px, .85fr) minmax(0, 1.35fr);
    gap: clamp(60px, 9vw, 150px);
    align-items: end;
    margin-bottom: 68px;
}

.journey-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #0060A9;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 2.5px;
    white-space: nowrap;
}

.journey-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    flex: 0 0 34px;
    background: #0060A9;
}

.journey-title {
    margin: 0;
    color: #111;
    font-size: clamp(48px, 5.4vw, 82px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.journey-title span {
    display: block;
}

.journey-title-blue {
    color: #0060A9;
}

.journey-description {
    align-self: end;
    padding-bottom: 3px;
}

.journey-description p {
    margin: 0;
    color: #435667;
    font-size: 16px;
    line-height: 1.85;
}

.journey-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    padding-top: 62px;
}

.journey-steps::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    height: 1px;
    background: #d3d9de;
}

.journey-step {
    position: relative;
    min-width: 0;
}

.journey-number {
    position: absolute;
    top: -62px;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #d8dee3;
    border-radius: 50%;
    background: #fff;
    color: #0060A9;
    box-shadow: 0 8px 22px rgba(18, 35, 51, .08);
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.journey-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(18, 35, 51, .07);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(18, 35, 51, .08);
    transition: transform .35s ease, box-shadow .35s ease;
}

.journey-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(18, 35, 51, .13);
}

.journey-card > img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.journey-card-content {
    padding: 24px 20px 28px;
}

.journey-card-content h3 {
    margin: 0 0 13px;
    color: #111;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
}

.journey-card-content p {
    margin: 0;
    color: #4b5c69;
    font-size: 14px;
    line-height: 1.72;
}

@media (max-width:1200px) {
    .journey-intro {
        grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
        gap: 60px;
    }

    .journey-steps {
        grid-template-columns: repeat(5, minmax(225px, 1fr));
        padding-bottom: 18px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }

    .journey-step {
        scroll-snap-align: start;
    }
}

@media (max-width:900px) {
    .catalog-download-section {
        padding: 46px 0;
    }

    .catalog-download-section .catalog-box {
        padding: 40px 34px 42px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .story-visual {
        min-height: 480px;
    }

    .journey-intro {
        grid-template-columns: 1fr;
        gap: 42px;
        align-items: start;
    }

    .journey-description {
        max-width: 760px;
    }
}

@media (max-width:700px) {
    .story-section {
        padding: 72px 0 82px;
    }

    .story-visual {
        min-height: 390px;
    }

    .story-image-back {
        top: 3%;
        left: 40%;
        width: 59%;
        height: 84%;
    }

    .story-image-front {
        top: 10%;
        left: 1%;
        width: 59%;
        height: 84%;
    }

    .manufacturing-journey-section {
        padding: 78px 0 86px;
    }

    .journey-intro {
        margin-bottom: 54px;
    }

    .journey-kicker {
        font-size: 10px;
        letter-spacing: 1.7px;
    }

    .journey-title {
        font-size: clamp(45px, 15vw, 66px);
    }

    .journey-description p {
        font-size: 15px;
        line-height: 1.78;
    }

    .journey-steps {
        display: flex;
        flex-direction: column;
        gap: 26px;
        padding: 0 0 0 58px;
        overflow: visible;
    }

    .journey-steps::before {
        top: 0;
        bottom: 0;
        left: 22px;
        right: auto;
        width: 1px;
        height: auto;
    }

    .journey-number {
        top: 0;
        left: -58px;
    }

    .journey-card > img {
        height: 200px;
    }
}

@media (max-width:600px) {
    .catalog-download-section {
        padding: 38px 0;
    }

    .catalog-download-section .catalog-box {
        padding: 34px 22px 36px;
        border-radius: 25px;
    }

    .catalog-download-section .catalog-box > h2 {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 1.25;
    }

    .catalog-download-section .catalog-box > p {
        margin-bottom: 26px;
        font-size: 15px;
        line-height: 1.68;
    }

    .story-visual {
        min-height: 330px;
    }

    .story-content h2 {
        font-size: 38px;
    }

    .story-content p {
        font-size: 16px;
        line-height: 1.75;
    }

    .journey-card > img {
        height: 180px;
    }
}

/*
=========================================================
FOOTER COLOR UNIFICATION + COMPANY MILESTONE SLIDER
=========================================================
*/

/* Use one consistent white tone for all footer typography. */

footer, .footer-about h2, .footer-description, .footer-links h3, .footer-links a, .footer-social h3, .footer-contact-item p, .footer-contact-item a, .copyright {
    color: #ddd;
}

/* Only the copyright line receives additional weight. */

.copyright {
    font-weight: 700;
}

/*
=========================
ABOUT: EVERY STROKE COUNTED
=========================
*/

.milestones-section {
    padding: 96px 0 104px;
    overflow: hidden;
    background: #f4f4f4;
}

.milestones-shell {
    width: 95%;
    max-width: 1720px;
    margin: 0 auto;
}

.milestones-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 46px;
}

.milestones-title {
    margin: 0;
    color: #111;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2.2px;
}

.milestones-title span {
    color: #0060A9;
}

.milestone-controls {
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
}

.milestone-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    padding: 0;
    border: 1px solid #1f2933;
    border-radius: 50%;
    background: transparent;
    color: #111;
    cursor: pointer;
    transition: opacity .25s ease, border-color .25s ease, transform .25s ease, background-color .25s ease;
}

.milestone-arrow svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.milestone-arrow:not(:disabled):hover {
    transform: translateY(-2px);
    background: #fff;
    border-color: #0060A9;
    color: #0060A9;
}

.milestone-arrow:focus-visible, .milestone-year-button:focus-visible, .milestone-viewport:focus-visible {
    outline: 3px solid rgba(0, 96, 169, .25);
    outline-offset: 4px;
}

.milestone-arrow:disabled {
    border-color: #c5c8cb;
    color: #aeb2b6;
    cursor: default;
    opacity: .48;
}

.milestone-viewport {
    width: 100%;
    overflow: hidden;
}

.milestone-track {
    display: flex;
    width: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform .72s cubic-bezier(.22, .72, .18, 1);
    will-change: transform;
}

.milestone-panel {
    display: grid;
    grid-template-columns: minmax(0, 2.15fr) minmax(280px, .95fr);
    gap: 42px;
    flex: 0 0 100%;
    min-width: 0;
    opacity: .42;
    transition: opacity .45s ease;
}

.milestone-panel.is-active {
    opacity: 1;
}

.milestone-panel-last {
    grid-template-columns: 1fr;
}

.milestone-main-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.14fr);
    min-width: 0;
    min-height: 500px;
    overflow: hidden;
    border-radius: 27px;
    background: #e9e9e9;
    box-shadow: 0 20px 48px rgba(18, 35, 51, .06);
}

.milestone-main-image {
    min-width: 0;
    overflow: hidden;
}

.milestone-main-image img, .milestone-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.milestone-main-image img {
    transition: transform .8s cubic-bezier(.22, .72, .18, 1);
}

.milestone-panel.is-active .milestone-main-image img {
    transform: scale(1.025);
}

.milestone-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 62px 66px;
}

.milestone-year {
    margin-bottom: 15px;
    color: #60666b;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
}

.milestone-copy h3 {
    margin: 0 0 31px;
    color: #111;
    font-size: clamp(31px, 2.5vw, 43px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -1.1px;
}

.milestone-copy p {
    margin: 0;
    color: #5e6469;
    font-size: 17px;
    line-height: 1.82;
}

.milestone-preview {
    position: relative;
    min-width: 0;
    min-height: 500px;
    overflow: hidden;
    border-radius: 27px;
    background: #e5e5e5;
}

.milestone-preview img {
    opacity: .54;
    filter: blur(1.2px) saturate(.55) brightness(1.22);
    transform: scale(1.045);
}

.milestone-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .34);
    pointer-events: none;
}

.milestone-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    margin-top: 55px;
}

.milestone-timeline::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #c7c9cb;
    transform: translateY(-50%);
}

.milestone-year-button {
    position: relative;
    z-index: 1;
    justify-self: start;
    padding: 5px 13px 5px 0;
    border: 0;
    background: #f4f4f4;
    color: #b1b4b7;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: color .3s ease, transform .3s ease;
}

.milestone-year-button:nth-child(n/**/+2) {
    justify-self: center;
    padding-left: 13px;
}

.milestone-year-button:last-child {
    justify-self: end;
    padding-right: 0;
}

.milestone-year-button:hover {
    color: #0060A9;
}

.milestone-year-button.is-active {
    color: #111;
    transform: translateY(-1px);
}

@media (max-width:1300px) {
    .milestone-panel {
        grid-template-columns: minmax(0, 2.35fr) minmax(230px, .8fr);
        gap: 26px;
    }

    .milestone-main-card, .milestone-preview {
        min-height: 470px;
    }

    .milestone-copy {
        padding: 48px 45px;
    }

    .milestone-copy p {
        font-size: 16px;
        line-height: 1.75;
    }
}

@media (max-width:980px) {
    .milestones-section {
        padding: 82px 0 90px;
    }

    .milestone-panel, .milestone-panel-last {
        grid-template-columns: 1fr;
    }

    .milestone-preview {
        display: none;
    }

    .milestone-main-card {
        min-height: 440px;
    }
}

@media (max-width:760px) {
    .milestones-shell {
        width: 90%;
    }

    .milestones-header {
        align-items: flex-end;
        margin-bottom: 34px;
    }

    .milestones-title {
        font-size: clamp(34px, 10vw, 46px);
        letter-spacing: -1.5px;
    }

    .milestone-arrow {
        width: 50px;
        height: 50px;
    }

    .milestone-main-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .milestone-main-image {
        height: 285px;
    }

    .milestone-copy {
        padding: 38px 32px 44px;
    }

    .milestone-year {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .milestone-copy h3 {
        margin-bottom: 22px;
        font-size: 31px;
    }

    .milestone-copy p {
        font-size: 15px;
        line-height: 1.72;
    }

    .milestone-timeline {
        margin-top: 38px;
    }

    .milestone-year-button {
        padding-right: 8px;
        font-size: 18px;
    }

    .milestone-year-button:nth-child(n/**/+2) {
        padding-left: 8px;
    }
}

@media (max-width:520px) {
    .milestones-header {
        align-items: center;
        gap: 14px;
    }

    .milestones-title {
        max-width: 250px;
        font-size: 34px;
    }

    .milestone-controls {
        gap: 8px;
    }

    .milestone-arrow {
        width: 44px;
        height: 44px;
    }

    .milestone-arrow svg {
        width: 20px;
        height: 20px;
    }

    .milestone-main-image {
        height: 230px;
    }

    .milestone-copy {
        padding: 32px 24px 37px;
    }

    .milestone-year-button {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .milestone-track, .milestone-main-image img, .milestone-arrow, .milestone-year-button {
        transition: none;
    }
}

/*
=========================================================
AUGUST 07 2026 — REQUESTED FINAL OVERRIDES
=========================================================
*/

/* Global typography: every text element uses Montserrat. */

html, body, body * {
    font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
}

/* Footer company description: exact unified white tone requested. */

.footer-description {
    color: #DDDDDD !important;
}

/*
=========================================================
PRODUCTS — PRODUCT SHOWCASE: 4 × 348px CARDS + 20/PAGE
=========================================================
*/

.product-showcase-section .container {
    width: 96%;
    max-width: 1464px;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 348px);
    gap: 34px 24px;
    justify-content: center;
    align-items: start;
}

.product-showcase-section .product-card {
    width: 348px;
    height: 465px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 18px;
    background: #fff;
    box-shadow: none;
    transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

.product-showcase-section .product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 96, 169, .48);
    box-shadow: 0 14px 34px rgba(0, 96, 169, .12);
}

.product-showcase-section .product-card > img {
    width: 348px;
    height: 330px;
    flex: 0 0 330px;
    object-fit: cover;
    transition: transform .45s ease;
}

.product-showcase-section .product-card:hover > img {
    transform: scale(1.015);
}

.product-showcase-section .product-content {
    height: 135px;
    flex: 0 0 135px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 18px 18px 19px;
    text-align: left;
}

.product-showcase-section .product-tag {
    order: 1;
    display: block;
    margin: 0 0 7px;
    color: #0060A9;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .45px;
    text-transform: uppercase;
}

.product-showcase-section .product-content h3 {
    order: 2;
    margin: 0 0 7px;
    color: #123;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.product-showcase-section .product-content .product-features {
    order: 3;
    display: block;
    margin: 0;
    color: #666;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.45;
}

/* Product pagination */

.product-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    margin-top: 52px;
}

.product-page-btn, .product-page-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}

.product-page-btn:hover:not(:disabled), .product-page-arrow:hover:not(:disabled) {
    background: #f0f0f0;
}

.product-page-btn.is-active, .product-page-btn[aria-current="page"] {
    background: #111;
    color: #fff;
    cursor: default;
}

.product-page-arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-page-arrow:disabled {
    color: #b8b8b8;
    cursor: default;
    opacity: .65;
}

.product-page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #111;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 1510px) {
    .product-showcase-grid {
        grid-template-columns: repeat(3, 348px);
    }
}

@media (max-width: 1120px) {
    .product-showcase-grid {
        grid-template-columns: repeat(2, 348px);
    }
}

@media (max-width: 760px) {
    .product-showcase-grid {
        grid-template-columns: minmax(0, 348px);
        gap: 26px;
    }

    .product-showcase-section .product-card {
        width: min(348px, 100%);
        height: auto;
        min-height: 445px;
        margin: 0 auto;
    }

    .product-showcase-section .product-card > img {
        width: 100%;
        height: 310px;
        flex-basis: 310px;
    }

    .product-showcase-section .product-content {
        width: 100%;
        height: auto;
        min-height: 135px;
        flex-basis: auto;
    }

    .product-pagination {
        margin-top: 38px;
        gap: 6px;
    }
}

/*
=========================================================
ABOUT — 2026 MILESTONE SAME MAIN-CARD SIZE AS OTHER YEARS
=========================================================
*/

.milestone-panel[data-year="2026"] {
    grid-template-columns: minmax(0, 2.15fr) minmax(280px, .95fr);
    gap: 42px;
}

.milestone-panel[data-year="2026"] .milestone-main-card {
    width: 100%;
    min-height: 500px;
}

@media (max-width:1300px) {
    .milestone-panel[data-year="2026"] {
        grid-template-columns: minmax(0, 2.35fr) minmax(230px, .8fr);
        gap: 26px;
    }

    .milestone-panel[data-year="2026"] .milestone-main-card {
        min-height: 470px;
    }
}

@media (max-width:980px) {
    .milestone-panel[data-year="2026"] {
        grid-template-columns: 1fr;
    }

    .milestone-panel[data-year="2026"] .milestone-main-card {
        min-height: 440px;
    }
}

@media (max-width:760px) {
    .milestone-panel[data-year="2026"] .milestone-main-card {
        min-height: 0;
    }
}

/*
=========================================================
CONTACT — VISIT US IN THE FACTORY OVERLAPPING MAP COMPOSITION
=========================================================
*/

.factory-visit.factory-visit-modern {
    padding: 110px 0 130px;
    background: #e9eef2;
    overflow: hidden;
}

.factory-visit-modern .factory-visit-container {
    width: 92%;
    max-width: 1450px;
}

.factory-visit-modern .factory-visit-stage {
    position: relative;
    min-height: 790px;
}

.factory-visit-modern .factory-visit-heading {
    position: relative;
    z-index: 4;
    width: 36%;
    padding: 18px 0 0 20px;
}

.factory-visit-modern .factory-visit-heading h2 {
    margin: 0;
    color: #123;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.8px;
    text-transform: uppercase;
}

.factory-visit.factory-visit-modern .factory-visit-map {
    position: absolute;
    z-index: 1;
    top: 130px;
    right: 0;
    width: 79%;
    height: 610px;
    margin: 0;
    overflow: hidden;
    border-radius: 42px;
    background: #d8e4eb;
    box-shadow: 0 24px 55px rgba(18, 35, 51, .16);
}

.factory-visit.factory-visit-modern .factory-visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
}

.factory-visit.factory-visit-modern .factory-visit-card {
    position: absolute;
    z-index: 3;
    top: 245px;
    left: 0;
    width: 31%;
    max-width: 430px;
    height: auto;
    margin: 0;
    padding: 30px 32px 32px;
    border: 1px solid rgba(255, 255, 255, .56);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(224, 244, 255, .86), rgba(158, 207, 235, .72));
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    backdrop-filter: blur(18px) saturate(120%);
    box-shadow: 0 22px 50px rgba(18, 35, 51, .16);
}

.factory-visit.factory-visit-modern .factory-visit-card p {
    margin: 0 0 19px;
    color: #405767;
    font-size: 15px;
    line-height: 1.72;
}

.factory-visit.factory-visit-modern .factory-visit-card h3 {
    margin: 17px 0 8px;
    color: #0060A9;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.factory-visit.factory-visit-modern .factory-visit-card p:last-child {
    margin-bottom: 0;
}

@media (max-width:1050px) {
    .factory-visit-modern .factory-visit-stage {
        min-height: 730px;
    }

    .factory-visit-modern .factory-visit-heading {
        width: 42%;
    }

    .factory-visit.factory-visit-modern .factory-visit-map {
        width: 75%;
        height: 565px;
    }

    .factory-visit.factory-visit-modern .factory-visit-card {
        top: 235px;
        width: 36%;
        padding: 32px 32px 34px;
    }
}

@media (max-width:820px) {
    .factory-visit.factory-visit-modern {
        padding: 72px 0 82px;
    }

    .factory-visit-modern .factory-visit-stage {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .factory-visit-modern .factory-visit-heading {
        width: 100%;
        padding: 0 0 34px;
    }

    .factory-visit-modern .factory-visit-heading h2 {
        font-size: 42px;
    }

    .factory-visit.factory-visit-modern .factory-visit-map {
        position: relative;
        top: auto;
        right: auto;
        order: 2;
        width: 100%;
        height: 430px;
        border-radius: 30px;
    }

    .factory-visit.factory-visit-modern .factory-visit-card {
        position: relative;
        top: auto;
        left: auto;
        order: 3;
        width: calc(100% - 34px);
        max-width: 600px;
        margin: -82px 0 0 17px;
        padding: 32px;
        border-radius: 26px;
    }
}

@media (max-width:560px) {
    .factory-visit-modern .factory-visit-heading h2 {
        font-size: 34px;
    }

    .factory-visit.factory-visit-modern .factory-visit-map {
        height: 350px;
        border-radius: 24px;
    }

    .factory-visit.factory-visit-modern .factory-visit-card {
        width: calc(100% - 20px);
        margin: -58px 0 0 10px;
        padding: 27px 24px 29px;
        border-radius: 22px;
    }
}

/*
=========================================================
HOME: BUILT TO STANDARDS PROCESS GALLERY
=========================================================
*/

.process-gallery-section {
    padding: 86px 0 92px;
    background: #f2f2f2;
    overflow: hidden;
}

.process-gallery-shell {
    width: 96%;
    max-width: 1540px;
    margin: 0 auto;
}

.process-gallery-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 58px;
}

.process-gallery-header h2 {
    margin: 0;
    color: #111;
    font-size: clamp(40px, 4.2vw, 62px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2.2px;
}

.process-gallery-header p {
    margin: 0;
    max-width: 590px;
    color: #161616;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: right;
}

.process-gallery-header p span {
    display: block;
}

/*
Reference-inspired 9-image mosaic:
   1 tall portrait + 5 standard tiles + 2 wide tiles + 1 standard tile.
*/

.process-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(3, 220px);
    gap: 8px;
}

.process-gallery-item {
    margin: 0;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #d9dde0;
}

.process-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.process-gallery-item:hover img {
    transform: scale(1.025);
}

/* Row 1 */

.process-gallery-item-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.process-gallery-item-2 {
    grid-column: 2;
    grid-row: 1;
}

.process-gallery-item-3 {
    grid-column: 3;
    grid-row: 1;
}

.process-gallery-item-4 {
    grid-column: 4;
    grid-row: 1;
}

/* Row 2 */

.process-gallery-item-5 {
    grid-column: 2;
    grid-row: 2;
}

.process-gallery-item-6 {
    grid-column: 3 / 5;
    grid-row: 2;
}

/* Row 3 */

.process-gallery-item-7 {
    grid-column: 1 / 3;
    grid-row: 3;
}

.process-gallery-item-8 {
    grid-column: 3;
    grid-row: 3;
}

.process-gallery-item-9 {
    grid-column: 4;
    grid-row: 3;
}

@media (max-width:1000px) {
    .process-gallery-section {
        padding: 72px 0 78px;
    }

    .process-gallery-header {
        margin-bottom: 44px;
    }

    .process-gallery-grid {
        grid-template-rows: repeat(3, 190px);
        gap: 7px;
    }
}

@media (max-width:760px) {
    .process-gallery-shell {
        width: 92%;
    }

    .process-gallery-header {
        flex-direction: column;
        gap: 22px;
        margin-bottom: 34px;
    }

    .process-gallery-header h2 {
        font-size: clamp(38px, 11vw, 52px);
        letter-spacing: -1.6px;
    }

    .process-gallery-header p {
        align-self: flex-end;
        max-width: 520px;
        font-size: 16px;
        text-align: right;
    }

    .process-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-rows: 210px;
        gap: 7px;
    }

    .process-gallery-item-1, .process-gallery-item-2, .process-gallery-item-3, .process-gallery-item-4, .process-gallery-item-5, .process-gallery-item-6, .process-gallery-item-7, .process-gallery-item-8, .process-gallery-item-9 {
        grid-column: auto;
        grid-row: auto;
    }

    .process-gallery-item-1 {
        grid-row: span 2;
    }

    .process-gallery-item-6, .process-gallery-item-7 {
        grid-column: 1 / -1;
    }
}

@media (max-width:520px) {
    .process-gallery-section {
        padding: 58px 0 64px;
    }

    .process-gallery-header p {
        font-size: 15px;
        line-height: 1.55;
    }

    .process-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 245px;
        gap: 6px;
    }

    .process-gallery-item-1, .process-gallery-item-2, .process-gallery-item-3, .process-gallery-item-4, .process-gallery-item-5, .process-gallery-item-6, .process-gallery-item-7, .process-gallery-item-8, .process-gallery-item-9 {
        grid-column: 1;
        grid-row: auto;
    }

    .process-gallery-item-1 {
        min-height: 360px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .process-gallery-item img {
        transition: none;
    }
}

/*
=========================================================
ABOUT — CAPABILITY IN NUMBERS
=========================================================
*/

.capability-numbers-section {
    padding: 112px 0 122px;
    overflow: hidden;
    background: radial-gradient(circle at 17% 20%, rgba(0, 96, 169, .08), transparent 27%), linear-gradient(180deg, #f7f9fa 0%, #f2f5f7 100%);
}

.capability-numbers-container {
    width: 92%;
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(390px, .85fr);
    gap: clamp(70px, 8vw, 135px);
    align-items: center;
}

.capability-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.capability-stat-card {
    position: relative;
    min-height: 330px;
    padding: 34px 34px 36px;
    overflow: hidden;
    border: 1px solid rgba(18, 35, 51, .08);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(230, 248, 252, .96) 0%, rgba(255, 255, 255, .98) 62%, rgba(249, 246, 239, .98) 100%);
    box-shadow: 0 22px 52px rgba(18, 35, 51, .08);
}

.capability-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    right: 34px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, #00a2b8 0%, #0060A9 55%, #b58a43 100%);
}

.capability-stat-card-2, .capability-stat-card-4 {
    transform: translateY(54px);
}

.capability-stat-number {
    margin: 14px 0 11px;
    color: #101922;
    font-size: clamp(64px, 6vw, 94px);
    font-weight: 700;
    line-height: .92;
    letter-spacing: -.065em;
}

.capability-stat-card h3 {
    margin: 0 0 14px;
    color: #0060A9;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.28;
}

.capability-stat-card p {
    margin: 0;
    color: #5c6d7c;
    font-size: 15px;
    line-height: 1.72;
}

.capability-statement {
    position: relative;
    padding: 26px 0 26px 10px;
}

.capability-statement-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 23px;
    color: #0060A9;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 2.3px;
}

.capability-statement-kicker::before {
    content: "";
    width: 36px;
    height: 1px;
    flex: 0 0 36px;
    background: #0060A9;
}

.capability-statement h2 {
    margin: 0 0 31px;
    color: #111820;
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.055em;
}

.capability-statement p {
    max-width: 555px;
    margin: 0;
    color: #465968;
    font-size: 17px;
    line-height: 1.86;
}

.capability-statement-line {
    width: 92px;
    height: 4px;
    margin-top: 37px;
    border-radius: 99px;
    background: #0060A9;
}

@media (max-width:1180px) {
    .capability-numbers-container {
        grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
        gap: 58px;
    }

    .capability-stat-card {
        min-height: 345px;
        padding-inline: 28px;
    }

    .capability-stat-card::before {
        left: 28px;
        right: 28px;
    }
}

@media (max-width:900px) {
    .capability-numbers-section {
        padding: 86px 0 100px;
    }

    .capability-numbers-container {
        grid-template-columns: 1fr;
        gap: 82px;
    }

    .capability-statement {
        grid-row: 1;
        padding-left: 0;
        max-width: 760px;
    }

    .capability-cards {
        grid-row: 2;
    }

    .capability-statement p {
        max-width: 700px;
    }
}

@media (max-width:650px) {
    .capability-numbers-section {
        padding: 72px 0 78px;
    }

    .capability-numbers-container {
        width: 90%;
        gap: 52px;
    }

    .capability-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .capability-stat-card, .capability-stat-card-2, .capability-stat-card-4 {
        min-height: 0;
        transform: none;
    }

    .capability-stat-card {
        padding: 28px 25px 30px;
        border-radius: 24px;
    }

    .capability-stat-card::before {
        left: 25px;
        right: 25px;
    }

    .capability-stat-number {
        font-size: 68px;
    }

    .capability-statement h2 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .capability-statement p {
        font-size: 16px;
        line-height: 1.78;
    }
}

/*
=========================================================
HOME: MORE THAN A MANUFACTURER
=========================================================
*/

.brand-story-section {
    padding: 88px 0 76px;
    background: radial-gradient(circle at 100% 12%, rgba(0, 96, 169, .10), transparent 28%), #f4f5f6;
}

.brand-story-shell {
    width: 94%;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(460px, .92fr);
    gap: clamp(42px, 6vw, 96px);
    align-items: start;
}

.brand-story-content {
    min-width: 0;
    padding-top: 10px;
}

.brand-story-kicker {
    margin-bottom: 20px;
    color: #9a7a43;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

.brand-story-title {
    margin: 0 0 34px;
    color: #0f1821;
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 500;
    line-height: .92;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

.brand-story-title span {
    display: block;
}

.brand-story-title-accent {
    color: #b6945d;
}

.brand-story-copy {
    max-width: 820px;
}

.brand-story-copy p {
    margin: 0 0 24px;
    color: #55636f;
    font-size: 18px;
    line-height: 1.82;
}

.brand-story-copy p:last-child {
    margin-bottom: 0;
}

.brand-story-btn {
    margin-top: 34px;
    padding-inline: 34px;
    border-radius: 999px;
    background: #fff;
    color: #0f1821;
    border: 1px solid rgba(18, 35, 51, .12);
    box-shadow: 0 14px 28px rgba(18, 35, 51, .08);
}

.brand-story-btn:hover {
    background: #fff;
    color: #0f1821;
    transform: translateY(-2px);
}

.brand-story-visual {
    min-width: 0;
}

.brand-story-image-wrap {
    position: relative;
    min-height: 760px;
    padding-left: 24px;
    padding-bottom: 56px;
}

.brand-story-image {
    width: 100%;
    height: 100%;
    min-height: 760px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 28px 65px rgba(18, 35, 51, .14);
}

.brand-story-floating-card {
    position: absolute;
    left: -52px;
    bottom: 0;
    width: min(88%, 510px);
    padding: 34px 36px 32px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(15, 24, 33, .95), rgba(0, 72, 99, .96));
    box-shadow: 0 24px 52px rgba(18, 35, 51, .22);
}

.brand-story-card-kicker {
    margin-bottom: 16px;
    color: #0060A9;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.brand-story-floating-card h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(28px, 2.9vw, 46px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.brand-story-floating-card p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.72;
}

@media (max-width:1200px) {
    .brand-story-shell {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr);
        gap: 54px;
    }

    .brand-story-copy p, .brand-story-floating-card p {
        font-size: 17px;
    }

    .brand-story-image-wrap, .brand-story-image {
        min-height: 680px;
    }
}

@media (max-width:980px) {
    .brand-story-section {
        padding: 74px 0 64px;
    }

    .brand-story-shell {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .brand-story-content {
        order: 1;
    }

    .brand-story-visual {
        order: 2;
    }

    .brand-story-copy {
        max-width: none;
    }

    .brand-story-image-wrap {
        min-height: 0;
        padding-left: 0;
        padding-bottom: 0;
    }

    .brand-story-image {
        min-height: 520px;
    }

    .brand-story-floating-card {
        left: 26px;
        bottom: 26px;
        width: min(82%, 500px);
    }
}

@media (max-width:700px) {
    .brand-story-title {
        margin-bottom: 26px;
        font-size: clamp(42px, 16vw, 66px);
    }

    .brand-story-copy p {
        font-size: 16px;
        line-height: 1.76;
    }

    .brand-story-btn {
        margin-top: 28px;
        width: 100%;
        text-align: center;
    }

    .brand-story-image {
        min-height: 420px;
        border-radius: 26px;
    }

    .brand-story-floating-card {
        position: relative;
        left: 0;
        bottom: auto;
        width: 100%;
        margin-top: -56px;
        padding: 28px 24px 26px;
        border-radius: 24px;
    }

    .brand-story-floating-card h3 {
        font-size: 30px;
    }

    .brand-story-floating-card p {
        font-size: 16px;
        line-height: 1.65;
    }
}

/*
=========================================================
FINAL HOME BRAND-STORY + FEATURED PRODUCT OVERRIDES
=========================================================
*/

.brand-story-shell {
    align-items: stretch;
}

.brand-story-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-top: 0;
}

.brand-story-kicker {
    display: none !important;
}

.brand-story-title {
    margin: 0 0 28px;
    font-size: clamp(48px, 5.5vw, 82px);
    line-height: .94;
}

.brand-story-title span {
    display: block;
}

.brand-story-title-accent {
    color: #0060A9;
    font: inherit;
}

.brand-story-copy {
    max-width: 840px;
}

.brand-story-copy p {
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 1.8;
}

.brand-story-btn {
    align-self: flex-start;
    margin-top: 12px;
}

.brand-story-visual, .brand-story-image-wrap {
    min-width: 0;
    height: 100%;
}

.brand-story-image-wrap {
    position: relative;
    padding: 0;
}

.brand-story-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.brand-story-floating-card {
    left: -44px;
    bottom: 42px;
    width: min(76%, 430px);
    padding: 24px 28px;
}

.brand-story-card-kicker {
    margin-bottom: 12px;
    color: #0060A9;
    font-size: 12px;
}

.brand-story-floating-card h3 {
    margin-bottom: 12px;
    font-size: clamp(24px, 2.3vw, 34px);
}

.brand-story-floating-card p {
    font-size: 16px;
    line-height: 1.62;
}

/* Featured Products now uses the exact Product Showcase card language. */

.featured-products-section .container {
    width: 96%;
    max-width: 1464px;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 348px);
    gap: 34px 24px;
    justify-content: center;
    align-items: start;
}

.featured-products-section .product-card {
    width: 348px;
    height: 465px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 18px;
    background: #fff;
    box-shadow: none;
    transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

.featured-products-section .product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 96, 169, .48);
    box-shadow: 0 14px 34px rgba(0, 96, 169, .12);
}

.featured-products-section .product-card > img {
    width: 348px;
    height: 330px;
    flex: 0 0 330px;
    object-fit: cover;
    transition: transform .45s ease;
}

.featured-products-section .product-card:hover > img {
    transform: scale(1.015);
}

.featured-products-section .product-content {
    height: 135px;
    flex: 0 0 135px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 18px 18px 19px;
    text-align: left;
}

.featured-products-section .product-tag {
    order: 1;
    display: block;
    margin: 0 0 7px;
    color: #0060A9;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .45px;
    text-transform: uppercase;
}

.featured-products-section .product-content h3 {
    order: 2;
    margin: 0 0 7px;
    color: #123;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.featured-products-section .product-content .product-features {
    order: 3;
    display: block;
    margin: 0;
    color: #666;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.45;
}

@media (max-width:1180px) {
    .featured-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .featured-products-section .product-card, .featured-products-section .product-card > img {
        width: 100%;
    }
}

@media (max-width:900px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, minmax(0, 348px));
    }

    .brand-story-floating-card {
        left: 26px;
        bottom: 26px;
        width: min(74%, 420px);
        padding: 22px 24px;
    }
}

@media (max-width:600px) {
    .featured-products-grid {
        grid-template-columns: minmax(0, 348px);
    }

    .featured-products-section .product-card {
        height: 465px;
    }

    .featured-products-section .product-card > img {
        height: 330px;
        flex-basis: 330px;
    }

    .featured-products-section .product-content {
        height: 135px;
        flex-basis: 135px;
    }
}

/*
=========================================================
PRODUCT IMAGE AREA — UNIFIED 330 × 330 SQUARE
=========================================================
*/

.product-showcase-section .product-card, .featured-products-section .product-card {
    align-items: center;
}

.product-showcase-section .product-card > img, .featured-products-section .product-card > img {
    width: 330px;
    height: 330px;
    flex: 0 0 330px;
    max-width: 330px;
    object-fit: cover;
}

.product-showcase-section .product-content, .featured-products-section .product-content {
    width: 100%;
}

@media (max-width:380px) {
    .product-showcase-section .product-card > img, .featured-products-section .product-card > img {
        width: 100%;
        max-width: 330px;
        height: auto;
        aspect-ratio: 1 / 1;
        flex-basis: auto;
    }
}

/*
=========================================================
PRODUCT SHOWCASE FILTER — MUTED BLUE PALETTE
=========================================================
*/

.filter-btn {
    border-color: rgba(54, 94, 117, .26);
    background: #fff;
    color: #1f3442;
    box-shadow: 0 10px 24px rgba(31, 52, 66, .07);
}

.filter-btn::before {
    background: linear-gradient(135deg, #365E75 0%, #52778D 100%);
}

.filter-btn:hover {
    border-color: rgba(54, 94, 117, .52);
    box-shadow: 0 16px 32px rgba(54, 94, 117, .14);
}

.filter-btn.active {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(54, 94, 117, .22);
}

.filter-btn:focus-visible {
    outline-color: rgba(54, 94, 117, .24);
}

/*
=========================================================
MOVED FROM HTML: PAGE-SPECIFIC STYLES
=========================================================
*/

/* Source: contact.html */

/* Contact page additions: company gallery and factory/map layout */

.contact-purpose-list {
    margin: 18px 0 22px;
    padding-left: 24px;
    color: #555;
}

.contact-purpose-list li {
    margin-bottom: 12px;
    padding-left: 4px;
    font-size: 17px;
    line-height: 1.7;
}

.contact-purpose-list li::marker {
    color: #000;
}

.contact-purpose-list strong {
    color: #123;
}

.company-gallery-section {
    padding: 20px 0 90px;
}

.company-gallery-wrap {
    width: calc(100% - 32px);
    margin: 0 auto;
}

.company-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.company-image-slot {
    display: block;
    width: 100%;
    min-height: 280px;
    aspect-ratio: 4 / 3;
    border: 0;
    border-radius: 24px;
    object-fit: cover;
    background-color: #eef3f7;
    box-shadow: 0 10px 28px rgba(18, 35, 51, 0.10);
}

.factory-visit .factory-visit-grid {
    display: grid;
    grid-template-columns: minmax(280px, 3fr) minmax(0, 7fr);
    gap: 24px;
    align-items: stretch;
}

.factory-visit .factory-text, .factory-visit .map {
    height: 100%;
    margin: 0;
}

.factory-visit .factory-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.factory-visit .factory-text h3 {
    margin: 10px 0 12px;
    color: #0077c8;
    font-size: 25px;
    line-height: 1.25;
}

.factory-visit .factory-text p:last-child {
    margin-bottom: 0;
}

.factory-visit .map iframe {
    height: 100%;
    min-height: 520px;
}

@media (max-width: 1000px) {
    .company-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .factory-visit .factory-visit-grid {
        grid-template-columns: 1fr;
    }

    .factory-visit .map iframe {
        min-height: 430px;
    }
}

@media (max-width: 600px) {
    .company-gallery-wrap {
        width: calc(100% - 20px);
    }

    .company-gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .company-image-slot {
        min-height: 220px;
        border-radius: 18px;
    }
}
