/* ============================================================
   CHW — B2B / EXPORT DESIGN LAYER
   Shared by the homepage and the B2B pages (distributors,
   global business, contact, exhibitions, quality).
   Builds on the brand tokens in style.css — same green, gold,
   Cormorant Garamond + Inter — with a cleaner white / mint ground.
   ============================================================ */

:root {
    --b2b-ink: #0f241c;
    --b2b-body: #4a5a54;
    --b2b-muted: #7a8883;
    --b2b-teal: #006241;
    --b2b-teal-deep: #003d29;
    --b2b-night: #01261a;
    --b2b-mint: #f2f8f5;
    --b2b-mint-2: #e5f1eb;
    --b2b-neutral: #f5f6f4;
    --b2b-line: rgba(0, 98, 65, 0.12);
    --b2b-line-strong: rgba(0, 98, 65, 0.24);
    --b2b-gold: #c8a96e;
    --b2b-gold-light: #e8c98e;
    --b2b-radius: 22px;
    --b2b-shadow: 0 18px 50px rgba(1, 38, 26, 0.08);
    --b2b-shadow-lg: 0 30px 80px rgba(1, 38, 26, 0.16);
    --b2b-serif: 'Cormorant Garamond', Georgia, serif;
    --b2b-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* ── Layout ─────────────────────────────────────────────── */
.b2b-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.b2b-section {
    position: relative;
    padding-block: clamp(4.5rem, 9vw, 7rem);
    background: #fff;
}

.b2b-section.is-mint { background: var(--b2b-mint); }

.b2b-section[id],
#enquiry { scroll-margin-top: 90px; }

.b2b-section.is-dark {
    background: var(--b2b-night);
    color: #fff;
    overflow: hidden;
}

.b2b-section.is-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 10% 20%, rgba(0, 98, 65, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 95% 90%, rgba(200, 169, 110, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.b2b-section.is-dark > .b2b-container { position: relative; }

/* ── Headings ───────────────────────────────────────────── */
.b2b-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--b2b-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--b2b-teal);
    margin-bottom: 1rem;
}

.b2b-eyebrow::before {
    content: '';
    width: 26px;
    height: 1.5px;
    background: var(--b2b-gold);
}

.is-dark .b2b-eyebrow,
.page-hero .b2b-eyebrow { color: var(--b2b-gold-light); }

.b2b-h2 {
    font-family: var(--b2b-serif);
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--b2b-ink);
    margin: 0 0 1rem;
}

.b2b-h2 em { font-style: italic; color: var(--b2b-teal); }
.is-dark .b2b-h2 { color: #fff; }
.is-dark .b2b-h2 em { color: var(--b2b-gold-light); }

.b2b-lead {
    font-family: var(--b2b-sans);
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--b2b-body);
    max-width: 560px;
    margin: 0;
}

.is-dark .b2b-lead { color: rgba(255, 255, 255, 0.72); }

.b2b-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.b2b-head .b2b-h2 { margin-bottom: 0; }

.b2b-head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.b2b-head--center .b2b-h2 { margin-bottom: 0.75rem; }
.b2b-head--center .b2b-lead { margin-inline: auto; }

/* ── Buttons ────────────────────────────────────────────── */
.b2b-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.b2b-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--b2b-sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    border: 1.5px solid transparent;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.b2b-btn i { font-size: 0.82em; }
.b2b-btn:hover { transform: translateY(-2px); }

.b2b-btn--primary {
    background: var(--b2b-teal);
    color: #fff;
    box-shadow: 0 10px 26px rgba(0, 98, 65, 0.22);
}

.b2b-btn--primary:hover { background: var(--b2b-teal-deep); color: #fff; }

.b2b-btn--gold {
    background: linear-gradient(135deg, var(--b2b-gold), var(--b2b-gold-light));
    color: #1b1a14;
    box-shadow: 0 10px 28px rgba(200, 169, 110, 0.32);
}

.b2b-btn--gold:hover { box-shadow: 0 16px 36px rgba(200, 169, 110, 0.45); color: #1b1a14; }

.b2b-btn--white { background: #fff; color: var(--b2b-teal-deep); }
.b2b-btn--white:hover { background: var(--b2b-mint); color: var(--b2b-teal-deep); }

.b2b-btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.b2b-btn--ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; color: #fff; }

.b2b-btn--outline {
    background: transparent;
    color: var(--b2b-teal);
    border-color: var(--b2b-line-strong);
}

.b2b-btn--outline:hover { border-color: var(--b2b-teal); background: var(--b2b-mint); color: var(--b2b-teal); }

.b2b-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--b2b-sans);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--b2b-teal);
    text-decoration: none;
    transition: gap 0.25s ease;
}

