/* ==========================================================================
   KTEX Nonwovens — site styles
   Layered on top of Bootstrap 5.3 via CDN. No build step.
   ========================================================================== */

:root {
    /* --- KTEX brand palette ----------------------------------------------- */
    /* Neutrals re-tinted to forest-charcoal (green-grey) for the Forest/Teal palette.
       Names kept as --ktex-slate-* so no selector changes are needed. */
    --ktex-slate-50:  #F1F5F2;
    --ktex-slate-100: #E1E8E3;
    --ktex-slate-200: #C3CEC7;
    --ktex-slate-300: #98A89E;
    --ktex-slate-400: #6B7E72;
    --ktex-slate-500: #3B463F;
    --ktex-slate-600: #2D3832;
    --ktex-slate-700: #1E2A26;
    --ktex-slate-800: #142019;
    --ktex-slate-900: #0A130F;

    /* Forest/Teal brand: bright end = lime accent, dark end = deep teal brand. */
    --ktex-green-50:  #F1FAE6;
    --ktex-green-100: #DDF2C4;
    --ktex-green-200: #C0E892;
    --ktex-green-300: #A1D95C;
    --ktex-green-400: #84CC16;  /* accent — lime */
    --ktex-green-500: #5E9E12;
    --ktex-green-600: #4D7C0F;  /* accent — moss */
    --ktex-green-700: #1C5249;  /* bridge toward teal */
    --ktex-green-800: #0F3D38;  /* brand — deep teal-green */
    --ktex-green-900: #0A2D29;  /* brand — deepest */

    --ktex-cyan-50:  #E8F8FD;
    --ktex-cyan-100: #C8EFFA;
    --ktex-cyan-200: #98E1F4;
    --ktex-cyan-300: #6CD4ED;
    --ktex-cyan-400: #52C8EA;
    --ktex-cyan-500: #2BB1D6;
    --ktex-cyan-600: #1F8AAA;
    --ktex-cyan-700: #176880;
    --ktex-cyan-800: #0F4555;
    --ktex-cyan-900: #08232B;

    /* --- Forest/Teal brand semantic tokens (palette C) -------------------- */
    --ktex-brand:       var(--ktex-green-800);  /* #0F3D38 deep teal-green */
    --ktex-brand-deep:  var(--ktex-green-900);  /* #0A2D29 hover/darker */
    --ktex-accent:      var(--ktex-green-400);  /* #84CC16 lime */
    --ktex-accent-deep: var(--ktex-green-600);  /* #4D7C0F moss */
    --ktex-accent-grad: linear-gradient(135deg, var(--ktex-green-400), var(--ktex-green-600));
    --ktex-bg:          #F4F6F2;                /* warm off-white canvas */
    --ktex-surface:     #FFFFFF;
    --ktex-footer-bg:   #0A2622;                /* deep footer */

    /* --- Bootstrap theme overrides --------------------------------------- */
    --bs-body-font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --bs-body-color: var(--ktex-slate-700);
    --bs-body-bg: var(--ktex-bg);
    --bs-heading-color: var(--ktex-slate-700);
    --bs-link-color: var(--ktex-green-700);
    --bs-link-hover-color: var(--ktex-brand);
    --bs-border-color: #E4E8E3;
    --bs-primary: var(--ktex-brand);
    --bs-primary-rgb: 15, 61, 56;
    --bs-success: var(--ktex-green-400);
    --bs-success-rgb: 103, 189, 93;
    --bs-info: var(--ktex-cyan-400);
    --bs-info-rgb: 82, 200, 234;
    --bs-border-radius: .75rem;
    --bs-border-radius-sm: .5rem;
    --bs-border-radius-lg: 1rem;

    /* --- Motion system tokens (scroll reveal) ---------------------------- */
    --reveal-dur:  .8s;
    --reveal-ease: cubic-bezier(.215, .61, .355, 1);
}

/* --- Typography --------------------------------------------------------- */
body {
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
    font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
    letter-spacing: -0.01em;
    font-weight: 600;
    line-height: 1.15;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .75rem;
    font-weight: 600;
    color: var(--ktex-green-500);
}

.lead-muted {
    color: var(--ktex-slate-400);
    font-size: 1.125rem;
}
.container-fluid{
    max-width: 90%!important;
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
    font-weight: 500;
    border-radius: .5rem;
    padding: .65rem 1.25rem;
}

.btn-ktex {
    background: var(--ktex-brand);
    color: #fff;
    border: 1px solid transparent;
}

.btn-ktex:hover, .btn-ktex:focus {
    background: var(--ktex-brand-deep);
    color: #fff;
}

.btn-ktex-outline {
    background: transparent;
    color: var(--ktex-slate-700);
    border: 1px solid var(--ktex-slate-300);
}

.btn-ktex-outline:hover {
    background: var(--ktex-slate-700);
    color: #fff;
    border-color: var(--ktex-slate-700);
}

.btn-ktex-dark {
    background: var(--ktex-slate-700);
    color: #fff;
    border: 1px solid var(--ktex-slate-700);
}

.btn-ktex-dark:hover {
    background: var(--ktex-slate-800);
    color: #fff;
}

/* --- Navbar ------------------------------------------------------------- */
.navbar-ktex {
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.navbar-ktex.is-scrolled {
    border-bottom-color: var(--bs-border-color);
    box-shadow: 0 1px 0 rgba(15,17,20,.02);
}

.navbar-ktex .navbar-brand {
    padding: .25rem 0;
    display: inline-flex;
    align-items: center;
}

.navbar-brand__logo {
    height: 4rem;
    width: auto;
    display: block;
}

@media (max-width: 575.98px) {
    .navbar-brand__logo { height: 36px; }
}

.navbar-ktex .nav-link {
    color: var(--ktex-slate-600) !important;
    font-weight: 500;
    padding: .5rem .9rem !important;
    position: relative;
}

.navbar-ktex .nav-link:hover,
.navbar-ktex .nav-link.active {
    color: var(--ktex-slate-900) !important;
}

.navbar-ktex .nav-link.active::after {
    content: '';
    position: absolute;
    left: .9rem;
    right: .9rem;
    bottom: .1rem;
    height: 2px;
    background: var(--ktex-green-400);
    border-radius: 2px;
}

.nav-link--has-caret i {
    margin-left: .2rem;
    font-size: .75rem;
    transition: transform .2s ease;
}

.has-mega.is-open .nav-link--has-caret i {
    transform: rotate(180deg);
}

/* --- Mega-menu dropdown ------------------------------------------------- */
@media (min-width: 992px) {
    .has-mega { position: static; }

    .mega-panel {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--bs-border-color);
        box-shadow: 0 24px 48px -16px rgba(15,17,20,.15);
        z-index: 1040;
        padding: 1.75rem 0 2rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
    }

    .has-mega.is-open .mega-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 0s;
    }

    .mega-panel--narrow .mega-panel__inner {
        max-width: 760px;
        margin-left: auto;
    }

    .mega-panel__intro h5 {
        font-size: 1.05rem;
        color: var(--ktex-slate-800);
    }

    .mega-link {
        display: flex;
        align-items: flex-start;
        gap: .85rem;
        padding: .65rem .85rem;
        border-radius: .65rem;
        text-decoration: none;
        color: var(--ktex-slate-700);
        transition: background .15s ease;
        border: 1px solid transparent;
    }

    .mega-link:hover,
    .mega-link:focus {
        background: var(--ktex-slate-50);
        border-color: var(--bs-border-color);
        color: var(--ktex-slate-700);
    }

    .mega-link__icon {
        flex: 0 0 auto;
        width: 38px;
        height: 38px;
        border-radius: .55rem;
        display: grid;
        place-items: center;
        background: var(--ktex-slate-50);
        color: var(--ktex-slate-600);
        font-size: 1rem;
    }

    .mega-link__icon[data-accent="green"] {
        background: var(--ktex-green-50);
        color: var(--ktex-green-600);
    }

    .mega-link__icon[data-accent="cyan"] {
        background: var(--ktex-cyan-50);
        color: var(--ktex-cyan-600);
    }

    .mega-link__title {
        font-weight: 600;
        font-size: .95rem;
        display: inline-flex;
        align-items: center;
        gap: .4rem;
    }

    .mega-link__badge {
        display: inline-block;
        font-size: .65rem;
        font-weight: 700;
        letter-spacing: .08em;
        padding: 1px 6px;
        border-radius: 4px;
        background: var(--ktex-green-100);
        color: var(--ktex-green-700);
    }

    .mega-link__sub {
        font-size: .82rem;
        color: var(--ktex-slate-400);
        margin-top: 1px;
    }
}

/* --- Mobile collapse menus inside offcanvas ----------------------------- */
.mobile-collapse__trigger {
    background: transparent;
    border: none;
    text-align: left;
    color: var(--ktex-slate-700) !important;
    font-weight: 500;
}

.mobile-collapse__trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-collapse__trigger i {
    transition: transform .2s ease;
}

/* --- Hero video --------------------------------------------------------- */
.hero-video {
    position: relative;
    /* Full viewport height. The -72px margin-top swallows the navbar spacer so
       the hero fills the screen with the translucent navbar overlaying it. */
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(160deg, var(--ktex-brand) 0%, var(--ktex-brand-deep) 100%);
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-video {
        height: 100svh;
    }
}

.hero-video__media,
.hero-video__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video__media {
    opacity: 0;
    transition: opacity 600ms ease;
}

.hero-video__media.is-ready {
    opacity: 1;
}

.hero-video__poster {
    opacity: 1;
    transition: opacity 600ms ease;
    background-color: var(--ktex-brand-deep);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-video__media.is-ready ~ .hero-video__poster {
    opacity: 0;
}

.hero-video__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(7,29,26,.82) 0%, rgba(7,29,26,.34) 48%, rgba(7,29,26,.08) 100%),
        linear-gradient(0deg, rgba(7,29,26,.70) 0%, rgba(7,29,26,0) 42%);
    z-index: 1;
}

