/* ==========================================================================
   PT ALEXA INTL — Premium Design System
   Authority Navy (#002B6B) · Slate (#1F2937) · Mist Steel (#C0C7D1)
   Poppins (display) · Inter (body)
   ========================================================================== */

/* ------- 1. TOKENS ------- */
:root {
    --color-primary:      #002B6B;
    --color-primary-600:  #003A8C;
    --color-primary-700:  #001E4D;
    --color-primary-50:   rgba(0, 43, 107, .06);
    --color-primary-10:   rgba(0, 43, 107, .10);

    --color-secondary:    #1F2937;
    --color-secondary-600:#111827;
    --color-secondary-50: rgba(31, 41, 55, .06);

    --color-tertiary:     #C0C7D1;
    --color-tertiary-50:  #E6E9EE;
    --color-tertiary-25:  #F2F4F7;

    --color-bg:           #FFFFFF;
    --color-bg-soft:      #F7F8FA;
    --color-bg-elev:      #FFFFFF;
    --color-text:         #1F2937;
    --color-text-muted:   #5B6573;
    --color-border:       #E5E8ED;

    --color-success:      #0E9F6E;
    --color-danger:       #DC2626;
    --color-accent:       var(--color-primary);

    --gradient-primary:   linear-gradient(135deg, #002B6B 0%, #003A8C 100%);
    --gradient-dark:      linear-gradient(135deg, #1F2937 0%, #0B1220 100%);
    --gradient-mesh:
        radial-gradient(at 20% 18%, rgba(0,43,107,.18) 0%, transparent 45%),
        radial-gradient(at 82% 12%, rgba(0,43,107,.14) 0%, transparent 50%),
        radial-gradient(at 70% 80%, rgba(31,41,55,.18) 0%, transparent 55%);

    --font-display: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
    --font-body:    'Inter',   system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-pill: 9999px;

    --sh-1: 0 1px 2px rgba(15,23,42,.06);
    --sh-2: 0 6px 18px rgba(15,23,42,.08);
    --sh-3: 0 18px 48px rgba(0,43,107,.12);
    --sh-glow: 0 18px 50px -12px rgba(0,43,107,.45);

    --ease: cubic-bezier(.2,.7,.2,1);
    --ease-spring: cubic-bezier(.34,1.56,.64,1);

    --section-pad: clamp(4rem, 8vw, 7rem);
    --container-x: clamp(1rem, 4vw, 2rem);

    --topbar-h: 44px;
    --nav-h: 76px;
}

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

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: calc(var(--topbar-h) + var(--nav-h));
    overflow-x: clip;
}

@media (max-width: 1199.98px) {
    body { padding-top: var(--nav-h); }
}

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

a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-primary-600); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.2;
    margin: 0 0 .5em;
}

/* Typography per working.md spec
   H1 / Hero    → 60–72 px / 700
   H2 / Section → 42–52 px / 600–700
   H3 / Subsec  → 28–34 px / 600
   H4 / Card    → 20–24 px / 600
   Body         → 16–18 px / 400
*/
h1 { font-size: clamp(3.75rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2.625rem, 4.4vw, 3.25rem); font-weight: 700; }
h3 { font-size: clamp(1.75rem, 2.8vw, 2.125rem); font-weight: 600; }
h4 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 600; }
h5 { font-size: 1.125rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p { margin: 0 0 1rem; color: var(--color-text-muted); font-size: 1rem; }
.lead-text { font-size: 1.125rem; line-height: 1.75; color: var(--color-text-muted); font-weight: 400; }

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

/* Lucide icons baseline */
[data-lucide] { width: 18px; height: 18px; stroke-width: 1.8; flex-shrink: 0; }

/* ------- 3. UTILS ------- */
.section          { padding-block: var(--section-pad); position: relative; }
.section-soft     { background: var(--color-bg-soft); }
.section-dark     { background: var(--gradient-dark); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p  { color: rgba(255,255,255,.78); }

.section-header   { max-width: 760px; margin: 0 auto 3rem; }
.section-header.text-start { margin-inline: 0; }
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-primary);
    padding: .35rem .8rem;
    background: var(--color-primary-50);
    border-radius: var(--r-pill);
    margin-bottom: 1rem;
}
.section-dark .section-tag { background: rgba(255,255,255,.08); color: #fff; }

.section-title {
    font-size: clamp(2.625rem, 4.4vw, 3.25rem); /* 42–52 px */
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-secondary);
    line-height: 1.15;
    letter-spacing: -.015em;
}
.section-dark .section-title { color: #fff; }
.section-title.is-gradient {
    background: linear-gradient(135deg, #002B6B 0%, #003A8C 50%, #1F2937 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-grad {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mesh-bg::before {
    content: "";
    position: absolute; inset: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
    z-index: 0;
}
.mesh-bg > * { position: relative; z-index: 1; }

/* ------- 4. BUTTONS ------- */
.btn {
    --bs-btn-padding-x: 1.5rem;
    --bs-btn-padding-y: .85rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem; /* 16 px CTA */
    border-radius: var(--r-pill);
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
    border: 0;
    letter-spacing: .005em;
    line-height: 1.1;
}
.btn [data-lucide] { width: 18px; height: 18px; }
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

.btn-primary-solid {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--sh-glow);
}
.btn-primary-solid:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 24px 60px -14px rgba(0,43,107,.55);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-secondary);
    border: 1.5px solid var(--color-secondary);
}
.btn-outline-dark:hover {
    background: var(--color-secondary);
    color: #fff;
}

.btn-ghost {
    background: rgba(0,43,107,.06);
    color: var(--color-primary);
}
.btn-ghost:hover { background: rgba(0,43,107,.12); }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
    color: var(--color-primary);
}
.link-arrow [data-lucide] { transition: transform .2s var(--ease); }
.link-arrow:hover [data-lucide] { transform: translateX(4px); }

/* ------- 5. TOP BAR ------- */
.top-bar {
    position: fixed; top: 0; inset-inline: 0; height: var(--topbar-h);
    background: var(--color-bg-soft);          /* light premium surface */
    color: var(--color-secondary);
    z-index: 1031;
    font-size: .82rem;
    display: flex; align-items: center;
    border-bottom: 1px solid var(--color-border);
}
.top-bar-inner {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; gap: 1rem;
    position: relative;
    z-index: 1;
}
.top-bar-info, .top-bar-actions { display: flex; align-items: center; gap: 1.1rem; }

.top-tagline {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .02em;
    color: var(--color-primary);
}
.top-divider {
    width: 1px; height: 18px;
    background: var(--color-border);
}
.top-countries {
    font-family: var(--font-body);
    font-size: .78rem;
    color: var(--color-text-muted);
    letter-spacing: .03em;
}