.b2b-link:hover { gap: 0.8rem; }
.is-dark .b2b-link { color: var(--b2b-gold-light); }

/* ── Scroll reveal (class added by an inline head script) ── */
.rv-ready .rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.rv-ready .rv.is-in { opacity: 1; transform: none; }
.rv-ready .rv[data-delay="1"] { transition-delay: 0.1s; }
.rv-ready .rv[data-delay="2"] { transition-delay: 0.2s; }
.rv-ready .rv[data-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    .rv-ready .rv { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   PAGE HERO (inner B2B pages)
   ============================================================ */
.page-hero {
    position: relative;
    background: var(--b2b-night);
    color: #fff;
    padding: clamp(8rem, 14vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(1, 30, 20, 0.96) 0%, rgba(1, 38, 26, 0.86) 45%, rgba(0, 61, 41, 0.5) 100%);
}

.page-hero .b2b-container { position: relative; z-index: 1; }

.page-hero h1 {
    font-family: var(--b2b-serif);
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.015em;
    color: #fff;
    max-width: 860px;
    margin: 0 0 1.25rem;
}

.page-hero h1 em { font-style: italic; color: var(--b2b-gold-light); }

.page-hero .b2b-lead {
    color: rgba(255, 255, 255, 0.76);
    max-width: 640px;
    font-size: 1.08rem;
}

.page-hero .b2b-btns { margin-top: 2.25rem; }

.crumbs {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--b2b-sans);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.75rem;
}

.crumbs a { color: rgba(255, 255, 255, 0.75); }
.crumbs a:hover { color: #fff; }
.crumbs i { font-size: 0.55rem; }

.hero-facts {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.75rem;
    margin: 2.5rem 0 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--b2b-sans);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-facts li { display: inline-flex; align-items: center; gap: 0.55rem; }
.hero-facts i { color: var(--b2b-gold-light); }

/* ============================================================
   BUSINESS DIVISIONS
   ============================================================ */
.div-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.div-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--b2b-line);
    border-radius: var(--b2b-radius);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s ease;
}

.div-card:hover { transform: translateY(-8px); box-shadow: var(--b2b-shadow-lg); }

.div-card__media {
    position: relative;
    aspect-ratio: 4 / 3.3;
    overflow: hidden;
    background: var(--b2b-neutral);
}

.div-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s ease;
}

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

.div-card__num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--b2b-sans);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(1, 38, 26, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
}

.div-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
    padding: 1.6rem 1.6rem 1.75rem;
}

.div-card__body h3 {
    font-family: var(--b2b-serif);
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.12;
    color: var(--b2b-ink);
    margin: 0;
}

.div-card__body p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--b2b-body);
    margin: 0;
}

.tag-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.15rem 0 0.5rem;
    padding: 0;
}

.tag-list li {
    font-family: var(--b2b-sans);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--b2b-teal-deep);
    background: var(--b2b-mint);
    border: 1px solid var(--b2b-line);
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
}

.div-card .b2b-btn { margin-top: auto; align-self: flex-start; }

/* ============================================================
   WHY PARTNER WITH CHW
   ============================================================ */
.why-b2b-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--b2b-line);
    border: 1px solid var(--b2b-line);
    border-radius: var(--b2b-radius);
    overflow: hidden;
}

.why-b2b {
    background: #fff;
    padding: 2rem 1.6rem 2.1rem;
    transition: background 0.3s ease;
}

.why-b2b:hover { background: #fbfdfc; }

.why-b2b__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--b2b-mint);
    color: var(--b2b-teal);
    font-size: 1.05rem;
    margin-bottom: 1.15rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.why-b2b:hover .why-b2b__icon { background: var(--b2b-teal); color: #fff; }

.why-b2b h3 {
    font-family: var(--b2b-sans);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--b2b-ink);
    margin: 0 0 0.4rem;
}

.why-b2b p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--b2b-body);
    margin: 0;
}

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.fp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.fp-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--b2b-line);
    border-radius: var(--b2b-radius);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fp-card:hover { transform: translateY(-6px); box-shadow: var(--b2b-shadow); }

.fp-card__img {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--b2b-neutral);
}

.fp-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s ease;
}

