/*
 * ═══════════════════════════════════════════════════════════════════════════
 * FILE: public/css/app.css
 * BioSource Trading — Complete Design System
 *
 * Served directly via: asset('css/app.css')
 * No Vite. No npm. No build step. Edit → upload → done.
 *
 * ┌─────────────────────────────────────────────────────────────────────────┐
 * │  10-POINT UI/UX AUDIT — ALL FIXES DOCUMENTED                           │
 * ├─────────────────────────────────────────────────────────────────────────┤
 * │                                                                         │
 * │  FIX 1 — MOBILE HEADER                                                 │
 * │  Problem: nav__inner had fixed 48px padding. Logo text never            │
 * │  truncated. Burger sat outside the viewport on small screens.           │
 * │  Fix: overflow:hidden on #nav; min-width:0 + flex-shrink:1 on logo;    │
 * │  logo text truncates with ellipsis; logo-sub hidden <480px;            │
 * │  burger fixed 44px tap target; nav__actions gap tightened mobile.       │
 * │                                                                         │
 * │  FIX 2 — REQUEST A QUOTE UX                                             │
 * │  Recommendation: SLIDE-IN DRAWER MODAL.                                 │
 * │  Rationale: B2B buyers browsing product pages lose context if           │
 * │  navigated away. Modal keeps them on the page. 30-40% higher           │
 * │  completion vs. full-page redirect (industry benchmark).               │
 * │  Implementation: .rfq-drawer slides in from right, z:1100,             │
 * │  backdrop-blur, Escape closes, body scroll-locked, auto-focus.          │
 * │  /contact still exists for SEO + direct URL sharing.                   │
 * │                                                                         │
 * │  FIX 3 — ICON SYSTEM                                                    │
 * │  Decision: Keep inline SVGs. No icon library.                           │
 * │  Reasons: zero CDN dependency; currentColor theming works perfectly;   │
 * │  no FOUT from icon fonts; sub-pixel rendering at any DPI;              │
 * │  stroke weight 1.5px is consistent across all 80+ icons already.       │
 * │                                                                         │
 * │  FIX 4 — HERO SECTION                                                   │
 * │  Problem 1: .hero__video opacity:0.3 — nearly invisible through the    │
 * │  gradient. Fix: raised to 0.48.                                         │
 * │  Problem 2: .hero__gradient left was rgba(6,15,9,0.97) — 97% black!   │
 * │  Fix: left side 0.97→0.78, right side 0.3→0.15 so video shows.        │
 * │  Problem 3: hero__sub had no explicit font-size, inherited body-xl     │
 * │  but needed line-height tweak for readability. Fixed.                  │
 * │  Problem 4: hero__trust items overflowed on mobile. Fixed with row-gap. │
 * │  Problem 5: scroll-cue overlapped content on small screens. Hidden     │
 * │  below 768px.                                                           │
 * │                                                                         │
 * │  FIX 5 — IMAGES (Baobab + botanical extract powder accent)              │
 * │  Baobab: photo-1609501677236-8d3ea4eb7df6 is a food stall photo.       │
 * │  Replaced with photo-1593161937196-6df3e0ee3893 — clean powder shot.  │
 * │  About-snap accent: photo-1574856344991 sometimes 404s on Unsplash.    │
 * │  Replaced with photo-1556905055-8f358a7a47b2 (green herb powder).      │
 * │  Added object-position:center 20% on product-card__img to crop better. │
 * │  Added bg:var(--c-pale) fallback on product-card__img-wrap.            │
 * │                                                                         │
 * │  FIX 6 — CERTIFICATIONS REDESIGN                                        │
 * │  Old: flex-wrap row of tiny chips. No visual hierarchy.                 │
 * │  New: 4-column grid of vertical cards. Icon at top (52px),             │
 * │  certification name bold, category label in emerald, standard          │
 * │  reference tag below. Gold top-border accent on hover (::before        │
 * │  scaleX animation). Responsive: 4→2→1 columns.                         │
 * │                                                                         │
 * │  FIX 7 — BANNER REDESIGN                                                │
 * │  Old: flat bg-deep with grid overlay — no premium depth.               │
 * │  New: .page-banner with diagonal gradient overlay + gold radial glow   │
 * │  + optional stats sidebar. Much more aligned with brand identity.       │
 * │  Legacy .page-hero kept for inner product/insights pages.               │
 * │                                                                         │
 * │  FIX 8 — MISSING PAGES                                                  │
 * │  Built: about, markets, sustainability, certifications, resources,      │
 * │  legal (shared for privacy/terms/cookies). All use page-banner.        │
 * │                                                                         │
 * │  FIX 9 — CONTACT PAGE SPACING                                           │
 * │  Problem: style="padding-top:160px;padding-bottom:80px" inline.        │
 * │  Fix: New .contact-hero with calc(nav-height+32px) top padding,        │
 * │  40px bottom. Section below: 64px top (was 110px via section-pad).     │
 * │                                                                         │
 * │  FIX 10 — GLOBAL RESPONSIVENESS                                          │
 * │  Added 1100px breakpoint (gap between 1024 and 1280 was missing).       │
 * │  rfq-drawer full-width on mobile. certs-grid 4→2→1. hero__trust        │
 * │  row-gap. all wrap paddings graduated. scroll-cue hidden mobile.        │
 * └─────────────────────────────────────────────────────────────────────────┘
 */

/* ════════════════════════════════════════════════════════════════
   1. DESIGN TOKENS
════════════════════════════════════════════════════════════════ */
:root {
    --c-deep: #0f3d2e;
    --c-deep-dk: #081f17;
    --c-emerald: #1f7a63;
    --c-emerald-lt: #2a9d7f;
    --c-pale: #eaf2ef;
    --c-pale-dk: #d8ebdf;
    --c-gold: #c6a85b;
    --c-gold-lt: #d4b96a;
    --c-gold-pale: #f8f3e8;
    --c-gold-border: rgba(198, 168, 91, 0.25);
    --c-white: #ffffff;
    --c-bg: #f5f7f6;
    --c-bg2: #fafbfa;
    --c-text: #111111;
    --c-text-mid: #2e3e3a;
    --c-text-muted: #5f6f73;
    --c-text-light: #8a9a96;
    --c-border: #e2eae7;
    --c-border-lt: rgba(255, 255, 255, 0.1);
    --c-border-gold: rgba(198, 168, 91, 0.3);

    --shadow-xs: 0 1px 4px rgba(15, 61, 46, 0.05);
    --shadow-sm: 0 2px 14px rgba(15, 61, 46, 0.07);
    --shadow-md: 0 8px 32px rgba(15, 61, 46, 0.11);
    --shadow-lg: 0 24px 64px rgba(15, 61, 46, 0.15);
    --shadow-xl: 0 40px 100px rgba(15, 61, 46, 0.18);

    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 9999px;

    --section-pad-y: 110px;
    --nav-height: 80px;

    --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-ui: "Inter", system-ui, -apple-system, sans-serif;
    --font-body: "Geist", "Inter", system-ui, -apple-system, sans-serif;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast: all 0.2s var(--ease);
    --t: all 0.35s var(--ease);
    --t-slow: all 0.55s var(--ease);
}

/* ════════════════════════════════════════════════════════════════
   2. RESET & BASE
════════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.has-solid-nav {
    padding-top: var(--nav-height);
}
/* FIX 2: body scroll lock when any drawer/modal is open */
body.overflow-hidden {
    overflow: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}
ul,
ol {
    list-style: none;
}
svg {
    flex-shrink: 0;
}
::selection {
    background: var(--c-gold);
    color: var(--c-white);
}

/* ════════════════════════════════════════════════════════════════
   3. TYPOGRAPHY
════════════════════════════════════════════════════════════════ */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.display-1 {
    font-size: clamp(44px, 6.5vw, 92px);
    font-weight: 500;
    line-height: 1.02;
}
.display-2 {
    font-size: clamp(34px, 4.5vw, 62px);
    font-weight: 500;
    line-height: 1.07;
}
.display-3 {
    font-size: clamp(26px, 3.2vw, 46px);
    font-weight: 500;
    line-height: 1.12;
}
.display-4 {
    font-size: clamp(17px, 2vw, 26px);
    font-weight: 500;
    line-height: 1.25;
}
.body-xl {
    font-size: 20px;
    line-height: 1.78;
    font-weight: 300;
    color: var(--c-text-muted);
}
.body-lg {
    font-size: 17px;
    line-height: 1.78;
    font-weight: 300;
    color: var(--c-text-muted);
}
.body-md {
    font-size: 15px;
    line-height: 1.72;
    font-weight: 300;
    color: var(--c-text-muted);
}
.body-sm {
    font-size: 13px;
    line-height: 1.65;
    font-weight: 400;
    color: var(--c-text-light);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-gold);
}
.eyebrow::before {
    content: "";
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--c-gold);
    flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   4. LAYOUT UTILITIES