.hero-video__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 0 clamp(2.5rem, 6vh, 5rem);
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ktex-green-300);
    margin-bottom: .85rem;
}

.hero-video__content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.75rem);
    color: #fff;
    font-weight: 600;
    max-width: 18ch;
}

.hero-video__content p {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: rgba(255,255,255,.85);
    max-width: 56ch;
    margin-top: 1.25rem;
}

.hero-video__mute {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(0,0,0,.35);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s ease;
}

.hero-video__mute:hover {
    background: rgba(0,0,0,.55);
}

/* --- Section utilities -------------------------------------------------- */
section {
    padding: 5.5rem 0;
}

@media (max-width: 768px) {
    section { padding: 3.5rem 0; }
}

.section-soft {
    background: var(--ktex-slate-50);
}

.section-dark {
    background: var(--ktex-slate-700);
    color: #fff;
}

.section-dark h1, .section-dark h2, .section-dark h3 {
    color: #fff;
}

.section-divider {
    height: 1px;
    background: var(--bs-border-color);
    margin: 0;
}

/* --- Mission / Purpose band -------------------------------------------- */
.mission {
    background: var(--ktex-surface);
}

.mission__lead {
    font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    line-height: 1.2;
    color: var(--ktex-slate-800);
    margin: 0;
    max-width: 24ch;
}

.mission__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--ktex-slate-400);
    max-width: 50ch;
}

/* --- Numbered card grid (markets / segments) --------------------------- */
.num-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
}

.num-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--ktex-surface);
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--ktex-slate-700);
    transition: transform .35s var(--hover-ease, cubic-bezier(.16, 1, .3, 1)),
                box-shadow .35s ease, border-color .35s ease;
}

.num-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -24px rgba(10, 38, 34, .35);
    border-color: var(--ktex-green-200);
}

.num-card__media {
    aspect-ratio: 4 / 3;
    background-color: var(--ktex-slate-100);
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}

.num-card:hover .num-card__media {
    transform: scale(1.06);
}

.num-card__num {
    position: absolute;
    top: .4rem;
    left: .75rem;
    z-index: 1;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    color: #fff;
    opacity: .9;
    text-shadow: 0 2px 14px rgba(7, 29, 26, .45);
}

.num-card__body {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    flex: 1;
    padding: 1.1rem 1.15rem 1.25rem;
}

.num-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    color: var(--ktex-slate-800);
}

.num-card__text {
    font-size: .92rem;
    color: var(--ktex-slate-400);
    margin: 0;
    flex: 1;
}

.num-card__link {
    margin-top: .65rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--ktex-brand);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.num-card__link i {
    transition: transform .2s ease;
}

.num-card:hover .num-card__link i {
    transform: translateX(4px);
}

/* --- INDEX 2026 prompt -------------------------------------------------- */
.index-prompt {
    background: linear-gradient(135deg, var(--ktex-slate-50) 0%, #ffffff 60%);
    border-top: 1px solid var(--bs-border-color);
    border-bottom: 1px solid var(--bs-border-color);
}

.index-prompt__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .85rem;
    border-radius: 999px;
    background: var(--ktex-green-50);
    color: var(--ktex-green-700);
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.index-prompt__image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -20px rgba(15,17,20,.20);
}

.index-prompt__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Tech / Market card with bottom-sheet ------------------------------- */
.tech-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--ktex-slate-700);
    color: #fff;
    text-decoration: none;
    isolation: isolate;
}

.tech-card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 600ms ease;
}

/* Fallback gradient that shows only if no image is set inline. Using
   background-image (not the `background` shorthand) so the inline
   background-image declared on a per-card basis overrides only the
   image while preserving size/position from the base rule. */
.tech-card[data-accent="slate"] .tech-card__image {
    background-color: #2b3138;
    background-image: linear-gradient(135deg, #2b3138 0%, #4a525c 100%);
}

.tech-card[data-accent="green"] .tech-card__image {
    background-color: #1f3a1c;
    background-image: linear-gradient(135deg, #1f3a1c 0%, #4FA546 100%);
}

.tech-card[data-accent="cyan"] .tech-card__image {
    background-color: #0F4555;
    background-image: linear-gradient(135deg, #0F4555 0%, #2BB1D6 100%);
}

.tech-card:hover .tech-card__image {
    transform: scale(1.04);
}

.tech-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.65) 100%);
    z-index: 1;
}

.tech-card__top {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.tech-card__badge {
    display: inline-block;
    padding: .25rem .65rem;
    border-radius: 999px;
    background: var(--ktex-green-400);
    color: var(--ktex-slate-900);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tech-card__bottom {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
}

.tech-card__bottom h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.tech-card__bottom p {
    margin: .25rem 0 0;
    color: rgba(255,255,255,.78);
    font-size: .9rem;
}

.tech-card__sheet {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: #fff;
    color: var(--ktex-slate-700);
    padding: 1.5rem;
    border-radius: 1.25rem 1.25rem 0 0;
    transform: translateY(100%);
    transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
    min-height: 60%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.tech-card:hover .tech-card__sheet,
.tech-card:focus-visible .tech-card__sheet,
.tech-card.is-open .tech-card__sheet {
    transform: translateY(0);
}

.tech-card__sheet h3 {
    margin: 0;
    color: var(--ktex-slate-700);
    font-size: 1.35rem;
}

.tech-card__sheet p {
    margin: 0;
    font-size: .92rem;
    color: var(--ktex-slate-500);
}

.tech-card__sheet .more {
    margin-top: auto;
    align-self: flex-start;
    color: var(--ktex-green-600);
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

@media (hover: none) {
    .tech-card__bottom { opacity: 1; }
    .tech-card:not(.is-open) .tech-card__sheet { transform: translateY(100%); }
}

/* --- Markets carousel: larger, landscape cards (H3a) -------------------- */

.market-carousel .tech-card__bottom h3 {
    font-size: 1.7rem;
}

.market-carousel .tech-card__sheet {
    min-height: 55%;
}

@media (max-width: 575.98px) {
    .market-carousel .tech-card {
        aspect-ratio: 5 / 4;
    }
}
.swiper-wrapper{
    height: auto!important;
}

/* --- Swiper customisations ---------------------------------------------- */
.swiper {
    padding: .5rem .25rem 2.5rem !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--ktex-slate-700) !important;
    background: #fff;
    width: 44px !important;
    height: 44px !important;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(15,17,20,.10);
    transition: transform .15s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: scale(1.05);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.1rem !important;
    font-weight: 700;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--ktex-slate-300);
    opacity: 1;
    transition: width .2s ease, background .2s ease;
}

.swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 4px;
    background: var(--ktex-green-400);
}

/* --- BICO highlight ----------------------------------------------------- */
.bico-highlight {
    border-bottom: 1px solid var(--bs-border-color);
}

.bico-highlight__claim {
    color: var(--ktex-green-600);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bico-highlight__heading {
    font-size: clamp(1.9rem, 3.6vw, 2.75rem);
    margin: .5rem 0 1.25rem;
    color: var(--ktex-slate-800);
    font-weight: 600;
}

.bico-highlight__image {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.bico-highlight__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* --- CTA band ----------------------------------------------------------- */
.cta-band {
    background: var(--ktex-slate-700);
    color: #fff;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
}

.cta-band h2 {
    color: #fff;
    margin-bottom: 1rem;
}

/* --- LinkedIn connect band (H4) ----------------------------------------- */
/* Diagonal split panel: forest-green content side, factory photo side cut by
   a straight diagonal seam (clip-path on .__media, (16,0)→(0,100) in seam-box
   coords); .__seam is an SVG tracing the same edge with two lime segments.
   Entrance + hover motion is GSAP in the component's inline script; the .js
   opacity gate at the end of this section hides the panel only until it runs. */
.linkedin-band__panel {
    position: relative;
    display: flex;
    align-items: center;
    background: #073130; /* flat forest green — matches the client banner */
    border-radius: 2rem;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 32px 64px -32px rgba(10, 45, 41, .5);
}

/* Faint diagonal banding across the dark side. */
.linkedin-band__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(115deg,
        rgba(255, 255, 255, .025) 0 2px, transparent 2px 26px);
    pointer-events: none;
}

.linkedin-band__glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 85%;
    z-index: 0;
    background: radial-gradient(closest-side, rgba(132, 204, 22, .16), transparent 72%);
    pointer-events: none;
}

.linkedin-band__body {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.35rem;
    padding: clamp(2rem, 5vw, 4.5rem);
}

.linkedin-band__eyebrow {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .8rem;
    font-weight: 600;
    color: #6FBA1F; /* lime — matches banner eyebrow */
}

.linkedin-band__eyebrow-dash {
    width: 56px;
    height: 4px;
    border-radius: 2px;
    background: #6FBA1F;
    transform-origin: left center;
}

.linkedin-band__title {
    margin: 0;
    max-width: 26ch;
    font-size: clamp(1.5rem, 2.35vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.25;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .25);
}

/* Word sleeves for the staggered title reveal (created by JS). The padding /
   negative-margin pair keeps descenders from being clipped by overflow. */
.linkedin-band__word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: .1em;
    margin-bottom: -.1em;
}

.linkedin-band__word-inner {
    display: inline-block;
    will-change: transform;
}

.linkedin-band__copy {
    margin: 0;
    max-width: 25ch;
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, .85);
}

.linkedin-band__hl {
    color: var(--ktex-green-400);
    font-weight: 600;
}

.linkedin-band__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-top: .4rem;
    padding: .6rem 1.6rem .6rem .65rem;
    border-radius: 1.1rem;
    font-size: 1.05rem;
    background: #fff;
    color: #0C2B29;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .45);
    /* transform is GSAP-owned (magnetic hover) — no transition on it here. */
    transition: box-shadow .3s ease, color .3s ease;
    will-change: transform;
}

