/* ==========================================================================
   TshirtPrint2u — PREMIUM HOMEPAGE STYLESHEET
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
    /* Brand colour */
    --primary: #1E3A8A;         /* modern blue — existing brand primary   */
    --primary-dark: #0F172A;    /* deep navy — existing dark theme-color  */
    --primary-soft: #274690;
    --secondary: #EA580C;       /* accent orange — existing brand accent  */
    --secondary-dark: #C2410C;
    --accent-orange-bright: #F97316; /* mobile drill-down icon accent — matches product-page value exactly */
    --accent-light: #FDBA74;    /* light amber accent used on dark/navy backgrounds */
    --whatsapp: #25D366;

    /* Neutrals */
    --background: #FFFFFF;
    --surface: #F8F9FB;
    --surface-alt: #F3F4F6;
    --text: #101828;
    --text-muted: #4B5563;
    --text-faint: #6B7280;
    --text-on-dark: #F8FAFC;
    --text-on-dark-muted: #CBD5E1;
    --border: #E5E7EB;
    --border-strong: #D1D5DB;
    --gray-50: #F9FAFB;
    --gray-400: #9CA3AF;
    --gray-700: #374151;
    --amber-100: #FEF3C7;

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    /* Shadow */
    --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.08);
    --shadow-md: 0 8px 24px rgba(16, 24, 40, 0.08);
    --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.22);
    --shadow-navy: 0 16px 40px -12px rgba(30, 58, 138, 0.35);

    /* Layout */
    --container-max: 1320px;
    --container-pad: clamp(1.25rem, 4vw, 2.5rem);
    --header-h: 84px;
    --header-h-scrolled: 68px;

    /* Z-index scale — keep every stacking-context value in this file
       referencing one of these tokens instead of a bare number, so the
       overall order (skip-link > drawer > overlay > header > dropdowns)
       stays visible and intentional in one place. */
    --z-dropdown: 40;
    --z-header: 1000;
    --z-overlay: 1200;
    --z-drawer: 1300;
    --z-skip-link: 2000;

    /* Motion */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --dur-fast: 0.18s;
    --dur-med: 0.32s;
    --dur-slow: 0.6s;

    /* Type */
    --font-body: 'Inter', 'Inter Fallback', -apple-system, BlinkMacSystemFont, sans-serif;
}

@font-face {
    font-family: 'Inter Fallback';
    size-adjust: 107%;
    src: local('Arial');
}

/* ==========================================================================
   1b. UTILITIES
   ========================================================================== */
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }
.text-center { text-align: center; }
.text-dark { color: var(--text); }
.fw-medium { font-weight: 500; }
.border-0 { border: 0; }
.bg-transparent { background: transparent; }
.position-relative { position: relative; }
.list-unstyled { list-style: none; }
.p-0 { padding: 0; }
.m-0 { margin: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   2. BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

h1, h2, h3, h4, h5, h6, p, ul, ol, dl, figure, blockquote { margin: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--background);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: 0;
    appearance: none;
    cursor: pointer;
}

.container-fluid-brand {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

section[id] { scroll-margin-top: var(--header-h-scrolled); }

::selection { background: var(--secondary); color: #fff; }

.skip-link {
    position: absolute;
    left: 1rem;
    top: -60px;
    background: var(--primary-dark);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    z-index: var(--z-skip-link);
    transition: top var(--dur-fast) var(--ease);
    text-decoration: none;
    font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.gtm-noscript-frame { display: none; visibility: hidden; }
.svg-defs-hidden { position: absolute; }

/* Focus visibility — never rely on hover/default outline alone */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2.5px solid var(--secondary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary-dark);
}
.eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--secondary);
    display: inline-block;
}

.section-heading {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--primary-dark);
    font-size: clamp(1.7rem, 1.35rem + 1.6vw, 2.75rem);
    margin: 0.5rem 0 0;
}

.section-sub {
    color: var(--text-muted);
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    max-width: 62ch;
    margin-top: 0.9rem;
}

.section-head {
    margin-bottom: clamp(2rem, 1.6rem + 2vw, 3.5rem);
}
.section-heading--sm { font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem); }
.section-head.text-center { margin-inline: auto; }
.section-head.text-center .section-sub { margin-inline: auto; }

.display-headline {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.02;
    color: var(--primary-dark);
    font-size: clamp(2.35rem, 1.7rem + 3.4vw, 4.6rem);
}

.text-balance { text-wrap: balance; }

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-weight: 700;
    font-size: 0.98rem;
    padding: 0.95rem 1.75rem;
    border-radius: var(--radius-pill);
    border: 1.5px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease),
                background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
    white-space: nowrap;
    line-height: 1.1;
}
.btn-brand svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-brand--whatsapp {
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.55);
}
.btn-brand--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(37, 211, 102, 0.6); color: #fff; }
.btn-brand--whatsapp:active { transform: translateY(0); }

.wa-badge-icon { flex-shrink: 0; display: block; }

.btn-brand--outline-dark {
    background: transparent;
    color: var(--primary-dark);
    border-color: var(--border-strong);
}
.btn-brand--outline-dark:hover { border-color: var(--primary-dark); background: var(--primary-dark); color: #fff; }

.btn-brand--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.45);
}
.btn-brand--outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; }