.top-link {
    color: var(--color-secondary);
    display: inline-flex; align-items: center; gap: .45rem;
    font-size: .8rem;
    font-weight: 500;
    transition: color .2s var(--ease);
}
.top-link [data-lucide],
.top-link > svg {
    width: 14px; height: 14px;
    flex-shrink: 0;
    color: var(--color-primary);
}
.top-link:hover { color: var(--color-primary); }
.top-link:hover [data-lucide],
.top-link:hover > svg { color: var(--color-primary-600); }
.top-link-wa > svg { color: #25D366; }
.top-link-wa:hover { color: #25D366; }

.top-link-track {
    background: var(--gradient-primary);
    color: #fff !important;
    padding: .42rem .9rem;
    border-radius: var(--r-pill);
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,43,107,.18);
}
.top-link-track [data-lucide] { color: #fff !important; }
.top-link-track:hover {
    background: var(--color-accent);
    color: var(--color-secondary) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,43,107,.25);
}
.top-link-track:hover [data-lucide] { color: var(--color-secondary) !important; }

/* Lang switch — globe icon dropdown (light theme) */
.lang-switch { position: relative; display: inline-flex; }
.lang-trigger {
    display: inline-flex; align-items: center; gap: .4rem;
    background: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-secondary);
    padding: .35rem .75rem;
    border-radius: var(--r-pill);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .8rem;
    cursor: pointer;
    transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
    line-height: 1;
}
.lang-trigger:hover {
    background: var(--color-primary-50);
    border-color: var(--color-primary-10);
    color: var(--color-primary);
}
.lang-trigger [data-lucide] { width: 16px; height: 16px; color: var(--color-primary); }
.lang-trigger .lang-chevron {
    width: 13px; height: 13px;
    transition: transform .2s var(--ease);
    color: var(--color-text-muted);
}
.lang-trigger[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }
.lang-trigger .lang-current { letter-spacing: .04em; }

.lang-menu {
    margin-top: .5rem;
    min-width: 200px;
    border: 0;
    border-radius: var(--r-md);
    box-shadow: var(--sh-3);
    padding: .35rem;
    background: #fff;
    inset-inline-end: 0 !important;
    inset-inline-start: auto !important;
    right: 0 !important;
    left: auto !important;
}
.lang-option {
    display: flex; align-items: center; gap: .65rem;
    padding: .55rem .65rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 500;
    color: var(--color-secondary);
    transition: background .2s var(--ease), color .2s var(--ease);
}
.lang-option:hover { background: var(--color-primary-50); color: var(--color-primary); }
.lang-option.is-active { background: var(--color-primary-50); color: var(--color-primary); font-weight: 600; }
.lang-flag { font-size: 1.1rem; line-height: 1; }
.lang-native { flex: 1; }
.lang-check { width: 16px; height: 16px; color: var(--color-primary); }

/* Inverted variant if ever placed on a dark surface */
.lang-switch--dark .lang-trigger {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.18);
    color: #fff;
}
.lang-switch--dark .lang-trigger [data-lucide],
.lang-switch--dark .lang-trigger .lang-chevron { color: #fff; }
.lang-switch--dark .lang-trigger:hover { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.32); }

@media (max-width: 1399.98px) {
    .top-countries, .top-divider { display: none; }
}
@media (max-width: 1199.98px) {
    .top-bar { display: none; }
}

/* ------- 6. NAVBAR (premium glass) ------- */
.site-nav {
    position: fixed; left: 0; right: 0;
    top: var(--topbar-h);
    height: var(--nav-h);
    background: rgba(255,255,255,.86);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    z-index: 1030;
    border-bottom: 1px solid transparent;
    transition: top .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), height .3s var(--ease);
}
.site-nav.is-scrolled {
    background: rgba(255,255,255,.95);
    box-shadow: 0 8px 24px rgba(15,23,42,.06);
    border-bottom-color: var(--color-border);
}
@media (max-width: 1199.98px) {
    .site-nav { top: 0; }
}

.site-nav-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 100%; gap: .5rem; flex-wrap: nowrap;
    max-width: 1600px;
    margin: 0 auto;
}
.site-nav .navbar-collapse { flex: 1; min-width: 0; gap: .5rem; }
.site-nav .nav-pill-group { flex-shrink: 0; min-width: 0; }
.site-nav .nav-cta-group { flex-shrink: 0; }

/* --- Desktop nav visibility breakpoint:
       Show full desktop nav at 1200 px+; mobile toggler under 1200 px. --- */
@media (max-width: 1199.98px) {
    .site-nav .navbar-toggler { display: inline-flex; }
}
@media (min-width: 1200px) {
    .site-nav .navbar-toggler { display: none; }
}

/* Mid desktop (1200 – 1499 px): compact nav so 6 items + CTAs fit cleanly. */
@media (min-width: 1200px) and (max-width: 1499.98px) {
    .nav-pill-group { padding: 3px; }
    .nav-pill-group .nav-link {
        font-size: .78rem;
        padding: .42rem .55rem !important;
        letter-spacing: 0;
    }
    .nav-cta {
        padding: .5rem .75rem;
        font-size: .8rem;
    }
    .nav-cta:not(.solid) { padding: .5rem .55rem; gap: 0; }
    .nav-cta-group { gap: .35rem; }
    .brand-logo { height: 44px; max-width: 160px; }
}

/* Large desktop (1500 – 1799 px): comfortable but still compact secondary CTA */
@media (min-width: 1500px) and (max-width: 1799.98px) {
    .nav-pill-group .nav-link { font-size: .85rem; padding: .48rem .8rem !important; }
}

.navbar-brand { padding: 0; display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: transform .3s var(--ease);
}
.navbar-brand:hover .brand-logo { transform: scale(1.04); }
@media (min-width: 1600px) {
    .brand-logo { height: 54px; max-width: 210px; }
}

.nav-pill-group {
    background: rgba(0,43,107,.04);
    border-radius: var(--r-pill);
    padding: 4px;
    margin: 0;
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
}
.nav-cta-group { flex-shrink: 0; flex-wrap: nowrap; }
.nav-pill-group .nav-link {
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-secondary);
    padding: .48rem .75rem !important;
    border-radius: var(--r-pill);
    transition: all .25s var(--ease);
    position: relative;
    letter-spacing: .005em;
    white-space: nowrap;
}
@media (min-width: 1800px) {
    .nav-pill-group .nav-link { font-size: .92rem; padding: .55rem 1rem !important; }
}
.nav-pill-group .nav-link:hover {
    color: var(--color-primary);
    background: rgba(255,255,255,.7);
}
.nav-pill-group .nav-link.active {
    color: #fff;
    background: var(--gradient-primary);
    box-shadow: 0 6px 16px rgba(0,43,107,.25);
}
.nav-pill-group .nav-link.dropdown-toggle::after { display: none; }