.linkedin-band__cta:hover,
.linkedin-band__cta:focus-visible {
    color: var(--ktex-green-800);
    box-shadow: 0 22px 44px -16px rgba(0, 0, 0, .55);
}

.linkedin-band__cta:focus-visible {
    outline: 3px solid var(--ktex-green-400);
    outline-offset: 3px;
}

.linkedin-band__cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: .55rem;
    background: #0C2B29; /* near-black square, per banner */
    color: #fff;
    font-size: 1.25rem;
}

.linkedin-band__cta-arrow {
    display: inline-flex;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateX(-6px);
    transition: width .3s ease, opacity .3s ease, transform .3s ease;
    color: var(--ktex-green-600);
}

.linkedin-band__cta:hover .linkedin-band__cta-arrow,
.linkedin-band__cta:focus-visible .linkedin-band__cta-arrow {
    width: 1.1rem;
    opacity: 1;
    transform: translateX(0);
}

.linkedin-band__features {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.linkedin-band__feature {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .55rem;
    padding: .25rem 1rem;
}

.linkedin-band__feature + .linkedin-band__feature {
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.linkedin-band__feature-icon {
    display: inline-flex;
    color: rgba(255, 255, 255, .92);
    transition: color .3s ease;
    will-change: transform;
}

.linkedin-band__feature-icon svg {
    width: 2.1rem;
    height: 2.1rem;
    display: block;
}

.linkedin-band__feature:hover .linkedin-band__feature-icon {
    color: var(--ktex-green-400);
}

.linkedin-band__feature-label {
    max-width: 9em;
    font-size: clamp(.82rem, 1vw, .95rem);
    font-weight: 500;
    line-height: 1.35;
    color: rgba(255, 255, 255, .9);
}

.linkedin-band__media {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: var(--ktex-green-900);
}

.linkedin-band__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

/* Legibility scrims: seam-side blend into the dark panel + bottom scrim
   behind the ribbon. Top-right stays bright so the logo lockup reads. */
.linkedin-band__media-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10, 45, 41, .35) 0%, transparent 22%),
        linear-gradient(15deg, rgba(10, 45, 41, .4) 0%, transparent 34%);
    pointer-events: none;
}

/* Logo lockup directly on the photo (no card), soft white halo for
   legibility on any image. */
.linkedin-band__brand {
    position: absolute;
    top: clamp(1rem, 2.4vw, 2rem);
    right: clamp(1rem, 2.6vw, 2.25rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .45rem;
    will-change: transform;
}

.linkedin-band__brand::before {
    content: "";
    position: absolute;
    inset: -22% -18%;
    background: radial-gradient(closest-side, rgba(255, 255, 255, .8), rgba(255, 255, 255, 0) 78%);
    filter: blur(6px);
    border-radius: 50%;
    z-index: -1;
}

.linkedin-band__brand-logo {
    display: block;
    width: clamp(110px, 11vw, 170px);
    height: auto;
}

.linkedin-band__brand-tag {
    font-size: clamp(.55rem, .7vw, .68rem);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--ktex-slate-700);
}

.linkedin-band__brand-tag i {
    font-style: normal;
    padding: 0 .15em;
    color: var(--ktex-green-500);
}

.linkedin-band__ribbon {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1rem 1.6rem 1rem 2.6rem;
    background: linear-gradient(100deg, var(--ktex-green-900), var(--ktex-green-800));
    clip-path: polygon(2.4rem 0, 100% 0, 100% 100%, 0 100%);
    will-change: transform;
}

.linkedin-band__ribbon-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    background: rgba(10, 45, 41, .45);
    color: #fff;
    font-size: 1.05rem;
}

.linkedin-band__ribbon-text {
    margin: 0;
    max-width: 20ch;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1.4;
    text-transform: uppercase;
    color: #fff;
}

.linkedin-band__ribbon-text span {
    color: var(--ktex-green-400);
}

/* Lime accent segments along the diagonal seam — same box as .__media. */
.linkedin-band__seam {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58%;
    height: 100%;
    z-index: 2;
    overflow: visible;
    pointer-events: none;
}

@media (min-width: 992px) {
    .linkedin-band__panel {
        min-height: clamp(440px, 38vw, 560px);
    }

    .linkedin-band__body {
        width: 47%;
        flex: 0 0 auto;
        padding-right: 1rem;
    }

    .linkedin-band__feature:first-child {
        padding-left: 0;
    }

    .linkedin-band__media {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 58%;
        clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
    }

    .linkedin-band__seam {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .linkedin-band__panel {
        flex-direction: column;
        align-items: stretch;
    }

    .linkedin-band__media {
        order: -1;
        height: min(60vw, 320px);
    }

    .linkedin-band__features {
        flex-wrap: wrap;
        row-gap: 1.1rem;
    }

    .linkedin-band__feature {
        flex: 1 1 40%;
    }

    .linkedin-band__feature + .linkedin-band__feature {
        border-left: none;
    }

    .linkedin-band__feature:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, .16);
    }

    .linkedin-band__ribbon {
        padding: .7rem 1.1rem .7rem 1.7rem;
    }

    .linkedin-band__ribbon-text {
        font-size: .68rem;
    }
}

/* Pre-GSAP gate — hide only while JS is on and motion is allowed; the
   component adds --static when GSAP can't run or motion is reduced. */
.js .linkedin-band:not(.linkedin-band--static) .linkedin-band__panel {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .js .linkedin-band .linkedin-band__panel {
        opacity: 1 !important;
    }
}

/* --- Industry memberships — EDANA & INDA (H5) -------------------------- */
.memberships__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.membership-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.75rem;
    background: var(--ktex-surface);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    text-decoration: none;
    color: var(--ktex-slate-700);
    transition: box-shadow .3s ease, transform .3s ease;
}

.membership-card:hover {
    box-shadow: 0 12px 30px rgba(10, 45, 41, .1);
    transform: translateY(-2px);
    color: var(--ktex-slate-700);
}

.membership-card__logo {
    flex: 0 0 84px;
    width: 84px;
    height: 84px;
    border-radius: .75rem;
    background: var(--ktex-green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ktex-green-700);
    font-weight: 700;
    font-size: 1.6rem;
    overflow: hidden;
}

.membership-card__logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.membership-card__name {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.membership-card__full {
    margin: .1rem 0 .6rem;
    font-size: .85rem;
    color: var(--ktex-slate-400);
}

.membership-card__desc {
    margin: 0;
    font-size: .92rem;
    color: var(--ktex-slate-500);
}

.membership-card__since {
    display: inline-block;
    margin-top: .75rem;
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ktex-green-700);
    background: var(--ktex-green-50);
}

@media (max-width: 767.98px) {
    .memberships__grid { grid-template-columns: 1fr; }
    .membership-card { flex-direction: column; }
}

/* --- Section with background image (A7 — CSR, reusable) ---------------- */
.section--media {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.section--media__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.section--media__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 45, 41, .93) 0%, rgba(10, 45, 41, .74) 55%, rgba(10, 45, 41, .55) 100%);
}

.section--media__content {
    position: relative;
    z-index: 1;
}

.section--media__content .lead-light {
    color: #fff;
}

.section--media__content .body-light {
    color: rgba(255, 255, 255, .82);
}

/* --- Newsroom exhibition cards (N0 / N1 / N2) ------------------------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem;
    background: var(--ktex-surface);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
}

.news-card--featured {
    border-color: var(--ktex-green-300);
    box-shadow: 0 16px 40px -28px rgba(10, 45, 41, .5);
}

.news-card__head {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.news-card__logo {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    border-radius: .65rem;
    background: var(--ktex-green-50);
    color: var(--ktex-green-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    overflow: hidden;
}

.news-card__logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Event logo tile — real event logos are opaque, mixed-background lockups
   (red / white / black), so present them on a neutral white plate sized to
   the wordmark instead of the monogram chip. Shared look with the footer. */
.news-card__logo--image {
    flex: 0 0 auto;
    width: auto;
    min-width: 60px;
    max-width: 120px;
    padding: .45rem .6rem;
    background: #fff;
    border: 1px solid rgba(15, 61, 56, .1);
}
.news-card__logo--image img {
    max-width: 100%;
    max-height: 100%;
}

.news-card__name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.news-card__meta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .9rem;
    color: var(--ktex-slate-400);
}

.news-card__dot {
    opacity: .6;
}

.news-card__booth {
    display: inline-block;
    margin-top: .4rem;
    padding: .15rem .55rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--ktex-green-700);
    background: var(--ktex-green-50);
}

.news-card__desc {
    margin: 0;
    color: var(--ktex-slate-500);
    font-size: .95rem;
    line-height: 1.6;
}

/* Gallery trigger — the photo grid is a <button> that opens the modal
   carousel. Reset the native button chrome, keep the thumbnail grid, and add
   a clear "View gallery" cue so it reads as clickable. */
.news-card__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24%, 1fr));
    gap: .6rem;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.news-card__thumb {
    display: block;
    overflow: hidden;
    border-radius: .5rem;
}

.news-card__thumb img {
    display: block;
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform .4s ease;
}

.news-card__gallery:hover .news-card__thumb img,
.news-card__gallery:focus-visible .news-card__thumb img {
    transform: scale(1.05);
}

.news-card__gallery-cue {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--ktex-green-700);
    transition: color .2s ease;
}

.news-card__gallery-cue i { font-size: 1rem; }