════════════════════════════════════════════════════════════════ */
.wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
}
.wrap-sm {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 48px;
}
.wrap-xs {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 48px;
}
.section-pad {
    padding: var(--section-pad-y) 0;
}
.bg-offwhite {
    background: var(--c-bg);
}
.bg-pale {
    background: var(--c-pale);
}
.bg-deep {
    background: var(--c-deep);
}
.bg-deep-dk {
    background: var(--c-deep-dk);
}
.section-header {
    margin-bottom: 64px;
}

/* ════════════════════════════════════════════════════════════════
   5. BUTTONS
════════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: 4px;
    transition: var(--t);
    white-space: nowrap;
    cursor: pointer;
    border: none;
}
.btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.25s var(--ease);
    flex-shrink: 0;
}
.btn:hover svg {
    transform: translateX(4px);
}
.btn--primary {
    background: var(--c-deep);
    color: var(--c-white);
}
.btn--primary:hover {
    background: var(--c-emerald);
    box-shadow: 0 12px 36px rgba(15, 61, 46, 0.28);
    transform: translateY(-2px);
}
.btn--gold {
    background: var(--c-gold);
    color: var(--c-deep);
    font-weight: 800;
}
.btn--gold:hover {
    background: var(--c-gold-lt);
    box-shadow: 0 12px 36px rgba(198, 168, 91, 0.32);
    transform: translateY(-2px);
}
.btn--outline-light {
    background: transparent;
    color: var(--c-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
}
.btn--outline-dark {
    background: transparent;
    color: var(--c-deep);
    border: 1.5px solid var(--c-deep);
}
.btn--outline-dark:hover {
    background: var(--c-deep);
    color: var(--c-white);
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════════
   6. NAVIGATION — FIX #1 MOBILE HEADER
   Key changes:
   • overflow:hidden on #nav (hard clip prevents any overflow)
   • nav__logo: min-width:0; flex-shrink:1 (allows compression)
   • nav__logo-text: min-width:0; overflow:hidden
   • nav__logo-name: white-space:nowrap; overflow:hidden; text-overflow:ellipsis
   • nav__logo-sub: hidden on <480px
   • nav__burger: fixed 44px tap target, always at right edge
   • "Request a Quote" btn removed from nav on mobile (use drawer trigger)
════════════════════════════════════════════════════════════════ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    /* FIX 1: hard clip — nothing spills outside the bar */
    overflow: hidden;
    transition:
        background 0.4s var(--ease),
        box-shadow 0.4s var(--ease);
}
#nav:not(.solid) {
    background: transparent;
}
#nav.solid {
    background: rgba(8, 31, 23, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.22);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    /* FIX 1: gap helps keep burger visible when logo is long */
    gap: 16px;
}

/* Logo — FIX 1: allow it to shrink so it never pushes burger off-screen */
.nav__logo {
    display: flex;
    align-items: center;
    gap: 11px;
    /* FIX 1: min-width:0 + flex-shrink:1 = can compress */
    min-width: 0;
    flex-shrink: 1;
}
.nav__logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--c-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* icon never shrinks */
    transition: var(--t);
}
.nav__logo:hover .nav__logo-icon {
    background: var(--c-gold-lt);
}
.nav__logo-icon svg {
    width: 24px;
    height: 24px;
}
.nav__logo-text {
    /* FIX 1: text block clips before overflowing */
    min-width: 0;
    overflow: hidden;
}
.nav__logo-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--c-white);
    display: block;
    letter-spacing: -0.01em;
    line-height: 1.1;
    /* FIX 1: single-line + ellipsis */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav__logo-sub {
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-gold);
    display: block;
    margin-top: 2px;
    white-space: nowrap;
}

/* Nav links */
.nav__links {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-shrink: 0;
}
.nav__links > li {
    position: relative;
}
.nav__links a {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
    padding: 6px 0;
}
.nav__links a svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
    transition: transform 0.25s;
}
.nav__links a:hover {
    color: var(--c-white);
}
.nav__links a:hover svg {
    transform: rotate(180deg);
}
.nav__link--active {
    color: var(--c-white) !important;
}
.nav__link--active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--c-gold);
}

/* Mega dropdown */
.nav__dropdown-wrap:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav__dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: -20px;
    min-width: 560px;
    background: var(--c-deep-dk);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.25s var(--ease),
        transform 0.25s var(--ease),
        visibility 0.25s;
    z-index: 1001;
}
.nav__dropdown-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 8px;
}
.nav__dropdown-col {
    padding: 24px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__dropdown-col:last-child {
    border-right: none;
}
.nav__dropdown-label {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-gold);
    display: block;
    margin-bottom: 14px;
}
.nav__dropdown-col a {
    display: block;
    padding: 7px 0;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}
.nav__dropdown-col a:hover {
    color: var(--c-white);
}
.nav__dropdown-featured {
    padding: 24px 20px;
}
.nav__dropdown-featured p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 16px;
}
.nav__dropdown-cta {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-gold) !important;
}

/* Right actions */
.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.nav__tel {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s;
    white-space: nowrap;
}
.nav__tel svg {
    width: 14px;
    height: 14px;
}
.nav__tel:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* FIX 1: Burger — fixed 44px touch target, never displaces */
.nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px; /* fixed: never shifts layout */
    flex-shrink: 0; /* never gets squeezed */
    border-radius: 8px;
    transition: background 0.2s;
}
.nav__burger:hover {
    background: rgba(255, 255, 255, 0.08);
}
.nav__burger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--c-white);
    border-radius: 1px;
    transition: var(--t);
}

/* ════════════════════════════════════════════════════════════════
   7. MOBILE MENU (z:999)
════════════════════════════════════════════════════════════════ */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--c-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
}
.mobile-menu.mobile-menu--open {
    display: flex;
    transform: translateX(0);
}
.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 32px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transition: var(--t);
}
.mobile-menu__close svg {
    width: 22px;
    height: 22px;
}
.mobile-menu__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-white);
}
.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
}
.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.01em;
    transition: color 0.2s;
}
.mobile-menu__link:hover {
    color: var(--c-white);
}
.mobile-menu__link--cta {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--c-gold);
    color: var(--c-deep);
    padding: 14px 36px;
    border-radius: 4px;
    margin-top: 8px;
}
.mobile-menu__link--cta:hover {
    background: var(--c-gold-lt);
}
.mobile-menu__footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.mobile-menu__footer a {
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s;
}
.mobile-menu__footer a:hover {
    color: rgba(255, 255, 255, 0.7);
}
.mobile-menu__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.5);
}

/* ════════════════════════════════════════════════════════════════
   8. RFQ DRAWER — FIX #2 (new component)
   Slide-in from right edge. z:1100 (above nav, above newsletter modal).
   Triggered by [data-rfq-trigger] on any element.
   Backdrop-blurs the rest of the page. Body scroll locked.
   /contact full-page still exists — linked at drawer bottom.
════════════════════════════════════════════════════════════════ */
.rfq-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    align-items: stretch;
    justify-content: flex-end;
}
.rfq-drawer.rfq-drawer--open {
    display: flex;
}

.rfq-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 15, 9, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}
.rfq-drawer__panel {
    position: relative;
    z-index: 1;
    background: var(--c-white);
    width: 100%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.42s var(--ease);
    box-shadow: -8px 0 60px rgba(15, 61, 46, 0.2);
}
.rfq-drawer--open .rfq-drawer__panel {
    transform: translateX(0);
}

/* Drawer header — sticky */
.rfq-drawer__header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--c-white);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--c-border);
}
.rfq-drawer__eyebrow {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-gold);
    display: block;
    margin-bottom: 6px;
}
.rfq-drawer__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--c-text);
    line-height: 1.15;
}
.rfq-drawer__close {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: var(--t);
    cursor: pointer;
    margin-top: 4px;
}
.rfq-drawer__close svg {
    width: 20px;
    height: 20px;
}
.rfq-drawer__close:hover {
    background: var(--c-bg);
    color: var(--c-text);
}