.fp-card:hover .fp-card__img img { transform: scale(1.05); }

.fp-card__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.1rem 1.1rem;
}

.fp-card__body small {
    display: block;
    font-family: var(--b2b-sans);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--b2b-teal);
    margin-bottom: 0.15rem;
}

.fp-card__body h3 {
    font-family: var(--b2b-serif);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--b2b-ink);
    margin: 0;
}

.fp-card__body h3 a { color: inherit; }

.fp-card__quote {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--b2b-sans);
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--b2b-teal);
    border: 1px solid var(--b2b-line-strong);
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.fp-card__quote:hover { background: var(--b2b-teal); border-color: var(--b2b-teal); color: #fff; }

/* Catalogue band */
.cat-band {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem 2rem;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding: clamp(1.75rem, 4vw, 2.25rem) clamp(1.5rem, 4vw, 2.75rem);
    border-radius: var(--b2b-radius);
    background: linear-gradient(115deg, var(--b2b-night) 0%, var(--b2b-teal-deep) 100%);
    overflow: hidden;
}

.cat-band::after {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    right: -110px;
    top: -150px;
    border-radius: 50%;
    border: 1px solid rgba(232, 201, 142, 0.18);
    pointer-events: none;
}

.cat-band__icon {
    width: 64px;
    height: 76px;
    border-radius: 10px 18px 10px 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(232, 201, 142, 0.35);
    color: var(--b2b-gold-light);
    font-size: 1.6rem;
}

.cat-band h3 {
    font-family: var(--b2b-serif);
    font-size: clamp(1.5rem, 2.6vw, 1.95rem);
    font-weight: 500;
    color: #fff;
    margin: 0 0 0.25rem;
    line-height: 1.15;
}

.cat-band p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.68); margin: 0; }
.cat-band .b2b-btns { position: relative; z-index: 1; }

/* ============================================================
   OEM / PRIVATE LABEL PROCESS
   ============================================================ */
.oem-head {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem 4rem;
    align-items: end;
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.oem-head .b2b-h2 { margin: 0; }

.oem-steps {
    position: relative;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.oem-steps::before {
    content: '';
    position: absolute;
    top: 31px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 201, 142, 0.55) 12%, rgba(232, 201, 142, 0.55) 88%, transparent);
}

.oem-step {
    position: relative;
    text-align: center;
    padding: 0 0.25rem;
}

.oem-step__icon {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    margin: 0 auto 1.15rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--b2b-night);
    border: 1px solid rgba(232, 201, 142, 0.5);
    color: var(--b2b-gold-light);
    font-size: 1.1rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.oem-step:hover .oem-step__icon { background: var(--b2b-gold); color: var(--b2b-night); }

.oem-step__num {
    display: block;
    font-family: var(--b2b-sans);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.35rem;
}

.oem-step h3 {
    font-family: var(--b2b-sans);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 0.4rem;
}