.news-card__gallery:hover .news-card__gallery-cue,
.news-card__gallery:focus-visible .news-card__gallery-cue {
    color: var(--ktex-green-800);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.news-card__gallery:focus-visible {
    outline: 2px solid var(--ktex-green-400);
    outline-offset: 3px;
    border-radius: .6rem;
}

/* Gallery modal — Bootstrap carousel. Contain photos on a brand-dark plate so
   portrait and landscape shots letterbox cleanly instead of being cropped. */
.news-gallery-modal .modal-content {
    overflow: hidden;
    border: 0;
}

.news-gallery-modal .carousel-item img {
    height: min(70vh, 560px);
    object-fit: contain;
    background: var(--ktex-green-900);
}

@media (max-width: 575.98px) {
    .news-gallery-modal .carousel-item img { height: 60vh; }
}

.news-card__invite img {
    width: 100%;
    border-radius: .6rem;
}

@media (max-width: 767.98px) {
    .news-grid { grid-template-columns: 1fr; }
}

/* --- Leadership carousel (A5) ----------------------------------------- */
.leader-card {
    margin: 0;
    height: 100%;
    background: var(--ktex-surface);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    overflow: hidden;
}

.leader-card__photo {
    aspect-ratio: 4 / 5;
    background-color: var(--ktex-slate-100);
    background-size: cover;
    background-position: center;
}

.leader-card__body {
    padding: 1.25rem 1.35rem 1.5rem;
}

.leader-card__name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.leader-card__title {
    margin: .1rem 0 .6rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--ktex-green-700);
}

.leader-card__bio {
    margin: 0;
    font-size: .9rem;
    color: var(--ktex-slate-500);
    line-height: 1.6;
}

/* --- Page hero ---------------------------------------------------------- */
.page-hero {
    position: relative;
    background: linear-gradient(180deg, var(--ktex-slate-50) 0%, #ffffff 100%);
    padding: 8rem 0 4.5rem;
    border-bottom: 1px solid var(--bs-border-color);
    overflow: hidden;
    isolation: isolate;
}

.page-hero__inner { position: relative; z-index: 2; }

.page-hero__kicker {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .75rem;
    color: var(--ktex-green-500);
    font-weight: 700;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin: .85rem 0 1rem;
}

.page-hero p {
    color: var(--ktex-slate-400);
    font-size: 1.125rem;
    max-width: 60ch;
}

/* --- Page hero with background photo ---------------------------------- */
.page-hero.page-hero--media {
    background: var(--ktex-slate-900);
    border-bottom: 0;
    padding: 10rem 0 6rem;
    color: #fff;
}

.page-hero--media .page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1.04);
    /* tiny zoom so edges don't bleed past gradient on narrow viewports */
}

.page-hero--media .page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(14, 17, 20, .78) 0%, rgba(14, 17, 20, .55) 55%, rgba(14, 17, 20, .72) 100%);
}

.page-hero--media h1          { color: #fff; }
.page-hero--media p           { color: rgba(255, 255, 255, .88); max-width: 64ch; }
.page-hero--media .page-hero__kicker {
    color: var(--ktex-green-400);
    display: inline-block;
    background: rgba(255, 255, 255, .08);
    padding: .35rem .75rem;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

/* --- Hygiene sub-page heroes: horizontal gradient + exact photo framing
   (matches the client mockups; per-image focal crop comes from bg_position). --- */
.page-hero--hygiene .page-hero__bg {
    transform: none; /* honour the exact background-position, no zoom */
}
.page-hero--hygiene .page-hero__overlay {
    background: linear-gradient(90deg,
        rgba(10, 32, 30, .78) 0%,
        rgba(10, 32, 30, .45) 46%,
        rgba(10, 32, 30, .12) 100%);
}

@media (max-width: 768px) {
    .page-hero.page-hero--media { padding: 8rem 0 4rem; }
}

/* --- Spec table --------------------------------------------------------- */
.spec-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border: 1px solid var(--bs-border-color);
    border-radius: .75rem;
    overflow: hidden;
}

.spec-table th,
.spec-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--bs-border-color);
    vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
    border-bottom: 0;
}

.spec-table th {
    width: 35%;
    background: var(--ktex-slate-50);
    color: var(--ktex-slate-700);
    font-weight: 600;
    text-align: left;
}

/* --- Application chips -------------------------------------------------- */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: var(--ktex-slate-50);
    color: var(--ktex-slate-700);
    font-size: .85rem;
    font-weight: 500;
    border: 1px solid var(--bs-border-color);
}

/* Green tick on product-type / application chips (matches the brand banner). */
.chip i {
    color: #5FA85C;
}

.chip i {
    color: var(--ktex-green-500);
}

/* --- Certifications tabs (segmented control) -------------------------- */
.cert-tabs {
    display: inline-flex;
    background: var(--ktex-slate-50);
    border: 1px solid var(--bs-border-color);
    border-radius: 999px;
    padding: .3rem;
    gap: .25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cert-tab {
    background: transparent;
    border: 0;
    color: var(--ktex-slate-600);
    padding: .6rem 1.1rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: .95rem;
    line-height: 1;
    transition: background .15s ease, color .15s ease, box-shadow .2s ease, transform .15s ease;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    cursor: pointer;
}

.cert-tab i { font-size: 1.05rem; }

.cert-tab:hover {
    background: rgba(255, 255, 255, .9);
    color: var(--ktex-slate-800);
}

.cert-tab:focus-visible {
    outline: 2px solid var(--ktex-green-400);
    outline-offset: 2px;
}

.cert-tab.active {
    background: var(--ktex-slate-700);
    color: #fff;
    box-shadow: 0 6px 18px rgba(15, 17, 20, .18);
}

.cert-tab.active:hover {
    background: var(--ktex-slate-800);
    color: #fff;
}

.cert-tab__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 .4rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, .08);
    color: inherit;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1;
}

.cert-tab.active .cert-tab__count {
    background: rgba(255, 255, 255, .25);
    color: #fff;
}

/* --- Certifications tile (inline PDF preview) ------------------------- */
.cert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

.cert-tile {
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cert-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(15, 17, 20, .08);
    border-color: var(--ktex-green-300);
}

.cert-tile__head {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid var(--bs-border-color);
    background: #fff;
}

.cert-tile__icon {
    width: 42px;
    height: 42px;
    border-radius: .6rem;
    background: var(--ktex-green-50);
    color: var(--ktex-green-600);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex: 0 0 auto;
}

.cert-tile__icon--product {
    background: var(--ktex-cyan-50);
    color: var(--ktex-cyan-700);
}

.cert-tile__heading {
    flex: 1 1 auto;
    min-width: 0;
}

.cert-tile__title {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    color: var(--ktex-slate-800);
    line-height: 1.3;
}

.cert-tile__sub {
    font-size: .82rem;
    color: var(--ktex-slate-400);
    margin: .2rem 0 0;
    line-height: 1.45;
}

.cert-tile__viewer {
    position: relative;
    background: var(--ktex-slate-50);
    aspect-ratio: 1 / 1.32;
    overflow: hidden;
    border-bottom: 1px solid var(--bs-border-color);
}

.cert-tile__viewer iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #fff;
}

.cert-tile__foot {
    padding: .85rem 1.2rem;
    text-align: center;
}

.cert-tile__open {
    color: var(--ktex-green-600);
    font-weight: 600;
    font-size: .92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    transition: color .15s ease, transform .15s ease;
}

.cert-tile__open:hover {
    color: var(--ktex-green-700);
}

.cert-tile__open:hover i {
    transform: translate(2px, -2px);
}

.cert-tile__open i { transition: transform .15s ease; }

/* --- Footer ------------------------------------------------------------- */
.footer {
    background: var(--ktex-slate-800);
    color: rgba(255,255,255,.75);
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer h6 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: .92rem;
    transition: color .15s ease;
}

.footer a:hover {
    color: #fff;
}

.footer__brand {
    display: inline-block;
    margin-bottom: 1rem;
    line-height: 0;
}

.footer__logo {
    height: 56px;
    width: auto;
    display: block;
    /* Default: light-on-dark (whitened). On hover, drop the invert filter
       to reveal the original brand colours, plus a green halo glow. */
    filter: brightness(0) invert(1);
    opacity: .92;
    transition: filter .35s ease, opacity .35s ease, transform .35s ease;
}

.footer__brand:hover .footer__logo,
.footer__brand:focus-visible .footer__logo {
    filter:
        drop-shadow(0 0 12px rgba(255,255,255, .55))
        drop-shadow(0 0 28px rgba(82, 200, 234, .35));
    opacity: 1;
    transform: translateY(-1px);
}

/* --- Leaf watermark utility -------------------------------------------- */
/* Lays a faint brand leaf behind the element's content. Content must sit in
   its own stacking context above the ::after layer (handled via isolation). */
.has-leaf-watermark {
    position: relative;
    isolation: isolate;
}

.has-leaf-watermark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/images/logo/leaf.png') no-repeat right bottom / contain;
    opacity: .05;
    pointer-events: none;
    z-index: 0;
}

/* Keep footer content above the watermark layer. */
.footer > * {
    position: relative;
    z-index: 1;
}

/* --- Footer events band ------------------------------------------------- */
.footer-events {
    padding: 3.5rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

/* Keep the events divider clear of the footer columns: Bootstrap's row
   gutter applies a negative top margin that otherwise pulls the columns
   up over the border. Only matches on Home, where .footer-events renders. */
.footer-events + .row {
    margin-top: 0;
}

.footer-events__head {
    margin-bottom: 2.25rem;
    text-align: center;
}

.footer-events__head .eyebrow,
.footer-events__head > span {
    display: block;
    color: var(--ktex-green-300);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .72rem;
    font-weight: 600;
    margin-bottom: .6rem;
}

.footer-events__head h2,
.footer-events__head h3 {
    color: #fff;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    margin: 0;
}

.footer-events__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* --- Footer event card -------------------------------------------------- */
.footer-event {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    padding: 1.5rem 1.35rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--bs-border-radius-lg);
    text-decoration: none;
}

@media (prefers-reduced-motion: no-preference) {
    .footer-event {
        transition: transform .3s ease, border-color .3s ease, background-color .3s ease;
    }
}

.footer-event:hover,
.footer-event:focus-visible {
    background: rgba(255,255,255,.07);
    border-color: rgba(138,215,125,.4);
}

@media (prefers-reduced-motion: no-preference) {
    .footer-event:hover,
    .footer-event:focus-visible {
        transform: translateY(-4px);
    }
}