/* Promise strip */
.rfq-drawer__promises {
    display: flex;
    border-bottom: 1px solid var(--c-gold-border);
    background: var(--c-gold-pale);
}
.rfq-drawer__promise {
    flex: 1;
    padding: 12px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border-right: 1px solid var(--c-gold-border);
}
.rfq-drawer__promise:last-child {
    border-right: none;
}
.rfq-drawer__promise-icon {
    width: 16px;
    height: 16px;
    color: var(--c-gold);
}
.rfq-drawer__promise-text {
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--c-text-mid);
    letter-spacing: 0.02em;
}

/* Form inside drawer */
.rfq-drawer__body {
    padding: 28px 32px;
    flex: 1;
}
.rfq-drawer__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.rfq-drawer__label {
    display: block;
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: 6px;
}
.rfq-drawer__input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--c-text);
    background: var(--c-white);
    outline: none;
    transition: border-color 0.25s;
    appearance: none;
}
.rfq-drawer__input:focus {
    border-color: var(--c-emerald);
}
.rfq-drawer__input--error {
    border-color: rgba(200, 60, 60, 0.6);
}
.rfq-drawer__select {
    cursor: pointer;
}
.rfq-drawer__select option {
    background: var(--c-white);
    color: var(--c-text);
}
.rfq-drawer__textarea {
    resize: vertical;
    min-height: 80px;
}
.rfq-drawer__group {
    margin-bottom: 18px;
}
.rfq-drawer__error {
    display: block;
    font-family: var(--font-ui);
    font-size: 11px;
    color: rgba(180, 40, 40, 0.9);
    margin-top: 4px;
}
.rfq-drawer__submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    margin-top: 8px;
}
.rfq-drawer__disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--c-text-light);
    margin-top: 12px;
    line-height: 1.6;
}
.rfq-drawer__disclaimer a {
    color: var(--c-emerald);
}
.rfq-drawer__alert {
    padding: 14px 18px;
    border-radius: var(--r-sm);
    margin-bottom: 20px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
}
.rfq-drawer__alert--success {
    background: rgba(31, 122, 99, 0.1);
    color: var(--c-emerald);
    border: 1px solid rgba(31, 122, 99, 0.2);
}
.rfq-drawer__alert--error {
    background: rgba(200, 60, 60, 0.08);
    color: rgba(180, 40, 40, 0.9);
    border: 1px solid rgba(200, 60, 60, 0.15);
}

/* Footer: link to full /contact page */
.rfq-drawer__footer {
    padding: 18px 32px;
    border-top: 1px solid var(--c-border);
    text-align: center;
}
.rfq-drawer__footer-link {
    font-family: var(--font-ui);
    font-size: 12.5px;
    color: var(--c-text-muted);
    transition: color 0.2s;
}
.rfq-drawer__footer-link:hover {
    color: var(--c-emerald);
}
.rfq-drawer__footer-link svg {
    width: 13px;
    height: 13px;
    display: inline;
    vertical-align: middle;
    margin-left: 4px;
}

/* ════════════════════════════════════════════════════════════════
   9. HERO — FIX #4
   • opacity raised 0.3→0.48
   • gradient left side 0.97→0.78 (video now visible through left half)
   • hero__sub explicit line-height
   • hero__trust uses row-gap so it wraps cleanly on mobile
   • hero__scroll-cue hidden on mobile to avoid overlap
════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #060f09;
}
.hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* FIX 4: was 0.3 — raised so video is actually visible through gradient */
    opacity: 0.48;
    filter: saturate(0.5) brightness(0.9);
}
/* FIX 4: gradient left was 0.97 (almost opaque) — now 0.78 */
.hero__gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            112deg,
            rgba(6, 15, 9, 0.78) 0%,
            rgba(6, 15, 9, 0.62) 48%,
            rgba(6, 15, 9, 0.15) 100%
        ),
        linear-gradient(0deg, rgba(6, 15, 9, 0.8) 0%, transparent 40%);
}
.hero__noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.028'/%3E%3C/svg%3E");
    opacity: 0.7;
}
.hero__grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 100px 100px;
}
.hero__content {
    position: relative;
    z-index: 5;
    width: 100%;
    padding-top: calc(var(--nav-height) + 70px);
    padding-bottom: 100px;
}
.hero__text-block {
    max-width: 780px;
}
.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 32px;
}
.hero__eyebrow-line {
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--c-gold);
}
.hero__headline {
    color: var(--c-white);
    margin-bottom: 26px;
    font-size: clamp(44px, 6.5vw, 92px);
}
.hero__headline-em {
    font-style: italic;
    color: var(--c-gold);
    font-weight: 400;
}
/* FIX 4: explicit sizing + line-height for sub-headline */
.hero__sub {
    font-size: 19px;
    line-height: 1.76;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin-bottom: 48px;
    font-weight: 300;
}
.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}
/* FIX 4: row-gap so trust items wrap cleanly without overflow */
.hero__trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 8px;
}
.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hero__trust-item:first-child {
    padding-left: 0;
}
.hero__trust-item:last-child {
    border-right: none;
}
.hero__trust-icon {
    width: 14px;
    height: 14px;
    color: var(--c-gold);
    flex-shrink: 0;
}
.hero__trust-text {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.hero__scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
}
.hero__scroll-label {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}
.hero__scroll-line {
    width: 1.5px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}
.hero__scroll-line::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(var(--c-gold), transparent);
    animation: scrollDrop 2s 1s infinite;
}
@keyframes scrollDrop {
    0% {
        top: -100%;
    }
    100% {
        top: 200%;
    }
}

/* ════════════════════════════════════════════════════════════════
   10. TRUST BAR
════════════════════════════════════════════════════════════════ */
.trust-bar {
    background: var(--c-gold-pale);
    border-bottom: 1px solid var(--c-gold-border);
    padding: 18px 0;
}
.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 28px;
    border-right: 1px solid var(--c-gold-border);
}
.trust-bar__item:last-child {
    border-right: none;
}
.trust-bar__icon {
    width: 15px;
    height: 15px;
    color: var(--c-gold);
    flex-shrink: 0;
}
.trust-bar__text {
    font-family: var(--font-ui);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--c-text-mid);
    letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════════════════════════
   11. PILLARS
════════════════════════════════════════════════════════════════ */
.pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: 64px;
}
.pillar-card {
    padding: 56px 44px;
    border-right: 1px solid var(--c-border);
    transition: background 0.3s var(--ease);
}
.pillar-card:last-child {
    border-right: none;
}
.pillar-card:hover {
    background: var(--c-pale);
}
.pillar-card__number {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: var(--c-gold);
    display: block;
    margin-bottom: 28px;
}
.pillar-card__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--c-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--t);
}
.pillar-card__icon-wrap svg {
    width: 28px;
    height: 28px;
    color: var(--c-deep);
    transition: color 0.25s;
}
.pillar-card:hover .pillar-card__icon-wrap {
    background: var(--c-emerald);
}
.pillar-card:hover .pillar-card__icon-wrap svg {
    color: var(--c-white);
}
.pillar-card__title {
    color: var(--c-text);
    margin-bottom: 16px;
}
.pillar-card__body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--c-text-muted);
    font-weight: 300;
}

/* ════════════════════════════════════════════════════════════════
   12. ABOUT SNAPSHOT — FIX #5 (accent image replacement)
════════════════════════════════════════════════════════════════ */
.about-snap__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}
.about-snap__media {
    position: relative;
    height: 600px;
}
.about-snap__img-main {
    position: absolute;
    inset: 0 60px 60px 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-snap__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-snap__img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 230px;
    height: 230px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 6px solid var(--c-white);
    box-shadow: var(--shadow-md);
    /* FIX 5: fallback bg while image loads */
    background: var(--c-pale);
}
.about-snap__img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.about-snap__stat-badge {
    position: absolute;
    top: 28px;
    right: 44px;
    background: var(--c-deep);
    padding: 20px 26px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.about-snap__stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--c-gold);
    display: block;
    line-height: 1;
}
.about-snap__stat-num sup {
    font-size: 18px;
}
.about-snap__stat-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 6px;
}
.about-snap__pull-quote {
    font-family: var(--font-display);
    font-size: 19px;
    font-style: italic;
    font-weight: 400;
    color: var(--c-emerald);
    line-height: 1.65;
    padding-left: 24px;
    border-left: 3px solid var(--c-gold);
    margin-bottom: 24px;
}
.about-snap__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 36px;
}
.about-snap__value-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-snap__value-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-gold);
    flex-shrink: 0;
}
.about-snap__value-text {
    font-family: var(--font-ui);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--c-text-mid);
}

/* ════════════════════════════════════════════════════════════════
   13. STATS BAND
════════════════════════════════════════════════════════════════ */
.stats-band {
    padding: 72px 0;
    background: var(--c-white);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}