.btn-brand--navy {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-navy);
}
.btn-brand--navy:hover { transform: translateY(-2px); background: var(--primary-dark); color: #fff; }

.btn-brand--sm { padding: 0.65rem 1.3rem; font-size: 0.88rem; }

.btn-link-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.94rem;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color var(--dur-fast) var(--ease), gap var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.btn-link-cta:hover { border-color: var(--secondary); color: var(--secondary-dark); gap: 0.6rem; }
.btn-link-cta svg { width: 16px; height: 16px; transition: transform var(--dur-fast) var(--ease); }
.btn-link-cta:hover svg { transform: translateX(3px); }

/* On-dark variant — used in the hero to demote the formal-quote path to a
   secondary text link instead of a second full-weight button, so it no
   longer competes visually with the primary WhatsApp CTA. */
.btn-link-cta--on-dark { color: var(--text-on-dark-muted); font-weight: 600; }
.btn-link-cta--on-dark:hover { border-color: var(--accent-light); color: #fff; }

.tel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
}
.tel-link svg { width: 17px; height: 17px; }
.tel-link--on-dark { color: #fff; }

/* ==========================================================================
   5. HEADER / NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: var(--z-header);
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: transparent;
    transition: background var(--dur-med) var(--ease), height var(--dur-med) var(--ease),
                box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
    border-bottom: 1px solid transparent;
}
/* .is-solid = scrolled past the top; .is-menu-open = the mobile drill-down
   overlay is currently open. Both get the same solid/light treatment so the
   header reads correctly for the instant it's visible before the overlay's
   own background paints over it, and so it's in the right state if the
   overlay is closed via Escape/back-gesture without an intervening scroll. */
.site-header.is-solid,
.site-header.is-menu-open {
    height: var(--header-h-scrolled);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--border);
}
.site-header.is-solid .brand-word,
.site-header.is-menu-open .brand-word,
.site-header.is-solid .nav-link,
.site-header.is-menu-open .nav-link { color: var(--primary-dark); }
.site-header:not(.is-solid):not(.is-menu-open) .nav-link,
.site-header:not(.is-solid):not(.is-menu-open) .brand-word { color: #fff; }

.nav-row {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-word {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
    transition: color var(--dur-med) var(--ease);
}
.brand-word span { color: var(--secondary); }

.primary-nav { display: flex; align-items: center; gap: 0.15rem; }

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.6rem 0.85rem;
    font-weight: 600;
    font-size: 0.96rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
    /* .nav-link is shared by plain <a> links (Catalogue, Contact, etc.)
       and the <button> dropdown triggers (Products, Services) — these
       resets are no-ops on the anchors but stop the buttons from
       inheriting native button chrome. */
    border: 0;
    background: none;
    font-family: inherit;
    cursor: pointer;
    color: inherit;
}
.nav-link svg { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease); }

.site-header.is-solid .nav-link:hover,
.site-header.is-menu-open .nav-link:hover { color: var(--secondary-dark); }
.site-header:not(.is-solid):not(.is-menu-open) .nav-link:hover { color: var(--accent-light); }

.nav-item-dropdown { position: relative; }
.nav-item-dropdown.is-open .nav-link svg { transform: rotate(180deg); }
.nav-item-dropdown.is-open .nav-link,
.site-header:not(.is-solid):not(.is-menu-open) .nav-item-dropdown.is-open .nav-link { color: var(--secondary-dark); }

.mega-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translate(-50%, 8px);
    width: min(920px, 84vw);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 1.75rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility var(--dur-med);
    z-index: var(--z-dropdown);
}
/* Bridges the 14px gap between the trigger button and this panel (set by
   `top: calc(100% + 14px)` above). That gap is empty space belonging to
   neither the button nor the panel, so a mouse moving diagonally from the
   button toward the panel would briefly exit .nav-item-dropdown while
   crossing it — firing mouseleave in home.js and closing the menu before
   the cursor ever reached the panel. This invisible pseudo-element extends
   the panel's hoverable footprint up through that gap so the container
   never sees a mouseleave mid-crossing. No visual or layout effect: it has
   no background and is only present (and only receives pointer events) at
   the same times the panel itself is visible/interactive. */
.mega-panel::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}
/* Visibility is driven ONLY by the .is-open class, which JS applies for
   every trigger path (click, hover, keyboard focus) via one setOpen()
   function — see initDesktopDropdowns() in home.js. Previously this was
   also opened by a parallel `:hover`/`:focus-within` CSS rule with no JS
   involvement, which could leave the panel visibly open while
   aria-expanded stayed "false" (or vice-versa on close). Keeping a single
   source of truth here means the visual state and the ARIA state can no
   longer disagree. */
.nav-item-dropdown.is-open .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.mega-panel--services { width: min(620px, 84vw); }

.mega-panel-viewall {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.mega-viewall-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--secondary-dark);
    text-decoration: none;
}
.mega-viewall-link svg { width: 16px; height: 16px; transition: transform var(--dur-fast) var(--ease); }
.mega-viewall-link:hover { text-decoration: underline; }
.mega-viewall-link:hover svg { transform: translateX(3px); }

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 1.75rem;
}
.mega-col-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary-dark);
    margin-bottom: 0.65rem;
    text-decoration: none;
    display: inline-block;
}
.mega-col-title:hover { color: var(--secondary-dark); }
.mega-sub-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.mega-sub-list a {
    font-size: 0.87rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--dur-fast) var(--ease), padding-left var(--dur-fast) var(--ease);
}
.mega-sub-list a:hover { color: var(--secondary-dark); padding-left: 3px; }