/* Mega menu (Business Verticals — 5-column) */
.mega .dropdown-menu,
.nav-dd .dropdown-menu { display: none; }
.mega:hover > .dropdown-menu,
.mega:focus-within > .dropdown-menu,
.mega .dropdown-menu.show,
.nav-dd:hover > .dropdown-menu,
.nav-dd:focus-within > .dropdown-menu,
.nav-dd .dropdown-menu.show { display: block; }

/* Hover bridge — invisible 14 px strip between trigger and panel
   so the cursor can cross the gap without dropping :hover state. */
.mega > .dropdown-menu::before,
.nav-dd > .dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: -14px;
    height: 14px;
    background: transparent;
}

.mega-menu {
    border: 0;
    box-shadow: var(--sh-3);
    border-radius: var(--r-lg);
    padding: 1.75rem 2rem;
    background: #fff;
}
/* Wide 5-column mega panel — anchored to the navbar's bottom edge.
   The .mega <li> is set to position:static so the absolute child looks up
   to the .site-nav (position:fixed) as its containing block. top:100%
   snaps the panel exactly to the nav's bottom regardless of any height
   recalculation. */
.site-nav .nav-item.mega { position: static; }

.mega-menu-wide {
    position: absolute !important;
    top: 100% !important;
    bottom: auto !important;
    left: 50% !important;
    right: auto !important;
    inset: 100% auto auto 50% !important;
    transform: translateX(-50%) !important;
    width: min(1180px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    margin: 0 !important;
}

/* Standard nav-dd dropdowns: same snap-to-navbar-bottom behaviour */
.nav-dd > .dropdown-menu {
    margin-top: 0 !important;
}

.mega-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.mega-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.mega-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1199.98px) {
    .mega-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .mega-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .mega-menu-wide { width: min(900px, 96vw); }
}

.mega-col h6.mega-col-title {
    font-family: var(--font-display);
    font-size: 1.0625rem; /* 17 px */
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 .85rem;
    padding-bottom: .55rem;
    border-bottom: 1px solid var(--color-border);
    letter-spacing: .01em;
}
.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; flex-direction: column;
    gap: .25rem;
}
.mega-col ul li a {
    display: block;
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 500;
    color: var(--color-secondary);
    padding: .35rem .25rem;
    border-radius: 6px;
    transition: color .2s var(--ease), background .2s var(--ease), padding-left .2s var(--ease);
}
.mega-col ul li a:hover {
    color: var(--color-primary);
    background: var(--color-primary-50);
    padding-left: .65rem;
}

/* Mega feature card (right-most cell) */
.mega-feature {
    background: var(--gradient-primary);
    border-radius: var(--r-md);
    padding: 1.25rem;
    display: flex;
    align-items: stretch;
}
.mega-feature-card {
    color: #fff;
    display: flex; flex-direction: column;
    gap: .5rem;
}
.mega-feature-tag {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-display);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: rgba(255,255,255,.16);
    color: #fff;
    padding: .25rem .6rem;
    border-radius: var(--r-pill);
}
.mega-feature-card h5 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}
.mega-feature-card p {
    color: rgba(255,255,255,.82);
    font-size: .82rem;
    line-height: 1.5;
    margin: 0;
}
.mega-feature-card .link-arrow {
    color: var(--color-accent);
    margin-top: auto;
    font-size: .85rem;
}
.mega-feature-card .link-arrow:hover { color: #fff; }

.mega-foot {
    border-top: 1px solid var(--color-border);
    margin-top: 1.25rem;
    padding-top: 1rem;
    display: flex; justify-content: space-between; gap: 1rem;
    flex-wrap: wrap;
}

/* Standard nav dropdowns (About / Logistics / Tech / Resources / Contact) */
.nav-dd-menu {
    margin-top: 0;
    border: 0;
    box-shadow: var(--sh-3);
    border-radius: var(--r-lg);
    padding: .65rem;
    background: #fff;
    min-width: 280px;
}
.nav-dd-item {
    display: flex; align-items: center; gap: .75rem;
    padding: .65rem .8rem;
    border-radius: var(--r-md);
    color: var(--color-secondary);
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 500;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-dd-item [data-lucide] {
    width: 18px; height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
}
.nav-dd-item:hover {
    background: var(--color-primary-50);
    color: var(--color-primary);
}

/* Nav CTA group */
.nav-cta-group { display: flex; align-items: center; gap: .5rem; }
.nav-cta {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .55rem .95rem;
    border-radius: var(--r-pill);
    font-family: var(--font-display); font-size: .88rem; font-weight: 600;
    color: var(--color-secondary);
    border: 1px solid var(--color-border);
    background: #fff;
    cursor: pointer;
    transition: all .25s var(--ease);
    white-space: nowrap;
    line-height: 1;
}
@media (min-width: 1800px) {
    .nav-cta { padding: .6rem 1.1rem; font-size: .92rem; }
}
.nav-cta:hover { color: var(--color-primary); border-color: var(--color-primary); transform: translateY(-1px); }
.nav-cta [data-lucide] { width: 16px; height: 16px; }
.nav-cta.solid {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0,43,107,.25);
}
.nav-cta.solid:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,43,107,.35); }