.stats-band__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    padding: 36px 40px;
    text-align: center;
    border-right: 1px solid var(--c-border);
    transition: background 0.25s;
}
.stat-item:last-child {
    border-right: none;
}
.stat-item:hover {
    background: var(--c-pale);
}
.stat-item__value {
    font-family: var(--font-display);
    font-size: 54px;
    font-weight: 600;
    color: var(--c-deep);
    line-height: 1;
    display: inline;
}
.stat-item__suffix {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--c-gold);
}
.stat-item__label {
    display: block;
    margin-top: 10px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--c-text-muted);
}
.stat-item__desc {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: var(--c-text-light);
}

/* ════════════════════════════════════════════════════════════════
   14. PRODUCTS GRID — FIX #5 (image object-position)
════════════════════════════════════════════════════════════════ */
.products-preview__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 24px;
}
.products-tabs {
    display: flex;
    gap: 4px;
    background: var(--c-bg);
    padding: 5px;
    border-radius: var(--r-sm);
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.products-tabs__btn {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--c-text-muted);
    transition: var(--t);
    white-space: nowrap;
    cursor: pointer;
}
.products-tabs__btn:hover {
    color: var(--c-text-mid);
}
.products-tabs__btn--active {
    background: var(--c-white);
    color: var(--c-deep);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.product-card {
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: var(--t);
    background: var(--c-white);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(31, 122, 99, 0.18);
}
.product-card__img-link {
    display: block;
    overflow: hidden;
    text-decoration: none;
}
.product-card__img-wrap {
    height: 210px;
    overflow: hidden;
    position: relative;
    /* FIX 5: pale fallback while image loads */
    background: var(--c-pale);
    flex-shrink: 0;
}
.product-card__img {
    width: 100%;
    height: 100%;
    /* FIX 5: focus crop on upper content of ingredient images */
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.55s var(--ease);
}
.product-card:hover .product-card__img {
    transform: scale(1.07);
}
.product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
}
.product-card__badge--deep {
    background: var(--c-deep);
    color: var(--c-white);
}
.product-card__badge--gold {
    background: var(--c-gold);
    color: var(--c-white);
}
.product-card__body {
    padding: 28px 28px 20px;
    flex: 1;
}
.product-card__cat {
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-emerald);
    display: block;
    margin-bottom: 10px;
}
.product-card__name {
    color: var(--c-text);
    margin-bottom: 12px;
}
.product-card__desc {
    font-size: 14px;
    line-height: 1.68;
    color: var(--c-text-muted);
    font-weight: 300;
    margin-bottom: 18px;
}
.product-card__tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}
.product-card__tag {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--c-pale);
    color: var(--c-deep);
    border: 1px solid rgba(15, 61, 46, 0.1);
}
.product-card__footer {
    padding: 16px 28px;
    border-top: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.product-card__certs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.cert-pill {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 3px;
    background: var(--c-gold-pale);
    color: var(--c-gold);
    border: 1px solid var(--c-gold-border);
}
.product-card__link {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-emerald);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
    pointer-events: auto;
    cursor: pointer;
}
.product-card__link svg {
    width: 13px;
    height: 13px;
}
.product-card__link:hover {
    gap: 10px;
    color: var(--c-deep);
}
.products-preview__cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid var(--c-border);
    gap: 24px;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════════
   15. MARKETS SECTION
════════════════════════════════════════════════════════════════ */
.markets-section__header {
    margin-bottom: 64px;
}
.markets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}
.market-card {
    padding: 52px 46px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}
.market-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--c-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.market-card:hover {
    background: rgba(255, 255, 255, 0.08);
}
.market-card:hover::before {
    transform: scaleX(1);
}
.market-card__icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--t);
}
.market-card__icon-wrap svg {
    width: 26px;
    height: 26px;
    color: var(--c-gold);
    transition: color 0.25s;
}
.market-card:hover .market-card__icon-wrap {
    background: var(--c-gold);
    border-color: var(--c-gold);
}
.market-card:hover .market-card__icon-wrap svg {
    color: var(--c-white);
}
.market-card__title {
    color: var(--c-white);
    margin-bottom: 14px;
}
.market-card__body {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.48);
    font-weight: 300;
    margin-bottom: 24px;
}
.market-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.market-card__tag {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.45);
    transition: var(--t);
}
.market-card:hover .market-card__tag {
    border-color: var(--c-gold-border);
    color: rgba(198, 168, 91, 0.8);
}
.market-card__link {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}
.market-card__link svg {
    width: 13px;
    height: 13px;
}
.market-card__link:hover {
    gap: 13px;
}

/* ════════════════════════════════════════════════════════════════
   16. PROCESS STEPS
════════════════════════════════════════════════════════════════ */
.process-section__header {
    margin-bottom: 72px;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}
.process-steps::before {
    content: "";
    position: absolute;
    top: 35px;
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--c-gold),
        var(--c-emerald),
        var(--c-gold)
    );
    pointer-events: none;
}
.process-step {
    padding: 0 32px;
    text-align: center;
}
.process-step__num {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--c-deep);
    transition: var(--t);
    position: relative;
    z-index: 1;
}
.process-step:hover .process-step__num {
    background: var(--c-deep);
    color: var(--c-white);
    border-color: var(--c-deep);
    box-shadow: 0 8px 24px rgba(15, 61, 46, 0.22);
}
.process-step__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.process-step__body {
    font-size: 14px;
    line-height: 1.72;
    color: var(--c-text-muted);
    font-weight: 300;
}

/* ════════════════════════════════════════════════════════════════
   17. SUSTAINABILITY
════════════════════════════════════════════════════════════════ */
.sustain-snap__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: center;
}
.sustain-snap__media {
    position: relative;
}
.sustain-snap__img {
    width: 100%;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    height: 540px;
    object-fit: cover;
}
.sustain-snap__quote-card {
    position: absolute;
    bottom: -28px;
    right: -24px;
    background: var(--c-deep);
    padding: 28px 32px;
    border-radius: var(--r-md);
    max-width: 250px;
    box-shadow: var(--shadow-lg);
}
.sustain-snap__quote-card p {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 12px;
}
.sustain-snap__quote-card strong {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-gold);
}
.sustain-snap__img-inset {
    position: absolute;
    top: 24px;
    right: -24px;
    width: 160px;
    height: 160px;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 5px solid var(--c-white);
    box-shadow: var(--shadow-md);
}
.sustain-snap__img-inset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sustain-snap__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sustain-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    transition: var(--t);
}
.sustain-item:hover {
    border-color: rgba(31, 122, 99, 0.25);
    background: var(--c-pale);
    transform: translateX(4px);
}
.sustain-item__icon-wrap {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--c-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
}
.sustain-item__icon-wrap svg {
    width: 21px;
    height: 21px;
    color: var(--c-emerald);
    transition: color 0.25s;
}
.sustain-item:hover .sustain-item__icon-wrap {
    background: var(--c-emerald);
}
.sustain-item:hover .sustain-item__icon-wrap svg {
    color: var(--c-white);
}
.sustain-item__title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.sustain-item__body {
    font-size: 14px;
    line-height: 1.65;
    color: var(--c-text-muted);
    font-weight: 300;
}

/* ════════════════════════════════════════════════════════════════
   18. CERTIFICATIONS — FIX #6 (complete redesign)
   OLD: flex-wrap chips with horizontal icon layout, no hierarchy
   NEW: 4-column grid, vertical card layout, icon top, gold border anim
════════════════════════════════════════════════════════════════ */
.certs-strip__header {
    text-align: center;
    margin-bottom: 56px;
}
.certs-strip__header .eyebrow {
    justify-content: center;
}
.certs-strip__header h2 {
    margin-top: 16px;
    margin-bottom: 14px;
}
.certs-strip__header > p {
    max-width: 560px;
    margin: 0 auto;
}

/* FIX 6: Grid layout instead of flex-wrap */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.cert-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    /* FIX 6: vertical layout */
    display: flex;
    flex-direction: column;
    padding: 28px 22px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--t);
    box-shadow: var(--shadow-xs);
}
/* FIX 6: gold top-accent animates in on hover */
.cert-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-gold), var(--c-gold-lt));
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.38s var(--ease);
}
.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-gold-border);
}
.cert-card:hover::before {
    transform: scaleX(1);
}

/* FIX 6: icon enlarged + own row */
.cert-card__icon {
    width: 52px;
    height: 52px;
    background: var(--c-gold-pale);
    border: 1px solid var(--c-gold-border);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 16px;
}
.cert-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--c-gold);
}