.mega-grid--services {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}
.mega-service-item a {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    background: var(--surface);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary-dark);
    text-decoration: none;
    border: 1px solid var(--border);
    transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.mega-service-item a:hover { border-color: var(--secondary); background: #fff; color: var(--secondary-dark); }

.nav-utility { display: flex; align-items: center; gap: 0.65rem; }

.nav-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-search-input {
    width: 190px;
    padding: 0.5rem 2.2rem 0.5rem 2.2rem;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--border-strong);
    background: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    color: var(--text);
    transition: width var(--dur-med) var(--ease), border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.site-header:not(.is-solid):not(.is-menu-open) .nav-search-input {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}
.site-header:not(.is-solid):not(.is-menu-open) .nav-search-input::placeholder { color: rgba(255,255,255,0.75); }
.nav-search-input:focus { width: 230px; border-color: var(--secondary); }
.nav-search-input:focus-visible { outline: 2.5px solid var(--secondary); outline-offset: 2px; }
.nav-search-icon, .nav-search-clear {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px; height: 18px;
    color: var(--text-faint);
}
.nav-search-icon { left: 0.65rem; pointer-events: none; }
.nav-search-clear { right: 0.6rem; background: none; border: 0; padding: 0; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity var(--dur-fast); }
.nav-search-clear.is-visible { opacity: 1; pointer-events: auto; }
.site-header:not(.is-solid):not(.is-menu-open) .nav-search-icon,
.site-header:not(.is-solid):not(.is-menu-open) .nav-search-clear { color: rgba(255,255,255,0.85); }

.nav-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--whatsapp);
    color: #fff;
    font-weight: 700;
    font-size: 0.86rem;
    padding: 0.6rem 1.15rem;
    border-radius: var(--radius-pill);
    border: 0;
    text-decoration: none;
    box-shadow: 0 8px 18px -6px rgba(37, 211, 102, 0.55);
    transition: transform var(--dur-fast) var(--ease);
    cursor: pointer;
}
.nav-cta-whatsapp:hover { transform: translateY(-2px); color: #fff; }
.nav-cta-whatsapp svg { width: 16px; height: 16px; }

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(148,163,184,0.4);
    background: rgba(255,255,255,0.1);
    cursor: pointer;
    flex-shrink: 0;
}
.site-header.is-solid .menu-toggle,
.site-header.is-menu-open .menu-toggle { border-color: var(--border-strong); background: var(--surface); }
.menu-toggle svg { width: 20px; height: 20px; color: currentColor; }
.site-header:not(.is-solid):not(.is-menu-open) .menu-toggle { color: #fff; }
.site-header.is-solid .menu-toggle,
.site-header.is-menu-open .menu-toggle { color: var(--primary-dark); }

/* ==========================================================================
   MOBILE NAVIGATION OVERLAY & 3-LEVEL DRILL-DOWN MENU
   ========================================================================== */
@media (min-width: 1024px) {
    .mobile-only, #mobileMenuToggle { display: none !important; }
}

dialog.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    margin: 0; padding: 0; border: none;
    width: 100%;
    /* 100% first for browsers without dvh support; 100dvh overrides it
       where supported so the overlay tracks the true visible viewport
       instead of jumping/clipping as iOS Safari's address bar collapses
       or expands. */
    height: 100%;
    height: 100dvh;
    max-width: none; max-height: none;
    background: var(--background);
    color: inherit;
    z-index: var(--z-overlay);
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--dur-med) ease-out;
    overflow: hidden;
}
dialog.mobile-menu-overlay[open] { display: flex; }
dialog.mobile-menu-overlay.show { transform: translateX(0); }
dialog.mobile-menu-overlay::backdrop { background: transparent; }

body.overlay-open { overflow: hidden; position: fixed; width: 100%; height: 100%; }

dialog.quick-quote-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: auto;
    margin: 0; padding: 0; border: none;
    width: 100%; max-width: 440px;
    height: 100%;
    height: 100dvh;
    max-height: none;
    background: var(--background);
    color: inherit;
    z-index: var(--z-drawer);
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--dur-med) ease-out;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
dialog.quick-quote-drawer[open] { display: flex; }
dialog.quick-quote-drawer.show { transform: translateX(0); }
dialog.quick-quote-drawer::backdrop { background: rgba(15,23,42,0.45); }