.oem-step p {
    font-size: 0.8rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* light variant (manufacturing page on a pale background) */
.oem-steps--light::before { background: linear-gradient(90deg, transparent, var(--b2b-line-strong) 12%, var(--b2b-line-strong) 88%, transparent); }
.oem-steps--light .oem-step__icon { background: #fff; border-color: var(--b2b-line-strong); color: var(--b2b-teal); }
.oem-steps--light .oem-step:hover .oem-step__icon { background: var(--b2b-teal); color: #fff; }
.oem-steps--light .oem-step__num { color: var(--b2b-muted); }
.oem-steps--light .oem-step h3 { color: var(--b2b-ink); }
.oem-steps--light .oem-step p { color: var(--b2b-body); }

.oem-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: clamp(3rem, 6vw, 4rem);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.oem-caps {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.oem-caps li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--b2b-sans);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
}

.oem-caps i { color: var(--b2b-gold-light); font-size: 0.72rem; }

/* ============================================================
   QUALITY & CERTIFICATIONS
   ============================================================ */
.qa-b2b {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
}

.cert-docs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem 1.25rem;
}

.cert-doc { display: flex; flex-direction: column; gap: 0.85rem; }

/* Certificate "paper" thumbnail. To show a real scan, add the
   class cert-doc__paper--scan and put a single <img> inside. */
.cert-doc__paper {
    position: relative;
    aspect-ratio: 1 / 1.32;
    background: linear-gradient(180deg, #ffffff 0%, #faf9f4 100%);
    border-radius: 6px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 16px 36px rgba(1, 38, 26, 0.11);
    padding: 14% 12% 12%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7%;
    overflow: hidden;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.cert-doc__paper::before,
.cert-doc__paper::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.cert-doc__paper::before { inset: 5%; border: 1px solid rgba(200, 169, 110, 0.65); }
.cert-doc__paper::after { inset: 6.6%; border: 1px solid rgba(200, 169, 110, 0.25); }

.cert-doc:hover .cert-doc__paper {
    transform: translateY(-6px) rotate(-0.8deg);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 26px 50px rgba(1, 38, 26, 0.16);
}

.cert-doc__kicker {
    font-family: var(--b2b-serif);
    font-size: clamp(0.62rem, 1vw, 0.78rem);
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--b2b-teal-deep);
}

.cert-doc__paper img {
    width: 54%;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 50%;
}

.cert-doc__lines { width: 78%; display: grid; gap: 7px; justify-items: center; }
.cert-doc__lines span { display: block; height: 3px; border-radius: 2px; background: rgba(15, 36, 28, 0.1); }
.cert-doc__lines span:nth-child(1) { width: 100%; }
.cert-doc__lines span:nth-child(2) { width: 80%; }
.cert-doc__lines span:nth-child(3) { width: 45%; background: rgba(200, 169, 110, 0.45); }

.cert-doc__paper--scan { padding: 0; }
.cert-doc__paper--scan img { width: 100%; height: 100%; aspect-ratio: auto; border-radius: 0; object-fit: cover; }

.cert-doc h3 {
    font-family: var(--b2b-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--b2b-ink);
    margin: 0;
    line-height: 1.3;
}

.cert-doc small {
    display: block;
    font-family: var(--b2b-sans);
    font-size: 0.74rem;
    color: var(--b2b-muted);
    margin-top: 0.15rem;
}

.qa-pillars { display: grid; }

.qa-pillar {
    padding: 1.5rem 0;
    border-top: 1px solid var(--b2b-line);
}

.qa-pillar:last-child { border-bottom: 1px solid var(--b2b-line); }

.qa-pillar h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--b2b-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--b2b-ink);
    margin: 0 0 0.75rem;
}

.qa-pillar h3 i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--b2b-mint);
    color: var(--b2b-teal);
    font-size: 0.85rem;
}

.check-list {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-family: var(--b2b-sans);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--b2b-body);
}

.check-list li i { color: var(--b2b-teal); font-size: 0.78rem; margin-top: 0.3rem; }
.is-dark .check-list li { color: rgba(255, 255, 255, 0.78); }
.is-dark .check-list li i { color: var(--b2b-gold-light); }

.b2b-note {
    font-family: var(--b2b-sans);
    font-size: 0.78rem;
    color: var(--b2b-muted);
    margin: 1.25rem 0 0;
}

/* ============================================================
   GLOBAL MARKETS
   ============================================================ */
.gm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.gm-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--b2b-line);
    border: 1px solid var(--b2b-line);
    border-radius: 18px;
    overflow: hidden;
    margin: 2rem 0 1.75rem;
}

.gm-stat { background: #fff; padding: 1.2rem 1.35rem; }

.gm-stat strong {
    display: block;
    font-family: var(--b2b-serif);
    font-size: 2.3rem;
    font-weight: 500;
    line-height: 1;
    color: var(--b2b-teal);
    margin-bottom: 0.35rem;
}

.gm-stat span {
    font-family: var(--b2b-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--b2b-muted);
}

.gm-regions {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin: 0 0 2rem;
    padding: 0;
}

.gm-region {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #fff;
    border: 1px solid var(--b2b-line);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    font-family: var(--b2b-sans);
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--b2b-ink);
}

.gm-region i { color: var(--b2b-teal); font-size: 0.8rem; }

.gm-region small {
    margin-left: auto;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--b2b-teal);
}