/* FIX 6: name = main heading, desc = category label, standard = small ref */
.cert-card__name {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    color: var(--c-text);
    display: block;
    line-height: 1.25;
    margin-bottom: 4px;
}
.cert-card__desc {
    font-size: 11.5px;
    color: var(--c-emerald);
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
}
/* FIX 6: NEW element — standard reference (e.g. "EC 834/2007") */
.cert-card__standard {
    font-size: 11px;
    color: var(--c-text-light);
    display: block;
    font-weight: 300;
    line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════════
   19. INSIGHTS
════════════════════════════════════════════════════════════════ */
.insights-preview__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
    gap: 24px;
}
.insights-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
}
.insights-grid__secondary {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.insight-card {
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--c-white);
    transition: var(--t);
}
.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.insight-card__img-link {
    display: block;
    overflow: hidden;
}
.insight-card__img-wrap--lg {
    height: 280px;
}
.insight-card__img-wrap--sm {
    height: 180px;
}
.insight-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.insight-card:hover .insight-card__img {
    transform: scale(1.05);
}
.insight-card__body {
    padding: 26px;
}
.insight-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.insight-card__tag {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-emerald);
    background: var(--c-pale);
    padding: 4px 10px;
    border-radius: 3px;
}
.insight-card__date {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--c-text-light);
}
.insight-card__title {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--c-text);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.insight-card--featured .insight-card__title {
    font-size: 22px;
}
.insight-card--small .insight-card__title {
    font-size: 17px;
}
.insight-card__title a {
    transition: color 0.2s;
}
.insight-card__title a:hover {
    color: var(--c-emerald);
}
.insight-card__excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: var(--c-text-muted);
    font-weight: 300;
    margin-bottom: 18px;
}
.insight-card__link {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-emerald);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.insight-card__link svg {
    width: 13px;
    height: 13px;
}
.insight-card__link:hover {
    gap: 10px;
}

/* ════════════════════════════════════════════════════════════════
   20. RFQ SECTION (homepage dark form)
════════════════════════════════════════════════════════════════ */
.rfq-section {
    position: relative;
    overflow: hidden;
}
.rfq-section__bg-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 50% 70% at 80% 50%,
        rgba(198, 168, 91, 0.07) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.rfq-section__grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 80px 80px;
}
.rfq-section__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.rfq-section__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}
.rfq-section__feature {
    display: flex;
    align-items: center;
    gap: 13px;
}
.rfq-section__feature-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-gold);
    flex-shrink: 0;
}
.rfq-section__feature span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}
.rfq-section__contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rfq-section__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rfq-section__contact-item svg {
    width: 15px;
    height: 15px;
    color: var(--c-gold);
    flex-shrink: 0;
}
.rfq-section__contact-item a {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}
.rfq-section__contact-item a:hover {
    color: var(--c-gold);
}
.rfq-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-xl);
    padding: 48px;
    backdrop-filter: blur(12px);
}
.rfq-form__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--c-white);
    margin-bottom: 32px;
}
.rfq-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.rfq-form__alert {
    padding: 14px 18px;
    border-radius: var(--r-sm);
    margin-bottom: 20px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
}
.rfq-form__alert--success {
    background: rgba(31, 122, 99, 0.2);
    color: #7fffcf;
    border: 1px solid rgba(31, 122, 99, 0.3);
}
.rfq-form__alert--error {
    background: rgba(200, 80, 80, 0.15);
    color: #ffaaaa;
    border: 1px solid rgba(200, 80, 80, 0.2);
}
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-sm);
    color: var(--c-white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    transition:
        border-color 0.25s,
        background 0.25s;
    outline: none;
    appearance: none;
}
.form-input::placeholder {
    color: rgba(255, 255, 255, 0.22);
}
.form-input:focus {
    border-color: var(--c-emerald);
    background: rgba(255, 255, 255, 0.09);
}
.form-input--error {
    border-color: rgba(200, 80, 80, 0.5);
}
.form-select {
    cursor: pointer;
}
.form-select option {
    background: var(--c-deep-dk);
    color: var(--c-white);
}
.form-textarea {
    resize: vertical;
    min-height: 100px;
}
.form-error {
    display: block;
    margin-top: 6px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: #ffaaaa;
    font-weight: 500;
}
.rfq-form__submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 17px;
}
.rfq-form__disclaimer {
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.6;
}
.rfq-form__disclaimer a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: underline;
}

/* ════════════════════════════════════════════════════════════════
   21. PARTNERS BAND
════════════════════════════════════════════════════════════════ */
.partners-band {
    padding: 44px 0;
    background: var(--c-bg);
    border-top: 1px solid var(--c-border);
}
.partners-band__label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-text-light);
    text-align: center;
    margin-bottom: 28px;
}
.partners-band__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.partners-band__logo-item {
    padding: 10px 28px;
    border-right: 1px solid var(--c-border);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--c-text-light);
    font-style: italic;
}
.partners-band__logo-item:last-child {
    border-right: none;
}

/* ════════════════════════════════════════════════════════════════
   22. FOOTER
════════════════════════════════════════════════════════════════ */
.footer {
    background: #07100d;
}
.footer__newsletter-band {
    background: var(--c-deep);
    padding: 52px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer__newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.footer__newsletter-label {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--c-white);
    margin-bottom: 6px;
}
.footer__newsletter-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
}
.footer__newsletter-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.footer__newsletter-input {
    padding: 13px 18px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
    color: var(--c-white);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    min-width: 260px;
    transition: border-color 0.2s;
}
.footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.footer__newsletter-input:focus {
    border-color: var(--c-gold);
}
.footer__main {
    padding: 80px 0 56px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 56px;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 13px;
}
.footer__logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: var(--c-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer__logo-icon svg {
    width: 26px;
    height: 26px;
}
.footer__logo-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--c-white);
    display: block;
    letter-spacing: -0.01em;
}
.footer__logo-sub {
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-gold);
    display: block;
    margin-top: 3px;
}
.footer__brand-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.32);
    margin: 22px 0 26px;
    font-weight: 300;
}
.footer__socials {
    display: flex;
    gap: 10px;
}
.footer__social {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.38);
    transition: var(--t);
}
.footer__social svg {
    width: 16px;
    height: 16px;
}
.footer__social:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
}
.footer__col-title {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-white);
    margin-bottom: 22px;
    display: block;
}
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 300;
    transition: color 0.2s;
}
.footer__links a:hover {
    color: var(--c-gold);
}
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}
.footer__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer__contact svg {
    width: 15px;
    height: 15px;
    color: var(--c-gold);
    flex-shrink: 0;
}
.footer__contact a,
.footer__contact span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    transition: color 0.2s;
}
.footer__contact a:hover {
    color: var(--c-gold);
}
.footer__cta-btn {
    width: 100%;
    justify-content: center;
}
.footer__cert-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
}
.footer__cert-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer__cert-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    white-space: nowrap;
}
.footer__certs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.footer__cert-badge {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 3px;
    border: 1px solid var(--c-gold-border);
    color: rgba(198, 168, 91, 0.45);
}
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}
.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.footer__bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.22);
}
.footer__legal-links {
    display: flex;
    gap: 24px;
}
.footer__legal-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.22);
    transition: color 0.2s;
}
.footer__legal-links a:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* ════════════════════════════════════════════════════════════════
   23. WHATSAPP (z:990)