.qq-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 1.35rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.qq-header-title { display: flex; align-items: center; gap: 0.55rem; font-weight: 700; font-size: 1.05rem; color: var(--primary-dark); }
.qq-header-title svg { width: 20px; height: 20px; color: var(--whatsapp, #25D366); flex-shrink: 0; }
.qq-close {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border: none; border-radius: 50%;
    background: var(--surface-alt);
    color: var(--text);
    cursor: pointer;
}
.qq-close svg { width: 18px; height: 18px; }
.qq-close:hover { background: var(--border); }

.qq-form { padding: 1.35rem; overflow-y: auto; flex: 1 1 auto; }
.qq-sub { font-size: 0.86rem; color: var(--text-muted); margin: 0 0 1.35rem; }
.qq-field { margin-bottom: 1.15rem; }
.qq-field label, .qq-field-label {
    display: block;
    font-size: 0.82rem; font-weight: 700; color: var(--text);
    margin-bottom: 0.45rem;
}
.qq-optional { font-weight: 500; color: var(--text-faint); }
select.form-control-brand { cursor: pointer; }
textarea#qq-notes.form-control-brand { min-height: 70px; }

.qq-chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.qq-chip {
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--border-strong);
    background: #fff;
    color: var(--text);
    font-size: 0.82rem; font-weight: 600;
    cursor: pointer;
    transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.qq-chip:hover { border-color: var(--primary); }
.qq-chip.is-selected {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.qq-submit { width: 100%; margin-top: 0.4rem; }

@media (max-width: 480px) {
    dialog.quick-quote-drawer { max-width: none; }
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    /* Add the notch/status-bar safe area on top of the normal padding
       rather than replacing it, so the row keeps its usual breathing
       room on non-notched devices. */
    padding-top: calc(12px + env(safe-area-inset-top, 0px));
    background: var(--background);
    border-bottom: 1px solid var(--border);
    min-height: 60px;
    flex-shrink: 0;
}
.slot-back, .slot-close {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    background: var(--surface-alt);
    border-radius: 50%;
    border: none;
    color: var(--primary);
}
.slot-back.hidden { visibility: hidden; opacity: 0; pointer-events: none; }
.slot-center { display: flex; align-items: center; gap: 0.5rem; }
.slot-center .brand-mark { width: 32px; height: 32px; }
.slot-center .brand-word { color: var(--primary-dark); font-size: 1rem; }

.mobile-breadcrumb {
    padding: 10px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    overflow-x: auto;
    white-space: nowrap;
    display: none;
}
.breadcrumb-track { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb-link {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 12px;
    background: var(--border);
    border-radius: 20px;
    font-size: 12px; font-weight: 500;
    cursor: pointer; border: none;
    color: var(--gray-700);
}
.breadcrumb-link.home { background: var(--primary); color: #fff; }
.breadcrumb-link svg { width: 12px; height: 12px; }
.breadcrumb-separator { color: var(--gray-400); font-size: 12px; }
.breadcrumb-current {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 12px;
    background: var(--accent-orange-bright);
    border-radius: 20px;
    font-size: 12px; font-weight: 600;
    color: #fff;
}

.mobile-search-section { padding: 12px 16px; background: var(--background); border-bottom: 1px solid var(--border); flex-shrink: 0; }
.mobile-search-wrapper { position: relative; width: 100%; }
.mobile-search-wrapper .search-input-modern {
    width: 100%;
    padding: 12px 76px 12px 16px;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 14px;
    background: var(--gray-50);
    color: var(--text);
    font-family: inherit;
}
.mobile-search-wrapper .search-input-modern:focus { border-color: var(--primary); }
.mobile-search-wrapper .search-input-modern:focus-visible { outline: 2.5px solid var(--primary); outline-offset: 2px; }
.mobile-search-wrapper .search-clear-icon {
    position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: var(--gray-400); cursor: pointer;
    width: 32px; height: 32px; display: none; align-items: center; justify-content: center;
}
.mobile-search-wrapper .search-clear-icon.is-visible { display: flex; }
.mobile-search-wrapper .search-icon {
    position: absolute; right: 52px; top: 50%; transform: translateY(-50%);
    color: var(--gray-400); display: flex; pointer-events: none;
}
.mobile-search-wrapper .search-icon svg, .mobile-search-wrapper .search-clear-icon svg { width: 16px; height: 16px; }

/* Search autocomplete — shared by the desktop header search and the
   mobile drawer search; each input's wrapper is already position:relative. */
.nav-search-suggestions {
    position: absolute;
    left: 0; right: 0; top: calc(100% + 8px);
    margin: 0; padding: 6px;
    list-style: none;
    background: var(--surface, #fff);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-lg, 0 12px 28px rgba(15,23,42,0.16));
    z-index: var(--z-dropdown);
    max-height: 320px;
    overflow-y: auto;
}
.nav-search-wrap .nav-search-suggestions { min-width: 280px; }
.nav-search-suggestion {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
}
.nav-search-suggestion-name { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.nav-search-suggestion-cat { font-size: 0.72rem; color: var(--gray-400); flex-shrink: 0; }
.nav-search-suggestion:hover,
.nav-search-suggestion.is-active { background: var(--gray-50); }
.nav-search-suggestion.is-active .nav-search-suggestion-name { color: var(--primary); }

.drill-wrapper {
    flex: 1;
    display: flex;
    overflow: hidden;
    position: relative;
    transition: transform var(--dur-med) ease-out;
    width: 300%;
    transform: translateX(0);
}
.level-panel { width: 33.333%; flex-shrink: 0; height: 100%; overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain; background: var(--background); }

.panel-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0;
    background: var(--background);
}
.panel-title { margin: 0; font-size: 14px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.03em; }
.panel-hint { font-size: 11px; color: var(--gray-400); }
.level-content { padding: 8px 0; }

.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { border-bottom: 1px solid var(--surface-alt); }
.menu-list-btn {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    margin: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background var(--dur-fast) ease;
    -webkit-tap-highlight-color: transparent;
}
.menu-list-btn:active, .menu-list-btn.click-active-feedback { background: var(--amber-100); }
.menu-list-btn:focus-visible { outline: 2px solid var(--accent-orange-bright); outline-offset: -2px; }
.menu-item-content { display: flex; align-items: center; gap: 12px; }
.menu-icon { width: 20px; height: 20px; color: var(--accent-orange-bright); flex-shrink: 0; }
.menu-arrow, .menu-external { color: var(--gray-400); flex-shrink: 0; width: 14px; height: 14px; }

.subcategory-item {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--surface-alt);
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background var(--dur-fast) ease;
    -webkit-tap-highlight-color: transparent;
}
.subcategory-item:active, .subcategory-item.click-active-feedback { background: var(--amber-100); }
.subcategory-item:focus-visible { outline: 2px solid var(--accent-orange-bright); outline-offset: -2px; }
.subcategory-item svg:first-child { color: var(--accent-orange-bright); margin-right: 12px; width: 20px; height: 20px; flex-shrink: 0; }
.subcategory-item span { flex: 1; font-weight: 600; color: var(--primary); }
.sub-indicator { color: var(--gray-400); width: 16px; height: 16px; flex-shrink: 0; }

.product-item-clean {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--gray-700);
    border-bottom: 1px solid var(--surface-alt);
}
.product-item-clean svg:first-child { color: var(--primary); width: 20px; height: 20px; flex-shrink: 0; }
.product-item-clean > svg:last-child { color: var(--gray-400); width: 14px; height: 14px; flex-shrink: 0; }

.service-direct-link-modern {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px;
    margin: 4px 12px;
    background: var(--gray-50);
    border-radius: 12px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
}
.service-direct-link-modern svg:first-child { color: var(--accent-orange-bright); width: 22px; height: 22px; flex-shrink: 0; }
.service-direct-link-modern > svg:last-child { color: var(--gray-400); width: 14px; height: 14px; flex-shrink: 0; }

.mobile-footer {
    flex-shrink: 0;
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    /* Home-indicator / gesture-bar safe area, added to the existing
       padding so the contact icons and "Request Quote" button don't sit
       flush against it on notched/rounded-corner devices. */
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}
.footer-contact-group { display: flex; justify-content: space-around; margin-bottom: 12px; }
.footer-contact-item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-decoration: none; font-size: 11px; color: var(--gray-700); }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--primary); }
.footer-social-group { display: flex; justify-content: space-between; align-items: center; }
.social-icons { display: flex; gap: 16px; }
.social-icons a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--surface-alt); border-radius: 50%; color: var(--primary); text-decoration: none; }
.social-icons a svg { width: 18px; height: 18px; }
.wa-green-mobile {
    background: var(--whatsapp);
    padding: 8px 16px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 13px; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
    margin-top: 12px;
    justify-content: center;
}
.wa-green-mobile svg { width: 16px; height: 16px; }