.gm-region.is-target { background: transparent; border-style: dashed; border-color: var(--b2b-line-strong); }
.gm-region.is-target i,
.gm-region.is-target small { color: #9a7b3f; }

.gm-visual {
    position: relative;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 1 / 1;
    margin-inline: auto;
}

/* Grounding shadow drawn as a circle behind the sphere. A drop-shadow filter
   on the WebGL canvas would tint its whole square box instead. */
.gm-visual::before {
    content: "";
    position: absolute;
    inset: 5%;
    border-radius: 50%;
    box-shadow: 0 30px 55px -12px rgba(1, 38, 26, 0.22);
    pointer-events: none;
}

.gm-earth {
    position: absolute;
    inset: 6%;
    width: auto;
    aspect-ratio: auto;
    margin: 0;
}

.gm-earth__ball,
.gm-earth__shade {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.gm-earth__ball {
    background:
        url("images/globe/earth-web.jpg") 18% 48% / 220% 110% repeat-x #123a6b;
    box-shadow:
        inset 18px 8px 36px rgba(255, 255, 255, 0.12),
        inset -28px -16px 48px rgba(0, 8, 24, 0.45),
        0 0 0 1px rgba(232, 201, 142, 0.22),
        0 28px 48px rgba(1, 38, 26, 0.18);
    animation: gmEarthSpin 90s linear infinite;
}

.gm-earth__shade {
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.28) 0%, transparent 34%),
        radial-gradient(circle at 50% 46%, transparent 46%, rgba(0, 10, 24, 0.42) 72%, rgba(0, 6, 16, 0.78) 100%);
    pointer-events: none;
}

.gm-earth__ring {
    display: none;
}

/* 3D Earth — React island fades in over the static sphere.
   js/globe-loader.js uses js/globe/chw-globe.js on the server and
   js/globe/earth-globe-standalone.js as the local-file fallback. */
.gm-earth { transition: opacity 0.6s ease; }
.gm-visual.is-globe-ready .gm-earth {
    opacity: 0;
    visibility: hidden;
}

.gm-globe {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.gm-visual.is-globe-ready .gm-globe { opacity: 1; }
.gm-globe canvas {
    display: block;
    width: 100%;
    height: 100%;
    cursor: grab;
    background: transparent;
}
.gm-globe canvas:active { cursor: grabbing; }

.gm-globe__pins {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
}

.gm-pin,
.gm-globe-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    background: rgba(1, 27, 19, 0.55);
    white-space: nowrap;
    font-family: var(--b2b-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    font-size: 0.74rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.015em;
    text-shadow:
        0 0 5px rgba(1, 38, 26, 0.95),
        0 1px 3px rgba(0, 0, 0, 0.9);
    pointer-events: none;
    user-select: none;
}

.gm-pin {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform-origin: 0 0;
    transition: opacity 0.2s ease;
}

.gm-pin b {
    font-weight: 700;
    color: inherit;
    text-shadow: inherit;
}

.gm-pin.is-hub,
.gm-pin.is-hub b,
.gm-globe-label.is-hub {
    color: #fde68a;
    font-size: 0.78rem;
    text-shadow:
        0 0 6px rgba(1, 38, 26, 0.95),
        0 1px 4px rgba(0, 0, 0, 0.9),
        0 0 12px rgba(232, 201, 142, 0.4);
}

.gm-globe__caption {
    position: absolute;
    left: 50%;
    bottom: 2%;
    transform: translateX(-50%);
    margin: 0;
    font-family: var(--b2b-sans);
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--b2b-teal-deep);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--b2b-line);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    white-space: nowrap;
    pointer-events: none;
}

@media (hover: none) {
    .gm-globe { pointer-events: none; }
}

/* The map is 200% wide and tiles on x, so one loop must travel exactly that
   200% — any further and the image slides off, leaving a flat blue disc. */
@keyframes gmEarthSpin { to { background-position: 200% 48%; } }

@media (prefers-reduced-motion: reduce) {
    .gm-earth__ball { animation: none; }
}

/* ============================================================
   EXHIBITION — MEET CHW IN VIETNAM
   ============================================================ */
#vietnam.b2b-section {
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 14%, rgba(200, 169, 110, 0.14), transparent 24rem),
        radial-gradient(circle at 92% 88%, rgba(0, 98, 65, 0.09), transparent 30rem),
        #f7f5ef;
}

#vietnam.b2b-section::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 24rem;
    height: 24rem;
    right: -10rem;
    top: -10rem;
    border: 1px solid rgba(0, 98, 65, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 3rem rgba(0, 98, 65, 0.025), 0 0 0 7rem rgba(0, 98, 65, 0.018);
    pointer-events: none;
}

.vn-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    min-height: 640px;
    border: 1px solid rgba(232, 201, 142, 0.2);
    border-radius: 34px;
    overflow: hidden;
    background: var(--b2b-night);
    box-shadow: 0 38px 100px rgba(1, 38, 26, 0.2), 0 4px 16px rgba(1, 38, 26, 0.08);
}