.footer-event--featured {
    border-color: var(--ktex-green-400);
    box-shadow: 0 0 0 1px var(--ktex-green-400) inset;
    position: relative;
}

.footer-event--featured::before {
    content: "Featured";
    position: absolute;
    top: -.65rem;
    left: 1.35rem;
    background: var(--ktex-green-400);
    color: var(--ktex-slate-900);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .62rem;
    font-weight: 700;
    padding: .15rem .55rem;
    border-radius: 999px;
}

.footer-event__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--ktex-green-500);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .03em;
    margin-bottom: .55rem;
}
.footer-event__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* Real event logos sit on a white plate (see .news-card__logo--image) so the
   mixed-background lockups read against the dark footer. */
.footer-event__logo--image {
    align-self: flex-start;
    width: auto;
    max-width: 9rem;
    padding: .35rem .5rem;
    border-radius: .55rem;
    background: #fff;
}

.footer-event__name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

.footer-event__loc,
.footer-event__date {
    color: rgba(255,255,255,.6);
    font-size: .82rem;
    line-height: 1.4;
}

/* --- Footer connect block ----------------------------------------------- */
.footer-connect {
    margin-top: 1.75rem;
}

.footer-connect h6 {
    color: #fff;
}

/* --- Footer "Members of" orgs ------------------------------------------- */
.footer-orgs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    margin-top: .75rem;
}

.footer-org {
    display: inline-flex;
    align-items: center;
    padding: .4rem 1rem;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    color: rgba(255,255,255,.78);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-decoration: none;
}

@media (prefers-reduced-motion: no-preference) {
    .footer-org {
        transition: background-color .25s ease, border-color .25s ease, color .25s ease;
    }
}

.footer-org:hover,
.footer-org:focus-visible {
    background: var(--ktex-green-500);
    border-color: var(--ktex-green-500);
    color: #fff;
}

/* --- Footer slim legal strip -------------------------------------------- */
.footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .75rem 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.6);
    font-size: .82rem;
}

.footer__legal a {
    color: rgba(255,255,255,.72);
    font-size: .82rem;
}

.footer__legal a:hover {
    color: #fff;
}

/* Footer events grid responsiveness. */
@media (max-width: 991.98px) {
    .footer-events__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .footer-events__grid {
        grid-template-columns: 1fr;
    }

    .footer__legal {
        justify-content: flex-start;
    }
}

/* --- Forms -------------------------------------------------------------- */
.form-label {
    font-weight: 500;
    color: var(--ktex-slate-700);
    margin-bottom: .35rem;
}

.form-control,
.form-select {
    border-color: var(--bs-border-color);
    padding: .65rem .85rem;
    font-size: .95rem;
    background: #fff;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ktex-green-400);
    box-shadow: 0 0 0 .2rem rgba(103, 189, 93, .15);
}

/* --- Event modal -------------------------------------------------------- */
#eventModal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

#eventModal .modal-body {
    padding: 0;
    position: relative;
}

#eventModal .modal-body img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    box-shadow: 0 35px 70px -20px rgba(0,0,0,.45);
}

#eventModal .btn-close-event {
    position: absolute;
    top: -.85rem;
    right: -.85rem;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 999px;
    border: 1px solid var(--bs-border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ktex-slate-700);
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
    z-index: 4;
}

/* --- Misc --------------------------------------------------------------- */
.eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .75rem;
    color: var(--ktex-green-500);
    font-weight: 700;
}

a {
    text-decoration: none;
}

p a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.text-ktex-slate { color: var(--ktex-slate-700) !important; }
.text-ktex-muted { color: var(--ktex-slate-400) !important; }
.text-ktex-green { color: var(--ktex-green-500) !important; }
.text-ktex-cyan  { color: var(--ktex-cyan-500)  !important; }
.bg-ktex-slate   { background: var(--ktex-slate-700) !important; color: #fff; }
.bg-ktex-soft    { background: var(--ktex-slate-50) !important; }

/* --- Badge variants (tech card + mega link) ---------------------------- */
.tech-card__badge--new     { background: var(--ktex-green-400); color: var(--ktex-slate-900); }
.tech-card__badge--first   { background: var(--ktex-cyan-100);  color: var(--ktex-cyan-800);  }
.tech-card__badge--coming  { background: rgba(255,255,255,.85); color: var(--ktex-slate-800); }

.mega-link__badge--first   { background: var(--ktex-cyan-100);  color: var(--ktex-cyan-700);  }
.mega-link__badge--coming  { background: var(--ktex-slate-100); color: var(--ktex-slate-700); }

/* --- Vision / Mission — light, image-led cards (A2) -------------------- */
.vision-mission .vm-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--ktex-surface);
    border: 1px solid var(--bs-border-color);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 45px -30px rgba(10, 45, 41, .35);
}

.vm-card__media {
    position: relative;
    aspect-ratio: 16 / 7;
    display: grid;
    place-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    font-size: 3rem;
}

.vm-card--vision .vm-card__media {
    background-image: linear-gradient(135deg, var(--ktex-green-800) 0%, var(--ktex-green-600) 100%);
}

.vm-card--mission .vm-card__media {
    background-image: linear-gradient(135deg, var(--ktex-cyan-700) 0%, var(--ktex-cyan-500) 100%);
}

.vm-card__body {
    padding: clamp(1.75rem, 3vw, 2.5rem);
}

.vm-card__eyebrow {
    display: inline-block;
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .72rem;
    font-weight: 700;
    color: var(--ktex-green-600);
}

.vm-card__title {
    margin-bottom: .85rem;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 600;
    color: var(--ktex-slate-700);
}

.vm-card__body p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ktex-slate-500);
}

/* --- Capacities (3-KPI band) ------------------------------------------ */
.capacities {
    background: var(--ktex-green-50);
}
.capacities .kpi {
    padding: 1.5rem 1rem 1.25rem;
}
.kpi__icon {
    color: var(--ktex-green-500);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.kpi__value {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--ktex-green-500);
    line-height: 1.05;
    letter-spacing: -.02em;
}
.kpi__label {
    margin-top: .35rem;
    font-size: .98rem;
    color: var(--ktex-slate-600);
    font-weight: 500;
}

/* --- Global Presence section ------------------------------------------ */
.global-presence {
    background: #fff;
    padding-bottom: 6rem;
}
.global-presence__x {
    color: var(--ktex-green-500);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
}
.global-presence__title {
    color: var(--ktex-cyan-500);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -.01em;
    margin: 0 0 1rem;
}
.global-presence__map {
    margin-top: 1.5rem;
    overflow: hidden;
    border-radius: .75rem;
}
.global-presence__map img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Contact page hero — family-photo banner + curved intro ----------- */
.contact-hero {
    position: relative;
    height: 45rem;
    overflow: hidden;
}

.contact-hero__photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.contact-hero__tint {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(15, 61, 62, .16) 0%, rgba(15, 61, 62, 0) 24%, rgba(15, 61, 62, 0) 74%, rgba(15, 61, 62, .14) 100%),
        radial-gradient(130% 100% at 50% 45%, rgba(0, 0, 0, 0) 62%, rgba(15, 61, 62, .14) 100%);
}

/* Accent (lime) sits behind, curve (page-color) paints on top; because they
   share an identical box + bézier offset by 14 units, the lime shows as a
   constant-thickness rim hugging the curve's top edge. Boxes MUST stay equal. */
.contact-hero__accent,
.contact-hero__curve {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 90px;
    pointer-events: none;
}

.contact-hero__intro {
    text-align: center;
    padding-top: clamp(2.5rem, 5vw, 3.6rem);
}

.contact-hero__pill {
    display: inline-block;
    background: #E9F5E4;
    border: 1px solid #D3E8CC;
    color: #2E7D32;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .5rem 1rem;
    border-radius: 999px;
}

.contact-hero__intro h1 {
    font-size: clamp(2rem, 4.4vw, 3.25rem);
    font-weight: 600;
    letter-spacing: -.01em;
    margin: 1.1rem 0 0;
}

.contact-hero__tag {
    color: var(--ktex-slate-500);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.65;
    max-width: 60ch;
    margin: .85rem auto 0;
}

@media (max-width: 640px) {
    .contact-hero { height: clamp(230px, 58vw, 320px); }
    /* Gentler wave on the shorter mobile hero (rim scales to ~9px). */
    .contact-hero__accent,
    .contact-hero__curve { height: 60px; }
}

/* --- Contact cards (right column of /contact-us) ---------------------- */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}
@media (min-width: 576px) {
    .contact-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .contact-cards { grid-template-columns: repeat(3, 1fr); }
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: .85rem;
    background: #fff;
    border: 1px solid var(--bs-border-color);
    color: var(--ktex-slate-700);
    text-decoration: none;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    position: relative;
}
.contact-card:hover {
    transform: translateY(-2px);
    border-color: var(--ktex-green-300);
    box-shadow: 0 12px 28px rgba(15,17,20,.08);
    color: var(--ktex-slate-700);
}
.contact-card--static { cursor: default; }
.contact-card--static:hover { transform: none; box-shadow: none; border-color: var(--bs-border-color); }

.contact-card__icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: .65rem;
    background: var(--ktex-green-50);
    color: var(--ktex-green-600);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
}
.contact-card__body { flex: 1 1 auto; min-width: 0; }
.contact-card__label {
    font-weight: 600;
    color: var(--ktex-slate-800);
    font-size: .95rem;
}
.contact-card__desc {
    margin: .25rem 0 .5rem;
    font-size: .82rem;
    color: var(--ktex-slate-400);
    line-height: 1.45;
}
.contact-card__value {
    font-weight: 500;
    font-size: .92rem;
    color: var(--ktex-slate-700);
    word-break: break-word;
}
.contact-card__arrow {
    flex: 0 0 auto;
    color: var(--ktex-slate-300);
    font-size: 1rem;
    align-self: center;
    transition: color .15s ease, transform .15s ease;
}
.contact-card:hover .contact-card__arrow {
    color: var(--ktex-green-600);
    transform: translate(2px, -2px);
}