/* Custom tooltip for icon-only CTAs */
.nav-cta-tip { position: relative; }
.nav-cta-tip::after {
    content: attr(data-tip);
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--color-secondary);
    color: #fff;
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .02em;
    padding: .4rem .65rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    z-index: 10;
    box-shadow: 0 6px 16px rgba(15,23,42,.18);
}
.nav-cta-tip::before {
    content: "";
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--color-secondary);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    z-index: 10;
}
/* Tooltip activates only at viewports where the label collapses to icon-only */
@media (min-width: 1200px) and (max-width: 1799.98px) {
    .nav-cta-tip:hover::after,
    .nav-cta-tip:focus-visible::after,
    .nav-cta-tip:hover::before,
    .nav-cta-tip:focus-visible::before {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Hamburger */
.navbar-toggler { border: 0; padding: .25rem; background: transparent; }
.navbar-toggler:focus { box-shadow: none; }
.hamburger { display: inline-flex; flex-direction: column; gap: 5px; width: 28px; }
.hamburger span {
    display: block; height: 2px; width: 100%;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: all .25s var(--ease);
}
@media (max-width: 1199.98px) {
    .nav-cta-group, .nav-pill-group { display: none !important; }
}

/* Mobile off-canvas */
.mobile-nav { width: min(360px, 90vw); border-left: 1px solid var(--color-border); }
.mobile-nav .offcanvas-header { border-bottom: 1px solid var(--color-border); padding: 1rem 1.25rem; }
.mobile-nav .offcanvas-body { padding: 1.25rem; }
.mobile-nav-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.mobile-nav-list > li { border-bottom: 1px solid var(--color-border); }
.mobile-nav-list > li > a, .mobile-nav-list summary {
    display: block;
    padding: 1rem 0;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--color-secondary);
    cursor: pointer;
    list-style: none;
}
.mobile-nav-list summary::-webkit-details-marker { display: none; }
.mobile-nav-list summary { position: relative; }
.mobile-nav-list summary::after {
    content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    font-size: 1.4rem; color: var(--color-text-muted); transition: transform .25s var(--ease);
}
.mobile-nav-list details[open] summary::after { content: "−"; }
.mobile-nav-list a.active, .mobile-nav-list a:hover { color: var(--color-primary); }
.mobile-sub { list-style: none; padding: 0 0 1rem 1rem; margin: 0; }
.mobile-sub li a { display: block; padding: .5rem 0; font-size: .92rem; color: var(--color-text-muted); }
.mobile-sub li a:hover { color: var(--color-primary); }
.mobile-nav-cta { display: flex; flex-direction: column; gap: .75rem; }
.mobile-lang { display: flex; justify-content: center; padding-top: .5rem; }

/* ------- 7. HERO ------- */
.hero-stage {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 9vw, 7rem);
    background:
        radial-gradient(at 15% 18%, rgba(0,43,107,.10) 0%, transparent 50%),
        radial-gradient(at 85% 12%, rgba(0,43,107,.10) 0%, transparent 50%),
        radial-gradient(at 75% 80%, rgba(31,41,55,.06) 0%, transparent 55%),
        var(--color-bg);
}
.hero-stage::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}
.hero-eyebrow {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--color-border);
    padding: .45rem .9rem;
    border-radius: var(--r-pill);
    font-family: var(--font-display);
    font-size: .75rem; font-weight: 600; letter-spacing: .14em;
    color: var(--color-primary);
    box-shadow: var(--sh-1);
    margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
    content: none;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.75rem, 6vw, 4.5rem); /* 60–72 px */
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
}
.hero-title .accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    display: inline-block;
}
.hero-sub {
    font-size: clamp(1.25rem, 1.6vw, 1.5rem); /* 20–24 px */
    line-height: 1.55;
    font-weight: 400;
    color: var(--color-text-muted);
    max-width: 640px;
    margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Hero KPIs */
.hero-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--color-border);
}
.kpi { }
.kpi .num {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    display: block;
    margin-bottom: .35rem;
}
.kpi .label { font-size: .85rem; color: var(--color-text-muted); font-weight: 500; }

/* Hero visual side */
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 560px;
    margin: 0 auto;
}
.hero-visual .stack {
    position: absolute; inset: 0;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-3);
    transform: rotate(-3deg);
    transition: transform .6s var(--ease);
}
.hero-visual .stack:nth-child(2) { transform: rotate(2deg) translate(8%, 8%); opacity: .85; z-index: -1; }
.hero-visual:hover .stack { transform: rotate(0); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .badge-floating {
    position: absolute;
    background: #fff;
    border-radius: var(--r-md);
    padding: .85rem 1rem;
    box-shadow: var(--sh-3);
    display: flex; align-items: center; gap: .65rem;
    font-family: var(--font-display); font-weight: 600; font-size: .85rem;
    color: var(--color-secondary);
}
.hero-visual .badge-floating [data-lucide] { color: var(--color-primary); }
.badge-floating.bf-tl { top: -16px; left: -16px; }
.badge-floating.bf-br { bottom: -16px; right: -16px; }

/* ------- 8. ABOUT / FEATURE CARDS ------- */
.about-image-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-3);
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-image-wrap::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(0,43,107,.18));
}
.about-badge {
    position: absolute; bottom: 24px; left: 24px;
    background: #fff;
    border-radius: var(--r-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--sh-2);
    display: flex; align-items: center; gap: .85rem;
    z-index: 1;
}
.about-badge .num {
    font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--color-primary);
    line-height: 1;
}
.about-badge .lbl { font-size: .82rem; color: var(--color-text-muted); }

.feature-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.feature-item { display: flex; gap: 1rem; }
.feature-item .icon-circle { flex-shrink: 0; }
.feature-item h4 {
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 600; /* 20 px card title */
    margin-bottom: .25rem;
    color: var(--color-secondary);
}
.feature-item p { margin: 0; font-size: .95rem; }

.icon-circle {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--color-primary-50);
    color: var(--color-primary);
    display: grid; place-items: center;
    transition: all .3s var(--ease);
}
.icon-circle [data-lucide] { width: 24px; height: 24px; }

/* ------- 9. CARDS ------- */
.card-soft {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    transition: all .35s var(--ease);
    height: 100%;
}
.card-soft:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-3);
    border-color: transparent;
}
.card-soft:hover .icon-circle { background: var(--gradient-primary); color: #fff; }

.card-glass {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #fff;
}
.card-glass h3, .card-glass h4 { color: #fff; }
.card-glass p { color: rgba(255,255,255,.78); }

/* Service card */
.svc-card { display: flex; flex-direction: column; gap: 1rem; }
.svc-card h3 { font-size: 1.375rem; font-weight: 600; margin: 0; } /* 22 px */
.svc-tag {
    display: inline-block; align-self: flex-start;
    font-size: .72rem; font-weight: 600; letter-spacing: .08em;
    padding: .25rem .65rem;
    background: var(--color-primary-50);
    color: var(--color-primary);
    border-radius: var(--r-pill);
    text-transform: uppercase;
}

/* Vertical card */
.vertical-card {
    display: flex; flex-direction: column; gap: 1rem;
    height: 100%;
    color: inherit;
}
.vertical-card .ptags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: auto; }
.vertical-card .ptag { font-size: .72rem; font-weight: 500; padding: .3rem .65rem; background: var(--color-tertiary-25); color: var(--color-secondary); border-radius: var(--r-pill); }
.vertical-card .arrow { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; color: var(--color-primary); }
.vertical-card:hover .arrow [data-lucide] { transform: translateX(4px); }

/* Capability card (vertical pages) */
.cap-card { display: flex; flex-direction: column; gap: .85rem; }
.cap-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin: 0; }
.cap-desc { font-size: .95rem; color: var(--color-text-muted); margin: 0; }

/* ------- 10. PROCESS STEPS ------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    counter-reset: step;
}
.step-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem 1.75rem;
    position: relative;
    transition: all .3s var(--ease);
}
.step-card::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute; top: 1.25rem; right: 1.5rem;
    font-family: var(--font-display);
    font-size: 2.25rem; font-weight: 800;
    color: var(--color-tertiary);
    line-height: 1;
}
.step-card h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; }
.step-card p { font-size: .95rem; margin: 0; }
.step-card:hover { box-shadow: var(--sh-3); transform: translateY(-4px); }
.step-card:hover::before { color: var(--color-primary); }

/* ------- 11. PRESENCE / DOTTED MAP / LOCATIONS ------- */
.presence-map-wrap {
    margin-block: 2.5rem;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-3);
    background: linear-gradient(180deg, #F4F6FB 0%, #E9EEF7 100%);
    border: 1px solid var(--color-border);
}
#presenceMap { width: 100%; min-height: 460px; }