.vn-card__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.4rem, 5vw, 4.6rem);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 40%),
        radial-gradient(ellipse 75% 60% at 0% 0%, rgba(0, 98, 65, 0.68) 0%, transparent 68%),
        #011f16;
}

.vn-card__body::after {
    content: 'VIETNAM';
    position: absolute;
    right: -0.35rem;
    bottom: -0.7rem;
    z-index: -1;
    font-family: var(--b2b-sans);
    font-size: clamp(4rem, 9vw, 7.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.07em;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
}

.vn-flag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    align-self: flex-start;
    font-family: var(--b2b-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f4dba9;
    margin-bottom: 1.35rem;
    padding: 0.55rem 0.8rem 0.55rem 0.6rem;
    border: 1px solid rgba(232, 201, 142, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.vn-flag svg { width: 27px; height: 18px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25), 0 5px 12px rgba(0, 0, 0, 0.25); }

.vn-card h2 {
    font-family: var(--b2b-serif);
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: #fff;
    margin: 0 0 1.25rem;
}

.vn-card h2 em { font-weight: 400; font-style: italic; color: var(--b2b-gold-light); }
.vn-card__body > p { font-size: 0.98rem; line-height: 1.75; color: rgba(255, 255, 255, 0.7); margin: 0; max-width: 540px; }

.vn-details {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin: 1.75rem 0 2rem;
    padding: 0;
}

.vn-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 0;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
}
.vn-details i {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--b2b-gold-light);
    border-radius: 9px;
    background: rgba(232, 201, 142, 0.1);
    font-size: 0.75rem;
}
.vn-details div { min-width: 0; }

.vn-details small {
    display: block;
    font-family: var(--b2b-sans);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 0.25rem;
}

.vn-details strong { display: block; font-family: var(--b2b-sans); font-size: 0.82rem; line-height: 1.35; font-weight: 500; color: #fff; }

.vn-card .b2b-btns { align-items: center; }
.vn-card .b2b-btn {
    min-height: 49px;
    padding-inline: 1.35rem;
}
.vn-card .b2b-btn--gold {
    box-shadow: 0 12px 28px rgba(200, 169, 110, 0.2);
}
.vn-card .b2b-btn--ghost { border-color: rgba(255, 255, 255, 0.24); }

.vn-card__media {
    position: relative;
    min-width: 0;
    min-height: 640px;
    background: #011910;
    overflow: hidden;
}

.vn-card__media::before {
    content: '';
    position: absolute;
    inset: -7%;
    background: url("images/WhatsApp Image 2026-09-14 at 2.27.18 PM.jpeg") center / cover no-repeat;
    filter: blur(22px) saturate(0.72) brightness(0.62);
    transform: scale(1.08);
    opacity: 0.72;
}

.vn-card__media img {
    display: block;
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center;
    filter: saturate(0.94) contrast(1.02);
    transition: filter 0.5s ease;
}
.vn-card:hover .vn-card__media img {
    transform: none;
    filter: saturate(1) contrast(1.02);
}
.vn-card__media::after {
    content: '';
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(1, 31, 22, 0.28), transparent 25%),
        linear-gradient(180deg, transparent 52%, rgba(1, 31, 22, 0.48) 100%);
}