.contact-cards__response {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1rem 1.1rem;
    border-radius: .85rem;
    background: var(--ktex-green-50);
    border: 1px solid var(--ktex-green-200);
}
.contact-cards__response i {
    color: var(--ktex-green-600);
    font-size: 1.3rem;
    flex: 0 0 auto;
}

/* --- Markets sub-product cards (inside each market section) ---------- */
.market-subcard {
    height: 100%;
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: .85rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    transition:
        transform .25s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow .25s ease,
        border-color .25s ease;
}

.market-subcard::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.2rem;
    bottom: 1.2rem;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--ktex-green-300);
    opacity: 0;
    transition: opacity .25s ease;
}

.market-subcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 38px -14px rgba(15, 17, 20, .14);
    border-color: var(--ktex-green-300);
}

.market-subcard:hover::before { opacity: 1; }

.market-subcard__title {
    font-size: 1.15rem;
    margin: 0;
    font-weight: 600;
    color: var(--ktex-slate-800);
}

.market-subcard__group {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.market-subcard__label {
    color: var(--ktex-slate-400) !important;
}

.market-subcard__text {
    font-size: .95rem;
    color: var(--ktex-slate-600);
    margin: 0;
    line-height: 1.55;
}

/* --- Hygiene segment cards (Markets → Hygiene overview) ---------------- */
/* Rendered in a responsive Bootstrap grid (col-12 / col-sm-6 / col-xl-4);
   each card carries its own dedicated background image set inline in the view. */
.segment-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    min-height: 340px;
    border-radius: 1rem;
    overflow: hidden;
    color: #fff;
    background-color: var(--ktex-green-800);
    background-size: cover;
    background-position: center;
    box-shadow: 0 6px 22px rgba(15, 61, 62, .08);
    transition:
        transform .25s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow .25s ease;
}

.segment-card:hover,
.segment-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px -14px rgba(15, 17, 20, .28);
}

/* Per-segment fallback tint — shown only if the background image fails to load. */
.segment-card--sky   { background-color: #2F6E88; }
.segment-card--rose  { background-color: #97516A; }
.segment-card--green { background-color: #2F6E3A; }

.segment-card__body {
    position: relative;
    width: 100%;
    padding: 1.75rem 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, .62));
}

.segment-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.segment-card__text {
    font-size: .95rem;
    color: rgba(255, 255, 255, .9);
    margin: .35rem 0 0;
}

.segment-card__view {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: .95rem;
    color: var(--ktex-green-300);
    transition: gap .2s ease;
}

.segment-card:hover .segment-card__view { gap: .7rem; }

@media (max-width: 575.98px) {
    .segment-card { min-height: 260px; }
    .segment-card__body { padding: 1.4rem 1.5rem; }
}

/* --- Feature cards (Hygiene sub-pages) --------------------------------- */
.feat-card {
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-left: 4px solid var(--ktex-green-400);
    border-radius: .85rem;
    padding: 1.15rem 1.4rem;
    box-shadow: 0 6px 22px rgba(15, 61, 62, .06);
    transition:
        transform .25s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow .25s ease;
}

.feat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -16px rgba(15, 17, 20, .16);
}

.feat-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 .25rem;
    color: var(--ktex-slate-800);
}

.feat-card__text {
    font-size: .92rem;
    color: var(--ktex-slate-600);
    line-height: 1.55;
    margin: 0;
}

/* --- Hygiene anatomy figure (cutaway product diagram) ----------------- */
.anatomy {
    margin: 2.5rem 0 0;
}

.anatomy img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}

.anatomy figcaption {
    margin-top: .75rem;
    font-size: .85rem;
    line-height: 1.5;
    color: var(--ktex-slate-400);
    text-align: center;
}

/* --- Hero inline badge (Technology detail pages) ---------------------- */
.hero-badge {
    display: inline-block;
    vertical-align: middle;
    transform: translateY(-.35em);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .34rem .72rem;
    border-radius: 999px;
    margin-left: .7rem;
    white-space: nowrap;
    background: var(--ktex-slate-100);
    color: var(--ktex-slate-700);
}
.hero-badge--first { background: var(--ktex-cyan-100);  color: var(--ktex-cyan-700); }
.hero-badge--soon  { background: var(--ktex-slate-100); color: var(--ktex-slate-700); }
.hero-badge--new   { background: var(--ktex-green-100); color: var(--ktex-green-700); }

/* On the dark media hero, badges become translucent glass pills. */
.page-hero--media .hero-badge { border: 1px solid transparent; backdrop-filter: blur(4px); }
.page-hero--media .hero-badge--first { background: rgba(82, 200, 234, .18); color: #9fe4f6; border-color: rgba(82, 200, 234, .40); }
.page-hero--media .hero-badge--soon  { background: rgba(255, 255, 255, .12); color: #e2e9e5; border-color: rgba(255, 255, 255, .26); }
.page-hero--media .hero-badge--new   { background: rgba(132, 204, 22, .18); color: #c7ef8f; border-color: rgba(132, 204, 22, .40); }

/* --- "Why KTEX" USP tick-list (Technology detail pages) --------------- */
.usp {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin-top: 1.9rem;
}
.usp-item { display: flex; gap: .9rem; align-items: flex-start; }
.usp-tick {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--ktex-green-100);
    color: var(--ktex-green-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    margin-top: .15rem;
}
.usp-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ktex-slate-800);
    margin: 0 0 .12rem;
}
.usp-text {
    font-size: .95rem;
    color: var(--ktex-slate-500);
    line-height: 1.6;
    margin: 0;
}

/* --- Spec-note caption above spec tables ------------------------------ */
.spec-note {
    color: var(--ktex-slate-400);
    font-size: .95rem;
    margin: .5rem 0 1.25rem;
    max-width: 64ch;
}

/* --- End-use section on About ----------------------------------------- */
.end-use { padding: 5.5rem 0; }
.end-use__tile {
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.end-use__tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(15,17,20,.08);
}
.end-use__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    background: var(--ktex-slate-50);
}
.end-use__img--baby {
    object-fit: contain;
    background: linear-gradient(135deg, var(--ktex-green-50) 0%, #fff 100%);
    padding: 1rem;
}
.end-use__copy { padding: 1.5rem 1.5rem 1.75rem; }
.end-use__copy h3 { font-size: 1.3rem; margin: .25rem 0 .5rem; }

/* ==========================================================================
   --- Motion system ---
   Asset-free homepage preloader + scroll-reveal animations.
   Tokens --reveal-dur / --reveal-ease live in :root (top of file).
   See js-motion (ktex.js) for the JS contract; markup contract in app layout.
   ========================================================================== */

/* (1) Preloader — GSAP leaf assemble/spin overlay, homepage only.
   Markup + the full animation lifecycle live in components/preloader.blade.php;
   this file holds layout, pre-GSAP initial states, and the no-GSAP /
   reduced-motion fallbacks. */
html.is-preloading { overflow: hidden; }

.preload {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    touch-action: none;           /* iOS: html overflow lock alone is unreliable */
    overscroll-behavior: contain; /* no scroll chaining through the overlay */
}

/* Two panels stacked behind the content — the exit animation slides them
   apart (top ↑ / bottom ↓) to reveal the page underneath. Each carries a
   full-viewport copy of the background scene, clipped to its half. */
.preload__panel {
    position: absolute;
    left: 0;
    right: 0;
    height: 50.1%; /* slight overlap kills the mid-seam hairline */
    background: var(--ktex-brand); /* base under the scene layers */
    overflow: hidden;
}
.preload__panel--top    { top: 0; }
.preload__panel--bottom { bottom: 0; }

/* Scene: sized/offset in pure percentages of the panel (panel = 50.1% of the
   overlay → overlay = 199.6% of the panel), so both copies align pixel-perfect
   into one seamless backdrop — until the exit tears them apart. */
.preload__scene {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 199.6%;
    background: radial-gradient(120% 90% at 50% 42%, #14524A 0%, var(--ktex-brand) 48%, #071F1C 100%);
}
.preload__panel--bottom .preload__scene { top: -99.6%; }

/* Aurora — oversized pools of the brand greens drifting very slowly.
   Softness comes from the gradient falloff itself (no filter: blur). */
.preload__aurora {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
}
.preload__aurora--1 {
    width: 95vmax;
    height: 95vmax;
    top: -34%;
    left: -18%;
    background: radial-gradient(circle, rgba(132, 204, 22, .13) 0%, rgba(132, 204, 22, 0) 60%);
    animation: ktex-aurora-1 21s ease-in-out infinite alternate;
}
.preload__aurora--2 {
    width: 85vmax;
    height: 85vmax;
    bottom: -38%;
    right: -22%;
    background: radial-gradient(circle, rgba(23, 107, 92, .5) 0%, rgba(23, 107, 92, 0) 62%);
    animation: ktex-aurora-2 27s ease-in-out infinite alternate;
}
.preload__aurora--3 {
    width: 70vmax;
    height: 70vmax;
    top: 26%;
    left: 32%;
    background: radial-gradient(circle, rgba(77, 124, 15, .16) 0%, rgba(77, 124, 15, 0) 58%);
    animation: ktex-aurora-3 33s ease-in-out infinite alternate;
}

/* Fibre field — the raw material of a nonwoven, drifting before it bonds.
   Two groups sway against each other; two strands "spin" along their path
   via a dash cycle (dasharray period 340+1420 = offset travel 1760 → loop). */
.preload__fibers {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.preload__fibers-a { animation: ktex-fiber-sway 26s ease-in-out infinite alternate; }
.preload__fibers-b { animation: ktex-fiber-sway 34s ease-in-out infinite alternate-reverse; }

.preload__fiber-draw {
    stroke-dasharray: 340 1420;
    animation: ktex-fiber-spin 12s linear infinite;
}
.preload__fiber-draw--2 {
    animation-duration: 17s;
    animation-delay: -6s;
}

/* Textile grain — fine static noise, like fabric seen up close. */
.preload__grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
    opacity: .06;
    mix-blend-mode: overlay;
}

@keyframes ktex-aurora-1 {
    from { transform: translate(-6%, -4%) scale(1); }
    to   { transform: translate(9%, 7%) scale(1.18); }
}
@keyframes ktex-aurora-2 {
    from { transform: translate(7%, 9%) scale(1.1); }
    to   { transform: translate(-9%, -7%) scale(.94); }
}
@keyframes ktex-aurora-3 {
    from { transform: translate(0, 10%) scale(.92); }
    to   { transform: translate(6%, -9%) scale(1.14); }
}
@keyframes ktex-fiber-sway {
    from { transform: translateX(-42px); }
    to   { transform: translateX(42px); }
}
@keyframes ktex-fiber-spin {
    from { stroke-dashoffset: 1760; }
    to   { stroke-dashoffset: 0; }
}

.preload__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preload__mark {
    position: relative;
    display: grid;
    place-items: center;
}

/* Soft lime halo behind the leaf; GSAP pulses it while the page loads. */
.preload__glow {
    position: absolute;
    width: 320%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(132, 204, 22, .22) 0%, rgba(132, 204, 22, 0) 62%);
    pointer-events: none;
}

.preload__leaf {
    width: clamp(120px, 30vw, 180px);
    height: auto;
    overflow: visible; /* petals fly in from beyond the viewBox */
    filter: drop-shadow(0 16px 36px rgba(0, 0, 0, .28));
    will-change: transform;
}

.preload__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .55rem;
}