.presence-map-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1000 / 500;
}
.dotted-world-map {
    width: 100%; height: 100%;
    display: block;
}
.dotted-world-map .map-dots circle {
    fill: var(--color-tertiary);
    opacity: .85;
}
.dotted-world-map .map-markers .marker-core {
    fill: var(--color-primary);
    transition: fill .25s var(--ease), r .25s var(--ease);
}
.dotted-world-map .map-markers .marker-halo {
    fill: var(--color-primary);
    opacity: .22;
}
.dotted-world-map .map-markers .marker-pulse {
    fill: var(--color-primary);
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
    animation: presence-pulse 2.4s var(--ease) infinite;
}
.presence-marker { cursor: pointer; outline: none; }
.presence-marker:focus-visible .marker-core { stroke: var(--color-accent); stroke-width: 2; }
.presence-marker:hover .marker-core,
.presence-marker.is-active .marker-core { fill: var(--color-accent); r: 5.5; }
.presence-marker:hover .marker-halo,
.presence-marker.is-active .marker-halo { fill: var(--color-accent); opacity: .3; }

@keyframes presence-pulse {
    0%   { transform: scale(.6); opacity: .55; }
    70%  { transform: scale(2.2); opacity: 0; }
    100% { transform: scale(2.2); opacity: 0; }
}

.presence-popovers {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.presence-pop {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--r-md);
    box-shadow: var(--sh-3);
    padding: 1rem 1.25rem;
    min-width: 220px;
    max-width: 260px;
    pointer-events: auto;
    animation: pop-in .2s var(--ease);
}
@keyframes pop-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.presence-pop .pop-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .25rem .65rem;
    align-items: center;
    padding-bottom: .65rem;
    margin-bottom: .65rem;
    border-bottom: 1px solid var(--color-border);
}
.presence-pop .pop-flag { font-size: 1.5rem; grid-row: span 2; line-height: 1; }
.presence-pop strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.2;
}
.presence-pop .pop-role {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--color-primary);
}
.presence-pop .pop-cities {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column;
    gap: .35rem;
}
.presence-pop .pop-cities li {
    display: flex; align-items: center; gap: .5rem;
    font-size: .85rem;
    color: var(--color-secondary);
}
.presence-pop .pop-cities [data-lucide] {
    width: 14px; height: 14px;
    color: var(--color-primary);
}
@media (max-width: 575.98px) {
    .presence-pop { top: auto; bottom: .75rem; right: .75rem; left: .75rem; max-width: none; }
}

.location-cards { margin-top: 2rem; }
.loc-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all .3s var(--ease);
    height: 100%;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--color-primary); }
.loc-card .flag { font-size: 2.4rem; line-height: 1; margin-bottom: .5rem; }
.loc-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin: 0 0 .25rem; }
.loc-card p { font-size: .8rem; margin: 0; color: var(--color-text-muted); }

/* ------- 12. PARTNERS / SUB ------- */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: .85rem;
    margin-top: 1.5rem;
}
.partner-logo {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--r-md);
    padding: 1rem;
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    color: var(--color-text-muted);
    transition: all .3s var(--ease);
}
.partner-logo [data-lucide] { width: 28px; height: 28px; color: var(--color-primary); }
.partner-logo span { font-size: .8rem; font-weight: 600; text-align: center; color: var(--color-secondary); }
.partner-logo:hover { transform: translateY(-3px); border-color: var(--color-primary); box-shadow: var(--sh-2); }

.sub-card {
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--r-xl);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.sub-card::before {
    content: "";
    position: absolute; right: -40px; top: -40px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(255,255,255,.18), transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.sub-card .section-tag { background: rgba(255,255,255,.14); color: #fff; }
.sub-card h2 { color: #fff; }
.sub-card p { color: rgba(255,255,255,.82); }
.sub-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-block: 1.5rem; }
.sub-info-item { display: flex; flex-direction: column; align-items: flex-start; gap: .35rem; padding: .85rem; background: rgba(255,255,255,.08); border-radius: var(--r-md); }
.sub-info-item [data-lucide] { color: var(--color-accent); }
.sub-info-item span { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.92); }
.sub-card .btn { background: #fff; color: var(--color-primary); }
.sub-card .btn:hover { background: var(--color-accent); color: var(--color-secondary); }

/* ------- 13. CONTACT ------- */
.contact-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    display: flex; gap: 1rem; align-items: flex-start;
    transition: all .25s var(--ease);
}
.contact-card:hover { box-shadow: var(--sh-2); transform: translateY(-3px); border-color: var(--color-primary); }

.country-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 20px;
    font-size: .65rem;
    font-weight: 700;
    border-radius: 4px;
    margin-right: .5rem;
    vertical-align: middle;
    overflow: hidden;
    flex-shrink: 0;
}

.country-badge[title="India"] {
    background: linear-gradient(to bottom, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%);
    border: 1px solid #ccc;
}

.country-badge[title="Thailand"] {
    background: linear-gradient(to bottom, #A51931 25%, #F4F5F5 25%, #F4F5F5 75%, #2D2A4A 75%);
    border: 1px solid #ccc;
}
.contact-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin: 0 0 .35rem; }
.contact-card p { margin: 0; font-size: .9rem; }
.contact-card .icon-circle { flex-shrink: 0; }

/* Form styles */
.form-control, .form-select {
    border: 1px solid var(--color-border);
    border-radius: var(--r-md);
    padding: .85rem 1rem;
    font-family: var(--font-body);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-control:focus, .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-primary-50);
}
.form-floating > .form-control, .form-floating > .form-select {
    height: calc(3.5rem + 2px);
    padding-block: 1rem .25rem;
}
.form-floating > label { color: var(--color-text-muted); }

.form-status { font-size: .9rem; margin: 0; padding-top: .5rem; }
.form-status.is-success { color: var(--color-success); }
.form-status.is-error   { color: var(--color-danger); }