.vn-card__media figcaption {
    position: absolute;
    z-index: 3;
    left: 1.35rem;
    bottom: 1.35rem;
    right: auto;
    font-family: var(--b2b-sans);
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    color: #fff;
    background: rgba(1, 31, 22, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.vn-card__media figcaption i { margin-right: 0.35rem; color: var(--b2b-gold-light); }

/* ============================================================
   IMPORTERS & DISTRIBUTORS
   ============================================================ */
.dist-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.dist-grid .check-list { margin: 1.5rem 0 2rem; }

.buyer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.buyer {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    background: #fff;
    border: 1px solid var(--b2b-line);
    border-radius: 16px;
    padding: 1.25rem 1.15rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.buyer:hover { transform: translateY(-4px); border-color: var(--b2b-line-strong); box-shadow: var(--b2b-shadow); }

.buyer i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--b2b-mint);
    color: var(--b2b-teal);
    font-size: 0.95rem;
}

.buyer h3 { font-family: var(--b2b-sans); font-size: 0.95rem; font-weight: 600; color: var(--b2b-ink); margin: 0.2rem 0 0; }
.buyer p { font-size: 0.8rem; line-height: 1.55; color: var(--b2b-body); margin: 0; }

/* Generic info cards + numbered steps (inner pages) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.info-card {
    background: #fff;
    border: 1px solid var(--b2b-line);
    border-radius: 18px;
    padding: 1.9rem 1.7rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover { transform: translateY(-4px); box-shadow: var(--b2b-shadow); }

.info-card .why-b2b__icon { margin-bottom: 1rem; }
.info-card h3 { font-family: var(--b2b-sans); font-size: 1.02rem; font-weight: 600; color: var(--b2b-ink); margin: 0 0 0.45rem; }
.info-card p { font-size: 0.88rem; line-height: 1.65; color: var(--b2b-body); margin: 0; }

.steps-4 {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.step-card {
    position: relative;
    padding: 1.9rem 1.6rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-card__num {
    font-family: var(--b2b-serif);
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1;
    color: var(--b2b-gold-light);
    margin-bottom: 1rem;
    display: block;
}

.step-card h3 { font-family: var(--b2b-sans); font-size: 1rem; font-weight: 600; color: #fff; margin: 0 0 0.45rem; }
.step-card p { font-size: 0.86rem; line-height: 1.6; color: rgba(255, 255, 255, 0.65); margin: 0; }

.doc-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
    margin: 0;
    padding: 0;
}

.doc-grid li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid var(--b2b-line);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-family: var(--b2b-sans);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--b2b-ink);
}

.doc-grid li i { color: var(--b2b-teal); }

.split-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.media-frame {
    position: relative;
    border-radius: var(--b2b-radius);
    overflow: hidden;
    aspect-ratio: 5 / 4;
    box-shadow: var(--b2b-shadow-lg);
}

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

/* FAQ */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 0.75rem; }

.faq details {
    background: #fff;
    border: 1px solid var(--b2b-line);
    border-radius: 14px;
    padding: 0 1.4rem;
    transition: border-color 0.3s ease;
}

.faq details[open] { border-color: var(--b2b-line-strong); }

.faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 0;
    font-family: var(--b2b-sans);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--b2b-ink);
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary i { color: var(--b2b-teal); font-size: 0.8rem; transition: transform 0.3s ease; }
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p { font-size: 0.92rem; line-height: 1.7; color: var(--b2b-body); margin: 0 0 1.2rem; }

/* ============================================================
   B2B ENQUIRY SHELL + FORM ADDITIONS (fields use contact.css)
   ============================================================ */
.enquiry-shell {
    display: grid;
    grid-template-columns: 380px 1fr;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--b2b-shadow-lg);
    border: 1px solid var(--b2b-line);
}

.enquiry-shell__aside {
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 0% 100%, rgba(0, 98, 65, 0.5) 0%, transparent 65%),
        var(--b2b-night);
    color: #fff;
    padding: clamp(2rem, 4vw, 3rem);
}

.enquiry-shell__aside h2 {
    font-family: var(--b2b-serif);
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 500;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 0.85rem;
}

.enquiry-shell__aside h2 em { font-style: italic; color: var(--b2b-gold-light); }
.enquiry-shell__aside > p { font-size: 0.92rem; line-height: 1.7; color: rgba(255, 255, 255, 0.7); margin: 0 0 1.75rem; }
.enquiry-shell__aside .check-list { margin-bottom: 2rem; }

.enquiry-contacts { display: grid; gap: 0.85rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }

.enquiry-contacts a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--b2b-sans);
    font-size: 0.9rem;
    color: #fff;
}

.enquiry-contacts a i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--b2b-gold-light);
    font-size: 0.85rem;
}

.enquiry-shell__form { background: #fff; padding: clamp(2rem, 4vw, 3rem); }

.enquiry-shell__form h3 {
    font-family: var(--b2b-serif);
    font-size: 1.9rem;
    font-weight: 500;
    color: var(--b2b-ink);
    margin: 0 0 0.35rem;
}

.enquiry-shell__form > p { font-size: 0.9rem; color: var(--b2b-body); margin: 0 0 1.75rem; }

/* select floating label — keeps label raised once a value is chosen */
.cf-field.is-filled label {
    top: 0.45rem;
    font-size: 0.68rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.cf-field select option { color: var(--b2b-ink); }

.cf-status {
    display: none;
    margin: 1rem 0 0;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-family: var(--b2b-sans);
    font-size: 0.88rem;
    line-height: 1.5;
}

.cf-status.is-success { display: block; background: var(--b2b-mint); color: var(--b2b-teal-deep); border: 1px solid var(--b2b-line-strong); }
.cf-status.is-error { display: block; background: #fdf3f2; color: #8a2a20; border: 1px solid rgba(138, 42, 32, 0.2); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    position: relative;
    padding-block: clamp(5rem, 10vw, 8rem);
    background: var(--b2b-night);
    text-align: center;
    overflow: hidden;
}

.final-cta__bg {
    position: absolute;
    inset: 0;
    background: url('images/surgical-hero-cta.webp') center / cover no-repeat;
    opacity: 0.22;
}

.final-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 110%, rgba(0, 98, 65, 0.6) 0%, transparent 70%),
        linear-gradient(180deg, rgba(1, 38, 26, 0.85) 0%, rgba(1, 38, 26, 0.92) 100%);
}