/* ==========================================================================
   6. HERO
   ========================================================================== */
.hero {
    position: relative;
    background: linear-gradient(155deg, var(--primary-dark) 0%, var(--primary) 62%, var(--primary-soft) 100%);
    padding-top: calc(var(--header-h) + 2.5rem);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08), transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(234,88,12,0.18), transparent 45%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.hero-copy { color: #fff; }

.hero-trust-inline {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.5rem;
    margin-bottom: 1.5rem;
}
.hero-trust-inline span {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-pill);
}

.hero-h1 {
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.04;
    font-size: clamp(2.15rem, 1.5rem + 3vw, 3.9rem);
    margin: 0 0 1.25rem;
}
.hero-h1 em { font-style: normal; color: var(--accent-light); }

.hero-sub {
    color: var(--text-on-dark-muted);
    font-size: clamp(1.02rem, 0.95rem + 0.3vw, 1.2rem);
    max-width: 52ch;
    margin-bottom: 1.9rem;
}

.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-bottom: 1.1rem; }
.hero-response-note {
    font-size: 0.85rem;
    color: var(--text-on-dark-muted);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.hero-response-note svg { width: 15px; height: 15px; color: var(--accent-light); flex-shrink: 0; }

.hero-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15,23,42,0.55) 0%, transparent 45%);
}
.hero-visual-badge {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.1rem;
    box-shadow: var(--shadow-md);
}
.hero-visual-badge strong { display: block; font-size: 1.15rem; color: var(--primary-dark); line-height: 1; }
.hero-visual-badge span { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; }

/* ==========================================================================
   7. FLOATING ACTIONS — WhatsApp + Back to Top
   ========================================================================== */
.float-actions {
    position: fixed;
    right: calc(clamp(1rem, 3vw, 1.75rem) + env(safe-area-inset-right));
    bottom: calc(clamp(1rem, 3vw, 1.75rem) + env(safe-area-inset-bottom));
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

/* -- Back to top -- */
.back-to-top {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 20px -6px rgba(15,23,42,0.18);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease),
                visibility var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease),
                border-color var(--dur-fast) var(--ease);
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { color: var(--primary-dark); border-color: var(--primary-dark); }

.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 8px 22px -6px rgba(37, 211, 102, 0.6);
    cursor: pointer;
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.whatsapp-float svg { width: 30px; height: 30px; flex-shrink: 0; }
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -6px rgba(37, 211, 102, 0.7); }
.whatsapp-float:active { transform: translateY(0); }


/* ==========================================================================
   8. PRODUCT / EDITORIAL SECTIONS — shared section rhythm
   ========================================================================== */
.section { padding-block: clamp(3.5rem, 3rem + 3vw, 6.5rem); }
.section-alt { background: var(--surface); }
.section-navy {
    background: linear-gradient(165deg, var(--primary-dark), var(--primary));
    color: #fff;
}
.section-navy .section-heading { color: #fff; }
.section-navy .section-sub { color: var(--text-on-dark-muted); }
.section-navy .eyebrow { color: var(--accent-light); }
.section-navy .eyebrow::before { background: var(--accent-light); }

.head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ---- Image skeleton loading ---- */
img.is-skel-loading {
    background: linear-gradient(100deg, var(--surface-alt) 30%, #f3f3f3 50%, var(--surface-alt) 70%);
    background-size: 200% 100%;
    animation: img-skel-shimmer 1.4s ease-in-out infinite;
}
img.is-skel-loading.is-reduced-motion { animation: none; }
img[data-img-loaded] { animation: none; background: none; }

@keyframes img-skel-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---- Category cards ---- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--surface-alt);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.category-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.category-card-link {
    display: block;
    width: 100%; height: 100%;
    text-decoration: none;
}
.category-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--dur-slow) var(--ease);
}
.category-card:hover img { transform: scale(1.06); }
.category-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.25) 55%, rgba(15,23,42,0.05) 100%);
}
.category-card-body {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    padding: 1.35rem 1.25rem 1.25rem;
    color: #fff;
}
.category-card-title { font-weight: 700; font-size: 1.08rem; margin: 0 0 0.35rem; letter-spacing: -0.01em; }
.category-card-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.82);
    margin: 0 0 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.category-card-cta {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.82rem; font-weight: 700; color: #fff;
}
.category-card-cta svg { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease); }
.category-card:hover .category-card-cta svg { transform: translateX(4px); }

/* Per-category WhatsApp quick-quote — sits above the gradient overlay so
   a buyer who already knows which category they want can request a quote
   with that category pre-filled, without opening the category page first. */