/* Full-colour KTEX wordmark logo, dropped in where the KTEX/NONWOVENS text
   used to sit. Kept in brand colours (per request); a soft drop-shadow lifts
   it off the deep-teal backdrop so the darker "KTE" glyphs read. */
.preload__logo {
    display: block;
    width: clamp(170px, 42vw, 260px);
    height: auto;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, .35));
    will-change: transform, opacity;
}

/* Progress line — fill creeps while loading, snaps to 100% on window load. */
.preload__bar {
    width: clamp(120px, 26vw, 190px);
    height: 2px;
    border-radius: 1px;
    background: rgba(255, 255, 255, .16);
    overflow: hidden;
}
.preload__bar-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--ktex-accent), #67BD5D);
    transform: scaleX(0);
    transform-origin: left center;
}

/* Pre-GSAP initial states — scoped to html.js so nothing is hidden when JS
   is off (the component's <noscript> removes the overlay entirely then). */
.js .preload__petal { opacity: 0; }
.js .preload__logo,
.js .preload__glow,
.js .preload__bar { opacity: 0; }

/* No-GSAP fallback (CDN unreachable) — pure-CSS approximation of the
   assemble: whole leaf spins/scales in, logo rises + fades, bar creeps. */
.preload--fallback .preload__petal { opacity: 1; }
.preload--fallback .preload__leaf {
    animation: ktex-preload-leaf-in 1.2s cubic-bezier(.215, .61, .355, 1) both;
}
.preload--fallback .preload__logo {
    animation: ktex-preload-rise .8s cubic-bezier(.215, .61, .355, 1) .6s both,
               ktex-preload-fade .6s ease .6s both;
}
.preload--fallback .preload__bar {
    animation: ktex-preload-fade .6s ease .9s both;
}
.preload--fallback .preload__glow {
    animation: ktex-preload-fade 1s ease .6s both;
}
.preload--fallback .preload__bar-fill {
    animation: ktex-preload-creep 3s ease-out 1s both;
}

/* Reduced motion — render the finished state statically; the component
   script dismisses on load with no dwell. */
.preload--reduced .preload__petal,
.preload--reduced .preload__logo,
.preload--reduced .preload__glow,
.preload--reduced .preload__bar { opacity: 1; }
.preload--reduced .preload__bar-fill { transform: scaleX(1); }
.preload--reduced .preload__leaf { filter: none; }

/* Fade-out dismissal for both non-GSAP paths (.is-loaded added on load). */
.preload--fallback,
.preload--reduced { transition: opacity .5s ease, visibility .5s; }
.preload.is-loaded {
    opacity: 0;
    visibility: hidden;
}

@keyframes ktex-preload-leaf-in {
    from { opacity: 0; transform: rotate(-180deg) scale(.55); }
    to   { opacity: 1; transform: rotate(0deg) scale(1); }
}

@keyframes ktex-preload-rise {
    from { transform: translateY(115%); }
    to   { transform: translateY(0); }
}

@keyframes ktex-preload-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes ktex-preload-creep {
    from { transform: scaleX(0); }
    to   { transform: scaleX(.92); }
}

/* (2) Scroll reveal — any [data-reveal] starts hidden and animates in when
   JS adds .is-visible (IntersectionObserver). Optional per-element stagger
   via data-reveal-delay="<ms>", applied by JS as transition-delay.          */
/* Scoped under .js so that with JS disabled the content stays visible
   (progressive enhancement — no invisible content if the observer never runs). */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity   var(--reveal-dur, .8s) var(--reveal-ease, cubic-bezier(.215, .61, .355, 1)),
        transform var(--reveal-dur, .8s) var(--reveal-ease, cubic-bezier(.215, .61, .355, 1));
    will-change: opacity, transform;
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* (3) Reduced-motion fallback — show everything instantly, no transforms /
   transitions. Pairs with the matchMedia guards in js-motion.              */
@media (prefers-reduced-motion: reduce) {
    /* Reveal: visible immediately, no motion. */
    .js [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    /* Preloader: the component script adds .preload--reduced (static finished
       state, styled above) and dismisses on load with no dwell. */
    .preload--reduced {
        transition: none;
    }

    /* Background scene: hold still. */
    .preload__aurora,
    .preload__fibers-a,
    .preload__fibers-b,
    .preload__fiber-draw {
        animation: none;
    }
}

/* ============================================================================
   About Us — "Layout D" clean-corporate page (KTEX_About_Us_v4).
   Fully self-contained: every rule is namespaced `au-` and scoped under
   `.about-v4`, and the palette/type tokens live on the wrapper (not :root), so
   nothing here collides with Bootstrap or the site design system. Poppins is
   loaded per-page from about.blade.php.
   ============================================================================ */
.about-v4 {
    --au-green:      #3AAA35;
    --au-green-dark: #2C8528;
    --au-green-tint: #F0F8EE;
    --au-sky:        #4ABCD4;
    --au-sky-tint:   #EAF7FA;
    --au-navy:       #0F3D3E;
    --au-navy-deep:  #0A2A2B;
    --au-ink:        #22302C;
    --au-ink-soft:   #5B6B66;
    --au-line:       #E3EAE5;
    --au-white:      #FFFFFF;
    --au-radius:     14px;
    --au-shadow:     0 6px 22px rgba(15, 61, 62, .08);
    --au-shadow-2:   0 14px 34px rgba(15, 61, 62, .13);
    --au-head:       "Poppins", sans-serif;
    --au-body:       "Inter", sans-serif;
    --au-max:        1180px;

    font-family: var(--au-body);
    color: var(--au-ink);
    font-size: 16px;
    line-height: 1.7;
}
.about-v4 h1,
.about-v4 h2,
.about-v4 h3 { font-family: var(--au-head); color: var(--au-ink); }
.about-v4 a { color: inherit; text-decoration: none; }
.about-v4 img { max-width: 100%; }

/* Content containers use the site-wide .container-fluid (max-width: 90%) for
   width parity with every other page — see the override near the top of this
   file. The mockup's fixed 1180px .au-wrap was intentionally dropped. */
.au-center { text-align: center; }
.au-sec { padding: 90px 0; }
.au-sec h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 700; letter-spacing: -.01em; line-height: 1.25; }
.au-lead { color: var(--au-ink-soft); font-size: 16.5px; max-width: 760px; margin: 16px auto 0; }
.au-underline { width: 64px; height: 4px; background: var(--au-green); border-radius: 2px; margin: 18px auto 0; }
.au-underline.au-left { margin-left: 0; }