════════════════════════════════════════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 990;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    border-radius: 60px;
    padding: 14px 20px 14px 14px;
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.4);
    transition: var(--t);
    overflow: hidden;
    max-width: 56px;
    text-decoration: none;
}
.wa-float:hover {
    max-width: 200px;
    box-shadow: 0 12px 44px rgba(37, 211, 102, 0.5);
}
.wa-float__ring {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    animation: waRing 2.5s 2s infinite;
}
@keyframes waRing {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
.wa-float__icon {
    width: 28px;
    height: 28px;
    color: var(--c-white);
    flex-shrink: 0;
}
.wa-float__label {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    color: var(--c-white);
    white-space: nowrap;
    letter-spacing: 0.03em;
    opacity: 0;
    transition: opacity 0.25s 0.05s;
}
.wa-float:hover .wa-float__label {
    opacity: 1;
}

/* ════════════════════════════════════════════════════════════════
   24. NEWSLETTER MODAL (z:1100)
════════════════════════════════════════════════════════════════ */
.nl-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.nl-modal.nl-modal--open {
    display: flex;
}
.nl-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}
.nl-modal__box {
    position: relative;
    z-index: 1;
    display: flex;
    background: var(--c-white);
    border-radius: var(--r-xl);
    overflow: hidden;
    max-width: 780px;
    width: 100%;
    box-shadow: var(--shadow-xl);
}
.nl-modal__img {
    width: 320px;
    flex-shrink: 0;
}
.nl-modal__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nl-modal__content {
    padding: 48px;
}
.nl-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: var(--t);
    cursor: pointer;
}
.nl-modal__close svg {
    width: 18px;
    height: 18px;
}
.nl-modal__close:hover {
    background: rgba(0, 0, 0, 0.15);
    color: var(--c-text);
}
.nl-modal__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--c-text);
    margin: 16px 0 12px;
    letter-spacing: -0.01em;
}
.nl-modal__body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--c-text-muted);
    font-weight: 300;
    margin-bottom: 28px;
}
.nl-modal__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nl-modal__input {
    padding: 13px 16px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--c-text);
    outline: none;
    transition: border-color 0.2s;
}
.nl-modal__input:focus {
    border-color: var(--c-emerald);
}
.nl-modal__submit {
    justify-content: center;
}
.nl-modal__disclaimer {
    font-size: 11.5px;
    color: var(--c-text-light);
    margin-top: 10px;
    text-align: center;
}

/* ════════════════════════════════════════════════════════════════
   25. SCROLL-REVEAL
════════════════════════════════════════════════════════════════ */
[data-animate] {
    opacity: 0;
    transition:
        opacity 0.7s var(--ease),
        transform 0.7s var(--ease);
}
[data-animate="fade-up"] {
    transform: translateY(32px);
}
[data-animate="fade-down"] {
    transform: translateY(-32px);
}
[data-animate="fade-left"] {
    transform: translateX(32px);
}
[data-animate="fade-right"] {
    transform: translateX(-32px);
}
[data-animate="fade-in"] {
    transform: none;
}
[data-animate].animated {
    opacity: 1 !important;
    transform: none !important;
}

/* ════════════════════════════════════════════════════════════════
   26. PAGE BANNER — FIX #7 (redesigned inner-page banners)
   Replaces flat .page-hero on About, Markets, etc.
   Features: diagonal gradient + grid texture + gold radial glow.
   Optional stats sidebar for key numbers.
════════════════════════════════════════════════════════════════ */
.page-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 44vh;
    /* FIX 7: calc nav-height so content always below fixed bar */
    padding: calc(var(--nav-height) + 52px) 0 68px;
}
.page-banner--deep {
    background: var(--c-deep);
}
.page-banner--emerald {
    background: var(--c-emerald);
}

/* FIX 7: Diagonal gradient (not flat dark) */
.page-banner__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(6, 15, 9, 0.55) 0%, transparent 60%),
        linear-gradient(0deg, rgba(6, 15, 9, 0.45) 0%, transparent 50%);
}
/* FIX 7: Subtle grid texture */
.page-banner__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
}
/* FIX 7: Gold radial glow — premium brand accent */
.page-banner__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse 40% 70% at 85% 50%,
        rgba(198, 168, 91, 0.12) 0%,
        transparent 70%
    );
}
.page-banner__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.page-banner__content {
    flex: 1;
    max-width: 680px;
}
.page-banner__eyebrow {
    margin-bottom: 16px;
}
.page-banner__title {
    color: var(--c-white);
    line-height: 1.08;
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 500;
    margin-bottom: 18px;
}
.page-banner__desc {
    font-size: 18px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.58);
    font-weight: 300;
    max-width: 580px;
}

/* Stats sidebar — optional, hidden on tablet/mobile */
.page-banner__stats {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}
.page-banner__stat {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-md);
    padding: 22px 28px;
    min-width: 140px;
    text-align: center;
}
.page-banner__stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--c-gold);
    display: block;
    line-height: 1;
}
.page-banner__stat-label {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    display: block;
    margin-top: 6px;
}

/* Legacy page-hero — kept for products/insights inner pages */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-height) + 60px) 0 80px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}
.page-hero__grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
}
.page-hero__inner {
    width: 100%;
}
.page-hero__search {
    margin-top: 40px;
    max-width: 700px;
}
.products-search__wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    overflow: hidden;
}
.products-search__icon {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    margin-left: 16px;
}
.products-search__input {
    flex: 1;
    padding: 16px;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--c-white);
}
.products-search__input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.products-search__btn {
    border-radius: 0;
    flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   27. CONTACT PAGE — FIX #9 (reduced top spacing)
   OLD: style="padding-top:160px;padding-bottom:80px" inline
   NEW: .contact-hero compact banner + .contact-section 64px top
════════════════════════════════════════════════════════════════ */
.contact-hero {
    position: relative;
    overflow: hidden;
    background: var(--c-deep);
    /* FIX 9: tight padding vs the original 160px inline style */
    padding: calc(var(--nav-height) + 32px) 0 40px;
}
.contact-hero__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
}
.contact-hero__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse 40% 60% at 80% 50%,
        rgba(198, 168, 91, 0.1) 0%,
        transparent 65%
    );
}
.contact-hero__inner {
    position: relative;
    z-index: 1;
}

/* FIX 9: section below gets 64px top padding (was 110px via section-pad) */
.contact-section {
    padding: 64px 0 110px;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-promise {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.contact-promise__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-promise__icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--c-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-promise__icon svg {
    width: 22px;
    height: 22px;
    color: var(--c-emerald);
}
.contact-promise__item strong {
    display: block;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 4px;
}
.contact-promise__item p {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.6;
    font-weight: 300;
}
.contact-details {
    margin-bottom: 32px;
}
.contact-details__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 20px;
}
.contact-details__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-details__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.contact-details__list svg {
    width: 16px;
    height: 16px;
    color: var(--c-gold);
    flex-shrink: 0;
    margin-top: 3px;
}
.contact-details__label {
    display: block;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text-light);
    margin-bottom: 3px;
}
.contact-details__list a,
.contact-details__list span {
    font-size: 14px;
    color: var(--c-text-mid);
    transition: color 0.2s;
}
.contact-details__list a:hover {
    color: var(--c-emerald);
}
.contact-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    background: #25d366;
    color: var(--c-white);
    border-radius: 6px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: var(--t);
}
.contact-wa-btn svg {
    width: 20px;
    height: 20px;
}
.contact-wa-btn:hover {
    background: #1da851;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transform: translateY(-1px);
}
.contact-form {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 48px;
}
.contact-form__title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 8px;
}
.contact-form__label {
    display: block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}
.contact-form__input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--c-text);
    background: var(--c-white);
    outline: none;
    transition: border-color 0.25s;
    appearance: none;
}
.contact-form__input:focus {
    border-color: var(--c-emerald);
}
.contact-form__select {
    cursor: pointer;
}
.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form__submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}
.contact-form__disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--c-text-light);
    margin-top: 14px;
    line-height: 1.6;
}
.contact-form__disclaimer a {
    color: var(--c-emerald);
}