.category-card-wa {
    position: absolute;
    top: 0.75rem; right: 0.75rem; z-index: 3;
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.4rem 0.65rem;
    border: none; border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.94);
    color: var(--whatsapp, #25D366);
    font-size: 0.72rem; font-weight: 700;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    opacity: 0; transform: translateY(-4px);
    transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.category-card-wa svg { width: 14px; height: 14px; flex-shrink: 0; }
.category-card-wa span { white-space: nowrap; }
.category-card:hover .category-card-wa,
.category-card-wa:focus-visible { opacity: 1; transform: translateY(0); }
.category-card-wa:hover { background: var(--whatsapp, #25D366); color: #fff; }
.category-card-wa:focus-visible { outline: 2.5px solid #fff; outline-offset: 2px; }
@media (hover: none) {
    /* Touch devices have no hover to reveal it on — keep it visible. */
    .category-card-wa { opacity: 1; transform: none; }
}

/* Inline Quantity + Print Method quick-picks, expanded from the
   per-card "Quick quote" button. Lives inside .category-card-body so it
   inherits the dark gradient-overlay context (white text on a photo). */
.quick-pick-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height var(--dur-med) var(--ease), opacity var(--dur-fast) var(--ease), margin-top var(--dur-med) var(--ease);
}
.quick-pick-panel.is-open {
    max-height: 220px;
    opacity: 1;
    margin-top: 0.85rem;
}
.quick-pick-row { margin-bottom: 0.6rem; }
.quick-pick-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0.35rem;
}
.quick-pick-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.quick-pick-chip {
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.quick-pick-chip:hover { border-color: rgba(255,255,255,0.7); }
.quick-pick-chip.is-selected {
    background: var(--whatsapp, #25D366);
    border-color: var(--whatsapp, #25D366);
    color: #0F172A;
}
.quick-pick-send {
    display: flex; align-items: center; justify-content: center; gap: 0.45rem;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.55rem 0.8rem;
    border: none; border-radius: var(--radius-pill);
    background: var(--whatsapp, #25D366);
    color: #fff;
    font-size: 0.8rem; font-weight: 700;
    cursor: pointer;
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.quick-pick-send svg { width: 15px; height: 15px; flex-shrink: 0; }
.quick-pick-send:hover { transform: translateY(-1px); box-shadow: 0 10px 20px -6px rgba(37,211,102,0.55); }
.quick-pick-send:active { transform: translateY(0); }

.category-more-line {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.94rem;
}
.category-more-line a { color: var(--primary); font-weight: 700; text-decoration: none; }
.category-more-line a:hover { color: var(--secondary-dark); }

/* ---- Capability / printing methods ---- */
.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.method-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.method-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--secondary); }
.method-card-media { position: relative; overflow: hidden; height: 160px; }
.method-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.method-card-body { padding: 1.5rem 1.6rem 1.7rem; }
.method-title { font-weight: 700; font-size: 1.05rem; color: var(--primary-dark); margin-bottom: 0.4rem; }
.method-title a { color: inherit; text-decoration: none; }
.method-title a:hover { text-decoration: underline; }
.method-best { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.method-adv {
    font-size: 0.8rem; font-weight: 600; color: var(--secondary-dark);
    display: flex; align-items: center; gap: 0.4rem;
}
.method-adv svg { width: 14px; height: 14px; flex-shrink: 0; }

.capability-guidance {
    margin-top: 2.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.capability-guidance p { margin: 0; max-width: 56ch; color: var(--text-muted); font-size: 0.98rem; }
.capability-guidance strong { color: var(--primary-dark); }

.pricing-anchor {
    margin-top: 2.25rem;
    background: var(--amber-100);
    border: 1px solid rgba(234,88,12,0.25);
    border-radius: var(--radius-lg);
    padding: clamp(1.4rem, 1.15rem + 1.2vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.pricing-anchor p { margin: 0; max-width: 56ch; color: var(--text-muted); font-size: 0.95rem; }
.pricing-anchor p + p { margin-top: 0.35rem; }
.pricing-anchor strong { color: var(--primary-dark); font-size: 1.05rem; }
.pricing-anchor p.pricing-anchor-fineprint { font-size: 0.8rem; color: var(--text-faint); }

.method-crosslink-row {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.method-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-pill);
    background: #fff;
    border: 1px solid var(--border-strong);
    color: var(--text-muted);
    text-decoration: none;
    transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.method-badge:hover { border-color: var(--primary); color: var(--primary); }
.method-badge b { color: var(--primary-dark); font-weight: 700; }

/* ---- Projects ---- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}
.project-card {
    display: grid;
    grid-template-columns: 44% 1fr;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.project-card-media { position: relative; overflow: hidden; min-height: 210px; }
.project-card-media img { width: 100%; height: 100%; object-fit: cover; }
.project-card-body { padding: 1.5rem 1.5rem 1.5rem 1.4rem; display: flex; flex-direction: column; }
.project-card-tag {
    align-self: flex-start;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--secondary-dark);
    background: rgba(234,88,12,0.1);
    padding: 0.28rem 0.65rem;
    border-radius: var(--radius-pill);
    margin-bottom: 0.7rem;
}
.project-card-title { font-weight: 700; font-size: 1.05rem; color: var(--primary-dark); margin: 0 0 0.5rem; letter-spacing: -0.01em; }
.project-card-desc { font-size: 0.87rem; color: var(--text-muted); margin: 0 0 0.9rem; flex-grow: 1; }
.project-card-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.4rem; }
.project-card-meta span {
    font-size: 0.72rem; font-weight: 600; color: var(--primary);
    background: rgba(30,58,138,0.07);
    padding: 0.22rem 0.55rem; border-radius: var(--radius-sm);
}

.section-more-link { text-align: center; margin-top: 2.5rem; }

/* ---- Client logos ---- */
.client-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    align-items: stretch;
    margin-bottom: 2.75rem;
}
.client-logo-tile {
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 1.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    min-height: 92px;
}
.client-logo-tile span {
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: -0.01em;
    color: var(--text-muted);
    transition: color var(--dur-fast) var(--ease);
    line-height: 1.25;
}
.client-logo-tile:hover span { color: var(--primary-dark); }
.client-logo-tile img {
    max-width: 100%;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: filter var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.client-logo-tile:hover img { filter: grayscale(0%); opacity: 1; }

/* ---- How to order ---- */
.order-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    counter-reset: step;
}
.order-step { position: relative; padding-top: 0.25rem; }
.order-step-num {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.05rem;
    margin-bottom: 1.1rem;
    box-shadow: var(--shadow-navy);
}
.order-step-title { font-weight: 700; color: var(--primary-dark); font-size: 1rem; margin-bottom: 0.4rem; }
.order-step-desc { font-size: 0.85rem; color: var(--text-muted); }
.order-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 23px; left: calc(50% + 23px + 0.65rem);
    width: calc(100% - 46px - 1.3rem);
    border-top: 2px dashed var(--border-strong);
    display: none;
}

.sample-policy {
    margin-top: 3rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.sample-policy-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.sample-policy-item svg { width: 20px; height: 20px; color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.sample-policy-item p { margin: 0; font-size: 0.86rem; color: var(--text-muted); }
.sample-policy-item strong { display: block; color: var(--primary-dark); font-size: 0.9rem; margin-bottom: 0.15rem; }

/* ---- Assurance + industries ---- */
.assurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.assurance-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.assurance-card svg { width: 24px; height: 24px; color: var(--accent-light); flex-shrink: 0; margin-top: 2px; }
.assurance-card strong { display: block; font-size: 0.98rem; margin-bottom: 0.3rem; }
.assurance-card span { font-size: 0.82rem; color: var(--text-on-dark-muted); }

.procurement-callout {
    margin-top: 2.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(253,186,116,0.4);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.procurement-callout svg { width: 28px; height: 28px; color: var(--accent-light); flex-shrink: 0; }
.procurement-callout h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.procurement-callout p { color: var(--text-on-dark-muted); font-size: 0.92rem; margin: 0; max-width: 70ch; }
.procurement-callout p a { color: var(--accent-light); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.procurement-callout p a:hover { color: #fff; }

.industry-tags { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.industry-tag {
    font-size: 0.82rem; font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--text-on-dark-muted);
}

/* ---- Pricing + FAQ ---- */
.pricing-flow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0 2.5rem;
}
.pricing-flow-step {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
    background: #fff; border: 1px solid var(--border-strong); color: var(--primary-dark);
    padding: 0.55rem 1rem; border-radius: var(--radius-pill);
}
.pricing-flow-arrow { color: var(--secondary); width: 16px; height: 16px; flex-shrink: 0; }

.pricing-table-label { font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted, #6b7280); margin: 1.5rem 0 0.75rem; }
.pricing-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.pricing-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 480px; }
.pricing-table th, .pricing-table td {
    text-align: left; padding: 1rem 1.4rem; font-size: 0.92rem;
    border-bottom: 1px solid var(--border);
}
.pricing-table th {
    background: var(--surface);
    font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text-faint); font-weight: 700;
}
.pricing-table td:first-child { font-weight: 700; color: var(--primary-dark); }
.pricing-table tr:last-child td { border-bottom: 0; }

.pricing-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 74ch;
}
.pricing-cta-row { margin-top: 1.75rem; }

.faq-block { margin-top: clamp(3rem, 2.4rem + 3vw, 5rem); }
.accordion-brand { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: #fff; }
.accordion-item-brand { border-bottom: 1px solid var(--border); }
.accordion-item-brand:last-child { border-bottom: 0; }
.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: 0;
    text-align: left;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--primary-dark);
    cursor: pointer;
}
.accordion-trigger .plus-icon { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.accordion-trigger .plus-icon::before,
.accordion-trigger .plus-icon::after {
    content: ''; position: absolute; background: var(--primary); border-radius: 2px;
    transition: transform var(--dur-med) var(--ease), opacity var(--dur-med) var(--ease);
}
.accordion-trigger .plus-icon::before { left: 4px; right: 4px; top: 50%; height: 2px; transform: translateY(-50%); }
.accordion-trigger .plus-icon::after { top: 4px; bottom: 4px; left: 50%; width: 2px; transform: translateX(-50%); }
.accordion-trigger[aria-expanded="true"] .plus-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.accordion-trigger[aria-expanded="true"] { color: var(--secondary-dark); }

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur-med) var(--ease);
}
.accordion-panel-inner { padding: 0 1.5rem 1.4rem; color: var(--text-muted); font-size: 0.92rem; max-width: 76ch; }

.faq-more-link { margin-top: 1.75rem; text-align: center; }

/* ---- Testimonials ---- */
.testimonial-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.9rem;
    display: flex;
    flex-direction: column;
}
.testimonial-quote-icon { width: 30px; height: 24px; color: rgba(30,58,138,0.18); margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text); margin: 0 0 1.4rem; line-height: 1.6; flex-grow: 1; }
.testimonial-person { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.95rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--primary-dark); }
.testimonial-role { font-size: 0.78rem; color: var(--text-faint); }

/* ---- Final CTA + quote form ---- */
.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}
.final-cta-copy .section-heading { color: #fff; }
.final-cta-copy .section-sub { color: var(--text-on-dark-muted); }
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.contact-block { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.9rem; }
.contact-block-row { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.92rem; color: var(--text-on-dark-muted); }
.contact-block-row svg { width: 18px; height: 18px; color: var(--accent-light); flex-shrink: 0; margin-top: 2px; }
.contact-block-row a { color: #fff; text-decoration: none; font-weight: 600; }
.contact-block-row a:hover { color: var(--accent-light); }

.quote-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    box-shadow: var(--shadow-lg);
}
.quote-form-card h3 { font-weight: 700; font-size: 1.15rem; color: var(--primary-dark); margin-bottom: 0.35rem; }
.quote-form-card p.form-sub { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.form-field { margin-bottom: 1.1rem; }
.form-field label {
    display: block; font-size: 0.82rem; font-weight: 700; color: var(--primary-dark);
    margin-bottom: 0.4rem;
}
.form-field .required-mark { color: var(--secondary); }
.form-control-brand {
    width: 100%;
    padding: 0.75rem 0.95rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-strong);
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.form-control-brand:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 4px rgba(30,58,138,0.12); }
.form-control-brand:invalid.was-validated { border-color: #DC2626; }
textarea.form-control-brand { resize: vertical; min-height: 90px; }

.form-error-text {
    display: none;
    font-size: 0.78rem;
    color: #DC2626;
    margin-top: 0.35rem;
    font-weight: 600;
}
.form-field.has-error .form-control-brand { border-color: #DC2626; }
.form-field.has-error .form-error-text { display: block; }

.form-submit-row { margin-top: 1.4rem; }
.form-submit-row .btn-brand { width: 100%; }
.form-submit-row .btn-brand[disabled] { opacity: 0.55; cursor: not-allowed; transform: none !important; }

.form-status {
    display: none;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.86rem;
    font-weight: 600;
}
.form-status svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-status.is-visible { display: flex; }
.form-status--success { background: rgba(37,211,102,0.12); color: #15803D; }
.form-status--error { background: rgba(220,38,38,0.1); color: #B91C1C; }
.form-status--loading { background: var(--surface); color: var(--text-muted); }
.form-status:has(.form-status-wa-link) { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
.form-status-wa-link {
    display: inline-block;
    margin-top: 0.15rem;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 700;
}
.form-status-wa-link:hover,
.form-status-wa-link:focus-visible { text-decoration-thickness: 2px; }

.btn-spinner {
    width: 16px; height: 16px;
    border: 2.5px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    display: none;
    animation: spin 0.7s linear infinite;
}
.is-submitting .btn-spinner { display: inline-block; }
.is-submitting .btn-label-text { opacity: 0.85; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.site-footer { background: var(--primary-dark); color: var(--text-on-dark-muted); padding-top: clamp(3rem, 2.5rem + 2vw, 4.5rem); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
/* The three link columns are wrapped in a <nav> landmark for
   accessibility; display: contents keeps the <nav> itself out of the
   box tree so its children still participate directly as grid items,
   while the landmark remains in the accessibility tree. */
.footer-grid > nav { display: contents; }
.footer-brand-word { font-weight: 800; font-size: 1.3rem; color: #fff; margin-bottom: 1rem; }
.footer-brand-word span { color: var(--secondary); }
.footer-desc { font-size: 0.88rem; line-height: 1.6; max-width: 34ch; margin-bottom: 1.4rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.footer-social a:hover { background: var(--secondary); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col-title { color: #fff; font-weight: 700; font-size: 0.92rem; margin-bottom: 1.1rem; }
.footer-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.footer-nav-list a { display: inline-block; padding-block: 0.3rem; font-size: 0.86rem; color: var(--text-on-dark-muted); text-decoration: none; }
.footer-nav-list a:hover { color: #fff; }
.footer-nav-list a.footer-link-accent { color: var(--accent-light); font-weight: 700; }


.footer-contact-block { margin-top: 0; margin-bottom: 1.4rem; gap: 0.7rem; }
.footer-contact-block .contact-block-row { font-size: 0.86rem; }

.footer-accordion-trigger { display: none; }
.footer-accordion-panel.accordion-panel { max-height: none; overflow: visible; }
.footer-accordion-panel .accordion-panel-inner { padding: 0; max-width: none; color: inherit; font-size: inherit; }

.footer-bottom {
    padding-block: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
}
.footer-copyright { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.footer-legal-links a { color: var(--text-on-dark-muted); text-decoration: none; }
.footer-legal-links a:hover { color: #fff; }
.footer-badge-line {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.8rem; color: var(--text-on-dark-muted);
    padding-bottom: 1.5rem;
}
.footer-badge-line svg { width: 16px; height: 16px; color: var(--accent-light); }

/* ==========================================================================
   10. UTILITIES
   ========================================================================== */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.desktop-only { display: flex; }
.mobile-only { display: none; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   11. RESPONSIVE
   ========================================================================== */
@media (max-width: 1279.98px) {
    .mega-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1023.98px) {
    :root { --header-h: 72px; --header-h-scrolled: 64px; }
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }
    .menu-toggle { display: flex; }

    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { aspect-ratio: 16 / 10; order: -1; }
    .hero-copy { order: 0; }

    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .method-grid { grid-template-columns: repeat(2, 1fr); }
    .project-grid { grid-template-columns: 1fr; }
    .project-card { grid-template-columns: 1fr; }
    .project-card-media { min-height: 200px; }
    .client-strip { grid-template-columns: repeat(3, 1fr); }
    .order-steps { grid-template-columns: repeat(3, 1fr); }
    .sample-policy { grid-template-columns: repeat(2, 1fr); }
    .assurance-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-row { grid-template-columns: 1fr; }
    .final-cta-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 639.98px) {
    :root { --container-pad: 1.1rem; }
    .section { padding-block: 3rem; }

    .hero { padding-top: calc(var(--header-h) + 1.5rem); }
    .hero-h1 { font-size: clamp(2rem, 1.55rem + 4vw, 2.7rem); }
    .hero-cta-row { flex-direction: column; align-items: stretch; }
    .hero-cta-row .btn-brand { width: 100%; }
    .hero-trust-inline span { font-size: 0.68rem; padding: 0.35rem 0.65rem; }

    .category-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
    .method-grid { grid-template-columns: 1fr; }
    .client-strip { grid-template-columns: repeat(2, 1fr); }
    .order-steps { grid-template-columns: 1fr 1fr; }
    .sample-policy { grid-template-columns: 1fr; }
    .assurance-grid { grid-template-columns: 1fr; }
    .procurement-callout { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .footer-col-title { display: none; }
    .footer-accordion-trigger {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        background: none;
        border: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 0.9rem 0;
        text-align: left;
        color: #fff;
        font-weight: 700;
        font-size: 0.92rem;
        cursor: pointer;
    }
    .footer-accordion-trigger .plus-icon { width: 18px; height: 18px; flex-shrink: 0; position: relative; }
    .footer-accordion-trigger .plus-icon::before,
    .footer-accordion-trigger .plus-icon::after {
        content: ''; position: absolute; background: var(--accent-light); border-radius: 2px;
        transition: transform var(--dur-med) var(--ease), opacity var(--dur-med) var(--ease);
    }
    .footer-accordion-trigger .plus-icon::before { left: 2px; right: 2px; top: 50%; height: 2px; transform: translateY(-50%); }
    .footer-accordion-trigger .plus-icon::after { top: 2px; bottom: 2px; left: 50%; width: 2px; transform: translateX(-50%); }
    .footer-accordion-trigger[aria-expanded="true"] .plus-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
    .footer-accordion-panel.accordion-panel { max-height: 0; overflow: hidden; }
    .footer-accordion-panel .accordion-panel-inner { padding: 0.9rem 0 0.4rem; }

    .nav-search-wrap.desktop-only { display: none !important; }
}

/* ==========================================================================
   12. ACCESSIBILITY / MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
    :root { --border: #94A3B8; --border-strong: #64748B; }
}