/* ------- 14. CTA BAND ------- */
.cta-band {
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--r-xl);
    padding: clamp(2rem, 5vw, 3.5rem);
    display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
    box-shadow: var(--sh-3);
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute; left: -60px; bottom: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255,255,255,.18), transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-band h2 { color: #fff; margin: 0 0 .5rem; }
.cta-band p { color: rgba(255,255,255,.82); margin: 0; }
.cta-band-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.cta-band .btn-primary-solid { background: #fff; color: var(--color-primary); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.cta-band .btn-primary-solid:hover { background: var(--color-accent); color: var(--color-secondary); }
.cta-band .btn-outline-dark { color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn-outline-dark:hover { background: #fff; color: var(--color-primary); border-color: #fff; }

/* ------- 15. VERTICAL PAGE ------- */
.v-hero {
    padding: clamp(5rem, 12vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}
.v-crumb {
    display: inline-flex; gap: .35rem; align-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    padding: .35rem .85rem;
    border-radius: var(--r-pill);
    font-size: .8rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 1.5rem;
}
.v-crumb a { color: rgba(255,255,255,.7); }
.v-crumb a:hover { color: #fff; }
.v-crumb strong { color: #fff; font-weight: 600; }
.v-hero-title { font-size: clamp(2.625rem, 4.4vw, 3.25rem); font-weight: 700; color: #fff; margin-bottom: 1rem; line-height: 1.15; }
.v-hero-lead { font-size: clamp(1.125rem, 1.4vw, 1.25rem); color: rgba(255,255,255,.85); max-width: 720px; margin-bottom: 2rem; line-height: 1.6; }
.v-hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }

.product-tags {
    display: flex; flex-wrap: wrap; gap: .65rem;
    justify-content: center;
}
.product-tags .ptag {
    display: inline-flex; align-items: center; gap: .35rem;
    background: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-secondary);
    font-weight: 500;
    padding: .55rem 1rem;
    border-radius: var(--r-pill);
    font-size: .9rem;
    transition: all .25s var(--ease);
}
.product-tags .ptag [data-lucide] { width: 14px; height: 14px; color: var(--color-success); }
.product-tags .ptag:hover { border-color: var(--color-primary); transform: translateY(-2px); box-shadow: var(--sh-1); }

/* ------- 16. FAB STACK ------- */
.fab-stack {
    position: fixed;
    right: 1.25rem; bottom: 1.25rem;
    display: flex; flex-direction: column; gap: .65rem;
    z-index: 1040;
}
.fab {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: var(--color-primary);
    box-shadow: var(--sh-3);
    display: grid; place-items: center;
    cursor: pointer;
    position: relative;
    transition: all .25s var(--ease);
}
.fab [data-lucide],
.fab > svg { width: 22px; height: 22px; display: block; }
.fab-wa > svg { width: 26px; height: 26px; }
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab-wa { background: #25D366; color: #fff; }
.fab-call { background: var(--color-primary); color: #fff; }
.fab-top { background: var(--color-secondary); color: #fff; opacity: 0; pointer-events: none; transform: translateY(20px); }
.fab-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

.fab-tip {
    position: absolute; right: calc(100% + .5rem); top: 50%;
    transform: translateY(-50%);
    background: var(--color-secondary);
    color: #fff;
    font-size: .75rem;
    font-weight: 500;
    padding: .35rem .65rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity .2s var(--ease);
}
.fab:hover .fab-tip { opacity: 1; }

/* ------- 17. MARQUEE ------- */
.marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
    display: flex; gap: 3rem;
    animation: marqueeScroll 32s linear infinite;
    width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    display: flex; align-items: center; gap: .65rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    white-space: nowrap;
}
.marquee-item [data-lucide] { color: var(--color-primary); }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ------- 18. FOOTER ------- */
.site-footer {
    background: var(--color-secondary);
    color: rgba(255,255,255,.82);
    padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
    margin-top: clamp(3rem, 6vw, 5rem);
    border-top: 4px solid var(--color-primary);
}
.footer-brand { display: inline-flex; align-items: center; margin-bottom: 1rem; }
.footer-logo {
    height: 64px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    opacity: .96;
}
.footer-about {
    color: rgba(255,255,255,.72);
    margin: 0 0 1.5rem;
    max-width: 460px;
    font-size: .92rem;
    line-height: 1.7;
}

.footer-social { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.85);
    display: grid; place-items: center;
    transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.footer-social a svg { width: 18px; height: 18px; display: block; }
.footer-social a:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0,0,0,.3); }
.footer-social .soc-linkedin:hover  { background: #0A66C2; }
.footer-social .soc-facebook:hover  { background: #1877F2; }
.footer-social .soc-x:hover         { background: #000000; }
.footer-social .soc-instagram:hover { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.footer-social .soc-youtube:hover   { background: #FF0000; }
.footer-social .soc-tiktok:hover    { background: #000000; }

.footer-title {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: .015em;
    position: relative;
    padding-bottom: .65rem;
}
.footer-title::after {
    content: "";
    position: absolute; bottom: 0; left: 0;
    width: 36px; height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a {
    color: rgba(255,255,255,.72);
    font-size: .92rem;
    font-weight: 400;
    transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.footer-links a:hover { color: #fff; padding-left: .35rem; }

/* Business Support & Contact (col 4) */
.footer-support-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}
@media (max-width: 991.98px) { .footer-support-list { grid-template-columns: 1fr; } }
.footer-support-list li {
    display: flex; flex-direction: column;
    gap: .2rem;
    min-width: 0;
}
.fs-label {
    font-family: var(--font-display);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255,255,255,.78);
    white-space: nowrap;
}
.footer-support-list a, .fs-value {
    font-size: .85rem;
    color: rgba(255,255,255,.85);
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.4;
}
.footer-support-list a:hover { color: #fff; }
.fs-value { color: rgba(255,255,255,.72); white-space: normal; }

/* Bottom bar — centered stack */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 2.75rem; padding-top: 1.75rem;
    display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
    text-align: center;
}
.footer-bottom-row {
    display: flex; justify-content: center; align-items: center;
    gap: 1.5rem 2rem; flex-wrap: wrap;
    width: 100%;
}
.footer-bottom-trust { gap: 1rem 2rem; }
.footer-bottom-meta { flex-direction: column; gap: .25rem; }

.copyright { margin: 0; font-size: .9rem; color: rgba(255,255,255,.78); font-weight: 500; }
.footer-register { margin: 0; font-size: .78rem; color: rgba(255,255,255,.5); }

.footer-badges {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: .65rem;
    padding: 0; margin: 0;
    flex-wrap: wrap;
}
.badge-item {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .35rem .7rem;
    border-radius: var(--r-pill);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    font-size: .74rem;
    font-weight: 500;
    color: rgba(255,255,255,.78);
}
.badge-item [data-lucide] { width: 14px; height: 14px; color: var(--color-accent); }

.footer-payments {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: .4rem;
    padding: 0; margin: 0;
    flex-wrap: wrap;
}
.pay-pill {
    display: inline-flex; align-items: center;
    padding: .25rem .55rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: rgba(255,255,255,.85);
}

/* ------- 18b. COMING-SOON STUB ------- */
.coming-soon-stage { padding-block: clamp(5rem, 10vw, 8rem); }
.coming-soon-icon {
    width: 84px; height: 84px;
    margin: 0 auto 1.5rem;
    border-radius: 24px;
    background: var(--color-primary-50);
    color: var(--color-primary);
    display: grid; place-items: center;
    box-shadow: 0 12px 30px rgba(0,43,107,.18);
}
.coming-soon-icon [data-lucide] { width: 38px; height: 38px; stroke-width: 1.6; }
.coming-soon-cta {
    margin-top: 2.25rem;
    flex-wrap: wrap;
    gap: .75rem;
}

/* ------- 19. LOOKUP MODAL (Quote / Payment / Track) ------- */
.lookup-modal .modal-dialog { max-width: 520px; }
.lookup-modal .modal-content {
    border-radius: var(--r-xl);
    border: 0;
    box-shadow: var(--sh-3);
    overflow: hidden;
    background: #fff;
}
.lookup-modal .modal-header {
    background: var(--gradient-primary);
    color: #fff;
    padding: 1.5rem 1.75rem;
    border: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}
.lookup-modal .modal-header::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
}
.lookup-modal__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(6px);
}
.lookup-modal__icon i,
.lookup-modal__icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
    stroke-width: 2;
}
.lookup-modal__heading { flex: 1; min-width: 0; }
.lookup-modal__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.78);
    margin-bottom: 4px;
}
.lookup-modal .modal-title {
    color: #fff;
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    line-height: 1.2;
}
.lookup-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: .85;
    margin: 0;
    align-self: flex-start;
}
.lookup-modal .modal-body { padding: 1.75rem 1.75rem 2rem; }
.lookup-modal__lead {
    color: var(--color-muted, #5a6473);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 1.25rem;
}

.lookup-form .lookup-field {
    position: relative;
    margin-bottom: 1.25rem;
}
.lookup-form .lookup-field .form-control,
.lookup-form .lookup-field .form-select {
    height: 64px;
    min-height: 64px;
    padding: 1.4rem 1rem .4rem 3.25rem;
    border-radius: 14px;
    border: 1.5px solid var(--color-tertiary, #C0C7D1);
    background: #F7F8FA;
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-secondary, #1F2937);
    letter-spacing: .01em;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    line-height: 1.25;
}
/* Bootstrap form-floating expects the placeholder to be invisible — the
   floating label visually substitutes for it. Keeping it transparent
   prevents the "double label" overlap. */
.lookup-form .lookup-field .form-control::placeholder { color: transparent; }
.lookup-form .lookup-field .form-control:focus,
.lookup-form .lookup-field .form-select:focus {
    border-color: var(--color-primary, #002B6B);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0,43,107,.10);
    outline: 0;
}
.lookup-form .lookup-field > label {
    padding: 1rem 1rem 1rem 3.25rem;
    color: #8892a0;
    font-weight: 500;
    border: 0;
    background: transparent;
    transform-origin: 0 0;
    transition: opacity .15s ease-in-out, transform .15s ease-in-out, color .15s ease-in-out;
}
/* Floated state (focused or has value or is a select) */
.lookup-form .lookup-field .form-control:focus ~ label,
.lookup-form .lookup-field .form-control:not(:placeholder-shown) ~ label,
.lookup-form .lookup-field .form-select ~ label {
    color: var(--color-primary, #002B6B);
    transform: scale(.78) translateY(-.55rem) translateX(.15rem);
    opacity: 1;
}
/* Kill Bootstrap's default ::after notch — we sit on a flat soft surface */
.lookup-form .lookup-field > label::after { display: none; }

.lookup-field__icon {
    position: absolute;
    top: 50%;
    left: 1.1rem;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    color: var(--color-primary, #002B6B);
    opacity: .75;
    pointer-events: none;
    z-index: 4;
}

.lookup-submit {
    width: 100%;
    height: 56px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    background: var(--gradient-primary);
    color: #fff;
    border: 0;
    box-shadow: 0 10px 24px -10px rgba(0,43,107,.55);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.lookup-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
    color: #fff;
    box-shadow: 0 14px 30px -10px rgba(0,43,107,.65);
}
.lookup-submit:active { transform: translateY(0); }
.lookup-submit i,
.lookup-submit svg {
    width: 18px;
    height: 18px;
    transition: transform .18s ease;
}
.lookup-submit:hover i,
.lookup-submit:hover svg { transform: translateX(3px); }

.lookup-form .form-status {
    margin: .9rem 0 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    min-height: 1.2em;
}
.lookup-form .form-status.is-error   { color: #c53030; }
.lookup-form .form-status.is-success { color: #16794a; }

/* Wider Quote modal — multi-field grid */
.lookup-modal--quote .modal-dialog { max-width: 760px; }
.lookup-modal--quote .modal-body { padding: 1.75rem 2rem 2rem; }

/* Select variant */
.lookup-form .lookup-field--select .form-select {
    padding-left: 3.25rem;
    padding-right: 2.5rem;
    background-position: right 1.1rem center;
    background-size: 14px 10px;
    appearance: none;
}
.lookup-form .lookup-field--select .lookup-field__icon { top: 50%; }

/* Textarea variant */
.lookup-form .lookup-field--textarea .form-control {
    height: 140px;
    padding-top: 1.85rem;
    padding-bottom: 1rem;
    padding-left: 3.25rem;
    line-height: 1.5;
    resize: vertical;
}
.lookup-form .lookup-field--textarea .lookup-field__icon {
    top: 1.55rem;
    transform: none;
}
.lookup-form .lookup-field--textarea label { padding-top: 1rem; }

@media print {
    .lookup-modal { display: none !important; }
}

@media (max-width: 575.98px) {
    .lookup-modal .modal-header { padding: 1.1rem 1.1rem; gap: .85rem; }
    .lookup-modal__icon { width: 48px; height: 48px; border-radius: 13px; }
    .lookup-modal__icon i,
    .lookup-modal__icon svg { width: 24px; height: 24px; }
    .lookup-modal .modal-body,
    .lookup-modal--quote .modal-body { padding: 1.4rem 1.25rem 1.6rem; }
    .lookup-form .lookup-field .form-control { height: 58px; font-size: 15px; }
    .lookup-form .lookup-field--textarea .form-control { height: 120px; }
    .lookup-submit { height: 52px; }
}

/* ------- 20. UTILITIES & RESPONSIVE ------- */
.bg-dark-section { background: var(--gradient-dark); color: #fff; }
.divider-soft { height: 1px; background: var(--color-border); border: 0; margin-block: 2rem; }

@media (max-width: 991.98px) {
    .hero-visual { margin-top: 2rem; }
    .cta-band { text-align: center; flex-direction: column; }
    .cta-band-actions { width: 100%; justify-content: center; }
}

@media (max-width: 575.98px) {
    .fab { width: 46px; height: 46px; }
    .sub-info { grid-template-columns: 1fr; }
}

/* ==========================================================================
   AIR FREIGHT PAGE (and reusable service-detail components)
   ========================================================================== */

/* Hero — extends .v-hero with a stat-chip strip */
.af-hero { padding-bottom: clamp(5rem, 9vw, 7rem); }

.af-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
    margin-top: 2.5rem;
    max-width: 760px;
}
@media (min-width: 768px) {
    .af-hero-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
}
.af-stat {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--r-lg);
    padding: 1.15rem 1.2rem;
    color: #fff;
    transition: transform .25s var(--ease), background .25s var(--ease);
}
.af-stat:hover { transform: translateY(-3px); background: rgba(255, 255, 255, .12); }
.af-stat .num {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: .4rem;
    color: #fff;
}
.af-stat .label {
    font-size: .82rem;
    color: rgba(255, 255, 255, .78);
    letter-spacing: .02em;
    line-height: 1.4;
    margin: 0;
}

/* Service-tier cards */
.tier-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--r-xl);
    padding: 2rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.tier-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-3);
    border-color: transparent;
}
.tier-card.is-featured {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--sh-glow);
    transform: translateY(-6px);
}
@media (min-width: 992px) {
    .tier-card.is-featured { transform: translateY(-14px) scale(1.02); }
}
.tier-card.is-featured h3, .tier-card.is-featured h4 { color: #fff; }
.tier-card.is-featured p { color: rgba(255, 255, 255, .86); }
.tier-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--color-primary-50);
    color: var(--color-primary);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.tier-icon [data-lucide] { width: 26px; height: 26px; }
.tier-card.is-featured .tier-icon { background: rgba(255, 255, 255, .16); color: #fff; }
.tier-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .35rem .75rem;
    border-radius: var(--r-pill);
    background: var(--color-primary-50);
    color: var(--color-primary);
}
.tier-card.is-featured .tier-tag { background: #fff; color: var(--color-primary); }
.tier-title { font-size: 1.5rem; margin: 0 0 .35rem; line-height: 1.2; }
.tier-lead { font-size: .95rem; margin: 0; line-height: 1.55; color: var(--color-text-muted); }
.tier-card.is-featured .tier-lead { color: rgba(255, 255, 255, .86); }
.tier-meta { display: flex; flex-direction: column; gap: .55rem; }
.tier-meta-row { display: flex; align-items: flex-start; gap: .55rem; font-size: .88rem; line-height: 1.5; }
.tier-meta-row .label {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-secondary);
    min-width: 78px;
    flex-shrink: 0;
}
.tier-card.is-featured .tier-meta-row .label { color: #fff; }
.tier-meta-row .value { color: var(--color-text-muted); }
.tier-card.is-featured .tier-meta-row .value { color: rgba(255, 255, 255, .88); }
.tier-divider { height: 1px; background: var(--color-border); }
.tier-card.is-featured .tier-divider { background: rgba(255, 255, 255, .18); }
.tier-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.tier-feature { display: flex; gap: .55rem; align-items: flex-start; font-size: .9rem; line-height: 1.5; color: var(--color-text-muted); }
.tier-feature [data-lucide] { width: 16px; height: 16px; color: var(--color-success); margin-top: 3px; flex-shrink: 0; }
.tier-card.is-featured .tier-feature { color: rgba(255, 255, 255, .9); }
.tier-card.is-featured .tier-feature [data-lucide] { color: #fff; }
.tier-cta { margin-top: auto; }
.tier-card.is-featured .btn-primary-solid {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}
.tier-card.is-featured .btn-primary-solid:hover {
    background: var(--color-secondary);
    color: #fff;
}

/* Gateway chips */
.gateway-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: .7rem;
    margin-top: 1.5rem;
}
.gateway-chip {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--r-md);
    padding: .85rem 1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.gateway-chip:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--sh-2);
}
.gateway-chip .code {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: .04em;
    font-size: .95rem;
    line-height: 1.1;
}
.gateway-chip .city {
    font-size: .82rem;
    color: var(--color-text-muted);
    line-height: 1.2;
    margin-top: 2px;
}

/* Process stepper */
.process-stepper {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    position: relative;
}
@media (min-width: 768px) {
    .process-stepper { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
    .process-stepper { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
}
.step-node {
    position: relative;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-lg);
    padding: 1.75rem 1.4rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.step-node:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .2);
}
.step-node .num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, .35);
    margin-bottom: .7rem;
}
.step-node h4 {
    color: #fff;
    font-size: 1.05rem;
    margin: 0 0 .4rem;
    font-weight: 600;
}
.step-node p {
    color: rgba(255, 255, 255, .75);
    font-size: .87rem;
    margin: 0;
    line-height: 1.55;
}
.step-node .step-icon {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
}
.step-node .step-icon [data-lucide] { width: 18px; height: 18px; }

/* Industry tiles */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}
.industry-tile {
    position: relative;
    height: 260px;
    border-radius: var(--r-lg);
    overflow: hidden;
    isolation: isolate;
    background: var(--color-tertiary-25);
}
.industry-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.industry-tile::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 30%, rgba(0, 30, 77, .94) 100%);
    z-index: 1;
}
.industry-tile .meta {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    padding: 1.4rem 1.5rem;
    color: #fff;
}
.industry-tile .meta h4 {
    color: #fff;
    margin: 0 0 .3rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.industry-tile .meta p {
    color: rgba(255, 255, 255, .88);
    margin: 0;
    font-size: .82rem;
    line-height: 1.45;
}
.industry-tile:hover img { transform: scale(1.06); }

/* FAQ accordion */
.af-faq { max-width: 920px; margin: 0 auto; }
.af-faq .accordion-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--r-md) !important;
    margin-bottom: .75rem;
    overflow: hidden;
}
.af-faq .accordion-button {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-secondary);
    padding: 1.15rem 1.3rem;
    background: #fff;
    box-shadow: none !important;
    line-height: 1.45;
}
.af-faq .accordion-button:not(.collapsed) {
    background: var(--color-primary-50);
    color: var(--color-primary);
}
.af-faq .accordion-button:focus { box-shadow: 0 0 0 4px var(--color-primary-50) !important; }
.af-faq .accordion-button::after {
    background-size: 1.1rem;
    transition: transform .3s var(--ease);
}
.af-faq .accordion-body {
    padding: .25rem 1.3rem 1.4rem;
    color: var(--color-text-muted);
    font-size: .95rem;
    line-height: 1.7;
}

/* ------- 21. ACCESSIBILITY ------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001s !important;
        transition-duration: .001s !important;
    }
}

/* Focus rings */
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; border-radius: 4px; }

/* Print */
@media print {
    .top-bar, .site-nav, .fab-stack, .lookup-modal { display: none !important; }
    body { padding-top: 0; }
}