/* ════════════════════════════════════════════════════════════════
   28. INNER PAGE STYLES (catalogue, product, articles)
════════════════════════════════════════════════════════════════ */
.breadcrumb-bar {
    padding: 14px 0;
    border-bottom: 1px solid var(--c-border);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--c-text-light);
}
.breadcrumb a {
    color: var(--c-text-muted);
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: var(--c-emerald);
}
.breadcrumb__sep {
    color: var(--c-border);
}
.catalogue__layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}
.catalogue__sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 20px);
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.catalogue__sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.catalogue__sidebar-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--c-text);
}
.catalogue__clear-link {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-emerald);
}
.filter-group {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--c-border);
}
.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.filter-group__title {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-text-light);
    margin-bottom: 14px;
    display: block;
}
.filter-group__options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 13.5px;
    font-weight: 400;
    color: var(--c-text-muted);
    padding: 6px 10px;
    border-radius: 6px;
    transition: var(--t);
}
.filter-option:hover {
    background: var(--c-pale);
    color: var(--c-deep);
}
.filter-option--active {
    background: var(--c-pale);
    color: var(--c-deep);
    font-weight: 600;
}
.filter-option__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-border);
    flex-shrink: 0;
    transition: background 0.2s;
}
.filter-option--active .filter-option__dot {
    background: var(--c-gold);
}
.filter-option__count {
    margin-left: auto;
    font-size: 11px;
    color: var(--c-text-light);
}
.filter-group__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.filter-tag {
    font-family: var(--font-ui);
    font-size: 11.5px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    transition: var(--t);
}
.filter-tag:hover {
    border-color: var(--c-gold);
    color: var(--c-deep);
}
.catalogue__sidebar-cta {
    margin-top: 24px;
}
.catalogue__sidebar-cta p {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.6;
}
.catalogue__results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.catalogue__results-count {
    font-size: 15px;
    color: var(--c-text-muted);
}
.catalogue__results-count strong {
    color: var(--c-text);
}
.catalogue__view-toggle {
    display: flex;
    gap: 4px;
}
.view-toggle__btn {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-light);
    transition: var(--t);
}
.view-toggle__btn svg {
    width: 16px;
    height: 16px;
}
.view-toggle__btn--active {
    background: var(--c-pale);
    color: var(--c-deep);
}
.catalogue__empty {
    text-align: center;
    padding: 80px 40px;
}
.catalogue__empty h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 12px;
}
.catalogue__empty p {
    font-size: 15px;
    color: var(--c-text-muted);
}
.catalogue__empty a {
    color: var(--c-emerald);
}
.products-grid--list {
    grid-template-columns: 1fr;
}
.products-grid--list .product-card {
    flex-direction: row;
}
.products-grid--list .product-card__img-wrap {
    width: 200px;
    height: auto;
    flex-shrink: 0;
}
.products-grid--list .product-card__body {
    flex: 1;
}
.cta-band {
    padding: 56px 0;
}
.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.product-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}
.product-hero__img-main {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}
.product-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-hero__gallery {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.product-hero__thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--r-sm);
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    cursor: pointer;
}
.product-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-hero__thumb--active {
    border-color: var(--c-gold);
}
.product-hero__quick-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--c-border);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 28px;
}
.quick-spec {
    background: var(--c-bg);
    padding: 16px 14px;
}
.quick-spec__label {
    display: block;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text-light);
    margin-bottom: 6px;
}
.quick-spec__value {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-text-mid);
}
.product-hero__certs {
    margin-bottom: 28px;
}
.product-hero__certs-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text-light);
    display: block;
    margin-bottom: 10px;
}
.product-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.product-hero__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    color: #25d366;
    transition: color 0.2s;
}
.product-hero__whatsapp svg {
    width: 18px;
    height: 18px;
}
.product-hero__whatsapp:hover {
    color: #1da851;
}
.product-tabs-section {
    padding: 64px 0;
}
.product-detail-tabs {
    display: flex;
    border-bottom: 2px solid var(--c-border);
    margin-bottom: 48px;
}
.product-detail-tab {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    color: var(--c-text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--t);
    cursor: pointer;
}
.product-detail-tab:hover {
    color: var(--c-deep);
}
.product-detail-tab--active {
    color: var(--c-deep);
    border-bottom-color: var(--c-gold);
}
.product-tab-panel {
    display: none;
}
.product-tab-panel--active {
    display: block;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table__row {
    border-bottom: 1px solid var(--c-border);
    transition: background 0.2s;
}
.specs-table__row:hover {
    background: var(--c-bg);
}
.specs-table__key {
    padding: 14px 20px;
    width: 35%;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-mid);
    vertical-align: top;
}
.specs-table__val {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--c-text-muted);
    font-weight: 300;
    line-height: 1.6;
}
.specs-formats__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 16px;
}
.specs-formats__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.specs-format-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    font-size: 14px;
    color: var(--c-text-mid);
}
.specs-format-item svg {
    width: 15px;
    height: 15px;
    color: var(--c-emerald);
}
.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.application-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    transition: var(--t);
}
.application-item:hover {
    border-color: rgba(31, 122, 99, 0.25);
    background: var(--c-pale);
}
.application-item__num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--c-gold);
    line-height: 1;
    flex-shrink: 0;
    width: 36px;
}
.application-item__text {
    font-size: 15px;
    color: var(--c-text-mid);
}
.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.doc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    transition: var(--t);
}
.doc-item:hover {
    border-color: var(--c-gold-border);
    background: var(--c-gold-pale);
}
.doc-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: var(--c-pale);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.doc-item__icon svg {
    width: 20px;
    height: 20px;
    color: var(--c-emerald);
}
.doc-item__text {
    flex: 1;
}
.doc-item__name {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 3px;
}
.doc-item__desc {
    display: block;
    font-size: 12px;
    color: var(--c-text-light);
}
.doc-item__request {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--c-emerald);
    flex-shrink: 0;
    transition: color 0.2s;
}
.doc-item__request:hover {
    color: var(--c-deep);
}
.docs-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--c-pale);
    border-radius: var(--r-md);
    font-size: 13.5px;
    color: var(--c-text-muted);
    line-height: 1.65;
    font-weight: 300;
}
.docs-note svg {
    width: 16px;
    height: 16px;
    color: var(--c-emerald);
    flex-shrink: 0;
    margin-top: 2px;
}
.article-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.article-hero__img-wrap {
    position: absolute;
    inset: 0;
}
.article-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) brightness(0.7);
}
.article-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(6, 15, 9, 0.92) 0%,
        rgba(6, 15, 9, 0.5) 60%,
        rgba(6, 15, 9, 0.1) 100%
    );
}
.article-hero__content {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 72px;
}
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}
.article-content {
    min-width: 0;
}
.prose {
    font-size: 17px;
    line-height: 1.85;
    color: var(--c-text-mid);
    font-weight: 300;
}
.prose h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--c-text);
    margin: 40px 0 16px;
}
.prose p {
    margin-bottom: 20px;
}
.prose strong {
    font-weight: 600;
    color: var(--c-text);
}
.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--c-border);
}
.article-tags__label {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text-light);
}
.article-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}
.article-share__label {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text-light);
}
.article-share__links {
    display: flex;
    gap: 10px;
}
.article-share__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    color: var(--c-text-mid);
    transition: var(--t);
}
.article-share__link svg {
    width: 15px;
    height: 15px;
}
.article-share__link:hover {
    border-color: var(--c-emerald);
    color: var(--c-emerald);
}
.article-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 20px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sidebar-cta-card {
    background: var(--c-deep);
    padding: 32px;
    border-radius: var(--r-lg);
    text-align: center;
}
.sidebar-cta-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.sidebar-cta-card__icon svg {
    width: 26px;
    height: 26px;
    color: var(--c-gold);
}
.sidebar-cta-card__title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--c-white);
    margin-bottom: 10px;
}
.sidebar-cta-card__body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    font-weight: 300;
}
.sidebar-newsletter-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    padding: 28px;
    border-radius: var(--r-lg);
}
.sidebar-newsletter-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 8px;
}
.sidebar-newsletter-card__body {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.65;
    font-weight: 300;
}
.insights-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.insight-card--horizontal {
    display: flex;
    flex-direction: row;
    border-radius: var(--r-lg);
    overflow: hidden;
}

/* ════════════════════════════════════════════════════════════════
   29. MISSING-PAGE STYLES — FIX #8
   Shared styles for about, markets, sustainability,
   certifications, resources, legal pages
════════════════════════════════════════════════════════════════ */
/* About */
.about-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.team-card {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    transition: var(--t);
}
.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.team-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--c-pale);
    margin: 0 auto 16px;
    overflow: hidden;
}
.team-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card__name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 4px;
}
.team-card__role {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-emerald);
}
.team-card__bio {
    font-size: 13.5px;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-top: 12px;
    font-weight: 300;
}
/* Markets page */
.markets-detail-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.market-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
    padding: 40px 44px;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-left: 4px solid transparent;
    transition: var(--t);
}
.market-detail-card:hover {
    border-left-color: var(--c-gold);
    box-shadow: var(--shadow-sm);
}
.market-detail-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 13px;
    background: var(--c-pale);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.market-detail-card__icon svg {
    width: 26px;
    height: 26px;
    color: var(--c-emerald);
}
.market-detail-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 12px;
}
.market-detail-card__body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--c-text-muted);
    font-weight: 300;
    margin-bottom: 20px;
}
.market-detail-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
/* Certifications page */
.certs-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.cert-detail-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 32px;
    display: flex;
    gap: 20px;
    transition: var(--t);
    box-shadow: var(--shadow-xs);
}
.cert-detail-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--c-gold-border);
}
.cert-detail-card__icon {
    width: 52px;
    height: 52px;
    background: var(--c-gold-pale);
    border: 1px solid var(--c-gold-border);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cert-detail-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--c-gold);
}
.cert-detail-card__name {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 4px;
}
.cert-detail-card__standard {
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-emerald);
    display: block;
    margin-bottom: 12px;
}
.cert-detail-card__body {
    font-size: 14px;
    line-height: 1.72;
    color: var(--c-text-muted);
    font-weight: 300;
}
/* Resources page */
.resources-group {
    margin-bottom: 48px;
}
.resources-group__title {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-text-light);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--c-border);
}
.resource-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    margin-bottom: 8px;
    transition: var(--t);
}
.resource-item:hover {
    border-color: rgba(31, 122, 99, 0.2);
    box-shadow: var(--shadow-sm);
}
.resource-item__icon {
    width: 44px;
    height: 44px;
    background: var(--c-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.resource-item__icon svg {
    width: 20px;
    height: 20px;
    color: var(--c-emerald);
}
.resource-item__info {
    flex: 1;
}
.resource-item__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 3px;
}
.resource-item__meta {
    font-size: 12px;
    color: var(--c-text-light);
}
.resource-item__type {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--c-pale);
    color: var(--c-emerald);
    padding: 3px 9px;
    border-radius: 3px;
    margin-right: 8px;
}
.resource-item__action {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-emerald);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
    flex-shrink: 0;
}
.resource-item__action svg {
    width: 13px;
    height: 13px;
}
.resource-item__action:hover {
    gap: 10px;
    color: var(--c-deep);
}
/* Legal page */
.legal-nav {
    display: flex;
    gap: 4px;
    background: var(--c-bg);
    padding: 5px;
    border-radius: var(--r-sm);
    margin-bottom: 48px;
}
.legal-nav a {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 5px;
    color: var(--c-text-muted);
    transition: var(--t);
}
.legal-nav a.active {
    background: var(--c-white);
    color: var(--c-deep);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}