.final-cta .b2b-container { position: relative; z-index: 1; max-width: 900px; }

.final-cta h2 {
    font-family: var(--b2b-serif);
    font-size: clamp(2.3rem, 4.8vw, 3.8rem);
    font-weight: 500;
    line-height: 1.08;
    color: #fff;
    margin: 0 0 1.1rem;
}

.final-cta h2 em { font-style: italic; color: var(--b2b-gold-light); }
.final-cta p { font-size: 1.02rem; line-height: 1.75; color: rgba(255, 255, 255, 0.72); max-width: 620px; margin: 0 auto 2.25rem; }
.final-cta .b2b-btns { justify-content: center; }

.final-cta__contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
    margin-top: 2.25rem;
    font-family: var(--b2b-sans);
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.65);
}

.final-cta__contact a { color: #fff; display: inline-flex; align-items: center; gap: 0.5rem; }
.final-cta__contact i { color: var(--b2b-gold-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .why-b2b-grid { grid-template-columns: repeat(2, 1fr); }
    .fp-grid { grid-template-columns: repeat(2, 1fr); }
    .oem-steps { grid-template-columns: repeat(3, 1fr); row-gap: 2.5rem; }
    .oem-steps::before { display: none; }
    .qa-b2b,
    .gm-grid,
    .dist-grid,
    .split-2 { grid-template-columns: 1fr; }
    .steps-4 { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .div-grid { grid-template-columns: 1fr; }
    .div-card { display: grid; grid-template-columns: 0.9fr 1fr; }
    .div-card__media { aspect-ratio: auto; min-height: 100%; }
    .oem-head { grid-template-columns: 1fr; }
    .vn-card { grid-template-columns: 1fr; min-height: 0; border-radius: 26px; }
    .vn-card__media { min-height: 0; aspect-ratio: 16 / 10; order: -1; }
    .enquiry-shell { grid-template-columns: 1fr; }
    .cat-band { grid-template-columns: auto 1fr; }
    .cat-band .b2b-btns { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .div-card { display: flex; }
    .div-card__media { aspect-ratio: 4 / 3; }
    .why-b2b-grid { grid-template-columns: 1fr; }
    .why-b2b { display: grid; grid-template-columns: 48px 1fr; column-gap: 1rem; padding: 1.4rem 1.25rem; }
    .why-b2b__icon { grid-row: span 2; margin-bottom: 0; }
    .fp-grid { gap: 0.75rem; }
    .fp-card__body { flex-direction: column; align-items: flex-start; padding: 0.85rem 0.85rem 0.95rem; }
    .fp-card__body h3 { font-size: 1.1rem; }
    .oem-steps { grid-template-columns: repeat(2, 1fr); }
    .cert-docs { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
    .gm-regions { grid-template-columns: 1fr; }
    #vietnam.b2b-section { padding-block: 3.5rem; }
    .vn-card__body { padding: 1.75rem 1.2rem 1.5rem; }
    .vn-card h2 { font-size: clamp(2.55rem, 14vw, 3.4rem); }
    .vn-card__body > p { font-size: 0.92rem; }
    .vn-card__media { aspect-ratio: 4 / 3; }
    .vn-card__media figcaption { left: 0.85rem; bottom: 0.85rem; max-width: calc(100% - 1.7rem); }
    .vn-details { grid-template-columns: 1fr; margin-block: 1.4rem 1.6rem; }
    .buyer-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid,
    .steps-4,
    .doc-grid { grid-template-columns: 1fr; }
    .cat-band { grid-template-columns: 1fr; text-align: left; }
    .cat-band__icon { display: none; }
    .b2b-btns .b2b-btn { flex: 1 1 100%; }
    .fp-card__quote { padding: 0.35rem 0.65rem; }
}