/* --- Buttons --- */
.au-btn {
    font-family: var(--au-head);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 10px;
    display: inline-block;
    transition: transform .15s, box-shadow .2s;
}
.au-btn-green { background: var(--au-green); color: #fff; }
.au-btn-green:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(58, 170, 53, .35); }
.au-btn-navy { background: var(--au-navy); color: #fff; }
.au-btn-navy:hover { transform: translateY(-1px); box-shadow: var(--au-shadow-2); }
.au-btn-outline { border: 1.5px solid var(--au-green); color: var(--au-green-dark); }
.au-btn-outline:hover { background: var(--au-green-tint); }

/* --- Top section — text + facility photo --- */
.au-hero {
    background: var(--ktex-slate-50);
    padding: 10rem 0 10rem;
    border-bottom: 1px solid var(--au-line);
}
.au-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.au-kicker {
    font-family: var(--au-head); font-size: 13px; font-weight: 600; letter-spacing: .16em;
    text-transform: uppercase; color: var(--au-green); margin-bottom: 20px;
}
.au-hero h1 { font-size: clamp(36px, 4.8vw, 56px); font-weight: 700; letter-spacing: -.015em; line-height: 1.12; max-width: 900px; }
.au-hero p { max-width: 640px; margin-top: 22px; font-size: clamp(16px, 1.6vw, 18px); color: var(--au-ink-soft); line-height: 1.7; }
.au-hero-btns { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

/* facility photo frame (right column) */
.au-photo-frame {
    margin: 0; border-radius: var(--au-radius); overflow: hidden;
    box-shadow: var(--au-shadow-2); border: 1px solid var(--au-line);
    position: relative; background: var(--au-white);
}
.au-photo-frame::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px;
    background: linear-gradient(90deg, var(--au-green) 0%, var(--au-sky) 100%);
}
.au-about-photo { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }

/* --- About company — two-column text --- */
.au-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.au-about-head h2 { max-width: 420px; }
.au-about-head .au-mark {
    width: 52px; height: 52px; border-radius: 12px; background: var(--au-green-tint);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    font-family: var(--au-head); font-style: italic; font-weight: 700; font-size: 26px; color: var(--au-green);
}
.au-about-copy p { font-size: 16.5px; color: var(--au-ink); margin-bottom: 22px; line-height: 1.8; }
.au-about-copy p:last-child { margin-bottom: 0; }
.au-about-copy strong { color: var(--au-green-dark); font-weight: 700; }

/* --- Growth + stats --- */
.au-growth { background: var(--au-green-tint); }
.au-growth .au-lead { margin-bottom: 0; }
.au-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px;
    max-width: 900px; margin-left: auto; margin-right: auto;
}
.au-stat {
    background: var(--au-white); border-radius: var(--au-radius); padding: 34px 22px; text-align: center;
    box-shadow: var(--au-shadow); transition: transform .2s, box-shadow .2s;
}
.au-stat:hover { transform: translateY(-4px); box-shadow: var(--au-shadow-2); }
.au-stat .au-ic {
    width: 52px; height: 52px; border-radius: 50%; background: var(--au-green-tint);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.au-stat .au-ic svg { width: 24px; height: 24px; stroke: var(--au-green); fill: none; stroke-width: 1.7; }
.au-num { font-family: var(--au-head); font-size: clamp(30px, 3.2vw, 40px); font-weight: 700; color: var(--au-green-dark); line-height: 1.1; }
.au-lbl { font-size: 14px; color: var(--au-ink-soft); margin-top: 8px; font-weight: 500; }

/* --- Vision & Mission --- */
.au-vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 940px; margin: 52px auto 0; }
.au-vm-card {
    border-radius: var(--au-radius); padding: 40px 36px; box-shadow: var(--au-shadow);
    border-top: 5px solid var(--au-green); background: var(--au-white);
    transition: transform .2s, box-shadow .2s; text-align: left;
}
.au-vm-card.au-mission { border-top-color: var(--au-sky); }
.au-vm-card:hover { transform: translateY(-4px); box-shadow: var(--au-shadow-2); }
.au-vm-card .au-ic { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.au-vm-card.au-vision .au-ic { background: var(--au-green-tint); }
.au-vm-card.au-mission .au-ic { background: var(--au-sky-tint); }
.au-vm-card .au-ic svg { width: 26px; height: 26px; fill: none; stroke-width: 1.7; }
.au-vm-card.au-vision .au-ic svg { stroke: var(--au-green); }
.au-vm-card.au-mission .au-ic svg { stroke: #1C88A8; }
.au-vm-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.au-vm-card p { font-size: 15.5px; color: var(--au-ink-soft); line-height: 1.75; }

/* --- Why choose KTEX --- */
.au-why { background: linear-gradient(180deg, #FFFFFF 0%, var(--au-green-tint) 100%); }
.au-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
.au-why-card {
    background: var(--au-white); border: 1px solid var(--au-line); border-radius: var(--au-radius);
    padding: 32px 26px; text-align: center; box-shadow: var(--au-shadow);
    transition: transform .2s, box-shadow .2s;
}
.au-why-card:hover { transform: translateY(-4px); box-shadow: var(--au-shadow-2); }
.au-why-card .au-ic {
    width: 64px; height: 64px; border-radius: 50%; background: var(--au-green-tint);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.au-why-card .au-ic svg { width: 28px; height: 28px; stroke: var(--au-green); fill: none; stroke-width: 1.7; }
.au-why-card h3 { font-size: 17.5px; font-weight: 600; margin-bottom: 10px; }
.au-why-card p { font-size: 14.5px; color: var(--au-ink-soft); line-height: 1.7; }
.au-why-quote { max-width: 680px; margin: 50px auto 0; text-align: center; font-style: italic; color: var(--au-ink-soft); font-size: 15.5px; line-height: 1.75; }

/* --- Our reach — regions --- */
.au-reach-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--au-head); font-size: 14px; font-weight: 700; font-style: italic;
    letter-spacing: .08em; color: var(--au-ink);
}
.au-reach-kicker .au-x { color: var(--au-green); font-style: normal; }
.au-reach-title { font-size: clamp(26px, 3vw, 36px); font-weight: 700; color: var(--au-sky); margin-top: 4px; letter-spacing: -.01em; }
.au-reach .au-map { max-width: 960px; margin: 40px auto 10px; }
.au-reach .au-map svg,
.au-reach .au-map img { width: 100%; height: auto; display: block; }
.au-regions { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 44px; }
.au-region {
    background: var(--au-white); border: 1px solid var(--au-line); border-radius: var(--au-radius);
    padding: 26px 22px; box-shadow: var(--au-shadow); transition: transform .2s, box-shadow .2s;
}
.au-region:hover { transform: translateY(-4px); box-shadow: var(--au-shadow-2); }
.au-badge {
    display: inline-block; font-family: var(--au-head); font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
    color: var(--au-green-dark); background: var(--au-green-tint); border-radius: 999px; padding: 5px 12px; margin-bottom: 14px;
}
.au-region h3 { font-size: 16.5px; font-weight: 600; margin-bottom: 8px; }
.au-region p { font-size: 13.5px; color: var(--au-ink-soft); line-height: 1.65; }

/* --- CSR & Sustainability --- */
.au-cs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 52px; }
.au-cs-card {
    border-radius: var(--au-radius); overflow: hidden; box-shadow: var(--au-shadow); background: var(--au-white);
    transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; text-align: left;
}
.au-cs-card:hover { transform: translateY(-4px); box-shadow: var(--au-shadow-2); }
.au-cs-band { height: 120px; display: flex; align-items: center; justify-content: center; }
.au-cs-card.au-csr .au-cs-band { background: linear-gradient(120deg, var(--au-green) 0%, var(--au-green-dark) 100%); }
.au-cs-card.au-sus .au-cs-band { background: linear-gradient(120deg, var(--au-sky) 0%, #1C88A8 100%); }
.au-cs-band svg { width: 44px; height: 44px; stroke: #fff; fill: none; stroke-width: 1.6; }
.au-cs-body { padding: 30px 32px 34px; display: flex; flex-direction: column; flex: 1; }
.au-cs-body h3 { font-size: 21px; font-weight: 700; margin-bottom: 12px; }
.au-cs-body p { font-size: 15px; color: var(--au-ink-soft); line-height: 1.75; flex: 1; }
.au-more {
    margin-top: 20px; font-family: var(--au-head); font-weight: 600; font-size: 14.5px; color: var(--au-green-dark);
    display: inline-flex; align-items: center; gap: 8px; transition: gap .2s;
}
.au-cs-card.au-sus .au-more { color: #1C88A8; }
.au-more:hover { gap: 12px; }
.au-more::after { content: "→"; }

/* --- CTA band --- */
.au-cta { background: var(--au-navy); color: #fff; text-align: center; padding: 76px 24px; }
.au-cta h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); font-weight: 700; }
.au-cta h2 em { font-style: italic; color: #8FE58A; }
.au-cta p { margin: 14px auto 30px; max-width: 520px; color: rgba(255, 255, 255, .82); font-size: 16px; }

/* --- Facility aerial hero photo (16:9 vista) --- */
.au-about-photo--aerial { aspect-ratio: 16 / 9; }

/* --- Our Promise — MD's message (navy band) --- */
.au-promise { background: var(--au-navy); padding: 90px 0; }
.au-promise-kicker {
    font-family: var(--au-head); font-size: 13px; font-weight: 600; letter-spacing: .16em;
    text-transform: uppercase; color: var(--au-sky); margin-bottom: 34px;
}
.au-promise-grid { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: center; }
.au-md-photo { margin: 0; }
.au-md-frame {
    aspect-ratio: 3 / 4; border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15); background: rgba(255, 255, 255, .04);
}
.au-md-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.au-md-cap { margin-top: 14px; text-align: center; line-height: 1.5; }
.au-md-cap strong { display: block; font-family: var(--au-head); font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, .92); }
.au-md-cap span { font-size: 13px; color: rgba(255, 255, 255, .55); }
.au-promise-mark { display: block; color: var(--au-green); font-family: var(--au-head); font-size: 60px; font-weight: 700; line-height: .6; margin-bottom: 26px; }
.au-promise-quote { font-family: var(--au-head); color: #fff; border: none; font-size: clamp(21px, 2.7vw, 30px); font-weight: 500; line-height: 1.5; margin: 0; }
.au-promise-attrib { display: flex; align-items: flex-start; gap: 16px; margin-top: 30px; }
.au-promise-attrib .au-rule { width: 30px; height: 2px; background: var(--au-green); margin-top: 11px; flex: none; }
.au-promise-attrib strong { color: #fff; font-size: 15px; font-weight: 600; }
.au-promise-attrib em { color: rgba(255, 255, 255, .62); font-size: 14px; font-style: normal; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .au-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .au-about-grid { grid-template-columns: 1fr; gap: 34px; }
    .au-why-grid { grid-template-columns: 1fr 1fr; }
    .au-regions { grid-template-columns: repeat(2, 1fr); }
    .au-region:last-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .au-sec { padding: 66px 0; }
    .au-promise { padding: 64px 0; }
    .au-promise-grid { grid-template-columns: 1fr; gap: 34px; }
    .au-md-photo { max-width: 260px; margin: 0 auto; }
    .au-stats { gap: 10px; }
    .au-stat { padding: 20px 10px; }
    .au-stat .au-ic { width: 40px; height: 40px; margin-bottom: 10px; }
    .au-stat .au-ic svg { width: 19px; height: 19px; }
    .au-num { font-size: 22px; }
    .au-lbl { font-size: 11.5px; }
    .au-vm-grid,
    .au-cs-grid { grid-template-columns: 1fr; }
    .au-why-grid { grid-template-columns: 1fr; }
    .au-regions { grid-template-columns: 1fr; }
    .au-region:last-child { grid-column: auto; }
}