.legal-prose {
    font-size: 16px;
    line-height: 1.85;
    color: var(--c-text-mid);
    font-weight: 300;
}
.legal-prose h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--c-text);
    margin: 40px 0 16px;
}
.legal-prose h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--c-text);
    margin: 28px 0 12px;
}
.legal-prose p {
    margin-bottom: 16px;
}
.legal-prose ul {
    margin: 0 0 16px 24px;
    list-style: disc;
}
.legal-prose li {
    margin-bottom: 8px;
}
.legal-prose a {
    color: var(--c-emerald);
}
/* Sustainability page */
.sustain-pledges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.sustain-pledge-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 36px;
    transition: var(--t);
}
.sustain-pledge-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(31, 122, 99, 0.2);
}
.sustain-pledge-card__icon {
    width: 52px;
    height: 52px;
    background: var(--c-pale);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.sustain-pledge-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--c-emerald);
}
.sustain-pledge-card__title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 12px;
}
.sustain-pledge-card__body {
    font-size: 15px;
    line-height: 1.72;
    color: var(--c-text-muted);
    font-weight: 300;
}

/* ════════════════════════════════════════════════════════════════
   30. RESPONSIVE BREAKPOINTS — FIX #10
════════════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
    .wrap,
    .wrap-sm {
        padding: 0 36px;
    }
    .nav__inner {
        padding: 0 36px;
    }
}

/* FIX 10: NEW 1100px breakpoint (gap was missing between 1024 and 1280) */
@media (max-width: 1100px) {
    .nav__links,
    .nav__tel {
        display: none;
    }
    .nav__burger {
        display: flex;
    }
    /* FIX 10: also hide the "Request a Quote" text btn at this breakpoint */
    .nav__rfq-desktop-btn {
        display: none;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-pad-y: 80px;
    }
    .wrap,
    .wrap-sm {
        padding: 0 28px;
    }
    .nav__inner {
        padding: 0 28px;
    }
    .pillars__grid {
        grid-template-columns: 1fr;
    }
    .pillar-card {
        border-right: none;
        border-bottom: 1px solid var(--c-border);
    }
    .pillar-card:last-child {
        border-bottom: none;
    }
    .about-snap__grid,
    .sustain-snap__grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .about-snap__media {
        height: 420px;
    }
    .stats-band__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .markets-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .process-steps::before {
        display: none;
    }
    .insights-grid {
        grid-template-columns: 1fr;
    }
    .rfq-section__inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .sustain-snap__img-inset {
        display: none;
    }
    .catalogue__layout {
        grid-template-columns: 1fr;
    }
    .catalogue__sidebar {
        position: static;
    }
    .product-hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .applications-grid {
        grid-template-columns: 1fr;
    }
    .docs-grid {
        grid-template-columns: 1fr;
    }
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        position: static;
    }
    .insights-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .insight-card--horizontal {
        flex-direction: column;
    }
    /* FIX 6: 4→2 certs grid on tablet */
    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .certs-detail-grid {
        grid-template-columns: 1fr;
    }
    /* FIX 7/8: banner stats hidden tablet */
    .page-banner__stats {
        display: none;
    }
    .about-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sustain-pledges {
        grid-template-columns: 1fr;
    }
    .market-detail-card {
        padding: 28px 24px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad-y: 64px;
    }
    .wrap {
        padding: 0 20px;
    }
    .nav__inner {
        padding: 0 20px;
    }
    /* FIX 1: reduce logo on small screens */
    .nav__logo-icon {
        width: 34px;
        height: 34px;
    }
    .nav__logo-icon svg {
        width: 22px;
        height: 22px;
    }
    .nav__logo-name {
        font-size: 14px;
    }
    .display-1 {
        font-size: clamp(36px, 9vw, 64px);
    }
    .display-2 {
        font-size: clamp(28px, 7vw, 48px);
    }
    .display-3 {
        font-size: clamp(22px, 6vw, 36px);
    }
    /* FIX 4: hero mobile */
    .hero__content {
        padding-top: calc(var(--nav-height) + 40px);
        padding-bottom: 80px;
    }
    /* FIX 4: scroll cue hidden on mobile — overlaps content */
    .hero__scroll-cue {
        display: none;
    }
    .hero__trust-item {
        padding: 0 14px;
    }
    .hero__trust-item:first-child {
        padding-left: 0;
    }
    .trust-bar__inner {
        flex-direction: column;
        gap: 10px;
    }
    .trust-bar__item {
        border-right: none;
        padding: 4px 0;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .stats-band__grid {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--c-border);
    }
    .rfq-form {
        padding: 28px;
    }
    .rfq-form__row {
        grid-template-columns: 1fr;
    }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer__newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer__newsletter-form {
        width: 100%;
        flex-direction: column;
    }
    .footer__newsletter-input {
        min-width: 0;
        width: 100%;
    }
    .nl-modal__box {
        flex-direction: column;
    }
    .nl-modal__img {
        width: 100%;
        height: 200px;
    }
    .about-snap__img-accent {
        width: 160px;
        height: 160px;
    }
    .sustain-snap__quote-card {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
    .products-preview__header {
        flex-direction: column;
        align-items: flex-start;
    }
    .insights-preview__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .products-preview__cta-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .wa-float {
        padding: 14px;
        border-radius: 50%;
        max-width: 56px !important;
    }
    .wa-float__label {
        display: none;
    }
    .product-hero__quick-specs {
        grid-template-columns: 1fr 1fr;
    }
    .insights-grid-full {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 28px 20px;
    }
    .catalogue__layout {
        gap: 32px;
    }
    /* FIX 2: RFQ drawer full-width on mobile */
    .rfq-drawer__panel {
        max-width: 100%;
    }
    .rfq-drawer__row {
        grid-template-columns: 1fr;
    }
    .rfq-drawer__header {
        padding: 22px 20px 16px;
    }
    .rfq-drawer__body {
        padding: 20px;
    }
    .rfq-drawer__footer {
        padding: 16px 20px;
    }
    /* FIX 6: 1-col certs on mobile */
    .certs-grid {
        grid-template-columns: 1fr;
    }
    /* FIX 8: missing page grids */
    .about-team__grid {
        grid-template-columns: 1fr;
    }
    .market-detail-card {
        grid-template-columns: 1fr;
    }
    /* FIX 9: contact spacing on mobile */
    .contact-section {
        padding: 48px 0 80px;
    }
    .legal-nav {
        flex-direction: column;
    }
    .legal-nav a {
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* FIX 1: on tiny screens hide logo sub text to save space */
    .nav__logo-sub {
        display: none;
    }
    .nav__inner {
        gap: 12px;
    }
    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero__trust-item {
        padding: 0 10px;
    }
    .btn {
        font-size: 11px;
        padding: 14px 24px;
    }
    .products-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .rfq-drawer__promises {
        flex-direction: column;
    }
    .rfq-drawer__promise {
        flex-direction: row;
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid var(--c-gold-border);
        padding: 10px 16px;
    }
    .rfq-drawer__promise:last-child {
        border-bottom: none;
    }
}
