/* 
   NEXREACH Official Brand Identity System & Apple Quiet Luxury Guidelines
   Colors from Manual:
   - Primary Deep Ocean Teal: #103a49 (RGB: 16, 58, 73)
   - Secondary Teal: #105a73 (RGB: 16, 90, 115)
   - Auxiliary Teal: #1f7a93 (RGB: 31, 122, 147)
   - Accent Cyan: #2cafce (RGB: 44, 175, 206)
   - Accent Lime: #ece980 (RGB: 236, 233, 128)
   - Neutral Base (Ice): #f4f8fa (RGB: 244, 248, 250)
   - Pure White: #ffffff
   
   Fonts from Manual:
   - English: Poppins (Weights: Light 300, Regular 400, Medium 500, SemiBold 600, Bold 700)
   - Chinese: Noto Sans SC (Weights: Light 300, Regular 400, Medium 500, Bold 700)
*/

:root {
    /* Exact Manual Color Codes */
    --brand-primary: #103a49;
    --brand-dark: #105a73;
    --brand-mid: #1f7a93;
    --brand-cyan: #2cafce;
    --brand-lime: #ece980;
    --brand-neutral-bg: #f3f7f9;
    --brand-white: #ffffff;
    
    --brand-border: rgba(16, 58, 73, 0.08);
    --brand-border-hover: rgba(16, 58, 73, 0.16);

    /* Typography: Poppins throughout; Noto Sans SC only supplies Chinese glyphs. */
    --font-heading: 'Poppins', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Poppins', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-en: 'Poppins', sans-serif;
    --font-zh: 'Noto Sans SC', sans-serif;

    /* Spacing & Radii (True Full-Width Edge-to-Edge with Refined Padding) */
    --max-w: 100%;
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 28px;

    /* Apple Easing Curves */
    --apple-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s var(--apple-ease);
}

/* Reset & Foundation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #f3f7f9;
}

body {
    background-color: #f3f7f9 !important;
    color: var(--brand-primary);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 200;
    overflow-x: hidden;
}

/* Product page: match the pure-white sections of the homepage. */
body.page-product,
body.page-product > section,
body.page-product .product-hero-wrapper,
body.page-product .about-us-section {
    background-color: #ffffff !important;
    background: #ffffff !important;
}

button,
input,
select,
textarea {
    font-family: var(--font-body);
}

/* Language Engine */
[lang="zh"] {
    display: none !important;
}
body.lang-cn [lang="en"] {
    display: none !important;
}
body.lang-cn [lang="zh"] {
    display: block !important;
}
body.lang-cn span[lang="zh"],
body.lang-cn a[lang="zh"] {
    display: inline !important;
}
body.lang-cn h1[lang="zh"],
body.lang-cn h2[lang="zh"],
body.lang-cn h3[lang="zh"],
body.lang-cn h4[lang="zh"] {
    display: block !important;
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--brand-primary);
    font-weight: 600;
    letter-spacing: -0.02em;
}

body:not(.page-product) h1,
body:not(.page-product) h2,
body:not(.page-product) h3,
body:not(.page-product) h4,
body:not(.page-product) h5,
body:not(.page-product) h6 {
    font-family: 'Poppins', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 400 !important;
}

body:not(.page-product) #why-nexreach .bento-box h3 {
    width: 100%;
    min-height: 2.5em;
    text-align: left !important;
}

body:not(.page-product) #why-nexreach .bento-header-wrap {
    position: relative;
    width: 100%;
    min-height: 38px;
    padding-right: 52px;
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

body:not(.page-product) #why-nexreach .bento-icon-badge {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}

body:not(.page-product) #why-nexreach .bento-grid .bento-box .bento-index-pill,
body:not(.page-product) #why-nexreach .bento-grid .bento-box .bento-widget {
    display: none !important;
}

body:not(.page-product) #why-nexreach .bento-icon-badge,
body:not(.page-product) #why-nexreach .bento-box:hover .bento-icon-badge {
    background: linear-gradient(90deg, #2cafce 0%, #105a73 100%) !important;
    color: #ffffff !important;
}

body:not(.page-product) #why-nexreach .bento-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

body:not(.page-product) #why-nexreach .bento-box p {
    margin-bottom: 0;
    text-align: left !important;
}

@media (min-width: 993px) {
    body:not(.page-product) #capabilities .service-acc-card .card-expanded-body {
        padding: 0 !important;
        align-items: flex-end;
    }

    body:not(.page-product) #capabilities .service-acc-card .card-left-content,
    body:not(.page-product) #capabilities .service-acc-card:nth-child(3) .card-left-content {
        width: 100% !important;
        max-width: none !important;
        padding: 22px 28px 24px;
        border: 0;
        border-radius: 0 0 28px 28px;
        background: rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(20px) saturate(115%);
        -webkit-backdrop-filter: blur(20px) saturate(115%);
        box-shadow: none !important;
    }

    body:not(.page-product) #capabilities .service-acc-card .expanded-heading {
        display: block;
        width: auto;
        max-width: 100%;
        margin: 0 0 8px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: none;
        color: #ffffff !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body:not(.page-product) #capabilities .service-acc-card .expanded-desc {
        width: 100%;
        max-width: 680px;
        color: rgba(255, 255, 255, 0.82) !important;
        text-shadow: none !important;
    }
}

body:not(.page-product) :is(
    .hero-wrapper-section,
    #capabilities,
    #solutions,
    #why-nexreach,
    .footer-grand-section
) * {
    box-shadow: none !important;
    text-shadow: none !important;
}

.page-product .product-title-main {
    max-width: 820px;
    margin-bottom: 18px;
    font-family: var(--font-heading) !important;
    font-size: clamp(46px, 4vw, 60px) !important;
    font-weight: 400 !important;
    line-height: 1.01 !important;
    letter-spacing: -0.045em;
}

.page-product .product-title-main span {
    font-weight: 400 !important;
}

@media (max-width: 1023px) and (min-width: 769px) {
    .page-product .product-title-main {
        font-size: clamp(40px, 5vw, 52px) !important;
    }
}

.page-product .product-desc-group {
    display: flex;
    max-width: 600px;
    flex-direction: column;
    gap: 4px;
}

.page-product .product-desc-main {
    max-width: 600px;
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(15px, 1.35vw, 18px) !important;
    font-weight: 300;
    line-height: 1.68;
}

.page-product .product-section-title {
    margin-bottom: 20px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: clamp(42px, 3.8vw, 52px) !important;
    font-weight: 400 !important;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.page-product .product-section-copy {
    max-width: 560px;
    margin: 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 200;
    line-height: 1.68;
}

body.page-product .footer-grand-section {
    width: 100%;
    min-height: 100svh;
    height: 100svh;
    padding: 0 !important;
    display: flex;
    align-items: stretch;
    background: var(--brand-gradient) !important;
}

body.page-product .footer-grand-section > .container {
    width: 100% !important;
    max-width: none !important;
    height: 100%;
    margin: 0;
    padding: 0 !important;
    display: flex;
}

body.page-product .footer-grand-card {
    width: 100%;
    min-height: 100%;
    height: 100%;
    padding: clamp(88px, 11svh, 118px) max(40px, calc((100% - var(--home-content-max)) / 2 + 32px)) !important;
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0 !important;
    background:
        radial-gradient(circle at 14% 12%, rgba(44, 175, 206, 0.92) 0%, rgba(44, 175, 206, 0.18) 28%, transparent 54%),
        radial-gradient(circle at 86% 18%, rgba(16, 90, 115, 0.96) 0%, rgba(16, 90, 115, 0.24) 32%, transparent 58%),
        radial-gradient(circle at 72% 88%, rgba(44, 175, 206, 0.50) 0%, rgba(44, 175, 206, 0.08) 28%, transparent 54%),
        linear-gradient(135deg, #052b3c 0%, #105a73 48%, #073b50 100%) !important;
    box-shadow: none !important;
    text-align: center;
}

body.page-product .footer-grand-card::before,
body.page-product .footer-grand-card::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 0;
    z-index: 0;
}

body.page-product .footer-grand-card::before {
    inset: -24%;
    width: auto;
    aspect-ratio: auto;
    background:
        radial-gradient(circle at 24% 28%, rgba(44, 175, 206, 0.78) 0%, rgba(44, 175, 206, 0.20) 22%, transparent 46%),
        radial-gradient(circle at 76% 24%, rgba(16, 90, 115, 0.94) 0%, rgba(16, 90, 115, 0.16) 28%, transparent 50%),
        radial-gradient(circle at 68% 76%, rgba(44, 175, 206, 0.52) 0%, rgba(44, 175, 206, 0.10) 24%, transparent 48%),
        radial-gradient(circle at 28% 74%, rgba(5, 43, 60, 0.92) 0%, rgba(5, 43, 60, 0.18) 30%, transparent 52%);
    filter: blur(54px) saturate(125%);
    opacity: 0.92;
    transform: translate3d(-3%, -2%, 0) scale(1.04) rotate(-2deg);
    will-change: transform;
    animation: footer-mesh-drift 18s cubic-bezier(0.77, 0, 0.175, 1) infinite alternate;
}

body.page-product .footer-grand-card::after {
    inset: -18%;
    width: auto;
    aspect-ratio: auto;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 68px 68px;
    opacity: 0.36;
    transform-origin: center;
    transform: translate3d(-2%, 1%, 0) rotate(-8deg) scale(1.12);
    will-change: transform;
    -webkit-mask-image: radial-gradient(ellipse at 62% 54%, #000 0%, rgba(0, 0, 0, 0.86) 42%, transparent 82%);
    mask-image: radial-gradient(ellipse at 62% 54%, #000 0%, rgba(0, 0, 0, 0.86) 42%, transparent 82%);
    animation: footer-wireframe-drift 24s linear infinite alternate;
}

body:not(.page-product) .footer-grand-card::after,
body.page-product .footer-grand-card::after {
    display: none !important;
    animation: none !important;
}

body.page-product .footer-grand-card .grand-about-editorial-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--home-content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    align-items: center;
    gap: clamp(52px, 6vw, 96px);
}

body.page-product .footer-grand-card .grand-about-top {
    margin: 0;
    text-align: left;
}

body.page-product .footer-grand-card .grand-pill-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: none;
}

body.page-product .footer-grand-card .grand-pill-label::before {
    content: '';
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2cafce, #ece980);
}

body.page-product .footer-grand-card .grand-about-main-title {
    max-width: 760px;
    margin: 0;
    color: #ffffff !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(58px, 5.5vw, 82px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-align: left;
}

body.page-product .footer-grand-card .grand-about-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0;
}

body.page-product .footer-grand-card .editorial-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px 26px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: none !important;
}

body.page-product .footer-grand-card .editorial-col p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 15px;
    font-weight: 200;
    line-height: 1.62;
    text-align: left;
    text-shadow: none !important;
}

body.page-product .footer-grand-card .about-bg-graphic,
body.page-product .footer-grand-card .grand-brand-quote-strip,
body.page-product .footer-grand-card .footer-mid-row,
body.page-product .footer-grand-card .footer-bottom-bar {
    display: none !important;
}

body.page-product .footer-grand-section * {
    box-shadow: none !important;
    text-shadow: none !important;
}

@media (prefers-reduced-motion: reduce) {
    body.page-product .footer-grand-card::before,
    body.page-product .footer-grand-card::after {
        animation: none;
    }
}

/* Mobile homepage Hero copy surface: reuse the Footer artwork on the right. */
@media (max-width: 768px) {
    body:not(.page-product) .hero-banner-card {
        background:
            linear-gradient(180deg, rgba(16, 90, 115, 0.12), rgba(16, 90, 115, 0.32)),
            url('home/footer/footer-background.jpg') right center / cover no-repeat !important;
    }

    body:not(.page-product) .hero-left-content {
        align-items: flex-end !important;
        text-align: right !important;
    }

    body:not(.page-product) .hero-title-main,
    body:not(.page-product) .hero-desc-main,
    body:not(.page-product) .hero-feature-line {
        text-align: right !important;
    }

    body:not(.page-product) .hero-desc-main {
        align-items: flex-end !important;
    }

    body:not(.page-product) .hero-feature-line {
        align-self: flex-end;
    }
}

@media (max-width: 992px) {
    body.page-product .footer-grand-section,
    body.page-product .footer-grand-card {
        height: 100svh;
        min-height: 100svh;
    }

    body.page-product .footer-grand-card {
        padding: 96px 32px 56px !important;
    }

    body.page-product .footer-grand-card .grand-about-editorial-wrap {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    body.page-product .footer-grand-card .grand-about-top,
    body.page-product .footer-grand-card .grand-about-main-title {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    body.page-product .footer-grand-card .grand-pill-label {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-product .product-title-main {
        font-size: clamp(31px, 9vw, 40px) !important;
        line-height: 1.02 !important;
        letter-spacing: -0.04em;
    }

    .page-product .product-desc-main {
        font-size: 15px !important;
    }

    .page-product .product-section-title {
        font-size: clamp(34px, 9vw, 44px) !important;
    }
}

p, span, li, small, label, input, select {
    font-family: var(--font-body);
    font-weight: 200; /* Thin weight */
}

p {
    color: var(--brand-primary);
    opacity: 0.85;
    font-weight: 200;
    letter-spacing: 0.01em;
}
/* -------------------------------------------------------------
   FULL-WIDTH CONTAINER & GLOBAL SECTION LAYOUT
------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 32px;
    box-sizing: border-box;
}

section {
    padding: 110px 0;
    position: relative;
    width: 100%;
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    .container {
        padding: 0 16px;
    }
}

/* -------------------------------------------------------------
   GLOBAL SECTION HEADERS & PILLS (Left-Aligned Minimalist Hierarchy)
------------------------------------------------------------- */
.section-header {
    text-align: left;
    max-width: 860px;
    margin: 0 0 48px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.section-pill {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    background: rgba(44, 175, 206, 0.08);
    border: 1px solid rgba(44, 175, 206, 0.22);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-cyan);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.section-header h2 {
    font-size: 38px;
    line-height: 1.22;
    color: var(--brand-primary);
    font-weight: 700;
    letter-spacing: -0.025em;
    font-family: var(--font-heading);
    margin-bottom: 16px;
    text-align: left;
}

.mobile-only-break {
    display: none;
}

body.lang-cn .section-header h2 {
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 16px;
    line-height: 1.68;
    color: rgba(16, 58, 73, 0.76);
    font-weight: 300;
    max-width: 680px;
    margin: 0;
    text-align: left;
}

body.lang-cn .section-header p {
    font-size: 15.5px;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .mobile-only-break {
        display: block;
    }

    .section-header {
        margin-bottom: 36px;
    }
    .section-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    body.lang-cn .section-header h2 {
        font-size: 26px;
    }
    .section-header p {
        font-size: 14.5px;
    }
}

/* -------------------------------------------------------------
   NAVBAR: 100% FULL-WIDTH & TRANSPARENT BY DEFAULT, FROSTED ON SCROLL
------------------------------------------------------------- */
header, .main-fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 9999;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: none !important;
    border-bottom: 1px solid transparent !important;
    border-radius: 0;
    padding: 16px 40px;
    box-shadow: none;
    transition: background 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    box-sizing: border-box;
}

/* Scrolled State: Apple White Frosted Glass Fixed at Top */
header.header-scrolled, .main-fixed-header.header-scrolled,
body.page-scrolled header, body.page-scrolled .main-fixed-header {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-bottom: 1px solid rgba(16, 58, 73, 0.08) !important;
    box-shadow: 0 4px 30px rgba(16, 58, 73, 0.08) !important;
    padding: 12px 40px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    height: 52px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 44px;
}

.logo-svg {
    height: 13.6px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1); /* Pure white brand logo on top transparent hero */
    transition: filter 0.3s ease;
}

header.header-scrolled .logo-svg, .main-fixed-header.header-scrolled .logo-svg,
body.page-scrolled header .logo-svg, body.page-scrolled .main-fixed-header .logo-svg {
    filter: none !important; /* Original dark brand logo on white frosted glass */
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover {
    color: var(--brand-lime) !important;
}

header.header-scrolled .nav-link, .main-fixed-header.header-scrolled .nav-link,
body.page-scrolled header .nav-link, body.page-scrolled .main-fixed-header .nav-link {
    color: var(--brand-primary) !important;
    opacity: 0.85;
}

header.header-scrolled .nav-link:hover, .main-fixed-header.header-scrolled .nav-link:hover,
body.page-scrolled header .nav-link:hover, body.page-scrolled .main-fixed-header .nav-link:hover {
    color: var(--brand-cyan) !important;
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
}

.lang-toggle {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
}

header.header-scrolled .lang-toggle, .main-fixed-header.header-scrolled .lang-toggle,
body.page-scrolled header .lang-toggle, body.page-scrolled .main-fixed-header .lang-toggle {
    background: rgba(16, 58, 73, 0.06) !important;
    border-color: rgba(16, 58, 73, 0.15) !important;
    color: var(--brand-primary) !important;
}

header.header-scrolled .lang-toggle:hover, .main-fixed-header.header-scrolled .lang-toggle:hover,
body.page-scrolled header .lang-toggle:hover, body.page-scrolled .main-fixed-header .lang-toggle:hover {
    background: rgba(16, 58, 73, 0.12) !important;
}

@media (max-width: 992px) {
    header, .main-fixed-header {
        padding: 12px 20px;
    }
    .nav-menu {
        gap: 20px;
    }
}

/* -------------------------------------------------------------
   BUTTONS (Restrained Apple Style)
------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--brand-primary);
    color: var(--brand-white);
}

.btn-primary:hover {
    background-color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 58, 73, 0.15);
}

.btn-secondary {
    background: var(--brand-white);
    color: var(--brand-primary);
    border: 1px solid var(--brand-border);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: var(--brand-border-hover);
    transform: translateY(-2px);
}

.btn-cyan {
    background-color: #2cafce;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(44, 175, 206, 0.35);
}

.btn-cyan:hover {
    background-color: #1f9cb8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 175, 206, 0.5);
}

.btn-lime {
    background-color: var(--brand-lime);
    color: var(--brand-primary);
    font-weight: 600;
}

.btn-lime:hover {
    filter: brightness(0.96);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 233, 128, 0.4);
}

.btn-text {
    color: var(--brand-dark);
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.btn-text:hover {
    gap: 8px;
    color: var(--brand-cyan);
}

/* -------------------------------------------------------------
   HERO SECTION (Left-Aligned Text + Full Visual Backdrop)
   (Strictly 82vh viewport height with high-contrast typography)
------------------------------------------------------------- */
.hero-wrapper-section {
    padding: 12px 16px 16px;
    background-color: var(--brand-neutral-bg);
    width: 100%;
    height: 82vh;
    min-height: 640px;
    max-height: 880px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.hero-banner-card {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 1;
    border-radius: var(--radius-lg);
    background-color: #071922;
    color: var(--brand-white);
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 24px 60px rgba(10, 37, 48, 0.25);
    box-sizing: border-box;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-backdrop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    transform: scale(1.0);
}

.hero-vignette-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(7, 25, 34, 0.95) 0%, 
        rgba(7, 25, 34, 0.82) 42%, 
        rgba(7, 25, 34, 0.30) 65%, 
        rgba(7, 25, 34, 0.0) 88%
    );
}

/* Left Content Area */
.hero-left-content-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px 64px;
    box-sizing: border-box;
}

.hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 640px;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.hero-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(236, 233, 128, 0.14);
    border: 1px solid rgba(236, 233, 128, 0.38);
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--brand-lime);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 1 !important;
    visibility: visible !important;
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-lime);
    box-shadow: 0 0 8px var(--brand-lime);
    animation: livePulse 2s infinite;
}

.hero-title-main {
    font-size: 42px;
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #ffffff !important;
    font-family: var(--font-heading);
    margin-bottom: 18px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    opacity: 1 !important;
    visibility: visible !important;
    display: block;
}

body.lang-cn .hero-title-main {
    font-size: 40px;
    line-height: 1.25;
}

.hero-desc-main {
    font-size: 15.5px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.88) !important;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 540px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-glass-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #ffffff;
    transition: all 0.3s var(--apple-ease);
}

.btn-glass-hero:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Metrics Bar */
.hero-metrics-bar {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    padding: 12px 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-metric-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-metric-item strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-lime);
    font-family: var(--font-heading);
    line-height: 1.15;
}

.hero-metric-item span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.80);
    font-weight: 400;
    margin-top: 2px;
}

.hero-metric-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.18);
}

/* Responsive Adaptation */
@media (max-width: 992px) {
    .hero-wrapper-section {
        height: auto;
        min-height: auto;
        padding: 12px 12px 16px;
    }

    .hero-left-content-wrap {
        padding: 56px 28px 48px;
    }

    .hero-title-main {
        font-size: 32px;
    }

    .hero-desc-main {
        font-size: 14.5px;
    }

    .hero-vignette-overlay {
        background: linear-gradient(180deg, 
            rgba(8, 29, 38, 0.90) 0%, 
            rgba(8, 29, 38, 0.96) 100%
        );
    }

    .hero-metrics-bar {
        flex-wrap: wrap;
        gap: 16px;
        width: 100%;
        box-sizing: border-box;
    }
}

/* -------------------------------------------------------------
   ESSENTIAL FINANCIAL SERVICES - ORIGINAL DESIGN REPLICATION
   (Card 1 Expanded = global_collections_bg.png | Collapsed = collections_card_bg.png)
------------------------------------------------------------- */
#capabilities {
    width: 100%;
    padding: 90px 0;
}

#capabilities .container {
    width: 100%;
    max-width: 100%;
    padding: 0 32px;
    margin: 0;
    box-sizing: border-box;
}

.services-accordion-container {
    display: flex;
    gap: 22px;
    width: 100%;
    height: 520px;
    margin: 0;
    box-sizing: border-box;
}

.service-acc-card {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #0b2d3b;
    border: none !important;
    cursor: pointer;
    transition: flex 0.72s cubic-bezier(0.25, 1, 0.35, 1), transform 0.4s ease, box-shadow 0.6s ease;
    display: flex;
    box-shadow: 0 16px 40px rgba(10, 37, 48, 0.15);
    will-change: flex;
}

/* Active Expanded Card Flex: 3.4 */
.service-acc-card.active {
    flex: 3.4;
    border: none !important;
    box-shadow: 0 24px 60px rgba(10, 37, 48, 0.28);
}

/* Background Image Layer */
.collections-card-bg-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.collections-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    transition: opacity 0.55s ease, transform 0.85s cubic-bezier(0.25, 1, 0.35, 1);
}

/* Dual Background for Card 1 */
.bg-collapsed-img {
    opacity: 1;
    z-index: 1;
    object-position: center;
}

.bg-expanded-img {
    opacity: 0;
    z-index: 1;
    object-position: right center;
}

.service-acc-card.active .bg-collapsed-img {
    opacity: 0 !important;
}

.service-acc-card.active .bg-expanded-img {
    opacity: 1 !important;
    transform: scale(1.02);
}

/* Card 2 & Card 3 Scale */
.service-acc-card.active .payouts-bg-img,
.service-acc-card.active .fx-bg-img {
    transform: scale(1.02);
}

/* Gradient Overlay for Active Card (Ensuring left text readability over global_collections_bg.png) */
.card-active-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        #0b2d3b 0%, 
        rgba(11, 45, 59, 0.95) 36%, 
        rgba(11, 45, 59, 0.48) 62%, 
        transparent 100%
    );
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-acc-card.active .card-active-gradient-overlay {
    opacity: 1;
}

/* Collapsed State Tint */
.card-collapsed-tint {
    position: absolute;
    inset: 0;
    background: rgba(11, 45, 59, 0.55);
    z-index: 2;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-acc-card.active .card-collapsed-tint {
    opacity: 0;
}

/* Collapsed State: Top Number + Bottom Horizontal Title */
.card-collapsed-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 28px 20px 24px;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.35s ease;
    box-sizing: border-box;
}

.card-num {
    font-size: 14px;
    font-weight: 700;
    color: #ece980;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    background: rgba(11, 45, 59, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 4px 10px;
    border-radius: 12px;
}

body.lang-cn .vertical-title {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    font-size: 15px;
    letter-spacing: 0.02em;
}

.vertical-title {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
    white-space: normal;
    line-height: 1.35;
    margin: 0;
    font-family: var(--font-heading);
    text-align: left;
    background: rgba(11, 45, 59, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px 14px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    width: fit-content;
    max-width: 100%;
}

.service-acc-card.active .card-collapsed-label {
    opacity: 0;
}

/* Expanded Content */
.card-expanded-body {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 100%;
    padding: 44px 48px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.52s 0.1s cubic-bezier(0.25, 1, 0.35, 1), transform 0.52s 0.1s cubic-bezier(0.25, 1, 0.35, 1);
    pointer-events: none;
    box-sizing: border-box;
}

.service-acc-card.active .card-expanded-body {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.card-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 480px;
    z-index: 5;
}

.card-pill-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.20);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #a4c9d7;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.expanded-heading {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.22;
    font-family: var(--font-heading);
}

.expanded-desc {
    font-size: 14px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 24px;
    font-weight: 300;
}

/* Dynamic FX Conversion Flow Pill Widget */
.dynamic-fx-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 6px 14px;
    border-radius: 28px;
    margin-bottom: 24px;
}

.fx-node {
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-action {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ece980;
    color: var(--brand-primary);
    font-size: 16px;
    font-weight: 700;
    animation: plusPulse 3s infinite ease-in-out;
}

.node-stat {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    padding: 2px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.node-stat .widget-tag {
    font-size: 8px;
    color: #ece980;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.node-stat strong {
    font-size: 11.5px;
    color: #ffffff;
}

.node-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.fx-swap-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    padding: 3px 10px;
    border-radius: 20px;
}

.curr-bubble {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
}

.active-curr {
    background: #2cafce;
    color: #ffffff;
}

.next-curr {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.swap-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #2cafce;
    font-weight: 600;
    font-size: 13px;
    padding: 0 2px;
}

.fx-live-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #00e676;
    animation: livePulse 1.5s infinite;
}

/* Feature Pill Widget for Cards 2 & 3 */
.card-widget-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 6px 14px;
    border-radius: 28px;
    margin-bottom: 24px;
}

.widget-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.cyan-circle {
    background: #2cafce;
    color: #ffffff;
}

.lime-circle {
    background: #ece980;
    color: var(--brand-primary);
}

.gray-circle {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
}

.widget-square {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    padding: 2px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.widget-tag {
    font-size: 8px;
    color: #ece980;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.widget-square strong {
    font-size: 11.5px;
    color: #ffffff;
}

.widget-avatar-group {
    display: flex;
    gap: 6px;
}

.curr-badge {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 9px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 8px;
}

/* Explore Button matching original screenshot */
.acc-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.acc-explore-btn:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile & Tablet Adaptation */
@media (max-width: 992px) {
    .services-accordion-container {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .service-acc-card,
    .service-acc-card.active {
        flex: none !important;
        width: 100% !important;
        height: auto;
        min-height: 380px;
    }

    .card-collapsed-label {
        display: none !important;
    }

    .card-expanded-body {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        padding: 32px 24px;
    }

    .card-left-content {
        max-width: 100%;
    }
}

/* -------------------------------------------------------------
   SOLUTIONS SECTION (Built Around Real Business Scenarios)
------------------------------------------------------------- */
.solutions-section {
    background-color: #f3f7f9 !important;
    border-top: none !important;
    border-bottom: none !important;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center;
}

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

/* -------------------------------------------------------------
   BUILT AROUND REAL BUSINESS SCENARIOS (3 Top Cards + 1 Bottom Wide Card)
   (1:1 Match with Reference Screenshot: Soft Tints, Clean Circles & Tracks)
------------------------------------------------------------- */
/* -------------------------------------------------------------
   BUILT AROUND REAL BUSINESS SCENARIOS (1 Top Wide + 2 Mid + 1 Bottom Wide)
   (Matching Reference Screenshot media_1787239520896.png Bento Hierarchy)
------------------------------------------------------------- */
.bento-scenarios-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.bento-sc-card {
    background-color: #103a49;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(16, 58, 73, 0.12);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--apple-ease), box-shadow 0.4s var(--apple-ease), border-color 0.4s var(--apple-ease);
}

.bento-sc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(16, 58, 73, 0.22);
    border-color: rgba(44, 175, 206, 0.35);
}

/* Background Image Layer & Cinematic Dark Gradient Masks */
.bento-sc-bg-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bento-sc-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
    transition: transform 0.8s var(--apple-ease), opacity 0.8s var(--apple-ease);
}

.bento-sc-card:hover .bento-sc-bg-img {
    transform: scale(1.05);
    opacity: 0.45;
}

.bento-sc-bg-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Top Wide: Gradient from deep teal on text-left to semi-transparent right */
.top-wide-overlay {
    background: linear-gradient(90deg, #103a49 0%, rgba(16, 58, 73, 0.92) 45%, rgba(16, 58, 73, 0.4) 100%);
}

/* Middle Cards: Gradient from deep teal on text-bottom to semi-transparent top */
.mid-card-overlay {
    background: linear-gradient(180deg, rgba(16, 58, 73, 0.45) 0%, rgba(16, 58, 73, 0.88) 55%, #103a49 100%);
}

/* Bottom Wide: Gradient from deep teal on text-right to semi-transparent left */
.bottom-wide-overlay {
    background: linear-gradient(270deg, #103a49 0%, rgba(16, 58, 73, 0.92) 45%, rgba(16, 58, 73, 0.4) 100%);
}

.bento-sc-card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-sc-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(236, 233, 128, 0.15);
    border: 1px solid rgba(236, 233, 128, 0.35);
    color: var(--brand-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.bento-sc-card h3 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.bento-sc-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 200;
    margin-bottom: 24px;
}

.bento-sc-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--brand-lime);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.bento-sc-link:hover {
    color: #ffffff;
    transform: translateX(3px);
}

/* Row 1: Top Full-Width Panoramic Card */
.bento-sc-top-wide {
    padding: 56px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    min-height: 280px;
}

.bento-sc-content-left {
    max-width: 580px;
    z-index: 2;
}

.bento-sc-visual-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
}

.bento-floating-widget {
    background: rgba(16, 58, 73, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 24px 28px;
    max-width: 340px;
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.widget-header-text {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.widget-body-text {
    font-size: 13.5px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 18px;
}

.widget-generate-btn {
    background: var(--brand-cyan);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 8px 18px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.widget-generate-btn:hover {
    background: var(--brand-lime);
    color: var(--brand-primary);
}

/* Row 2: Middle 2 Equal Split Cards */
.bento-sc-middle-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.bento-sc-mid-card {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

/* Row 3: Bottom Full-Width Horizontal Split Card */
.bento-sc-bottom-wide {
    padding: 56px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    min-height: 280px;
}

.bento-sc-visual-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 2;
}

.bento-sc-content-right {
    max-width: 580px;
    z-index: 2;
}

.bento-network-globe-graphic {
    position: relative;
    width: 260px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-center-hub {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--brand-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.globe-sat-node {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.globe-sat-node.sat-1 { top: 0; left: 0; }
.globe-sat-node.sat-2 { top: 10px; right: 0; }
.globe-sat-node.sat-3 { bottom: 0; left: 20px; }

@media (max-width: 992px) {
    .bento-sc-top-wide,
    .bento-sc-bottom-wide {
        flex-direction: column;
        padding: 36px 28px;
        align-items: flex-start;
    }
    .bento-sc-middle-row {
        grid-template-columns: 1fr;
    }
}

.scenario-card-top {
    display: flex;
    flex-direction: column;
    position: relative;
}

.scenario-num {
    font-size: 13px;
    font-weight: 500;
    color: rgba(16, 58, 73, 0.45);
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

/* Graphics Showcase Inside Top Cards */
.scenario-graphic-box {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* 01. Collections Radar Circle Graphic */
.graphic-circle-radar {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(31, 122, 147, 0.18);
    background: rgba(255, 255, 255, 0.35);
}

.radar-pulse-ring.r1 {
    width: 130px;
    height: 130px;
}

.radar-pulse-ring.r2 {
    width: 100px;
    height: 100px;
}

.radar-center-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #17657d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(23, 101, 125, 0.35);
    z-index: 2;
    transition: transform 0.3s ease;
}

.scenario-card:hover .radar-center-btn {
    transform: scale(1.08);
}

/* 02. Payouts Sweeping Tracks Graphic */
.graphic-payout-tracks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 160px;
    align-items: flex-end;
}

.track-pill {
    height: 28px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 6px;
    position: relative;
}

.track-1 {
    width: 140px;
    background: linear-gradient(90deg, rgba(44, 175, 206, 0.15) 0%, rgba(44, 175, 206, 0.45) 100%);
}

.track-2 {
    width: 160px;
    background: linear-gradient(90deg, rgba(236, 233, 128, 0.25) 0%, rgba(236, 233, 128, 0.65) 100%);
}

.track-3 {
    width: 150px;
    background: linear-gradient(90deg, rgba(31, 122, 147, 0.15) 0%, rgba(31, 122, 147, 0.50) 100%);
}

.track-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #103a49;
    box-shadow: 0 2px 8px rgba(16, 58, 73, 0.3);
}

/* 03. FX Swap Bubbles Graphic */
.graphic-fx-swap-bubbles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.bubble-curr {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-heading);
    box-shadow: 0 10px 24px rgba(16, 58, 73, 0.25);
    transition: transform 0.3s ease;
}

.curr-dark {
    background: #103a49;
    color: #ffffff;
}

.curr-cyan {
    background: #2cafce;
    color: #ffffff;
}

.swap-arrow-icon {
    font-size: 16px;
    color: rgba(16, 58, 73, 0.5);
    font-weight: 700;
}

.scenario-card:hover .bubble-curr {
    transform: scale(1.06);
}

/* Typography & Exploratory Footer inside Scenario Card */
.scenario-card-body {
    margin-top: 24px;
    margin-bottom: 24px;
}

.scenario-card-body h3 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.scenario-card-body p {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(16, 58, 73, 0.75);
    font-weight: 200;
}

.scenario-card-foot {
    border-top: 1px solid rgba(16, 58, 73, 0.06);
    padding-top: 18px;
}

.scenario-explore-btn {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--brand-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.scenario-explore-btn:hover {
    color: var(--brand-cyan);
    transform: translateX(3px);
}

/* -------------------------------------------------------------
   04. Bottom Wide Panoramic Horizontal Card
------------------------------------------------------------- */
.scenario-bottom-wide-card {
    background: linear-gradient(135deg, #103a49 0%, #105a73 50%, #1f7a93 100%);
    border-radius: 28px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(16, 58, 73, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

@media (max-width: 992px) {
    .scenario-bottom-wide-card {
        flex-direction: column;
        padding: 36px 28px;
        text-align: left;
    }
}

.wide-card-content {
    max-width: 600px;
    z-index: 2;
}

.wide-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.wide-tag-num {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--brand-lime);
}

.wide-tag-label {
    font-size: 11.5px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wide-card-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
}

.wide-card-desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 200;
    margin-bottom: 28px;
}

.wide-card-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.wide-network-nodes {
    position: relative;
    width: 280px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-center {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--brand-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.node-sat {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sat-1 { top: 0; left: 0; }
.sat-2 { top: 0; right: 0; }
.sat-3 { bottom: 0; left: 0; }
.sat-4 { bottom: 0; right: 0; }

/* -------------------------------------------------------------
   WHY NEXREACH - DYNAMIC DOT MATRIX PHYSICS BACKGROUND & FROSTED BENTO CARDS
------------------------------------------------------------- */
.why-nexreach-section {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    background-color: var(--brand-neutral-bg);
}

.dots-matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    position: relative;
    z-index: 2;
}

/* -------------------------------------------------------------
   WHY NEXREACH - INTERACTIVE DYNAMIC BENTO GRID SYSTEM
------------------------------------------------------------- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.bento-box {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 58, 73, 0.09);
    border-radius: 28px;
    padding: 38px 36px;
    transition: transform 0.4s var(--apple-ease), box-shadow 0.4s var(--apple-ease), background 0.4s var(--apple-ease), border-color 0.4s var(--apple-ease);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 430px;
    box-shadow: 0 10px 30px rgba(16, 58, 73, 0.03);
    position: relative;
    overflow: hidden;
}

.bento-box:hover {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(44, 175, 206, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(16, 58, 73, 0.08);
}

.bento-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.bento-index-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 58, 73, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: 0.06em;
}

.pill-dot-cyan {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-cyan);
}

.bento-icon-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 175, 206, 0.08);
    color: var(--brand-cyan);
    transition: all 0.3s ease;
}

.bento-box:hover .bento-icon-badge {
    background: var(--brand-cyan);
    color: #ffffff;
    transform: scale(1.06);
}

.bento-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 10px;
    line-height: 1.25;
    font-family: var(--font-heading);
}

.bento-box p {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(16, 58, 73, 0.74);
    margin-bottom: 20px;
    font-weight: 300;
}

/* Common Bento Inner Dynamic Widget Container */
.bento-widget {
    background: rgba(16, 58, 73, 0.03);
    border: 1px solid rgba(16, 58, 73, 0.07);
    border-radius: 20px;
    padding: 18px 20px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.bento-box:hover .bento-widget {
    background: rgba(16, 58, 73, 0.05);
    border-color: rgba(44, 175, 206, 0.20);
}

/* 1. Compliance Widget Styles */
.compliance-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.comp-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comp-dot-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00c853;
    box-shadow: 0 0 10px #00c853;
    animation: livePulse 1.6s infinite;
}

.comp-info {
    display: flex;
    flex-direction: column;
}

.comp-label {
    font-size: 11.5px;
    color: rgba(16, 58, 73, 0.65);
    font-weight: 500;
}

.comp-val {
    font-size: 13.5px;
    color: var(--brand-primary);
    font-weight: 700;
}

.comp-badge {
    background: rgba(0, 200, 83, 0.12);
    border: 1px solid rgba(0, 200, 83, 0.25);
    color: #008a39;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}

.compliance-meter-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.meter-header {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    color: rgba(16, 58, 73, 0.65);
    font-weight: 500;
}

.meter-header strong {
    color: var(--brand-cyan);
    font-weight: 700;
}

.meter-bar-track {
    width: 100%;
    height: 6px;
    background: rgba(16, 58, 73, 0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.meter-bar-fill {
    width: 88%;
    height: 100%;
    background: linear-gradient(90deg, var(--brand-cyan) 0%, #00e676 100%);
    border-radius: 4px;
    position: relative;
}

/* 2. Routing Widget Styles */
.routing-nodes-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.route-node-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(16, 58, 73, 0.10);
    padding: 8px 10px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(16, 58, 73, 0.04);
    min-width: 78px;
}

.route-node-pill strong {
    font-size: 10.5px;
    color: var(--brand-primary);
    margin-top: 2px;
}

.node-ping {
    font-size: 9px;
    color: #00a84d;
    font-weight: 600;
}

.route-connector {
    flex: 1;
    height: 2px;
    background: rgba(16, 58, 73, 0.12);
    position: relative;
    margin: 0 4px;
}

.route-flow-dot {
    position: absolute;
    top: -3px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-cyan);
    box-shadow: 0 0 8px var(--brand-cyan);
    animation: flowAcross 2.2s infinite ease-in-out;
}

.route-flow-dot.delay-1 {
    animation-delay: 1.1s;
}

@keyframes flowAcross {
    0% { left: 0%; opacity: 0; }
    30% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.routing-footer-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 10px;
    border-top: 1px dashed rgba(16, 58, 73, 0.12);
}

.route-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.route-stat-item span {
    font-size: 10.5px;
    color: rgba(16, 58, 73, 0.60);
    font-weight: 500;
}

.route-stat-item strong {
    font-size: 12.5px;
    color: var(--brand-primary);
    font-weight: 700;
}

.route-stat-divider {
    width: 1px;
    height: 24px;
    background: rgba(16, 58, 73, 0.10);
}

/* 3. Timeline Stepper Widget Styles */
.lifecycle-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.step-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(16, 58, 73, 0.10);
    color: rgba(16, 58, 73, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.step-complete .step-circle {
    background: #00c853;
    color: #ffffff;
}

.step-active .step-circle {
    background: var(--brand-cyan);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(44, 175, 206, 0.6);
}

.pulse-inner {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    animation: livePulse 1.2s infinite;
}

.step-node span {
    font-size: 10px;
    color: rgba(16, 58, 73, 0.65);
    font-weight: 600;
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(16, 58, 73, 0.10);
    margin: 0 6px 16px;
}

.step-line.active-line {
    background: var(--brand-cyan);
}

.timeline-live-receipt {
    background: #ffffff;
    border: 1px solid rgba(16, 58, 73, 0.08);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.receipt-key {
    color: rgba(16, 58, 73, 0.60);
}

.receipt-val {
    color: var(--brand-primary);
    font-family: var(--font-body);
    font-weight: 600;
}

.receipt-highlight {
    color: #008a39;
    font-weight: 700;
}

/* 4. Chart Sparkline Widget Styles */
.chart-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.chart-tag-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--brand-primary);
}

.chart-dot-lime {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2cafce;
}

.chart-growth-pill {
    background: rgba(44, 175, 206, 0.12);
    border: 1px solid rgba(44, 175, 206, 0.25);
    color: var(--brand-cyan);
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 12px;
}

.chart-svg-container {
    width: 100%;
    height: 56px;
    margin-bottom: 10px;
}

.bento-sparkline-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.sparkline-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawSparkline 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes drawSparkline {
    to { stroke-dashoffset: 0; }
}

.chart-point-pulse {
    animation: pointPulse 2s infinite ease-in-out;
}

@keyframes pointPulse {
    0%, 100% { r: 4px; }
    50% { r: 6px; }
}

.chart-bottom-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.treasury-tag {
    background: #ffffff;
    border: 1px solid rgba(16, 58, 73, 0.09);
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    color: var(--brand-primary);
}

/* -------------------------------------------------------------
   ABOUT US SECTION (Deep Ocean Teal #103a49 with Integrated Brand R Background Graphic)
------------------------------------------------------------- */
.about-section {
    background-color: var(--brand-primary);
    color: var(--brand-white);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

/* Integrated Brand R Supporting Background Graphic */
.about-bg-graphic {
    position: absolute;
    right: -5%;
    bottom: -15%;
    width: 750px;
    height: 750px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.22;
    transform: rotate(-10deg);
}

.about-bg-graphic svg {
    width: 100%;
    height: 100%;
}

.about-inner-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.about-inner-content h2 {
    color: var(--brand-white);
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 28px;
    font-weight: 600;
}

.about-inner-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16.5px;
    line-height: 1.85;
    margin-bottom: 28px;
}

.brand-quote-container {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 36px;
    margin-top: 44px;
}

.brand-quote-container h3 {
    color: var(--brand-lime);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.brand-quote-container p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin: 0;
}

/* -------------------------------------------------------------
   PRODUCT PAGE - HERO BANNER (Positioned Identically to Homepage Hero under Fixed Navbar)
------------------------------------------------------------- */
.product-banner-card {
    background: linear-gradient(135deg, 
        #071a22 0%, 
        #0d3443 38%, 
        #104e62 72%, 
        #081d26 100%
    );
}

.product-backdrop-img {
    object-position: right top;
    transform-origin: center top;
    opacity: 0.92;
}

@media (max-width: 992px) {
    body.page-product .product-backdrop-img {
        object-position: 62% top;
    }
}

.product-vignette-overlay {
    background: linear-gradient(90deg, 
        rgba(7, 25, 34, 0.96) 0%, 
        rgba(7, 25, 34, 0.85) 42%, 
        rgba(7, 25, 34, 0.35) 68%, 
        rgba(7, 25, 34, 0.05) 90%
    );
}

.product-banner-left {
    max-width: 680px;
}

/* Breadcrumb Navigation */
.product-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    margin-bottom: 20px;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #ffffff;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
}

.product-title-main {
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 660px;
}

body.lang-cn .product-title-main {
    font-size: 40px;
    line-height: 1.25;
}

.product-desc-main {
    font-size: 15.5px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 36px;
    max-width: 600px;
}

/* Bottom Metrics Stat Row */
.product-banner-stats-row {
    display: flex;
    align-items: center;
    gap: 36px;
}

.banner-stat-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-huge-number {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -0.03em;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.stat-desc-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stat-upper-tag {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--brand-cyan);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stat-lower-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 400;
}

.banner-stat-sep {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 992px) {
    .product-title-main {
        font-size: 34px;
    }

    body.lang-cn .product-title-main {
        font-size: 30px;
    }

    .product-banner-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }
}


.product-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.product-split-row.reverse {
    direction: rtl;
}

.product-split-row.reverse > * {
    direction: ltr;
}

@media (max-width: 992px) {
    .product-split-row, .product-split-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 44px;
    }
}

.product-visual-img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--brand-border);
    box-shadow: 0 16px 44px rgba(16, 58, 73, 0.06);
    background: var(--brand-white);
    transition: var(--transition);
}

.product-visual-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(16, 58, 73, 0.09);
}

/* FX Converter Box */
.fx-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 16px 44px rgba(16, 58, 73, 0.05);
}

.fx-input-group {
    background: var(--brand-neutral-bg);
    border: 1px solid rgba(16, 58, 73, 0.04);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.fx-input-group label {
    font-size: 11px;
    color: rgba(16, 58, 73, 0.5);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

.fx-input-group input {
    background: transparent;
    border: none;
    color: var(--brand-primary);
    font-size: 26px;
    font-weight: 600;
    outline: none;
    width: 180px;
    font-family: var(--font-en);
}

.fx-select {
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    color: var(--brand-primary);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

/* Payout simulator box */
.payout-box {
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 16px 44px rgba(16, 58, 73, 0.05);
}

.payout-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 18px;
}

.payout-field label {
    font-size: 11.5px;
    color: rgba(16, 58, 73, 0.5);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.payout-field input {
    width: 100%;
    background: var(--brand-neutral-bg);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--brand-primary);
    font-size: 13.5px;
    outline: none;
}

.payout-log {
    background: var(--brand-neutral-bg);
    border: 1px dashed var(--brand-border);
    border-radius: var(--radius-sm);
    padding: 18px;
    margin-top: 22px;
    font-size: 13px;
}

.badge-status {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(16, 58, 73, 0.06);
    color: var(--brand-primary);
}

.badge-status.completed {
    background: rgba(44, 175, 206, 0.12);
    color: #10728c;
}

/* -------------------------------------------------------------
   FOOTER (Grand Full-Width Brand Gradient Card Showcase)
   (Matching Reference Screenshot with Official NEXREACH Palette)
------------------------------------------------------------- */
.footer-grand-section {
    padding: 24px 0 36px;
    background-color: var(--brand-neutral-bg);
}

.footer-grand-card {
    background: radial-gradient(circle at 50% -10%, #1f7a93 0%, #105a73 35%, #103a49 70%, #081e26 100%);
    border-radius: var(--radius-lg);
    padding: 90px 70px 48px;
    color: var(--brand-white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(16, 58, 73, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

@media (max-width: 768px) {
    .footer-grand-card {
        padding: 56px 24px 32px;
    }
}

/* -------------------------------------------------------------
   Grand Editorial Story: About NEXREACH (Main Dominant Section)
------------------------------------------------------------- */
.grand-about-editorial-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

.grand-about-top {
    margin-bottom: 40px;
}

.grand-pill-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-lime);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: inline-block;
}

.grand-about-main-title {
    font-size: 54px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.035em;
    color: #ffffff;
    font-family: var(--font-heading);
    max-width: 900px;
}

@media (max-width: 768px) {
    .grand-about-main-title {
        font-size: 34px;
        line-height: 1.18;
    }
}

.grand-about-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 992px) {
    .grand-about-two-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.editorial-col p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.85;
    font-weight: 200;
}

/* Brand Quote Callout Box */
.grand-brand-quote-strip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    padding: 36px 44px;
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .grand-brand-quote-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 24px;
    }
}

.quote-text-side h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--brand-lime);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.quote-text-side p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 200;
    margin: 0;
}

.grand-quote-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-cyan);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s var(--apple-ease);
    box-shadow: 0 8px 24px rgba(44, 175, 206, 0.35);
}

.grand-quote-cta-btn:hover {
    background: var(--brand-lime);
    color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(236, 233, 128, 0.4);
}

/* Middle Divider & Brand Row */
.footer-mid-row {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 40px;
    margin-bottom: 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo-svg {
    height: 40px;
    width: auto;
    display: block;
}

/* Pill Social / Ecosystem Icons */
.footer-social-pill-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-pill-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--apple-ease);
}

.social-pill-btn:hover {
    background: var(--brand-lime);
    color: var(--brand-primary);
    border-color: var(--brand-lime);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(236, 233, 128, 0.3);
}

/* Right Contact & Channels Side */
.footer-contact-side {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

@media (max-width: 768px) {
    .footer-contact-side {
        text-align: left;
        align-items: flex-start;
    }
}

.footer-email-link {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.footer-email-link:hover {
    color: var(--brand-lime);
}

.footer-quick-channels {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quick-channel-link {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.quick-channel-link:hover {
    color: #ffffff;
}

/* Bottom Copyright & Language Strip */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-lang-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    padding: 5px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 600;
}

/* -------------------------------------------------------------
   REVEAL ANIMATIONS
------------------------------------------------------------- */
.reveal-element {
    opacity: 1;
    transform: none;
    transition: opacity 0.5s var(--apple-ease), transform 0.5s var(--apple-ease);
}

.reveal-element.revealed {
    opacity: 1;
    transform: none;
}

.delay-1 { transition-delay: 60ms; }
.delay-2 { transition-delay: 120ms; }
.delay-3 { transition-delay: 180ms; }
.delay-4 { transition-delay: 240ms; }
.delay-5 { transition-delay: 300ms; }

/* ============================================
   PRODUCT PAGE — FX DYNAMIC CHART DASHBOARD
   ============================================ */

/* FX Feature List (left column) */
.fx-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}
.fx-feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.fx-feat-icon {
    font-size: 20px;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}
.fx-feature-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-text);
    margin-bottom: 4px;
}
.fx-feature-item p {
    font-size: 13px;
    opacity: 0.6;
    margin: 0;
    line-height: 1.6;
}

/* FX Dashboard Card Container */
.dynamic-fx-dashboard-card {
    background: #0a0f1a;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    min-height: 420px;
}
.dynamic-fx-dashboard-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 175, 206, 0.12), transparent 70%);
    pointer-events: none;
}

/* Top Bar */
.fx-dash-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.fx-pair-selector {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.fx-pair-btn {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.03em;
    font-family: var(--font-body);
}
.fx-pair-btn:hover {
    border-color: #2cafce;
    color: #2cafce;
}
.fx-pair-btn.active {
    background: #2cafce;
    border-color: #2cafce;
    color: #fff;
}
.fx-live-status-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
}
.fx-live-blink-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #2ecc71;
    animation: livePulse 1.8s ease-in-out infinite;
}

/* Price Header */
.fx-price-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}
.fx-main-rate-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.fx-rate-huge {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
    line-height: 1;
    transition: color 0.3s ease;
}
.fx-rate-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    display: inline-block;
    letter-spacing: 0.02em;
}
.badge-up   { background: rgba(46, 204, 113, 0.15); color: #2ecc71; }
.badge-down { background: rgba(231, 76,  60, 0.15); color: #e74c3c; }

.fx-range-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
}
.range-stat {
    display: flex;
    flex-direction: column;
}
.range-stat span {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.range-stat strong {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.text-cyan { color: #2cafce !important; }

/* Timeframe row */
.fx-timeframe-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.timeframe-buttons {
    display: flex;
    gap: 4px;
}
.tf-btn {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}
.tf-btn:hover { background: rgba(44,175,206,0.15); color: #2cafce; }
.tf-btn.active { background: #2cafce; color: #fff; }
.fx-chart-type-tag {
    font-size: 10px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.05em;
}

/* Canvas Chart Container */
.fx-chart-canvas-container {
    position: relative;
    width: 100%;
    height: 150px;
    flex-shrink: 0;
}
#fx-real-dynamic-canvas {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
}
.fx-chart-tooltip {
    position: absolute;
    background: rgba(10,15,26,0.92);
    border: 1px solid rgba(44,175,206,0.4);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 11px;
    color: #fff;
    pointer-events: none;
    display: none;
    white-space: nowrap;
    z-index: 10;
    backdrop-filter: blur(8px);
}

/* Quick Quote Strip */
.fx-quick-quote-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px 16px;
}
.quote-input-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.quote-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
}
.quote-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.quote-input-wrap input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
    width: 100%;
    outline: none;
    letter-spacing: -0.01em;
}
.quote-input-wrap input[readonly] {
    color: #2cafce;
    cursor: default;
}
.quote-curr {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.07);
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
}
.quote-arrow {
    font-size: 20px;
    color: rgba(255,255,255,0.25);
    flex-shrink: 0;
    user-select: none;
}

/* ============================================
   PRODUCT PAGE — FULL-BLEED HERO & FOOTER
   Scoped to .page-product so index.html unaffected
   ============================================ */

/* Hero: remove all padding → card flush to viewport edges */
.page-product .product-hero-wrapper {
    padding: 0 !important;
    height: 88vh;
}

/* Hero card: sharp corners, full bleed */
.page-product .product-hero-wrapper .hero-banner-card {
    border-radius: 0 !important;
}

/* Footer outer wrapper: no padding */
.page-product .footer-grand-section {
    padding: 0 !important;
}

/* Footer container: no horizontal padding */
.page-product .footer-grand-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Footer card: full-bleed, no rounded corners */
.page-product .footer-grand-card {
    border-radius: 0 !important;
}

/* ============================================
   HOME PAGE — VIEWPORT-FIT SECTIONS
   Each primary module fills one viewport on desktop.
   Content is allowed to grow on compact screens so
   typography and interactive cards remain accessible.
   ============================================ */
@supports (height: 100svh) {
    body:not(.page-product) {
        scroll-snap-type: y proximity;
    }

    body:not(.page-product) > section,
    body:not(.page-product) > footer {
        scroll-snap-align: start;
        scroll-snap-stop: normal;
    }

    body:not(.page-product) .hero-wrapper-section {
        height: 100svh;
        min-height: 560px;
        max-height: none;
        padding: clamp(10px, 1.8svh, 16px) clamp(10px, 1.8vw, 16px) clamp(12px, 2.2svh, 20px);
    }

    body:not(.page-product) #capabilities,
    body:not(.page-product) #solutions,
    body:not(.page-product) #why-nexreach {
        min-height: 100svh;
        padding-top: clamp(48px, 8svh, 90px);
        padding-bottom: clamp(48px, 8svh, 90px);
        display: flex;
        align-items: center;
    }

    body:not(.page-product) #capabilities .container,
    body:not(.page-product) #solutions > .container,
    body:not(.page-product) #why-nexreach > .container {
        width: 100%;
    }

    body:not(.page-product) .services-accordion-container {
        height: clamp(380px, 58svh, 520px);
    }

    body:not(.page-product) .why-nexreach-section {
        padding-top: clamp(48px, 8svh, 110px);
        padding-bottom: clamp(48px, 8svh, 110px);
    }

    body:not(.page-product) .footer-grand-section {
        min-height: 100svh;
        padding: clamp(12px, 2.4svh, 24px) 0 clamp(18px, 4svh, 36px);
        display: flex;
        align-items: stretch;
    }

    body:not(.page-product) .footer-grand-section > .container {
        display: flex;
        flex: 1;
        width: 100%;
    }

    body:not(.page-product) .footer-grand-card {
        min-height: calc(100svh - clamp(30px, 6.4svh, 60px));
        height: auto;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: clamp(40px, 8svh, 90px) clamp(24px, 5vw, 70px) clamp(28px, 5svh, 48px);
    }

    body:not(.page-product) .grand-about-editorial-wrap {
        margin-bottom: clamp(32px, 6svh, 70px);
    }
}

@media (max-width: 992px) {
    body:not(.page-product) .hero-wrapper-section {
        height: auto;
        min-height: 100svh;
    }

    body:not(.page-product) .services-accordion-container {
        height: auto;
    }

    body:not(.page-product) .footer-grand-card {
        min-height: 100svh;
    }
}

/* Final brand correction: keep the hero artwork, while the page and
   content modules remain white outside the hero surface. */
:root {
    --brand-primary: #105a73;
    --brand-dark: #105a73;
    --brand-gradient: linear-gradient(90deg, #2cafce 0%, #105a73 100%);
}

body:not(.page-product) .main-fixed-header {
    background: transparent !important;
    border-bottom-color: transparent !important;
}

body:not(.page-product) .main-fixed-header .logo-svg {
    filter: brightness(0) invert(1) !important;
}

body:not(.page-product) .main-fixed-header .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
}

body:not(.page-product) .main-fixed-header .lang-toggle {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
    color: #ffffff !important;
}

body:not(.page-product) .hero-bg-layer {
    display: block !important;
    opacity: 1 !important;
}

body:not(.page-product) .hero-vignette-overlay {
    display: block !important;
    background: linear-gradient(90deg, rgba(7, 25, 34, 0.92) 0%, rgba(7, 25, 34, 0.66) 42%, rgba(7, 25, 34, 0.24) 76%, rgba(7, 25, 34, 0) 100%) !important;
}

body:not(.page-product) .hero-banner-card {
    background: #0a1a24 !important;
}

body:not(.page-product) .hero-title-main {
    color: #ffffff !important;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

body:not(.page-product) .hero-desc-main {
    color: rgba(255, 255, 255, 0.88) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

body:not(.page-product) .hero-brand-pill {
    background: linear-gradient(90deg, rgba(44, 175, 206, 0.18), rgba(16, 90, 115, 0.22));
    border-color: rgba(44, 175, 206, 0.38);
    color: #ffffff;
}

body:not(.page-product) .hero-actions-row .btn-cyan,
body:not(.page-product) .grand-quote-cta-btn {
    background: var(--brand-gradient) !important;
    border-color: transparent !important;
    color: #ffffff !important;
}

body:not(.page-product) .section-pill {
    background: var(--brand-gradient) !important;
    border-color: transparent !important;
    color: #ffffff !important;
}

body:not(.page-product) .hero-actions-row .btn-glass-hero {
    border-color: rgba(16, 90, 115, 0.30);
    color: #105a73;
}

body:not(.page-product) .hero-actions-row .btn-glass-hero:hover {
    background: #105a73;
    border-color: #105a73;
    color: #ffffff;
}

body:not(.page-product) .hero-metric-item strong,
body:not(.page-product) .section-header h2,
body:not(.page-product) .grand-about-main-title {
    color: #105a73 !important;
}

/* More Than Moving Money — staggered 7/5 and 5/7 card layout. */
@media (min-width: 993px) {
    body:not(.page-product) #why-nexreach .bento-grid {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: 18px;
        align-items: stretch;
    }

    body:not(.page-product) #why-nexreach .bento-box {
        min-width: 0;
        min-height: 0;
        height: 100%;
        padding: 24px 26px;
        border-radius: 28px;
        border-color: rgba(16, 90, 115, 0.11);
        box-shadow: 0 1px 0 rgba(16, 90, 115, 0.03), 0 14px 32px rgba(16, 90, 115, 0.055);
    }

    body:not(.page-product) #why-nexreach .bento-box:nth-child(1) {
        grid-column: 1 / span 7;
        grid-row: 1;
    }

    body:not(.page-product) #why-nexreach .bento-box:nth-child(2) {
        grid-column: 8 / span 5;
        grid-row: 1;
    }

    body:not(.page-product) #why-nexreach .bento-box:nth-child(3) {
        grid-column: 1 / span 5;
        grid-row: 2;
    }

    body:not(.page-product) #why-nexreach .bento-box:nth-child(4) {
        grid-column: 6 / span 7;
        grid-row: 2;
    }

    body:not(.page-product) #why-nexreach .bento-box:nth-child(1),
    body:not(.page-product) #why-nexreach .bento-box:nth-child(4),
    body:not(.page-product) #why-nexreach .bento-box:nth-child(1) h3,
    body:not(.page-product) #why-nexreach .bento-box:nth-child(4) h3,
    body:not(.page-product) #why-nexreach .bento-box:nth-child(1) p,
    body:not(.page-product) #why-nexreach .bento-box:nth-child(4) p {
        text-align: left;
    }

    body:not(.page-product) #why-nexreach .bento-box:nth-child(1) .bento-header-wrap,
    body:not(.page-product) #why-nexreach .bento-box:nth-child(4) .bento-header-wrap {
        justify-content: space-between;
    }

    body:not(.page-product) #why-nexreach .bento-box:nth-child(2),
    body:not(.page-product) #why-nexreach .bento-box:nth-child(3),
    body:not(.page-product) #why-nexreach .bento-box:nth-child(2) h3,
    body:not(.page-product) #why-nexreach .bento-box:nth-child(3) h3,
    body:not(.page-product) #why-nexreach .bento-box:nth-child(2) p,
    body:not(.page-product) #why-nexreach .bento-box:nth-child(3) p {
        text-align: center;
    }

    body:not(.page-product) #why-nexreach .bento-box:nth-child(2) .bento-header-wrap,
    body:not(.page-product) #why-nexreach .bento-box:nth-child(3) .bento-header-wrap {
        justify-content: center;
    }

    body:not(.page-product) #why-nexreach .bento-box .bento-widget {
        width: 100%;
        margin-top: auto;
    }
}

@media (max-width: 992px) {
    body:not(.page-product) #why-nexreach .bento-grid {
        grid-template-columns: 1fr;
    }

    body:not(.page-product) #why-nexreach .bento-box {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
}

/* ============================================
   HOME — WIDER CONTENT + EDITORIAL FOOTER
   ============================================ */
:root {
    --home-content-max: 1450px;
}

body:not(.page-product) .container,
body:not(.page-product) #capabilities .container {
    width: min(100%, var(--home-content-max)) !important;
    max-width: var(--home-content-max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
}

body:not(.page-product) .main-fixed-header .nav-container {
    width: min(100%, var(--home-content-max));
    max-width: var(--home-content-max);
}

body:not(.page-product) .footer-grand-section > .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

body:not(.page-product) .footer-grand-card {
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(88px, 11svh, 118px) max(40px, calc((100% - var(--home-content-max)) / 2 + 32px)) !important;
    background:
        radial-gradient(circle at 14% 0%, rgba(44, 175, 206, 0.50) 0%, rgba(44, 175, 206, 0) 38%),
        radial-gradient(circle at 88% 88%, rgba(44, 175, 206, 0.16) 0%, rgba(44, 175, 206, 0) 34%),
        linear-gradient(135deg, #062f41 0%, #105a73 54%, #0b4258 100%) !important;
    overflow: hidden;
}

body:not(.page-product) .footer-grand-card::before,
body:not(.page-product) .footer-grand-card::after {
    content: '';
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

body:not(.page-product) .footer-grand-card::before {
    width: clamp(320px, 38vw, 580px);
    aspect-ratio: 1;
    top: -32%;
    right: -7%;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 0 0 64px rgba(255, 255, 255, 0.025), 0 0 0 128px rgba(255, 255, 255, 0.018);
}

body:not(.page-product) .footer-grand-card::after {
    width: clamp(180px, 20vw, 320px);
    aspect-ratio: 1;
    bottom: -18%;
    left: 8%;
    background: rgba(44, 175, 206, 0.14);
    filter: blur(48px);
}

body:not(.page-product) .footer-grand-card .grand-about-editorial-wrap {
    width: 100%;
    max-width: var(--home-content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    align-items: center;
    gap: clamp(52px, 6vw, 96px);
}

body:not(.page-product) .footer-grand-card .grand-about-top {
    margin: 0;
    text-align: left;
}

body:not(.page-product) .footer-grand-card .grand-pill-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.10em;
}

body:not(.page-product) .footer-grand-card .grand-pill-label::before {
    content: '';
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2cafce, #ece980);
}

body:not(.page-product) .footer-grand-card .grand-about-main-title {
    max-width: 760px;
    margin: 0;
    color: #ffffff !important;
    text-align: left;
    font-size: clamp(58px, 5.5vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

body:not(.page-product) .footer-grand-card .grand-about-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0;
}

body:not(.page-product) .footer-grand-card .editorial-col {
    gap: 14px;
    padding: 24px 26px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 46px rgba(0, 26, 38, 0.14);
}

body:not(.page-product) .footer-grand-card .editorial-col p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82) !important;
    text-align: left;
    font-size: 15px;
    line-height: 1.62;
}

@media (hover: hover) and (pointer: fine) {
    body:not(.page-product) .footer-grand-card .editorial-col {
        transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), border-color 180ms ease, background-color 180ms ease;
    }

    body:not(.page-product) .footer-grand-card .editorial-col:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.10);
    }
}

@media (max-width: 992px) {
    body:not(.page-product) .footer-grand-section,
    body:not(.page-product) .footer-grand-card {
        height: auto;
        min-height: 100svh;
    }

    body:not(.page-product) .footer-grand-card {
        padding: 96px 32px 56px !important;
    }

    body:not(.page-product) .footer-grand-card .grand-about-editorial-wrap {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    body:not(.page-product) .footer-grand-card .grand-about-top,
    body:not(.page-product) .footer-grand-card .grand-about-main-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    body:not(.page-product) .footer-grand-card .grand-pill-label {
        justify-content: center;
    }
}

@media (min-width: 993px) {
    body:not(.page-product) #solutions,
    body:not(.page-product) #why-nexreach {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    body:not(.page-product) #solutions .section-header,
    body:not(.page-product) #why-nexreach .section-header {
        margin-bottom: 36px !important;
    }

    body:not(.page-product) #solutions .section-header h2,
    body:not(.page-product) #why-nexreach .section-header h2 {
        font-size: 48px !important;
    }

    body:not(.page-product) .bento-scenarios-layout {
        gap: 4px;
    }

    body:not(.page-product) .bento-sc-top-wide,
    body:not(.page-product) .bento-sc-bottom-wide,
    body:not(.page-product) .bento-sc-mid-card {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

/* Full-bleed home surfaces: remove the decorative frame around the
   viewport-filling hero and footer while keeping their inner content inset. */
body:not(.page-product) .hero-wrapper-section {
    padding: 0 !important;
}

body:not(.page-product) .hero-banner-card {
    border-radius: 0 !important;
}

body:not(.page-product) .footer-grand-section {
    padding: 0 !important;
}

body:not(.page-product) .footer-grand-section > .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body:not(.page-product) .footer-grand-card {
    border-radius: 0 !important;
    min-height: 100svh;
}

/* ============================================
   HOME PAGE — REVOLUT-INSPIRED EDITORIAL LAYOUT
   Bold type, centered storytelling, high-contrast CTAs,
   and one clear visual idea per viewport.
   ============================================ */
body:not(.page-product) {
    background: #f7f8f6 !important;
}

body:not(.page-product) .hero-banner-card {
    background: #0a1a24;
}

body:not(.page-product) .hero-backdrop-img {
    object-position: center center;
}

body:not(.page-product) .hero-vignette-overlay {
    background: radial-gradient(circle at 52% 44%, rgba(7, 25, 34, 0.20) 0%, rgba(7, 25, 34, 0.56) 48%, rgba(7, 25, 34, 0.86) 100%);
}

body:not(.page-product) .hero-left-content-wrap {
    justify-content: center;
    align-items: center;
    padding: clamp(72px, 10svh, 112px) clamp(24px, 6vw, 96px) clamp(40px, 7svh, 72px);
}

body:not(.page-product) .hero-left-content {
    align-items: center;
    text-align: center;
    max-width: 820px;
}

body:not(.page-product) .hero-brand-pill {
    margin-bottom: clamp(20px, 3svh, 30px);
}

body:not(.page-product) .hero-title-main {
    max-width: 820px;
    margin-bottom: clamp(18px, 3svh, 30px);
    font-size: clamp(44px, 6.7vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-align: center;
}

body:not(.page-product) .hero-desc-main {
    max-width: 600px;
    margin-bottom: clamp(24px, 4svh, 36px);
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.55;
    text-align: center;
}

body:not(.page-product) .hero-actions-row {
    justify-content: center;
    margin-bottom: clamp(24px, 4svh, 40px);
}

body:not(.page-product) .hero-actions-row .btn-cyan {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

body:not(.page-product) .hero-actions-row .btn-cyan:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

body:not(.page-product) .hero-metrics-bar {
    justify-content: center;
    text-align: left;
}

body:not(.page-product) #capabilities,
body:not(.page-product) #solutions,
body:not(.page-product) #why-nexreach {
    background: linear-gradient(145deg, #f7f8f6 0%, #eef7f7 100%);
}

body:not(.page-product) #solutions {
    background: linear-gradient(145deg, #f1f5ff 0%, #eef8f7 100%);
}

body:not(.page-product) #why-nexreach {
    background: linear-gradient(145deg, #f7f8f6 0%, #edf1ff 100%);
}

body:not(.page-product) .section-header {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

body:not(.page-product) .section-header h2,
body:not(.page-product) .section-header p {
    text-align: center;
}

body:not(.page-product) .section-header h2 {
    letter-spacing: -0.045em;
}

body:not(.page-product) .section-pill {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

body:not(.page-product) .solutions-section .bento-sc-card,
body:not(.page-product) .why-nexreach-section .bento-box {
    border-radius: 24px;
}

body:not(.page-product) .solutions-section .bento-sc-card h3,
body:not(.page-product) .solutions-section .bento-sc-card p,
body:not(.page-product) .why-nexreach-section .bento-box h3,
body:not(.page-product) .why-nexreach-section .bento-box p {
    text-align: center;
}

body:not(.page-product) .solutions-section .bento-sc-content-left,
body:not(.page-product) .solutions-section .bento-sc-content-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

body:not(.page-product) .why-nexreach-section .bento-box {
    text-align: center;
}

body:not(.page-product) .why-nexreach-section .bento-header-wrap {
    justify-content: center;
    gap: 12px;
}

body:not(.page-product) .why-nexreach-section .bento-widget {
    width: 100%;
}

body:not(.page-product) .footer-grand-card {
    text-align: center;
    background: radial-gradient(circle at 50% -20%, #2a91a6 0%, #105a73 36%, #103a49 68%, #081e26 100%);
}

body:not(.page-product) .grand-about-top,
body:not(.page-product) .grand-about-main-title,
body:not(.page-product) .editorial-col p {
    text-align: center;
}

body:not(.page-product) .grand-about-main-title {
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.055em;
}

body:not(.page-product) .grand-about-two-col {
    text-align: center;
}

body:not(.page-product) .grand-brand-quote-strip {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

body:not(.page-product) .footer-mid-row {
    align-items: center;
    justify-content: center;
    text-align: center;
}

body:not(.page-product) .footer-brand-side,
body:not(.page-product) .footer-contact-side {
    align-items: center;
    text-align: center;
}

body:not(.page-product) .footer-bottom-bar {
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    body:not(.page-product) .hero-title-main {
        font-size: clamp(38px, 11vw, 58px);
        line-height: 1.02;
    }

    body:not(.page-product) .hero-desc-main {
        font-size: 15px;
    }

    body:not(.page-product) .hero-metrics-bar {
        width: auto;
        max-width: 100%;
    }
}

@media (min-width: 993px) {
    body:not(.page-product) .hero-left-content-wrap {
        padding-top: clamp(108px, 14svh, 138px);
        padding-bottom: clamp(34px, 5svh, 54px);
    }

    body:not(.page-product) .hero-title-main {
        font-size: clamp(44px, 5.5vw, 80px);
        line-height: 0.99;
    }
}

/* ============================================
   HOME PAGE — PURE WHITE SURFACES & LARGER TYPE
   ============================================ */
body:not(.page-product) .main-fixed-header {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(16, 58, 73, 0.08) !important;
}

body:not(.page-product) .main-fixed-header .logo-svg {
    filter: none !important;
}

body:not(.page-product) .main-fixed-header .nav-link {
    color: var(--brand-primary) !important;
}

body:not(.page-product) .main-fixed-header .lang-toggle {
    background: rgba(16, 58, 73, 0.06) !important;
    border-color: rgba(16, 58, 73, 0.14) !important;
    color: var(--brand-primary) !important;
}

body:not(.page-product),
body:not(.page-product) #capabilities,
body:not(.page-product) #solutions,
body:not(.page-product) #why-nexreach,
body:not(.page-product) .footer-grand-section,
body:not(.page-product) .footer-grand-card {
    background: #ffffff !important;
}

body:not(.page-product) .hero-wrapper-section {
    background: #ffffff !important;
}

body:not(.page-product) .hero-bg-layer,
body:not(.page-product) .hero-vignette-overlay {
    display: none !important;
}

body:not(.page-product) .hero-banner-card {
    background: #ffffff !important;
    color: var(--brand-primary);
    box-shadow: none;
}

body:not(.page-product) .hero-title-main {
    color: var(--brand-primary) !important;
    text-shadow: none;
    font-size: clamp(52px, 6.4vw, 96px);
}

body:not(.page-product) .hero-desc-main {
    color: rgba(16, 58, 73, 0.76) !important;
    text-shadow: none;
}

body:not(.page-product) .hero-brand-pill {
    background: rgba(44, 175, 206, 0.09);
    border-color: rgba(44, 175, 206, 0.28);
    color: var(--brand-dark);
}

body:not(.page-product) .hero-actions-row .btn-glass-hero {
    background: #ffffff;
    border-color: rgba(16, 58, 73, 0.22);
    color: var(--brand-primary);
    box-shadow: 0 5px 16px rgba(16, 58, 73, 0.08);
}

body:not(.page-product) .hero-actions-row .btn-glass-hero:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #ffffff;
}

body:not(.page-product) .hero-metrics-bar {
    background: #f4f7f8;
    border-color: rgba(16, 58, 73, 0.12);
    box-shadow: 0 12px 28px rgba(16, 58, 73, 0.08);
}

body:not(.page-product) .hero-metric-item span {
    color: rgba(16, 58, 73, 0.66);
}

body:not(.page-product) .section-header h2 {
    font-size: clamp(42px, 4.4vw, 58px);
}

body:not(.page-product) .section-header p {
    color: rgba(16, 58, 73, 0.70);
}

body:not(.page-product) .grand-about-main-title {
    font-size: clamp(58px, 5.2vw, 76px);
    color: var(--brand-primary);
}

body:not(.page-product) .grand-pill-label,
body:not(.page-product) .quote-text-side h3,
body:not(.page-product) .editorial-col p,
body:not(.page-product) .quote-text-side p,
body:not(.page-product) .footer-email-link,
body:not(.page-product) .quick-channel-link,
body:not(.page-product) .footer-copy,
body:not(.page-product) .footer-lang-wrap {
    color: var(--brand-primary);
}

body:not(.page-product) .grand-brand-quote-strip {
    background: #f4f7f8;
    border-color: rgba(16, 58, 73, 0.10);
    box-shadow: none;
}

body:not(.page-product) .footer-mid-row {
    border-top-color: rgba(16, 58, 73, 0.12);
}

body:not(.page-product) .footer-logo-svg {
    filter: none !important;
}

body:not(.page-product) .social-pill-btn {
    background: #f4f7f8;
    border-color: rgba(16, 58, 73, 0.12);
    color: var(--brand-primary);
}

@media (min-width: 993px) {
    body:not(.page-product) #capabilities {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    body:not(.page-product) #solutions,
    body:not(.page-product) #why-nexreach {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    body:not(.page-product) #capabilities .section-header h2,
    body:not(.page-product) #solutions .section-header h2,
    body:not(.page-product) #why-nexreach .section-header h2 {
        font-size: clamp(42px, 3.8vw, 52px) !important;
    }

    body:not(.page-product) .hero-title-main {
        font-size: clamp(56px, 6vw, 88px);
    }

    body:not(.page-product) .section-header h2 {
        font-size: clamp(44px, 4.2vw, 56px);
    }
}

@media (min-width: 993px) {
    /* Keep the three dense desktop modules inside one viewport without
       shrinking the readable type scale. */
    body:not(.page-product) #solutions,
    body:not(.page-product) #why-nexreach {
        padding-top: clamp(24px, 3svh, 36px);
        padding-bottom: clamp(24px, 3svh, 36px);
    }

    body:not(.page-product) #solutions .section-header,
    body:not(.page-product) #why-nexreach .section-header {
        margin-bottom: 24px;
    }

    body:not(.page-product) #solutions .section-header h2,
    body:not(.page-product) #why-nexreach .section-header h2 {
        font-size: clamp(30px, 3.2svh, 38px);
        margin-bottom: 10px;
    }

    body:not(.page-product) #solutions .section-header p,
    body:not(.page-product) #why-nexreach .section-header p {
        font-size: 14px;
        line-height: 1.5;
    }

    body:not(.page-product) .bento-scenarios-layout {
        gap: 8px;
    }

    body:not(.page-product) .bento-sc-top-wide,
    body:not(.page-product) .bento-sc-bottom-wide {
        min-height: 190px;
        padding: 20px 32px;
        gap: 28px;
    }

    body:not(.page-product) .bento-sc-mid-card {
        min-height: 190px;
        padding: 20px 24px;
    }

    body:not(.page-product) .bento-sc-icon-badge {
        margin-bottom: 12px;
    }

    body:not(.page-product) .bento-sc-card p {
        margin-bottom: 12px;
        font-size: 13.5px;
        line-height: 1.5;
    }

    body:not(.page-product) .bento-sc-card h3 {
        margin-bottom: 8px;
        font-size: 22px;
    }

    body:not(.page-product) .bento-grid {
        gap: 8px;
    }

    body:not(.page-product) .bento-box {
        min-height: 400px;
        padding: 20px;
    }

    body:not(.page-product) .bento-header-wrap {
        margin-bottom: 10px;
    }

    body:not(.page-product) .bento-box h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    body:not(.page-product) .bento-box p {
        font-size: 13.5px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    body:not(.page-product) .bento-widget {
        padding: 14px 16px;
    }

    body:not(.page-product) .grand-about-editorial-wrap {
        margin-bottom: 20px;
    }

    body:not(.page-product) .grand-about-top {
        margin-bottom: 22px;
    }

    body:not(.page-product) .grand-about-two-col {
        gap: 24px;
        margin-bottom: 24px;
    }

    body:not(.page-product) .editorial-col p {
        font-size: 14px;
        line-height: 1.6;
    }

    body:not(.page-product) .grand-brand-quote-strip {
        padding: 22px 28px;
        gap: 24px;
    }

    body:not(.page-product) .footer-mid-row {
        margin-top: 20px !important;
        margin-bottom: 24px;
        padding-top: 24px;
    }

    body:not(.page-product) .footer-bottom-bar {
        padding-top: 16px;
    }
}

@media (max-width: 768px) {
    body:not(.page-product) {
        scroll-snap-type: none;
    }

    body:not(.page-product) #capabilities,
    body:not(.page-product) #solutions,
    body:not(.page-product) #why-nexreach {
        align-items: flex-start;
        min-height: 100svh;
    }

    body:not(.page-product) .footer-grand-section {
        min-height: 100svh;
    }

    body:not(.page-product) .footer-grand-card {
        min-height: 100svh;
    }
}

@media (min-width: 993px) {
    body:not(.page-product) #solutions,
    body:not(.page-product) #why-nexreach {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    body:not(.page-product) #solutions .section-header,
    body:not(.page-product) #why-nexreach .section-header {
        margin-bottom: 36px !important;
    }

    body:not(.page-product) #solutions .section-header h2,
    body:not(.page-product) #why-nexreach .section-header h2 {
        font-size: 48px !important;
    }

    body:not(.page-product) .solutions-section .section-header {
        max-width: 1000px;
    }

    body:not(.page-product) .solutions-section .section-header p {
        max-width: 820px;
    }

    body:not(.page-product) .bento-scenarios-layout {
        gap: 4px;
    }

    body:not(.page-product) .bento-sc-top-wide,
    body:not(.page-product) .bento-sc-bottom-wide,
    body:not(.page-product) .bento-sc-mid-card {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

/* Full-bleed surfaces with centered, readable content widths. */
body:not(.page-product) .container {
    width: min(100%, var(--home-content-max));
    max-width: var(--home-content-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

body:not(.page-product) .main-fixed-header {
    padding-left: 32px;
    padding-right: 32px;
}

body:not(.page-product) .main-fixed-header .nav-container {
    width: min(100%, var(--home-content-max));
    max-width: var(--home-content-max);
    margin-left: auto;
    margin-right: auto;
}

body:not(.page-product) .hero-desc-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

body:not(.page-product) .hero-desc-support {
    display: block;
}

body:not(.page-product) .hero-feature-line {
    margin: -16px 0 28px;
    color: var(--brand-lime);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
}

body:not(.page-product) .hero-feature-line [lang="zh"] {
    letter-spacing: 0.06em;
}

@media (min-width: 993px) {
    body:not(.page-product) .hero-title-main {
        font-size: clamp(56px, 5.5vw, 80px);
    }

    body:not(.page-product) .hero-brand-pill {
        margin-bottom: 18px;
    }

    body:not(.page-product) .hero-desc-main {
        gap: 4px;
        margin-bottom: 22px;
    }

    body:not(.page-product) .hero-feature-line {
        margin-top: -10px;
        margin-bottom: 18px;
    }

    body:not(.page-product) .hero-actions-row {
        margin-bottom: 22px;
    }

    body:not(.page-product) #capabilities .container {
        width: min(100%, var(--home-content-max)) !important;
        max-width: var(--home-content-max) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
}

/* Full-bleed footer surface with a constrained content column. */
body:not(.page-product) .footer-grand-section {
    min-height: 100svh;
    height: 100svh;
    padding: 0 !important;
    background: var(--brand-gradient) !important;
    display: flex;
    align-items: stretch;
}

body:not(.page-product) .footer-grand-section > .container {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    padding: 0 !important;
    display: flex;
}

body:not(.page-product) .footer-grand-card {
    width: 100%;
    min-height: 100%;
    height: 100%;
    border-radius: 0 !important;
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at 14% 12%, rgba(44, 175, 206, 0.92) 0%, rgba(44, 175, 206, 0.18) 28%, transparent 54%),
        radial-gradient(circle at 86% 18%, rgba(16, 90, 115, 0.96) 0%, rgba(16, 90, 115, 0.24) 32%, transparent 58%),
        radial-gradient(circle at 72% 88%, rgba(44, 175, 206, 0.50) 0%, rgba(44, 175, 206, 0.08) 28%, transparent 54%),
        linear-gradient(135deg, #052b3c 0%, #105a73 48%, #073b50 100%) !important;
    box-shadow: none;
    padding-left: max(32px, calc((100% - 1240px) / 2 + 32px));
    padding-right: max(32px, calc((100% - 1240px) / 2 + 32px));
}

body:not(.page-product) .footer-grand-card::before,
body:not(.page-product) .footer-grand-card::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 0;
    z-index: 0;
}

body:not(.page-product) .footer-grand-card::before {
    inset: -24%;
    width: auto;
    aspect-ratio: auto;
    background:
        radial-gradient(circle at 24% 28%, rgba(44, 175, 206, 0.78) 0%, rgba(44, 175, 206, 0.20) 22%, transparent 46%),
        radial-gradient(circle at 76% 24%, rgba(16, 90, 115, 0.94) 0%, rgba(16, 90, 115, 0.16) 28%, transparent 50%),
        radial-gradient(circle at 68% 76%, rgba(44, 175, 206, 0.52) 0%, rgba(44, 175, 206, 0.10) 24%, transparent 48%),
        radial-gradient(circle at 28% 74%, rgba(5, 43, 60, 0.92) 0%, rgba(5, 43, 60, 0.18) 30%, transparent 52%);
    filter: blur(54px) saturate(125%);
    opacity: 0.92;
    transform: translate3d(-3%, -2%, 0) scale(1.04) rotate(-2deg);
    will-change: transform;
    animation: footer-mesh-drift 18s cubic-bezier(0.77, 0, 0.175, 1) infinite alternate;
}

body:not(.page-product) .footer-grand-card::after {
    inset: -18%;
    width: auto;
    aspect-ratio: auto;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 68px 68px;
    opacity: 0.36;
    transform-origin: center;
    transform: translate3d(-2%, 1%, 0) rotate(-8deg) scale(1.12);
    will-change: transform;
    -webkit-mask-image: radial-gradient(ellipse at 62% 54%, #000 0%, rgba(0, 0, 0, 0.86) 42%, transparent 82%);
    mask-image: radial-gradient(ellipse at 62% 54%, #000 0%, rgba(0, 0, 0, 0.86) 42%, transparent 82%);
    animation: footer-wireframe-drift 24s linear infinite alternate;
}

body:not(.page-product) .footer-grand-card .grand-about-editorial-wrap {
    position: relative;
    z-index: 2;
}

@keyframes footer-mesh-drift {
    0% {
        transform: translate3d(-3%, -2%, 0) scale(1.04) rotate(-2deg);
    }
    100% {
        transform: translate3d(4%, 3%, 0) scale(1.12) rotate(2deg);
    }
}

@keyframes footer-wireframe-drift {
    0% {
        transform: translate3d(-2%, 1%, 0) rotate(-8deg) scale(1.12);
    }
    100% {
        transform: translate3d(2%, -1%, 0) rotate(-6deg) scale(1.16);
    }
}

@media (prefers-reduced-motion: reduce) {
    body:not(.page-product) .footer-grand-card::before,
    body:not(.page-product) .footer-grand-card::after {
        animation: none;
    }
}

body:not(.page-product) .footer-grand-card .grand-about-main-title,
body:not(.page-product) .footer-grand-card .grand-pill-label,
body:not(.page-product) .footer-grand-card .editorial-col p,
body:not(.page-product) .footer-grand-card .quote-text-side h3,
body:not(.page-product) .footer-grand-card .quote-text-side p,
body:not(.page-product) .footer-grand-card .footer-email-link,
body:not(.page-product) .footer-grand-card .quick-channel-link,
body:not(.page-product) .footer-grand-card .footer-copy,
body:not(.page-product) .footer-grand-card .footer-lang-wrap {
    color: #ffffff !important;
}

body:not(.page-product) .footer-grand-card .grand-pill-label {
    text-transform: none;
}

body:not(.page-product) .footer-grand-card .about-bg-graphic {
    display: none !important;
}

body:not(.page-product) #why-nexreach .dots-matrix-canvas {
    display: none !important;
}

/* Restore the original dynamic content inside More Than Moving Money. */
body:not(.page-product) #why-nexreach .bento-header-wrap {
    display: flex !important;
}

body:not(.page-product) #why-nexreach .bento-widget {
    display: block !important;
}

/* Keep visible module copy limited to the approved content. */
body:not(.page-product) #capabilities .section-pill,
body:not(.page-product) #capabilities .section-header p,
body:not(.page-product) #capabilities .card-collapsed-label,
body:not(.page-product) #capabilities .card-pill-tag,
body:not(.page-product) #capabilities .dynamic-fx-pill,
body:not(.page-product) #capabilities .card-widget-pill,
body:not(.page-product) #capabilities .card-bottom-action {
    display: none !important;
}

body:not(.page-product) #capabilities .service-acc-card,
body:not(.page-product) #capabilities .service-acc-card.active {
    flex: 1 1 0 !important;
}

body:not(.page-product) #capabilities .card-expanded-body {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
}

body:not(.page-product) #solutions .bento-sc-visual-right,
body:not(.page-product) #solutions .bento-sc-visual-left,
body:not(.page-product) #solutions .bento-sc-icon-badge,
body:not(.page-product) #solutions .bento-sc-link,
body:not(.page-product) #why-nexreach .bento-header-wrap,
body:not(.page-product) #why-nexreach .bento-widget,
body:not(.page-product) .footer-grand-card .grand-brand-quote-strip,
body:not(.page-product) .footer-grand-card .footer-mid-row,
body:not(.page-product) .footer-grand-card .footer-bottom-bar {
    display: none !important;
}

body:not(.page-product) .footer-grand-card .grand-about-editorial-wrap {
    margin-bottom: 0;
}

body:not(.page-product) .footer-grand-card .editorial-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Restore dynamic panels after the copy-cleanup rules. */
body:not(.page-product) #why-nexreach .bento-header-wrap {
    display: flex !important;
}

body:not(.page-product) #why-nexreach .bento-widget {
    display: block !important;
}

/* Final correction: keep the hero artwork and apply the brand gradient. */
:root {
    --brand-primary: #105a73;
    --brand-dark: #105a73;
    --brand-gradient: linear-gradient(90deg, #2cafce 0%, #105a73 100%);
}

body:not(.page-product) .main-fixed-header {
    background: transparent !important;
    border-bottom-color: transparent !important;
}

body:not(.page-product) .main-fixed-header .logo-svg {
    filter: brightness(0) invert(1) !important;
}

body:not(.page-product) .main-fixed-header .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
}

body:not(.page-product) .main-fixed-header .lang-toggle {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
    color: #ffffff !important;
}

/* What We Do + Who We Serve — light editorial Bento cards. */
body:not(.page-product) #capabilities .section-header {
    margin-top: 0 !important;
    margin-bottom: 30px !important;
}

body:not(.page-product) #capabilities .what-we-do-comparison {
    margin-top: var(--vim-module-gap, 24px) !important;
    padding-top: 0 !important;
}

@media (min-width: 993px) {
    body:not(.page-product) #capabilities .services-accordion-container {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: minmax(0, 1.05fr) minmax(0, 0.9fr);
        gap: 18px;
        height: 637px !important;
        padding: 0;
    }

    body:not(.page-product) #capabilities .service-acc-card,
    body:not(.page-product) #capabilities .service-acc-card.active {
        width: auto !important;
        height: auto !important;
        min-width: 0;
        min-height: 0;
        border: 1px solid rgba(16, 90, 115, 0.09) !important;
        border-radius: 28px;
        background: #f4f6f7;
        box-shadow: 0 12px 30px rgba(16, 90, 115, 0.055);
        cursor: default;
        transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), border-color 180ms ease, box-shadow 180ms ease;
    }

    body:not(.page-product) #capabilities .service-acc-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    body:not(.page-product) #capabilities .service-acc-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    body:not(.page-product) #capabilities .service-acc-card:nth-child(3) {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    body:not(.page-product) #capabilities .service-acc-card::before,
    body:not(.page-product) #capabilities .service-acc-card::after {
        content: '';
        position: absolute;
        z-index: 6;
        pointer-events: none;
    }

    body:not(.page-product) #capabilities .service-acc-card::before {
        top: 24px;
        left: 28px;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: linear-gradient(90deg, #2cafce 0%, #105a73 100%);
        box-shadow: 0 8px 20px rgba(16, 90, 115, 0.10);
    }

    body:not(.page-product) #capabilities .service-acc-card::after {
        top: 37px;
        left: 41px;
        width: 12px;
        height: 12px;
        border: 2px solid #ffffff;
        border-radius: 4px;
    }

    body:not(.page-product) #capabilities .card-expanded-body {
        position: relative;
        z-index: 5;
        align-items: flex-start;
        padding: 82px 28px 26px;
    }

    body:not(.page-product) #capabilities .card-left-content {
        width: 100%;
        max-width: 92%;
        align-items: flex-start;
        text-align: left;
    }

    body:not(.page-product) #capabilities .service-acc-card:nth-child(3) .card-left-content {
        max-width: 46%;
    }

    body:not(.page-product) #capabilities .expanded-heading {
        margin-bottom: 9px;
        color: #105a73;
        font-size: clamp(26px, 2vw, 32px);
        line-height: 1.12;
        letter-spacing: -0.035em;
    }

    body:not(.page-product) #capabilities .expanded-desc {
        max-width: 560px;
        margin: 0;
        color: rgba(16, 58, 73, 0.68);
        font-size: 14px;
        line-height: 1.55;
    }

    body:not(.page-product) #capabilities .collections-card-bg-layer {
        inset: auto 22px 0;
        width: auto;
        height: 48%;
        border-radius: 22px 22px 0 0;
        opacity: 1;
    }

    body:not(.page-product) #capabilities .service-acc-card:nth-child(3) .collections-card-bg-layer {
        inset: 22px 22px 22px 52%;
        width: auto;
        height: auto;
        border-radius: 22px;
    }

    body:not(.page-product) #capabilities .bg-collapsed-img {
        opacity: 0 !important;
    }

    body:not(.page-product) #capabilities .bg-expanded-img,
    body:not(.page-product) #capabilities .payouts-bg-img,
    body:not(.page-product) #capabilities .fx-bg-img {
        opacity: 0.82 !important;
        transform: none !important;
        filter: saturate(0.82) brightness(0.92);
    }

    body:not(.page-product) #capabilities .card-active-gradient-overlay {
        opacity: 1 !important;
        background: linear-gradient(180deg, rgba(16, 90, 115, 0.02), rgba(16, 90, 115, 0.22));
    }

    body:not(.page-product) #capabilities .card-collapsed-tint {
        display: none;
    }

    body:not(.page-product) #solutions .bento-scenarios-layout {
        display: grid !important;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: 18px;
        height: 578px;
    }

    body:not(.page-product) #solutions .bento-sc-middle-row {
        display: contents;
    }

    body:not(.page-product) #solutions .bento-sc-top-wide {
        grid-column: 1 / span 6;
        grid-row: 1;
    }

    body:not(.page-product) #solutions .bento-sc-middle-row .bento-sc-mid-card:nth-child(1) {
        grid-column: 7 / span 6;
        grid-row: 1;
    }

    body:not(.page-product) #solutions .bento-sc-middle-row .bento-sc-mid-card:nth-child(2) {
        grid-column: 1 / span 5;
        grid-row: 2;
    }

    body:not(.page-product) #solutions .bento-sc-bottom-wide {
        grid-column: 6 / span 7;
        grid-row: 2;
    }

    body:not(.page-product) #solutions .bento-sc-card {
        min-width: 0;
        min-height: 0;
        height: 100%;
        padding: 24px 28px !important;
        border: 1px solid rgba(16, 90, 115, 0.09);
        border-radius: 28px;
        background: #f4f6f7;
        box-shadow: 0 12px 30px rgba(16, 90, 115, 0.055);
        color: #105a73;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), border-color 180ms ease, box-shadow 180ms ease;
    }

    body:not(.page-product) #solutions .bento-sc-card-inner {
        position: relative;
        z-index: 3;
        justify-content: flex-start;
    }

    body:not(.page-product) #solutions .bento-sc-content-left,
    body:not(.page-product) #solutions .bento-sc-content-right {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 100%;
        align-items: flex-start !important;
        text-align: left !important;
    }

    body:not(.page-product) #solutions .bento-sc-icon-badge {
        display: flex !important;
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
        border: 0;
        border-radius: 50%;
        background: linear-gradient(90deg, #2cafce 0%, #105a73 100%);
        color: #ffffff;
    }

    body:not(.page-product) #solutions .bento-sc-card h3,
    body:not(.page-product) #solutions .bento-sc-card p {
        position: relative;
        z-index: 3;
        text-align: left;
    }

    body:not(.page-product) #solutions .bento-sc-card h3 {
        margin-bottom: 8px;
        color: #105a73;
        font-size: 24px;
        line-height: 1.16;
        letter-spacing: -0.03em;
    }

    body:not(.page-product) #solutions .bento-sc-card p {
        max-width: 520px;
        margin: 0;
        color: rgba(16, 58, 73, 0.68);
        font-size: 13.5px;
        line-height: 1.52;
    }

    body:not(.page-product) #solutions .bento-sc-bg-img-wrap {
        inset: auto 22px 0;
        width: auto;
        height: 38%;
        border-radius: 20px 20px 0 0;
        opacity: 1;
    }

    body:not(.page-product) #solutions .bento-sc-bottom-wide .bento-sc-bg-img-wrap {
        inset: 22px 22px 22px 52%;
        width: auto;
        height: auto;
        border-radius: 20px;
    }

    body:not(.page-product) #solutions .bento-sc-bottom-wide .bento-sc-content-right {
        max-width: 46%;
    }

    body:not(.page-product) #solutions .bento-sc-bg-img {
        opacity: 0.72;
        transform: none;
        filter: saturate(0.82) brightness(0.94);
    }

    body:not(.page-product) #solutions .bento-sc-bg-overlay {
        background: linear-gradient(180deg, rgba(16, 90, 115, 0.02), rgba(16, 90, 115, 0.20));
    }

    /* Restore the original three-card hover accordion for What We Do. */
    body:not(.page-product) #capabilities .services-accordion-container {
        display: flex !important;
        grid-template-columns: none;
        grid-template-rows: none;
        gap: 22px;
        height: 580px !important;
    }

    body:not(.page-product) #capabilities > .container {
        transform: translateY(30px);
    }

    body:not(.page-product) #capabilities .service-acc-card,
    body:not(.page-product) #capabilities .service-acc-card.active {
        grid-column: auto;
        grid-row: auto;
        width: auto !important;
        height: 100% !important;
        min-width: 0;
        min-height: 0;
        border: 0 !important;
        border-radius: 28px;
        background: #0b2d3b;
        box-shadow: 0 16px 40px rgba(10, 37, 48, 0.15);
        cursor: pointer;
        transition: flex 1.15s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease;
    }

    body:not(.page-product) #capabilities .service-acc-card {
        flex: 1 1 0 !important;
    }

    body:not(.page-product) #capabilities .service-acc-card.active {
        flex: 3.4 1 0 !important;
        box-shadow: 0 24px 60px rgba(10, 37, 48, 0.28);
    }

    body:not(.page-product) #capabilities .service-acc-card::before,
    body:not(.page-product) #capabilities .service-acc-card::after {
        display: none;
    }

    body:not(.page-product) #capabilities .collections-card-bg-layer,
    body:not(.page-product) #capabilities .service-acc-card:nth-child(3) .collections-card-bg-layer {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        opacity: 1;
    }

    body:not(.page-product) #capabilities .collections-bg-img,
    body:not(.page-product) #capabilities .payouts-bg-img,
    body:not(.page-product) #capabilities .fx-bg-img {
        width: 100%;
        height: 100%;
        opacity: 1 !important;
        object-fit: cover;
        transform: none !important;
        filter: none;
    }

    body:not(.page-product) #capabilities .bg-collapsed-img {
        opacity: 0 !important;
    }

    body:not(.page-product) #capabilities .bg-expanded-img {
        opacity: 1 !important;
    }

    body:not(.page-product) #capabilities .service-acc-card.active .bg-expanded-img {
        opacity: 1 !important;
        transform: none !important;
    }

    body:not(.page-product) #capabilities .service-acc-card.active .payouts-bg-img,
    body:not(.page-product) #capabilities .service-acc-card.active .fx-bg-img {
        transform: none !important;
    }

    body:not(.page-product) #capabilities .card-active-gradient-overlay {
        display: block;
        opacity: 0 !important;
        background: linear-gradient(90deg, #0b2d3b 0%, rgba(11, 45, 59, 0.95) 36%, rgba(11, 45, 59, 0.48) 62%, transparent 100%);
    }

    body:not(.page-product) #capabilities .service-acc-card.active .card-active-gradient-overlay {
        opacity: 1 !important;
    }

    body:not(.page-product) #capabilities .card-collapsed-tint {
        display: block;
        opacity: 1;
    }

    body:not(.page-product) #capabilities .service-acc-card.active .card-collapsed-tint {
        opacity: 0;
    }

    body:not(.page-product) #capabilities .card-active-gradient-overlay,
    body:not(.page-product) #capabilities .card-collapsed-tint {
        display: none !important;
        opacity: 0 !important;
    }

    body:not(.page-product) #capabilities .card-collapsed-label {
        display: flex !important;
        justify-content: flex-end;
        opacity: 1;
    }

    body:not(.page-product) #capabilities .service-acc-card.active .card-collapsed-label {
        opacity: 0;
    }

    body:not(.page-product) #capabilities .card-num {
        display: none;
    }

    body:not(.page-product) #capabilities .service-acc-card:not(.active) .vertical-title {
        background: linear-gradient(90deg, #2cafce 0%, #105a73 100%) !important;
        color: #ffffff;
        box-shadow: 0 8px 22px rgba(16, 90, 115, 0.24);
    }

    body:not(.page-product) #capabilities .card-expanded-body {
        position: relative;
        z-index: 4;
        width: 100%;
        height: 100%;
        padding: 44px 48px;
        display: flex !important;
        align-items: flex-end;
        opacity: 0 !important;
        transform: translateX(-10px) !important;
        pointer-events: none !important;
        transition: opacity 0.55s ease 0.35s, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
    }

    body:not(.page-product) #capabilities .service-acc-card.active .card-expanded-body {
        opacity: 1 !important;
        transform: translateX(0) !important;
        pointer-events: auto !important;
    }

    body:not(.page-product) #capabilities .card-left-content,
    body:not(.page-product) #capabilities .service-acc-card:nth-child(3) .card-left-content {
        width: auto;
        max-width: 480px;
        align-items: flex-start;
        text-align: left;
    }

    body:not(.page-product) #capabilities .expanded-heading {
        margin-bottom: 12px;
        color: #ffffff;
        font-size: 34px;
        line-height: 1.22;
        letter-spacing: -0.035em;
        text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
    }

    body:not(.page-product) #capabilities .expanded-desc {
        max-width: 460px;
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        font-size: 14.5px;
        line-height: 1.65;
        text-align: left;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.76);
    }
}

@media (hover: hover) and (pointer: fine) {
    body:not(.page-product) #capabilities .service-acc-card:hover,
    body:not(.page-product) #solutions .bento-sc-card:hover {
        transform: translateY(-2px);
        border-color: rgba(16, 90, 115, 0.16) !important;
        box-shadow: 0 18px 38px rgba(16, 90, 115, 0.085);
    }
}

@media (max-width: 992px) {
    body:not(.page-product) #capabilities .services-accordion-container {
        display: grid !important;
        grid-template-columns: 1fr;
        height: auto !important;
        gap: 18px;
    }

    body:not(.page-product) #capabilities .service-acc-card,
    body:not(.page-product) #capabilities .service-acc-card.active {
        position: relative;
        min-height: 380px;
        background: #f4f6f7;
        border: 1px solid rgba(16, 90, 115, 0.09) !important;
        border-radius: 24px;
        box-shadow: 0 12px 30px rgba(16, 90, 115, 0.055);
        overflow: hidden;
        cursor: default;
    }

    body:not(.page-product) #capabilities .service-acc-card::before,
    body:not(.page-product) #capabilities .service-acc-card::after {
        content: '';
        position: absolute;
        z-index: 6;
        pointer-events: none;
    }

    body:not(.page-product) #capabilities .service-acc-card::before {
        top: 22px;
        left: 24px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(90deg, #2cafce 0%, #105a73 100%);
        box-shadow: 0 8px 20px rgba(16, 90, 115, 0.10);
    }

    body:not(.page-product) #capabilities .service-acc-card::after {
        top: 34px;
        left: 36px;
        width: 12px;
        height: 12px;
        border: 2px solid #ffffff;
        border-radius: 4px;
    }

    body:not(.page-product) #capabilities .card-collapsed-label {
        display: none !important;
    }

    body:not(.page-product) #capabilities .card-expanded-body {
        position: relative;
        z-index: 5;
        display: flex !important;
        align-items: flex-start;
        padding: 78px 24px 24px;
        opacity: 1 !important;
        visibility: visible !important;
    }

    body:not(.page-product) #capabilities .card-left-content,
    body:not(.page-product) #capabilities .service-acc-card:nth-child(3) .card-left-content {
        width: 100%;
        max-width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    body:not(.page-product) #capabilities .expanded-heading {
        margin-bottom: 9px;
        color: #105a73;
        font-size: 26px;
        line-height: 1.12;
        letter-spacing: -0.035em;
    }

    body:not(.page-product) #capabilities .expanded-desc {
        margin: 0;
        color: rgba(16, 58, 73, 0.68);
        font-size: 14px;
        line-height: 1.55;
        text-align: left;
    }

    body:not(.page-product) #capabilities .collections-card-bg-layer,
    body:not(.page-product) #capabilities .service-acc-card:nth-child(3) .collections-card-bg-layer {
        position: absolute;
        inset: auto 18px 0;
        width: auto;
        height: 44%;
        border-radius: 20px 20px 0 0;
        opacity: 1;
        overflow: hidden;
    }

    body:not(.page-product) #capabilities .bg-collapsed-img {
        opacity: 0 !important;
    }

    body:not(.page-product) #capabilities .bg-expanded-img,
    body:not(.page-product) #capabilities .payouts-bg-img,
    body:not(.page-product) #capabilities .fx-bg-img {
        opacity: 0.82 !important;
        transform: none !important;
        filter: saturate(0.82) brightness(0.92);
    }

    body:not(.page-product) #capabilities .card-active-gradient-overlay {
        opacity: 1 !important;
        background: linear-gradient(180deg, rgba(16, 90, 115, 0.02), rgba(16, 90, 115, 0.22));
    }

    body:not(.page-product) #capabilities .card-collapsed-tint {
        display: none;
    }

    body:not(.page-product) #solutions .bento-scenarios-layout {
        display: flex !important;
        flex-direction: column;
        height: auto;
        gap: 18px;
    }

    body:not(.page-product) #solutions .bento-sc-middle-row {
        display: flex !important;
        flex-direction: column;
        gap: 18px;
    }

    body:not(.page-product) #solutions .bento-sc-card {
        position: relative;
        min-height: 360px;
        height: 360px;
        padding: 22px 24px !important;
        background: #f4f6f7;
        border: 1px solid rgba(16, 90, 115, 0.09);
        border-radius: 24px;
        box-shadow: 0 12px 30px rgba(16, 90, 115, 0.055);
        color: #105a73;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        overflow: hidden;
    }

    body:not(.page-product) #solutions .bento-sc-card-inner,
    body:not(.page-product) #solutions .bento-sc-content-left,
    body:not(.page-product) #solutions .bento-sc-content-right {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 100%;
        align-items: flex-start !important;
        text-align: left !important;
    }

    body:not(.page-product) #solutions .bento-sc-card-inner {
        display: block !important;
        height: auto !important;
        justify-content: flex-start !important;
    }

    body:not(.page-product) #solutions .bento-sc-icon-badge {
        display: flex !important;
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
        border: 0;
        border-radius: 50%;
        background: linear-gradient(90deg, #2cafce 0%, #105a73 100%);
        color: #ffffff;
    }

    body:not(.page-product) #solutions .bento-sc-card h3,
    body:not(.page-product) #solutions .bento-sc-card p {
        position: relative;
        z-index: 3;
        text-align: left;
    }

    body:not(.page-product) #solutions .bento-sc-card h3 {
        margin-bottom: 8px;
        color: #105a73;
        font-size: 24px;
        line-height: 1.16;
        letter-spacing: -0.03em;
    }

    body:not(.page-product) #solutions .bento-sc-card p {
        margin: 0;
        color: rgba(16, 58, 73, 0.68);
        font-size: 13.5px;
        line-height: 1.52;
    }

    body:not(.page-product) #solutions .bento-sc-bg-img-wrap,
    body:not(.page-product) #solutions .bento-sc-bottom-wide .bento-sc-bg-img-wrap {
        position: absolute;
        inset: auto 18px 0;
        width: auto;
        height: 42%;
        border-radius: 20px 20px 0 0;
        opacity: 1;
        overflow: hidden;
    }

    body:not(.page-product) #solutions .bento-sc-bg-img {
        opacity: 0.72;
        transform: none;
        filter: saturate(0.82) brightness(0.94);
    }

    body:not(.page-product) #solutions .bento-sc-bg-overlay {
        background: linear-gradient(180deg, rgba(16, 90, 115, 0.02), rgba(16, 90, 115, 0.20));
    }
}

/* Who We Serve: clean cards by default, full-image reveal on desktop hover. */
body:not(.page-product) #solutions .bento-sc-bg-img-wrap,
body:not(.page-product) #solutions .bento-sc-bottom-wide .bento-sc-bg-img-wrap {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: inherit !important;
    opacity: 0 !important;
    overflow: hidden;
    z-index: 1;
    transform: scale(1.025);
    transition: opacity 200ms ease, transform 260ms cubic-bezier(0.23, 1, 0.32, 1);
}

body:not(.page-product) #solutions .bento-sc-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    filter: saturate(0.88) brightness(0.86);
    transform: none !important;
}

body:not(.page-product) #solutions .bento-sc-bg-overlay {
    background: linear-gradient(180deg, rgba(5, 43, 60, 0.38) 0%, rgba(5, 43, 60, 0.78) 100%) !important;
}

body:not(.page-product) #solutions .bento-sc-card h3,
body:not(.page-product) #solutions .bento-sc-card p,
body:not(.page-product) #solutions .bento-sc-icon-badge {
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

/* Home navigation: transparent over Hero, frosted white after scrolling. */
body:not(.page-product).page-scrolled .main-fixed-header,
body:not(.page-product) .main-fixed-header.header-scrolled {
    background: rgba(255, 255, 255, 0.90) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-bottom-color: rgba(16, 90, 115, 0.10) !important;
    box-shadow: 0 8px 30px rgba(16, 90, 115, 0.10) !important;
}

body:not(.page-product).page-scrolled .main-fixed-header .logo-svg,
body:not(.page-product) .main-fixed-header.header-scrolled .logo-svg {
    filter: none !important;
}

body:not(.page-product).page-scrolled .main-fixed-header .nav-link,
body:not(.page-product) .main-fixed-header.header-scrolled .nav-link {
    color: #105a73 !important;
}

body:not(.page-product).page-scrolled .main-fixed-header .nav-link:hover,
body:not(.page-product) .main-fixed-header.header-scrolled .nav-link:hover {
    color: #2cafce !important;
}

body:not(.page-product).page-scrolled .main-fixed-header .lang-toggle,
body:not(.page-product) .main-fixed-header.header-scrolled .lang-toggle {
    background: rgba(16, 90, 115, 0.07) !important;
    border-color: rgba(16, 90, 115, 0.18) !important;
    color: #105a73 !important;
}

body:not(.page-product) .hero-bg-layer {
    display: block !important;
}

body:not(.page-product) .hero-vignette-overlay {
    display: none !important;
}

body:not(.page-product) .hero-left-content-wrap {
    justify-content: flex-end !important;
}

body:not(.page-product) .hero-left-content {
    max-width: min(820px, 58vw);
    margin-left: auto;
    align-items: flex-end !important;
    text-align: right !important;
}

body:not(.page-product) .hero-title-main,
body:not(.page-product) .hero-desc-main,
body:not(.page-product) .hero-feature-line {
    text-align: right !important;
}

body:not(.page-product) .hero-desc-main {
    align-items: flex-end !important;
}

@media (max-width: 768px) {
    body:not(.page-product) .hero-left-content {
        max-width: 100%;
    }
}

body:not(.page-product) .hero-banner-card {
    background: #0a1a24 !important;
}

body:not(.page-product) .hero-title-main {
    color: #ffffff !important;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

body:not(.page-product) .hero-title-main,
body:not(.page-product) .hero-title-main span {
    font-family: var(--font-heading) !important;
    font-weight: 400 !important;
}

@media (min-width: 769px) {
    body:not(.page-product) .hero-feature-line {
        font-size: clamp(16px, 1.25vw, 18px) !important;
    }
}

body:not(.page-product) .hero-desc-main {
    color: rgba(255, 255, 255, 0.88) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

body:not(.page-product) .hero-brand-pill {
    background: linear-gradient(90deg, rgba(44, 175, 206, 0.18), rgba(16, 90, 115, 0.22));
    border-color: rgba(44, 175, 206, 0.38);
    color: #ffffff;
}

body:not(.page-product) .hero-actions-row .btn-cyan,
body:not(.page-product) .grand-quote-cta-btn,
body:not(.page-product) .section-pill {
    background: var(--brand-gradient) !important;
    border-color: transparent !important;
    color: #ffffff !important;
}

body:not(.page-product) .hero-actions-row .btn-glass-hero {
    border-color: rgba(16, 90, 115, 0.30);
    color: #105a73;
}

body:not(.page-product) .hero-actions-row .btn-glass-hero:hover {
    background: #105a73;
    border-color: #105a73;
    color: #ffffff;
}

body:not(.page-product) .hero-metric-item strong,
body:not(.page-product) .section-header h2,
body:not(.page-product) .grand-about-main-title {
    color: #105a73 !important;
}

/* Minimal text-only language switch shared by both navigation bars. */
.nav-actions {
    min-width: 52px;
    justify-content: flex-end;
}

/* Mobile-only secondary actions (language + contact) live inside the fold menu. */
.mobile-nav-actions {
    display: none;
}

.lang-toggle,
header.header-scrolled .lang-toggle,
.main-fixed-header.header-scrolled .lang-toggle,
body.page-scrolled header .lang-toggle,
body.page-scrolled .main-fixed-header .lang-toggle,
body:not(.page-product) .main-fixed-header .lang-toggle,
body:not(.page-product).page-scrolled .main-fixed-header .lang-toggle,
body:not(.page-product) .main-fixed-header.header-scrolled .lang-toggle {
    position: relative;
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 2px !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0;
    box-shadow: none !important;
    color: #ffffff !important;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 180ms ease, opacity 180ms ease, transform 140ms cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.lang-toggle::after {
    content: '';
    position: absolute;
    right: 5px;
    bottom: 8px;
    left: 5px;
    height: 1px;
    background: currentColor;
    opacity: 0.55;
    transform: scaleX(0.68);
    transform-origin: center;
    transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), opacity 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .lang-toggle:hover::after {
        opacity: 0.95;
        transform: scaleX(1);
    }
}

.lang-toggle:active {
    transform: scale(0.97);
}

.lang-toggle:focus-visible {
    outline: none;
}

.lang-toggle:focus-visible::after {
    height: 2px;
    opacity: 1;
    transform: scaleX(1);
}

header.header-scrolled .lang-toggle,
.main-fixed-header.header-scrolled .lang-toggle,
body.page-scrolled header .lang-toggle,
body.page-scrolled .main-fixed-header .lang-toggle,
body:not(.page-product).page-scrolled .main-fixed-header .lang-toggle,
body:not(.page-product) .main-fixed-header.header-scrolled .lang-toggle {
    color: #105a73 !important;
}

@media (max-width: 768px) {
    header .nav-container,
    .main-fixed-header .nav-container {
        position: relative;
        gap: 12px;
    }

    header .logo-link,
    .main-fixed-header .logo-link,
    header .nav-actions,
    .main-fixed-header .nav-actions {
        flex: 0 0 auto;
    }

    header nav,
    .main-fixed-header nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        min-width: 0;
        padding: 8px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(16, 90, 115, 0.12);
        border-radius: 20px;
        box-shadow: none;
        backdrop-filter: blur(24px) saturate(160%);
        -webkit-backdrop-filter: blur(24px) saturate(160%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(0, -8px, 0) scale(0.985);
        transform-origin: top right;
        transition:
            opacity 180ms ease,
            transform 220ms cubic-bezier(0.23, 1, 0.32, 1),
            visibility 0s linear 220ms;
    }

    header .nav-menu,
    .main-fixed-header .nav-menu {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    header .nav-link,
    .main-fixed-header .nav-link {
        display: flex;
        width: 100%;
        min-height: 48px;
        padding: 14px 16px;
        align-items: center;
        border-radius: 14px;
        color: #105a73 !important;
        font-size: 15px;
        font-weight: 400;
        white-space: nowrap;
    }

    header .nav-link:active,
    .main-fixed-header .nav-link:active {
        background: rgba(44, 175, 206, 0.10);
    }

    header.mobile-menu-open nav,
    .main-fixed-header.mobile-menu-open nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0) scale(1);
        transition:
            opacity 180ms ease,
            transform 220ms cubic-bezier(0.23, 1, 0.32, 1),
            visibility 0s linear 0s;
    }

    /* On mobile, drop the standalone lang/contact from the header bar and
       surface them inside the fold menu instead. */
    header .nav-actions .lang-toggle,
    .main-fixed-header .nav-actions .lang-toggle,
    header .nav-actions .nav-contact-btn,
    .main-fixed-header .nav-actions .nav-contact-btn {
        display: none !important;
    }

    .mobile-nav-actions {
        display: flex !important;
        align-items: center;
        gap: 14px;
        padding: 10px 16px 12px;
        border-top: 1px solid rgba(16, 90, 115, 0.10);
        margin-top: 6px;
    }

    .mobile-nav-actions .lang-toggle {
        color: #105a73 !important;
    }

    .mobile-nav-actions .nav-contact-btn {
        color: #105a73 !important;
    }

    header .nav-actions,
    .main-fixed-header .nav-actions {
        min-width: 0;
        gap: 6px;
    }

    .mobile-menu-toggle {
        display: grid;
        width: 44px;
        height: 44px;
        padding: 0;
        place-content: center;
        gap: 4px;
        background: transparent;
        border: 0;
        border-radius: 50%;
        color: #ffffff;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 20px;
        height: 1.5px;
        border-radius: 999px;
        background: currentColor;
        transform-origin: center;
        transition:
            opacity 140ms ease,
            transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .mobile-menu-toggle:active {
        transform: scale(0.94);
    }

    .mobile-menu-toggle:focus-visible {
        outline: 2px solid currentColor;
        outline-offset: 2px;
    }

    header.mobile-menu-open .mobile-menu-toggle span:nth-child(1),
    .main-fixed-header.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(5.5px) rotate(45deg);
    }

    header.mobile-menu-open .mobile-menu-toggle span:nth-child(2),
    .main-fixed-header.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0.4);
    }

    header.mobile-menu-open .mobile-menu-toggle span:nth-child(3),
    .main-fixed-header.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg);
    }

    header.header-scrolled .mobile-menu-toggle,
    .main-fixed-header.header-scrolled .mobile-menu-toggle,
    body.page-scrolled header .mobile-menu-toggle,
    body.page-scrolled .main-fixed-header .mobile-menu-toggle {
        color: #105a73;
    }
}

/* Homepage Hero: reference-led left-copy / right-visual composition. */
body:not(.page-product) .hero-banner-card {
    background: #14a0c4 !important;
}

body:not(.page-product) .hero-bg-layer {
    display: block !important;
    background: #14a0c4;
}

body:not(.page-product) .hero-backdrop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
    transform: none;
    transform-origin: center;
}

body:not(.page-product) .hero-vignette-overlay {
    display: block !important;
    background: linear-gradient(
        90deg,
        rgba(16, 90, 115, 0.84) 0%,
        rgba(16, 90, 115, 0.66) 27%,
        rgba(44, 175, 206, 0.26) 49%,
        rgba(44, 175, 206, 0) 72%
    ) !important;
}

body:not(.page-product) .hero-left-content-wrap {
    align-items: center;
    justify-content: flex-start !important;
    padding: clamp(106px, 13svh, 132px) max(32px, calc((100% - 1340px) / 2 + 32px)) clamp(42px, 6svh, 64px);
}

body:not(.page-product) .hero-left-content {
    width: min(100%, 570px);
    max-width: min(570px, 41vw);
    margin: 0;
    align-items: flex-start !important;
    text-align: left !important;
}

body:not(.page-product) .hero-title-main {
    max-width: 570px;
    margin: 0 0 clamp(22px, 3svh, 30px);
    font-size: clamp(42px, 3.7vw, 56px);
    line-height: 1.01;
    letter-spacing: -0.045em;
    text-align: left !important;
}

body:not(.page-product) .hero-desc-main {
    width: 100%;
    max-width: 440px;
    margin: 0 0 clamp(22px, 3svh, 30px);
    align-items: flex-start !important;
    gap: 6px;
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.55;
    text-align: left !important;
}

body:not(.page-product) .hero-feature-line {
    display: inline-flex;
    width: fit-content;
    margin: 0;
    padding: 7px 14px;
    align-items: center;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    color: #ffffff !important;
    font-size: clamp(16px, 1.35vw, 20px) !important;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.08em;
    text-align: left !important;
}

@media (min-width: 769px) {
    body:not(.page-product) .hero-title-main span[lang="en"] {
        white-space: nowrap;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    body:not(.page-product) .hero-backdrop-img {
        object-position: 62% center;
    }

    body:not(.page-product) .hero-left-content {
        max-width: 44vw;
    }

    body:not(.page-product) .hero-title-main {
        font-size: clamp(40px, 5vw, 52px);
    }
}

@media (max-width: 768px) {
    body:not(.page-product) .hero-banner-card {
        align-items: stretch;
    }

    body:not(.page-product) .hero-bg-layer {
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;
        height: 43%;
    }

    body:not(.page-product) .hero-backdrop-img {
        object-fit: cover;
        object-position: 66% center;
        transform: none;
    }

    body:not(.page-product) .hero-left-content-wrap {
        align-items: flex-end;
        padding: calc(43svh + 24px) 24px 34px;
    }

    body:not(.page-product) .hero-left-content {
        width: 100%;
        max-width: 100%;
    }

    body:not(.page-product) .hero-title-main {
        max-width: 100%;
        margin-bottom: 16px;
        font-size: clamp(31px, 9vw, 40px);
        line-height: 1.02;
        letter-spacing: -0.04em;
    }

    body:not(.page-product) .hero-desc-main {
        max-width: 100%;
        margin-bottom: 16px;
        gap: 4px;
        font-size: 13px;
        line-height: 1.45;
    }

    body:not(.page-product) .hero-feature-line {
        padding: 6px 12px;
        font-size: 13px !important;
        letter-spacing: 0.06em;
    }

    body:not(.page-product) .hero-vignette-overlay {
        background: linear-gradient(
            90deg,
            rgba(16, 90, 115, 0.44) 0%,
            rgba(44, 175, 206, 0.16) 48%,
            rgba(44, 175, 206, 0) 78%
        ) !important;
    }
}

/* More Than Moving Money: tall, horizontally rotating brand cards. */
body:not(.page-product) #why-nexreach .why-carousel-shell {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

body:not(.page-product) #why-nexreach .why-carousel-track,
body:not(.page-product) #why-nexreach .bento-grid {
    display: flex !important;
    height: auto !important;
    gap: 18px !important;
    align-items: stretch;
    overflow-x: auto;
    padding: 8px max(24px, calc((100vw - 1340px) / 2 + 32px)) 16px;
    scroll-padding-inline: max(24px, calc((100vw - 1340px) / 2 + 32px));
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

body:not(.page-product) #why-nexreach .why-carousel-track::-webkit-scrollbar {
    display: none;
}

body:not(.page-product) #why-nexreach .bento-box,
body:not(.page-product) #why-nexreach .bento-box:nth-child(n) {
    flex: 0 0 clamp(320px, 30vw, 430px);
    grid-column: auto !important;
    grid-row: auto !important;
    width: auto !important;
    min-width: 0;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
    padding: 30px;
    justify-content: flex-end;
    scroll-snap-align: center;
    border: 1px solid rgba(16, 90, 115, 0.12);
    border-radius: 28px;
    overflow: hidden;
    opacity: 0.58;
    transform: scale(0.96);
    filter: saturate(0.82) brightness(0.94);
    transition:
        transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 380ms ease,
        filter 380ms ease,
        border-color 240ms ease;
}

body:not(.page-product) #why-nexreach .bento-box:nth-child(1) {
    background-image:
        url('home/more-than-moving-money/compliance-first.webp'),
        linear-gradient(145deg, rgba(44, 175, 206, 0.16), rgba(16, 90, 115, 0.05) 72%, #ffffff) !important;
}

body:not(.page-product) #why-nexreach .bento-box:nth-child(2) {
    background-image:
        url('home/more-than-moving-money/local-market-connectivity.webp'),
        linear-gradient(155deg, rgba(16, 90, 115, 0.14), rgba(44, 175, 206, 0.06) 68%, #ffffff) !important;
}

body:not(.page-product) #why-nexreach .bento-box:nth-child(3) {
    background-image:
        url('home/more-than-moving-money/transparent-operations.webp'),
        linear-gradient(135deg, rgba(44, 175, 206, 0.11), rgba(16, 90, 115, 0.09) 74%, #ffffff) !important;
}

body:not(.page-product) #why-nexreach .bento-box:nth-child(4) {
    background-image:
        url('home/more-than-moving-money/business-focused-service.webp'),
        linear-gradient(150deg, rgba(16, 90, 115, 0.16), rgba(44, 175, 206, 0.05) 70%, #ffffff) !important;
}

body:not(.page-product) #why-nexreach .bento-box:nth-child(n) {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

body:not(.page-product) #why-nexreach .bento-box::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(16, 58, 73, 0.06) 0%, rgba(16, 90, 115, 0.22) 55%, rgba(16, 58, 73, 0.72) 100%);
    pointer-events: none;
}

body:not(.page-product) #why-nexreach .bento-box h3,
body:not(.page-product) #why-nexreach .bento-box p {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    filter: drop-shadow(0 6px 18px rgba(16, 58, 73, 0.55));
}

body:not(.page-product) #why-nexreach .bento-box.is-active {
    border-color: rgba(44, 175, 206, 0.48);
    opacity: 1;
    transform: scale(1);
    filter: none;
}

/* Card content rises into place as the card becomes active. */
body:not(.page-product) #why-nexreach .bento-box h3,
body:not(.page-product) #why-nexreach .bento-box p {
    transition:
        opacity 360ms ease,
        transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

body:not(.page-product) #why-nexreach .bento-box:not(.is-active) h3,
body:not(.page-product) #why-nexreach .bento-box:not(.is-active) p {
    opacity: 0.66;
    transform: translateY(8px);
}

body:not(.page-product) #why-nexreach .bento-box.is-active h3,
body:not(.page-product) #why-nexreach .bento-box.is-active p {
    opacity: 1;
    transform: translateY(0);
}

body:not(.page-product) #why-nexreach .bento-header-wrap,
body:not(.page-product) #why-nexreach .bento-box:nth-child(n) .bento-header-wrap {
    position: absolute;
    top: 30px;
    right: 30px;
    left: 30px;
    width: auto;
    padding: 0;
    justify-content: flex-start !important;
    z-index: 3;
}

body:not(.page-product) #why-nexreach .bento-icon-badge {
    display: none !important;
}

body:not(.page-product) #why-nexreach .bento-box h3 {
    position: relative;
    z-index: 2;
    min-height: 0;
    margin: 0 0 14px;
    font-size: clamp(25px, 2.2vw, 34px);
    line-height: 1.08;
}

body:not(.page-product) #why-nexreach .bento-box p {
    position: relative;
    z-index: 2;
    max-width: 34ch;
    font-size: 16px;
    line-height: 1.55;
}

body:not(.page-product) #why-nexreach .why-carousel-shell::before,
body:not(.page-product) #why-nexreach .why-carousel-shell::after {
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 58px;
    width: min(8vw, 96px);
    pointer-events: none;
    content: "";
}

body:not(.page-product) #why-nexreach .why-carousel-shell::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

body:not(.page-product) #why-nexreach .why-carousel-shell::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

body:not(.page-product) #why-nexreach .why-carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

body:not(.page-product) #why-nexreach .why-carousel-arrow {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    background: linear-gradient(135deg, #2cafce, #105a73);
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition:
        transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 260ms ease,
        opacity 220ms ease;
}

body:not(.page-product) #why-nexreach .why-carousel-arrow svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body:not(.page-product) #why-nexreach .why-carousel-arrow:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 12px 28px rgba(16, 90, 115, 0.28);
}

body:not(.page-product) #why-nexreach .why-carousel-arrow:active {
    transform: scale(0.9);
}

body:not(.page-product) #why-nexreach .why-carousel-arrow:focus-visible {
    outline: 2px solid #2cafce;
    outline-offset: 3px;
}

@media (min-width: 769px) and (max-width: 1100px) {
    body:not(.page-product) #why-nexreach .bento-box,
    body:not(.page-product) #why-nexreach .bento-box:nth-child(n) {
        flex-basis: clamp(320px, 46vw, 430px);
    }
}

@media (max-width: 768px) {
    body:not(.page-product) #why-nexreach .why-carousel-track,
    body:not(.page-product) #why-nexreach .bento-grid {
        gap: 12px !important;
        padding: 6px 28px 12px;
        scroll-padding-inline: 28px;
    }

    body:not(.page-product) #why-nexreach .bento-box,
    body:not(.page-product) #why-nexreach .bento-box:nth-child(n) {
        flex-basis: calc(100vw - 56px);
        height: 430px !important;
        padding: 26px;
        border-radius: 24px;
        background-position: center !important;
        background-size: cover !important;
    }

    body:not(.page-product) #why-nexreach .bento-header-wrap,
    body:not(.page-product) #why-nexreach .bento-box:nth-child(n) .bento-header-wrap {
        top: 26px;
        right: 26px;
        left: 26px;
    }

    body:not(.page-product) #why-nexreach .bento-box h3 {
        font-size: 24px;
    }

    body:not(.page-product) #why-nexreach .bento-box p {
        font-size: 15px;
    }

    body:not(.page-product) #why-nexreach .why-carousel-shell::before,
    body:not(.page-product) #why-nexreach .why-carousel-shell::after {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
body:not(.page-product) #why-nexreach .why-carousel-track {
        scroll-behavior: auto;
    }

    body:not(.page-product) #why-nexreach .bento-box,
    body:not(.page-product) #why-nexreach .why-carousel-arrow {
        transition: none;
    }
}

/* More Than Moving Money — editorial copy plus a two-card depth carousel. */
body:not(.page-product) #why-nexreach .why-content-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
}

body:not(.page-product) #why-nexreach .why-copy-panel {
    min-width: 0;
}

body:not(.page-product) #why-nexreach .why-copy-panel .section-header {
    max-width: 500px;
    margin: 0 !important;
    align-items: flex-start !important;
    text-align: left !important;
}

body:not(.page-product) #why-nexreach .why-copy-panel .section-header h2,
body:not(.page-product) #why-nexreach .why-copy-panel .section-header p {
    text-align: left !important;
}

body:not(.page-product) #why-nexreach .why-carousel-shell {
    width: 100% !important;
    min-width: 0;
    margin: 0 !important;
    overflow: visible;
}

body:not(.page-product) #why-nexreach .why-carousel-track,
body:not(.page-product) #why-nexreach .bento-grid {
    position: relative;
    display: block !important;
    width: 100%;
    height: clamp(460px, 55svh, 570px) !important;
    padding: 0 !important;
    overflow: visible !important;
    perspective: 1200px;
    transform-style: preserve-3d;
    scroll-snap-type: none;
}

body:not(.page-product) #why-nexreach .bento-box,
body:not(.page-product) #why-nexreach .bento-box:nth-child(n) {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% - 11px) !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0;
    flex: none !important;
    scroll-snap-align: none;
    pointer-events: none;
    opacity: 0;
    filter: saturate(0.78) brightness(0.92);
    transform: translate3d(calc(112% + 22px), 0, 0) scale(0.84);
    transition:
        transform 680ms cubic-bezier(0.23, 1, 0.32, 1),
        opacity 440ms ease-out,
        filter 440ms ease-out;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

body:not(.page-product) #why-nexreach .bento-box.is-active {
    z-index: 3;
    pointer-events: auto;
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) scale(1);
}

body:not(.page-product) #why-nexreach .bento-box.is-next {
    z-index: 2;
    opacity: 0.78;
    filter: saturate(0.88) brightness(0.96);
    transform: translate3d(calc(100% + 22px), 0, 0) scale(0.92);
}

body:not(.page-product) #why-nexreach .bento-box.is-retreating-forward {
    z-index: 1;
    opacity: 0;
    transform: translate3d(-28%, 0, 0) scale(0.84);
}

body:not(.page-product) #why-nexreach .bento-box.is-retreating-backward {
    z-index: 1;
    opacity: 0;
    transform: translate3d(28%, 0, 0) scale(0.84);
}

body:not(.page-product) #why-nexreach .bento-box.is-entering-backward {
    z-index: 2;
    opacity: 0;
    filter: saturate(0.78) brightness(0.92);
    transform: translate3d(-28%, 0, 0) scale(0.84);
}

body:not(.page-product) #why-nexreach .bento-box.is-next h3,
body:not(.page-product) #why-nexreach .bento-box.is-next p {
    opacity: 0.9;
    transform: translateY(0);
}

body:not(.page-product) #why-nexreach .why-carousel-shell::before,
body:not(.page-product) #why-nexreach .why-carousel-shell::after {
    display: none;
}

body:not(.page-product) #why-nexreach .why-carousel-navigation {
    justify-content: flex-start;
    gap: 12px;
    margin-top: clamp(28px, 4vw, 48px);
}

body:not(.page-product) #why-nexreach .why-carousel-arrow {
    width: 52px;
    height: 52px;
    background: #2cafce;
    box-shadow: 0 10px 24px rgba(16, 90, 115, 0.16);
}

@media (max-width: 900px) {
    body:not(.page-product) #why-nexreach .why-content-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    body:not(.page-product) #why-nexreach .why-copy-panel .section-header {
        max-width: 680px;
    }

    html body:not(.page-product) #why-nexreach .why-carousel-shell {
        overflow: hidden;
    }

    html body:not(.page-product) #why-nexreach .why-carousel-track,
    html body:not(.page-product) #why-nexreach .bento-grid {
        height: 460px !important;
    }

    body:not(.page-product) #why-nexreach .bento-box,
    body:not(.page-product) #why-nexreach .bento-box:nth-child(n) {
        width: 100% !important;
    }

    body:not(.page-product) #why-nexreach .bento-box.is-next {
        opacity: 0.46;
        transform: translate3d(18%, 0, 0) scale(0.92);
    }
}

@media (prefers-reduced-motion: reduce) {
    body:not(.page-product) #why-nexreach .bento-box {
        transition: none;
    }
}

/* Final carousel state layer: keep depth transforms above shared section motion. */
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-active {
    z-index: 3;
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) rotateY(0deg) scale(1) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-next {
    z-index: 2;
    opacity: 0.78;
    filter: saturate(0.88) brightness(0.96);
    transform: translate3d(calc(100% + 22px), 0, -80px) rotateY(-18deg) scale(0.92) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-hidden {
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(calc(142% + 34px), 0, -200px) rotateY(-28deg) scale(0.74) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-retreating-forward {
    z-index: 1;
    opacity: 0;
    filter: saturate(0.7) brightness(0.86) blur(1px);
    transform: translate3d(calc(-100% - 22px), 18px, -170px) rotateY(24deg) scale(0.76) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-retreating-backward {
    z-index: 1;
    opacity: 0;
    filter: saturate(0.7) brightness(0.86) blur(1px);
    transform: translate3d(calc(100% + 22px), 18px, -170px) rotateY(-24deg) scale(0.76) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-entering-backward {
    z-index: 2;
    opacity: 0;
    transform: translate3d(calc(-100% - 22px), 0, -80px) rotateY(18deg) scale(0.92) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-next h3,
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-next p {
    opacity: 0.9;
    transform: translateY(0);
}

/* ============================================================
   VALUE IN MOTION — GREY TAGLINE BAR (between hero and What We Do)
   Full-width light-grey strip with centred teal tagline, matching the
   provided reference. Scoped to the homepage (body:not(.page-product)).
   ============================================================ */
body:not(.page-product) .value-in-motion-bar {
    width: 100% !important;
    margin: 0 0 var(--vim-module-gap, 24px) !important;
    padding: 0 !important;
    display: block !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 1 !important;
    top: 0 !important;
}

body:not(.page-product) .value-in-motion-bar .value-in-motion-inner {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body:not(.page-product) .value-in-motion-bar .value-in-motion-text {
    display: inline-block !important;
    margin: 0 !important;
    color: #105a73 !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: clamp(19px, 1.9vw, 27px) !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    text-align: center !important;
    white-space: nowrap !important;
    background-image: linear-gradient(90deg, #105a73 0%, #2cafce 35%, #7fd8ea 50%, #2cafce 65%, #105a73 100%) !important;
    background-size: 220% 100% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: value-in-motion-flow 5s linear infinite !important;
}

/* Value In Motion stays on the English interface and is hidden on Chinese. */
body .value-in-motion-bar .value-in-motion-text[lang="en"] {
    display: inline-block !important;
}

body.lang-cn #capabilities .value-in-motion-bar {
    display: none !important;
}

@keyframes value-in-motion-flow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: -220% 50%;
    }
}

@media (max-width: 768px) {
    body:not(.page-product) .value-in-motion-bar {
        margin: 0 0 var(--vim-module-gap, 30px) !important;
        padding: 0 !important;
    }

    /* The Value In Motion line is the only mobile spacer before the cards. */
    body:not(.page-product) #capabilities .what-we-do-comparison {
        margin-top: var(--vim-module-gap, 30px) !important;
        padding-top: 0 !important;
    }

    body:not(.page-product) .value-in-motion-bar .value-in-motion-text {
        font-size: clamp(18px, 5.5vw, 24px) !important;
    }
}

/* ============================================
   WHO WE SERVE — ROUNDED PANEL + UNIFIED CARD RADIUS
   The big teal background gets bottom-left / bottom-right
   rounded corners; all homepage cards share one radius.
   ============================================ */
body:not(.page-product) #solutions {
    border-radius: 0 0 clamp(24px, 2.4vw, 34px) clamp(24px, 2.4vw, 34px) !important;
}

/* Solutions hover cards */
body:not(.page-product) #solutions .scenario-toggle-card {
    border-radius: 28px !important;
}

/* Why NEXREACH bento cards */
body:not(.page-product) #why-nexreach .bento-box {
    border-radius: 28px !important;
}

/* Capabilities accordion cards */
body:not(.page-product) #capabilities .service-acc-card {
    border-radius: 28px !important;
}

@media (max-width: 640px) {
    body:not(.page-product) #solutions .scenario-toggle-card {
        border-radius: 20px !important;
    }
}

/* What We Do header: centered, larger title with a small brand tagline. */
body:not(.page-product) #capabilities .container .section-header {
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

body:not(.page-product) #capabilities .container .section-header h2 {
    margin-bottom: 0 !important;
    color: #105a73 !important;
    font-size: clamp(52px, 4.8vw, 76px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.04em !important;
    text-align: center !important;
}

/* What We Do - desktop only: fluid 2-row expanding grid.
   The reference layout keeps the active card on a full row while the
   remaining two cards settle into the other row. */
@media (min-width: 993px) {
    body:not(.page-product) #capabilities .services-accordion-container {
        position: relative !important;
        display: block !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        gap: 0 !important;
        height: 870px !important;
        padding: 0 !important;
    }

    body:not(.page-product) #capabilities .service-acc-card,
    body:not(.page-product) #capabilities .service-acc-card.active {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: var(--fluid-w, 100%) !important;
        height: var(--fluid-h, 100%) !important;
        min-width: 0 !important;
        min-height: 0 !important;
        flex: none !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 28px !important;
        overflow: hidden !important;
        transform: translate3d(var(--fluid-x, 0px), var(--fluid-y, 0px), 0) !important;
        transition:
            transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
            width 820ms cubic-bezier(0.22, 1, 0.36, 1),
            height 820ms cubic-bezier(0.22, 1, 0.36, 1),
            border-color 420ms ease,
            box-shadow 420ms ease !important;
        contain: layout;
        will-change: transform, width, height;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    body:not(.page-product) #capabilities .service-acc-card:nth-child(1) {
        --fluid-x: 0px;
        --fluid-y: 0px;
        --fluid-w: 100%;
        --fluid-h: calc(50% - 9px);
    }

    body:not(.page-product) #capabilities .service-acc-card:nth-child(2) {
        --fluid-x: 0px;
        --fluid-y: calc(50% + 9px);
        --fluid-w: calc(50% - 9px);
        --fluid-h: calc(50% - 9px);
    }

    body:not(.page-product) #capabilities .service-acc-card:nth-child(3) {
        --fluid-x: calc(50% + 9px);
        --fluid-y: calc(50% + 9px);
        --fluid-w: calc(50% - 9px);
        --fluid-h: calc(50% - 9px);
    }

    body:not(.page-product) #capabilities .service-acc-card {
        z-index: 1;
        box-shadow: 0 16px 40px rgba(10, 37, 48, 0.15);
    }

    body:not(.page-product) #capabilities .service-acc-card.active {
        z-index: 3;
        box-shadow: 0 24px 60px rgba(10, 37, 48, 0.28);
    }

    body:not(.page-product) #capabilities .card-expanded-body {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        padding: 44px 48px !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: flex-start !important;
        pointer-events: none !important;
    }

    body:not(.page-product) #capabilities .service-acc-card.active .card-expanded-body {
        pointer-events: auto !important;
    }

    body:not(.page-product) #capabilities .card-collapsed-label {
        display: flex !important;
        justify-content: flex-end;
        pointer-events: none !important;
    }

    body:not(.page-product) #capabilities .service-acc-card.active .card-collapsed-label {
        opacity: 0;
    }

    body:not(.page-product) #capabilities .service-acc-card:hover,
    body:not(.page-product) #capabilities .service-acc-card.active:hover {
        transform: translate3d(var(--fluid-x, 0px), var(--fluid-y, 0px), 0) !important;
        border-color: rgba(16, 90, 115, 0.16) !important;
        box-shadow: 0 20px 46px rgba(10, 37, 48, 0.22);
    }
}

/* Large screens: place card centers on a horizontal orbit. */
@media (min-width: 1200px) {
    html body:not(.page-product) #why-nexreach .why-carousel-shell {
        overflow: visible !important;
    }

    html body:not(.page-product) #why-nexreach .why-carousel-track,
    html body:not(.page-product) #why-nexreach .bento-grid {
        display: block !important;
        position: relative !important;
        height: clamp(460px, 55svh, 570px) !important;
        padding: 0 !important;
        overflow: visible !important;
        perspective: 1400px;
        transform-style: preserve-3d;
    }

    html body:not(.page-product) #why-nexreach .why-carousel-track::after {
        display: none;
    }

    html body:not(.page-product) #why-nexreach .why-carousel-track .bento-box,
    html body:not(.page-product) #why-nexreach .why-carousel-track .bento-box:nth-child(n) {
        position: absolute !important;
        inset: 0 auto auto 0 !important;
        width: calc(50% - 11px) !important;
        height: 100% !important;
        margin: 0;
        flex: none !important;
        pointer-events: none !important;
        opacity: 0;
        filter: saturate(0.68) brightness(0.82) blur(1px);
        transform: translate3d(calc(-100% - 22px), 0, -220px) scale(0.74) !important;
        transform-origin: center center;
        transform-style: preserve-3d;
        backface-visibility: hidden;
        transition:
            transform 760ms cubic-bezier(0.42, 0, 0.58, 1),
            opacity 620ms cubic-bezier(0.42, 0, 0.58, 1),
            filter 620ms cubic-bezier(0.42, 0, 0.58, 1);
        will-change: transform, opacity, filter;
    }

    html body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-active {
        z-index: 4;
        pointer-events: auto !important;
        opacity: 1;
        filter: none;
        transform: translate3d(0, 0, 0) scale(1) !important;
    }

    html body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-ring-right {
        z-index: 3;
        opacity: 0.72;
        filter: saturate(0.84) brightness(0.92);
        transform: translate3d(calc(100% + 22px), 0, 0) scale(1) !important;
    }

    html body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-ring-back {
        z-index: 1;
        opacity: 0;
        filter: saturate(0.55) brightness(0.76) blur(3px);
        transform: translate3d(calc(200% + 44px), 0, -220px) scale(0.74) !important;
    }

    html body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-ring-hidden {
        z-index: 2;
        opacity: 0;
        filter: saturate(0.74) brightness(0.88);
        transform: translate3d(calc(-100% - 22px), 0, -220px) scale(0.74) !important;
    }
}

/* What We Do: smooth flex expansion with content following the card motion. */
@media (min-width: 993px) {
    html.section-motion-ready #capabilities.capabilities-entrance-started .service-acc-card,
    body:not(.page-product) #capabilities .service-acc-card {
        will-change: flex;
        transition:
            flex 520ms cubic-bezier(0.65, 0, 0.35, 1),
            box-shadow 320ms cubic-bezier(0.23, 1, 0.32, 1),
            transform 320ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    body:not(.page-product) #capabilities .card-collapsed-label {
        transition: opacity 180ms cubic-bezier(0.23, 1, 0.32, 1) !important;
    }

    body:not(.page-product) #capabilities .service-acc-card.active .card-collapsed-label {
        opacity: 0 !important;
    }

    body:not(.page-product) #capabilities .card-expanded-body {
        opacity: 0 !important;
        transform: translate3d(-14px, 0, 0) scale(0.985) !important;
        transition:
            opacity 260ms cubic-bezier(0.23, 1, 0.32, 1),
            transform 420ms cubic-bezier(0.23, 1, 0.32, 1) !important;
    }

    body:not(.page-product) #capabilities .service-acc-card.active .card-expanded-body {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) scale(1) !important;
        transition-delay: 90ms !important;
    }

    body:not(.page-product) #capabilities .card-expanded-body .card-left-content > * {
        opacity: 0;
        transform: translate3d(0, 8px, 0);
        transition:
            opacity 220ms cubic-bezier(0.23, 1, 0.32, 1),
            transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    body:not(.page-product) #capabilities .service-acc-card.active .card-expanded-body .card-left-content > * {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    body:not(.page-product) #capabilities .service-acc-card.active .card-expanded-body .card-left-content > :nth-child(1) {
        transition-delay: 170ms;
    }

    body:not(.page-product) #capabilities .service-acc-card.active .card-expanded-body .card-left-content > :nth-child(2) {
        transition-delay: 215ms;
    }

    body:not(.page-product) #capabilities .service-acc-card.active .card-expanded-body .card-left-content > :nth-child(3) {
        transition-delay: 260ms;
    }
}

/* Final scroll-ready rail layer: two visible cards, no overlap. */
body:not(.page-product) #why-nexreach .why-carousel-shell {
    overflow: hidden !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track,
body:not(.page-product) #why-nexreach .bento-grid {
    display: flex !important;
    align-items: stretch;
    gap: 22px !important;
    height: clamp(460px, 55svh, 570px) !important;
    padding: 0 calc(50% + 11px) 12px 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    perspective: none;
    transform-style: flat;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

body:not(.page-product) #why-nexreach .why-carousel-track::-webkit-scrollbar {
    display: none;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box,
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box:nth-child(n) {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 calc(50% - 11px) !important;
    width: auto !important;
    height: 100% !important;
    min-height: 0 !important;
    pointer-events: auto !important;
    opacity: 0.58;
    filter: saturate(0.82) brightness(0.94);
    transform: scale(0.94) !important;
    scroll-snap-align: start;
    transition:
        transform 520ms cubic-bezier(0.23, 1, 0.32, 1),
        opacity 360ms ease,
        filter 360ms ease;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-active {
    z-index: 2;
    opacity: 1;
    filter: none;
    transform: scale(1) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-next {
    z-index: 1;
    opacity: 0.82;
    filter: saturate(0.9) brightness(0.97);
    transform: scale(0.96) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-hidden {
    z-index: 0;
    opacity: 0.58;
    pointer-events: auto !important;
    filter: saturate(0.82) brightness(0.94);
    transform: scale(0.94) !important;
}

@media (max-width: 900px) {
    body:not(.page-product) #why-nexreach .why-carousel-track,
    body:not(.page-product) #why-nexreach .bento-grid {
        gap: 12px !important;
        padding-right: 0 !important;
        height: 460px !important;
    }

    body:not(.page-product) #why-nexreach .why-carousel-track::after {
        display: none;
    }

    body:not(.page-product) #why-nexreach .why-carousel-track .bento-box,
    body:not(.page-product) #why-nexreach .why-carousel-track .bento-box:nth-child(n) {
        flex-basis: 100% !important;
    }
}

body:not(.page-product) #why-nexreach .why-carousel-arrow svg {
    display: block;
    overflow: visible;
    stroke: #ffffff !important;
}

/* Scroll-ready card rail: keep the approved two-card layout without overlap. */
body:not(.page-product) #why-nexreach .why-carousel-shell {
    overflow: hidden !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track,
body:not(.page-product) #why-nexreach .bento-grid {
    display: flex !important;
    align-items: stretch;
    gap: 22px !important;
    height: clamp(460px, 55svh, 570px) !important;
    padding: 0 calc(50% + 11px) 12px 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    perspective: none;
    transform-style: flat;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

body:not(.page-product) #why-nexreach .why-carousel-track::-webkit-scrollbar {
    display: none;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box,
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box:nth-child(n) {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 calc(50% - 11px) !important;
    width: auto !important;
    height: 100% !important;
    min-height: 0 !important;
    pointer-events: auto !important;
    opacity: 0.58;
    filter: saturate(0.82) brightness(0.94);
    transform: scale(0.94) !important;
    scroll-snap-align: start;
    transition:
        transform 520ms cubic-bezier(0.23, 1, 0.32, 1),
        opacity 360ms ease,
        filter 360ms ease;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-active {
    z-index: 2;
    opacity: 1;
    filter: none;
    transform: scale(1) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-next {
    z-index: 1;
    opacity: 0.82;
    filter: saturate(0.9) brightness(0.97);
    transform: scale(0.96) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-hidden {
    z-index: 0;
    opacity: 0.58;
    pointer-events: auto !important;
    filter: saturate(0.82) brightness(0.94);
    transform: scale(0.94) !important;
}

@media (max-width: 900px) {
    body:not(.page-product) #why-nexreach .why-carousel-track,
    body:not(.page-product) #why-nexreach .bento-grid {
        gap: 12px !important;
        padding-right: 0 !important;
        height: 460px !important;
    }

    body:not(.page-product) #why-nexreach .why-carousel-track .bento-box,
    body:not(.page-product) #why-nexreach .why-carousel-track .bento-box:nth-child(n) {
        flex-basis: 100% !important;
    }
}

/* Consistent vertical rhythm between homepage modules across viewport sizes. */
:root {
    --home-section-space: clamp(64px, 8svh, 88px);
    --vim-module-gap: 50px;
}

body:not(.page-product) #capabilities,
body:not(.page-product) #solutions,
body:not(.page-product) #why-nexreach {
    min-height: 100svh;
    padding-top: var(--home-section-space) !important;
    padding-bottom: var(--home-section-space) !important;
    box-sizing: border-box;
}

body:not(.page-product) #capabilities > .container {
    transform: none !important;
}

/* Product page uses the same content and navigation width as the homepage. */
body.page-product header {
    padding-left: 32px !important;
    padding-right: 32px !important;
}

body.page-product header .nav-container {
    width: min(100%, var(--home-content-max));
    max-width: var(--home-content-max);
    margin-left: auto;
    margin-right: auto;
}

body.page-product .product-hero-wrapper .hero-left-content-wrap {
    padding-left: max(32px, calc((100% - var(--home-content-max)) / 2 + 32px));
    padding-right: max(32px, calc((100% - var(--home-content-max)) / 2 + 32px));
}

body.page-product > section:not(.hero-wrapper-section):not(.about-us-section) > .container {
    width: min(100%, var(--home-content-max)) !important;
    max-width: var(--home-content-max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
}

@media (max-width: 768px) {
    body.page-product .product-hero-wrapper .hero-left-content-wrap {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* One-section-per-wheel landing on desktop; JavaScript adds the damped motion. */
@media (min-width: 1024px) and (min-height: 700px) and (hover: hover) and (pointer: fine) {
    html.home-section-scroll {
        scroll-snap-type: y mandatory;
        scroll-padding-top: 0;
    }

    html.home-section-scroll.is-section-scrolling {
        scroll-snap-type: none;
    }

    html.home-section-scroll body {
        scroll-snap-type: none !important;
    }

    html.home-section-scroll body > section,
    html.home-section-scroll body > footer {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
}

@media (max-width: 1023px), (max-height: 699px), (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
    html.home-section-scroll {
        scroll-snap-type: none;
    }
}

/* One shared left edge: navigation logo, headings, copy and card grids. */
:root {
    --site-content-gutter: 32px;
}

body:not(.page-product) #capabilities > .container,
body:not(.page-product) #solutions > .container,
body:not(.page-product) #why-nexreach > .container,
body.page-product > section:not(.hero-wrapper-section):not(.about-us-section) > .container {
    width: min(calc(100% - var(--site-content-gutter) - var(--site-content-gutter)), var(--home-content-max)) !important;
    max-width: var(--home-content-max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body:not(.page-product) .hero-left-content-wrap,
body.page-product .product-hero-wrapper .hero-left-content-wrap {
    padding-left: max(var(--site-content-gutter), calc((100% - var(--home-content-max)) / 2));
    padding-right: max(var(--site-content-gutter), calc((100% - var(--home-content-max)) / 2));
}

body:not(.page-product) #capabilities .section-header,
body:not(.page-product) #solutions .section-header,
body:not(.page-product) #why-nexreach .section-header {
    align-items: flex-start !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
}

body:not(.page-product) #capabilities .section-header h2,
body:not(.page-product) #capabilities .section-header p,
body:not(.page-product) #solutions .section-header h2,
body:not(.page-product) #solutions .section-header p,
body:not(.page-product) #why-nexreach .section-header h2,
body:not(.page-product) #why-nexreach .section-header p {
    text-align: left !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track,
body:not(.page-product) #why-nexreach .bento-grid {
    padding-left: max(var(--site-content-gutter), calc((100vw - var(--home-content-max)) / 2));
    padding-right: max(var(--site-content-gutter), calc((100vw - var(--home-content-max)) / 2));
    scroll-padding-inline: max(var(--site-content-gutter), calc((100vw - var(--home-content-max)) / 2));
}

body.page-product .product-split-row.reverse {
    direction: ltr;
}

@media (max-width: 768px) {
    body:not(.page-product) #why-nexreach .why-carousel-track,
    body:not(.page-product) #why-nexreach .bento-grid {
        padding-left: var(--site-content-gutter);
        padding-right: var(--site-content-gutter);
        scroll-padding-inline: var(--site-content-gutter);
    }
}

/* Who We Serve: fixed copy-left, artwork-right cards with no hover dependency. */
body:not(.page-product) #solutions .bento-scenarios-layout {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    height: 578px !important;
}

body:not(.page-product) #solutions .bento-sc-middle-row {
    display: contents !important;
}

body:not(.page-product) #solutions .bento-sc-top-wide,
body:not(.page-product) #solutions .bento-sc-mid-card,
body:not(.page-product) #solutions .bento-sc-bottom-wide {
    grid-column: auto !important;
    grid-row: auto !important;
}

body:not(.page-product) #solutions .bento-sc-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) clamp(150px, 38%, 210px) !important;
    grid-template-rows: minmax(0, 1fr) !important;
    align-items: center !important;
    gap: clamp(18px, 2vw, 30px) !important;
    min-width: 0;
    min-height: 0 !important;
    height: 100% !important;
    padding: clamp(24px, 2.2vw, 34px) !important;
    background: #ffffff !important;
    border: 1px solid rgba(16, 90, 115, 0.12) !important;
    border-radius: 26px !important;
    box-shadow: none !important;
    color: #105a73 !important;
    transform: none !important;
}

body:not(.page-product) #solutions .bento-sc-card-inner,
body:not(.page-product) #solutions .bento-sc-content-left,
body:not(.page-product) #solutions .bento-sc-content-right {
    grid-column: 1;
    grid-row: 1;
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    align-self: center;
    position: relative;
    z-index: 2;
    text-align: left !important;
}

body:not(.page-product) #solutions .scenario-card-media,
body:not(.page-product) #solutions .bento-sc-bottom-wide .scenario-card-media {
    position: relative !important;
    inset: auto !important;
    grid-column: 2;
    grid-row: 1;
    width: 100% !important;
    height: 100% !important;
    min-height: 0;
    border-radius: 20px !important;
    background: #f7fafb;
    opacity: 1 !important;
    overflow: hidden;
    transform: none !important;
}

body:not(.page-product) #solutions .scenario-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
}

body:not(.page-product) #solutions .bento-sc-card h3 {
    color: #105a73 !important;
}

body:not(.page-product) #solutions .bento-sc-card p {
    color: rgba(16, 58, 73, 0.68) !important;
}

/* Align each card's icon, title, and copy to the same internal baseline. */
body:not(.page-product) #solutions .bento-sc-card-inner,
body:not(.page-product) #solutions .bento-sc-content-left,
body:not(.page-product) #solutions .bento-sc-content-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    align-self: stretch !important;
}

body:not(.page-product) #solutions .bento-sc-card .bento-sc-icon-badge {
    display: flex !important;
    width: 48px;
    height: 48px;
    margin: 0 0 18px !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    background: #105a73 !important;
    border: 0 !important;
    border-radius: 50% !important;
    color: #ffffff !important;
}

body:not(.page-product) #solutions .bento-sc-card h3 {
    min-height: 32px;
    margin: 0 0 12px !important;
    line-height: 1.15;
}

body:not(.page-product) #solutions .bento-sc-card p {
    min-height: 48px;
    margin: 0 !important;
    line-height: 1.5;
}

@media (max-width: 900px) {
    body:not(.page-product) #solutions .bento-scenarios-layout {
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
        height: auto !important;
    }

    body:not(.page-product) #solutions .bento-sc-card {
        min-height: 280px !important;
    }
}

@media (max-width: 560px) {
    body:not(.page-product) #solutions .bento-sc-card {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto minmax(150px, 1fr) !important;
        min-height: 430px !important;
        gap: 20px !important;
        padding: 24px !important;
    }

    body:not(.page-product) #solutions .bento-sc-card-inner,
    body:not(.page-product) #solutions .bento-sc-content-left,
    body:not(.page-product) #solutions .bento-sc-content-right {
        grid-column: 1;
        grid-row: 1;
    }

    body:not(.page-product) #solutions .scenario-card-media,
    body:not(.page-product) #solutions .bento-sc-bottom-wide .scenario-card-media {
        grid-column: 1;
        grid-row: 2;
        min-height: 150px;
    }
}

/* Compact desktop viewport: keep every homepage module inside one screen. */
@media (min-width: 1024px) and (min-height: 700px) and (max-height: 849px) {
    :root {
        --home-section-space: 32px;
    }

    body:not(.page-product) #capabilities,
    body:not(.page-product) #solutions,
    body:not(.page-product) #why-nexreach {
        height: 100svh;
        min-height: 100svh;
        padding-top: var(--home-section-space) !important;
        padding-bottom: var(--home-section-space) !important;
        overflow: hidden;
    }

    body:not(.page-product) #capabilities .section-header,
    body:not(.page-product) #solutions .section-header,
    body:not(.page-product) #why-nexreach .section-header {
        margin-bottom: 24px !important;
    }

    body:not(.page-product) #capabilities .services-accordion-container {
        height: clamp(430px, calc(100svh - 167px), 520px) !important;
    }

    body:not(.page-product) #solutions .bento-scenarios-layout {
        height: clamp(420px, calc(100svh - 248px), 578px) !important;
    }

    body:not(.page-product) #solutions .bento-sc-card {
        padding: 20px !important;
        gap: 18px !important;
    }

    body:not(.page-product) #solutions .bento-sc-icon-badge {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }

    body:not(.page-product) #solutions .bento-sc-card h3 {
        margin-bottom: 6px;
        font-size: 22px;
    }

    body:not(.page-product) #solutions .bento-sc-card p {
        font-size: 13px;
        line-height: 1.45;
    }

    body:not(.page-product) #why-nexreach .bento-box,
    body:not(.page-product) #why-nexreach .bento-box:nth-child(n) {
        height: clamp(360px, calc(100svh - 332px), 430px) !important;
    }
}

/* Smooth one-time section entrances without changing layout or content. */
html.section-motion-ready .section-motion-item {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 480ms cubic-bezier(0.23, 1, 0.32, 1),
        filter 480ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 560ms cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: var(--section-motion-delay, 0ms);
    will-change: opacity, filter, transform;
}

html.section-motion-ready .section-motion-visible .section-motion-item {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
}

html.section-motion-ready .section-motion-item.section-motion-surface {
    filter: none;
    transition:
        opacity 440ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 520ms cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: var(--section-motion-delay, 0ms);
    will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
    html.section-motion-ready .section-motion-item,
    html.section-motion-ready .section-motion-visible .section-motion-item {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        transition: opacity 160ms ease !important;
        transition-delay: 0ms !important;
        will-change: auto;
    }
}

/* Homepage Hero: unmasked artwork with desktop copy anchored bottom left. */
body:not(.page-product) .hero-vignette-overlay {
    display: none !important;
    background: none !important;
}

@media (min-width: 1024px) {
    body:not(.page-product) .hero-left-content-wrap {
        align-items: flex-end !important;
        justify-content: flex-start !important;
        padding-top: clamp(110px, 14svh, 150px);
        padding-bottom: clamp(42px, 6svh, 68px);
    }

    body:not(.page-product) .hero-left-content {
        width: min(100%, 590px);
        max-width: min(590px, 46vw);
        margin: 0;
        align-items: flex-start !important;
        text-align: left !important;
    }

    body:not(.page-product) .hero-title-main {
        width: 100%;
        max-width: 590px;
        margin-bottom: clamp(46px, calc(2.2svh + 30px), 54px);
        font-size: clamp(46px, 4vw, 60px);
        text-align: left !important;
    }

    body:not(.page-product) .hero-desc-main {
        max-width: 510px;
        margin-bottom: clamp(16px, 2.2svh, 24px);
        align-items: flex-start !important;
        text-align: left !important;
    }

    body:not(.page-product) .hero-feature-line {
        align-self: flex-start;
        text-align: left !important;
    }
}

/* Homepage Hero: alternating video and image background carousel. */
body:not(.page-product) .hero-bg-layer {
    isolation: isolate;
}

body:not(.page-product) .hero-backdrop-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
    transform: scale(1);
    transform-origin: center;
}

body:not(.page-product) .hero-backdrop-video {
    z-index: 1;
    opacity: 0;
    transition: opacity 900ms ease, transform 520ms cubic-bezier(0.23, 1, 0.32, 1);
}

body:not(.page-product) .hero-backdrop-video.is-active {
    opacity: 1;
}

body:not(.page-product) .hero-backdrop-img {
    position: absolute;
    inset: 0;
}

body:not(.page-product) .hero-vignette-overlay {
    z-index: 3;
    display: block !important;
    background: linear-gradient(90deg, rgba(7, 25, 34, 0.52) 0%, rgba(7, 25, 34, 0.18) 42%, rgba(7, 25, 34, 0) 76%) !important;
}

/* Hero carousel: video and image slides. */
body:not(.page-product) .hero-backdrop-slide {
    z-index: 1;
    opacity: 0;
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 520ms cubic-bezier(0.23, 1, 0.32, 1);
}

body:not(.page-product) .hero-backdrop-slide.is-active {
    opacity: 1;
}

body:not(.page-product) .hero-carousel-controls {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: clamp(24px, 4vw, 56px);
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

body:not(.page-product) .hero-carousel-control {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    cursor: pointer;
    transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease, -webkit-backdrop-filter 220ms ease, transform 220ms ease;
}

body:not(.page-product) .hero-carousel-control:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(7, 25, 34, 0.34);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    transform: translateY(14px);
}

body:not(.page-product) .hero-carousel-control::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    opacity: 1;
    transform: translate(-50%, calc(-50% + 14px));
    transition: opacity 220ms ease;
}

body:not(.page-product) .hero-carousel-prev::after {
    left: calc(50% + 9px);
}

body:not(.page-product) .hero-carousel-next::after {
    left: calc(50% - 9px);
}

body:not(.page-product) .hero-carousel-control:active {
    transform: translateY(14px) scale(0.94);
}

body:not(.page-product) .hero-carousel-control:focus-visible {
    outline: 2px solid #ece980;
    outline-offset: 3px;
    transform: translateY(14px);
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(7, 25, 34, 0.34);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
}

body:not(.page-product) .hero-carousel-control:hover::after,
body:not(.page-product) .hero-carousel-control:focus-visible::after {
    opacity: 0;
}

body:not(.page-product) .hero-carousel-control svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: scale(0.65);
    transition: opacity 220ms ease, transform 220ms ease;
}

body:not(.page-product) .hero-carousel-control:hover svg,
body:not(.page-product) .hero-carousel-control:focus-visible svg {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    body:not(.page-product) .hero-backdrop-video {
        object-position: center center;
    }

    body:not(.page-product) .hero-vignette-overlay {
        background: linear-gradient(180deg, rgba(7, 25, 34, 0.08), rgba(7, 25, 34, 0.22)) !important;
    }

    body:not(.page-product) .hero-carousel-controls {
        display: none !important;
        top: 20px;
        right: 20px;
        bottom: auto;
    }

    body:not(.page-product) .hero-carousel-control {
        width: 42px;
        height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body:not(.page-product) .hero-backdrop-video {
        transition: none !important;
    }

    body:not(.page-product) .hero-backdrop-video:not(.is-active) {
        display: none;
    }

    body:not(.page-product) .hero-carousel-controls {
        display: none;
    }
}

/* Default navigation surface: match the scrolled white frosted state. */
body:not(.page-scrolled):not(.page-product) .main-fixed-header,
body:not(.page-scrolled).page-product header {
    background: rgba(255, 255, 255, 0.90) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-bottom: 1px solid rgba(16, 90, 115, 0.10) !important;
}

body:not(.page-scrolled):not(.page-product) .main-fixed-header .nav-link,
body:not(.page-scrolled).page-product header .nav-link {
    color: #105a73 !important;
    text-shadow: none;
}

body:not(.page-scrolled):not(.page-product) .main-fixed-header .lang-toggle,
body:not(.page-scrolled).page-product header .lang-toggle {
    color: #105a73 !important;
    text-shadow: none;
}

body:not(.page-scrolled):not(.page-product) .main-fixed-header .logo-svg,
body:not(.page-scrolled).page-product header .logo-svg {
    filter: none !important;
}

/* Mobile homepage keeps the navigation visible above the Hero. */
@media (max-width: 768px) {
    body:not(.page-product) .main-fixed-header {
        background: rgba(255, 255, 255, 0.90) !important;
        backdrop-filter: blur(24px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
        border-bottom: 1px solid rgba(16, 90, 115, 0.10) !important;
        box-shadow: 0 8px 30px rgba(16, 90, 115, 0.10) !important;
    }

    body:not(.page-product) .main-fixed-header .logo-svg {
        filter: none !important;
    }

    body:not(.page-product) .main-fixed-header .nav-link,
    body:not(.page-product) .main-fixed-header .lang-toggle,
    body:not(.page-product) .main-fixed-header .mobile-menu-toggle {
        color: #105a73 !important;
    }

    body:not(.page-product) .hero-wrapper-section {
        height: calc(100svh - 77px) !important;
        min-height: calc(100svh - 77px) !important;
        margin-top: 77px !important;
    }
}

/* Keep the mobile Hero copy on the same right-aligned Footer artwork. */
@media (max-width: 768px) {
    body:not(.page-product) .hero-banner-card {
        background:
            linear-gradient(180deg, rgba(16, 90, 115, 0.12), rgba(16, 90, 115, 0.32)),
        url('home/footer/footer-background.jpg') right center / cover no-repeat !important;
    }
}

/* Keep the Chinese Why NEXREACH card titles on one line. */
body:not(.page-product).lang-cn #why-nexreach .bento-box h3[lang="zh"] {
    white-space: nowrap;
}

/* Mobile sections clear the fixed navigation and center content when space allows. */
@media (max-width: 768px) {
    body:not(.page-product) #capabilities,
    body:not(.page-product) #solutions,
    body:not(.page-product) #why-nexreach,
    body:not(.page-product) .about-us-section {
        --mobile-section-space: clamp(96px, 12svh, 112px);
        height: auto !important;
        min-height: 100svh !important;
        padding-top: var(--mobile-section-space) !important;
        padding-bottom: var(--mobile-section-space) !important;
        align-items: stretch !important;
        overflow: visible !important;
    }

    body:not(.page-product) #capabilities,
    body:not(.page-product) #solutions,
    body:not(.page-product) #why-nexreach {
        display: flex !important;
        flex-direction: column !important;
    }

    body:not(.page-product) #capabilities > .container,
    body:not(.page-product) #solutions > .container,
    body:not(.page-product) #why-nexreach > .container,
    body:not(.page-product) .about-us-section > .about-us-container {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    /* What We Do: guarantee all three cards are fully visible on small screens. */
    body:not(.page-product) #capabilities {
        display: block !important;
        min-height: auto !important;
        height: auto !important;
        align-items: flex-start !important;
        padding-top: clamp(84px, 12svh, 112px) !important;
        padding-bottom: clamp(40px, 8svh, 64px) !important;
        overflow: visible !important;
    }

    body:not(.page-product) #capabilities > .container {
        margin-left: auto !important;
        margin-right: auto !important;
        height: auto !important;
    }

    body:not(.page-product) #capabilities .services-accordion-container {
        height: auto !important;
    }

    /* Keep Why NEXREACH and About visually adjacent on mobile. */
    body:not(.page-product) #why-nexreach {
        min-height: 0 !important;
        padding-top: clamp(84px, 12svh, 112px) !important;
        padding-bottom: clamp(40px, 8svh, 64px) !important;
    }

    body:not(.page-product) #why-nexreach + #about {
        margin-top: 0 !important;
        padding-top: clamp(40px, 8svh, 64px) !important;
    }

    /* Card switching stays button/auto-driven on mobile; page gestures stay vertical. */
    html,
    body {
        overflow-x: hidden !important;
    }

    body:not(.page-product) #why-nexreach .why-carousel-track {
        overflow: hidden !important;
        touch-action: pan-y !important;
        scroll-snap-type: none !important;
    }
}

/* More Than Moving Money: reserve one shared title and copy row in every card. */
@media (min-width: 769px) {
    body:not(.page-product) #why-nexreach .bento-box > h3[lang="en"],
    body:not(.page-product) #why-nexreach .bento-box > h3[lang="zh"] {
        height: 76px;
        min-height: 76px;
        align-content: flex-start;
    }

    body:not(.page-product) #why-nexreach .bento-box > p[lang="en"],
    body:not(.page-product) #why-nexreach .bento-box > p[lang="zh"] {
        height: 96px;
        min-height: 96px;
        margin-bottom: 14px !important;
    }
}

@media (max-width: 768px) {
    body:not(.page-product) #why-nexreach .bento-box > h3[lang="en"],
    body:not(.page-product) #why-nexreach .bento-box > h3[lang="zh"] {
        height: 58px;
        min-height: 58px;
        align-content: flex-start;
    }

    body:not(.page-product) #why-nexreach .bento-box > p[lang="en"],
    body:not(.page-product) #why-nexreach .bento-box > p[lang="zh"] {
        height: 90px;
        min-height: 90px;
        margin-bottom: 14px !important;
    }
}

/* Short desktop viewports also need room below the fixed navigation. */
@media (min-width: 769px) and (max-height: 849px) {
    body:not(.page-product) #capabilities,
    body:not(.page-product) #solutions,
    body:not(.page-product) #why-nexreach {
        height: auto !important;
        min-height: 100svh !important;
        padding-top: 96px !important;
        padding-bottom: 72px !important;
        align-items: stretch !important;
        overflow: visible !important;
    }

    body:not(.page-product) #capabilities,
    body:not(.page-product) #solutions,
    body:not(.page-product) #why-nexreach {
        display: flex !important;
        flex-direction: column !important;
    }

    body:not(.page-product) #capabilities > .container,
    body:not(.page-product) #solutions > .container,
    body:not(.page-product) #why-nexreach > .container {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }
}

/* Restore continuous native page scrolling on the homepage. */
html.home-section-scroll,
html.home-section-scroll body {
    scroll-snap-type: none !important;
}

html.home-section-scroll body > section,
html.home-section-scroll body > footer {
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
}

/* Mobile Hero: keep the visual and the copy in separate, uncropped sections. */
@media (max-width: 768px) {
    body:not(.page-product) .hero-wrapper-section {
        height: auto !important;
        min-height: calc(100svh - 77px) !important;
        margin-top: 77px !important;
    }

    body:not(.page-product) .hero-banner-card {
        display: block !important;
        height: auto !important;
        min-height: calc(100svh - 77px) !important;
        overflow: visible !important;
        background:
            linear-gradient(180deg, rgba(16, 90, 115, 0.12), rgba(16, 90, 115, 0.36)),
        url('home/footer/footer-background.jpg') right center / cover no-repeat !important;
    }

    body:not(.page-product) .hero-bg-layer {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: clamp(300px, 46svh, 430px) !important;
        z-index: 1;
    }

    body:not(.page-product) .hero-backdrop-img {
        object-fit: cover !important;
        object-position: center center !important;
    }

    body:not(.page-product) .hero-vignette-overlay {
        display: none !important;
    }

    body:not(.page-product) .hero-left-content-wrap {
        height: auto !important;
        min-height: 0 !important;
        padding: clamp(40px, 6svh, 64px) 24px clamp(48px, 8svh, 80px) !important;
        align-items: flex-end !important;
        background:
            linear-gradient(180deg, rgba(16, 90, 115, 0.12), rgba(16, 90, 115, 0.36)),
        url('home/footer/footer-background.jpg') right center / cover no-repeat !important;
    }

    body:not(.page-product) .hero-left-content {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ============================================
   WHO WE SERVE — CLEAN 2x2 STATIC CARDS
   Flat light cards, yellow circular icon top-left,
   left-aligned title + copy, no right-side artwork.
   Matches the approved reference screenshot.
   ============================================ */
body:not(.page-product) #solutions .bento-scenarios-layout {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
    height: auto !important;
    min-height: 0 !important;
}

body:not(.page-product) #solutions .bento-sc-middle-row {
    display: contents !important;
}

body:not(.page-product) #solutions .bento-sc-top-wide,
body:not(.page-product) #solutions .bento-sc-mid-card,
body:not(.page-product) #solutions .bento-sc-bottom-wide {
    grid-column: auto !important;
    grid-row: auto !important;
}

body:not(.page-product) #solutions .bento-sc-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 0 !important;
    min-width: 0;
    min-height: 0 !important;
    height: auto !important;
    padding: clamp(26px, 2.4vw, 36px) !important;
    background: #f3f5f7 !important;
    border: 1px solid rgba(16, 90, 115, 0.08) !important;
    border-radius: 24px !important;
    box-shadow: none !important;
    color: #105a73 !important;
    transform: none !important;
    transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease !important;
}

body:not(.page-product) #solutions .bento-sc-card:hover {
    transform: translateY(-3px) !important;
    background: #ffffff !important;
    border-color: rgba(16, 90, 115, 0.16) !important;
    box-shadow: 0 16px 36px rgba(16, 58, 73, 0.10) !important;
}

/* Hide the right-side artwork media on every card. */
body:not(.page-product) #solutions .bento-sc-bg-img-wrap,
body:not(.page-product) #solutions .scenario-card-media,
body:not(.page-product) #solutions .bento-sc-bottom-wide .scenario-card-media {
    display: none !important;
}

body:not(.page-product) #solutions .bento-sc-card-inner,
body:not(.page-product) #solutions .bento-sc-content-left,
body:not(.page-product) #solutions .bento-sc-content-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    align-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    text-align: left !important;
    position: relative;
    z-index: 2;
}

/* Solid brand-blue circular icon, no border. */
body:not(.page-product) #solutions .bento-sc-card .bento-sc-icon-badge {
    display: flex !important;
    width: 56px;
    height: 56px;
    margin: 0 0 24px !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
    background: #105a73 !important;
    border: 0 !important;
    border-radius: 50% !important;
    color: #ffffff !important;
}

body:not(.page-product) #solutions .bento-sc-card h3 {
    color: #105a73 !important;
    margin: 0 0 12px !important;
    font-size: clamp(22px, 1.8vw, 26px) !important;
    line-height: 1.15 !important;
    font-weight: 600 !important;
    min-height: 30px;
}

body:not(.page-product) #solutions .bento-sc-card p {
    color: rgba(16, 58, 73, 0.62) !important;
    margin: 0 !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    font-weight: 200 !important;
    min-height: 48px;
}

/* Homepage default navigation: transparent over the hero, with white
   controls for contrast. The existing white frosted/dark-text state remains
   active once .page-scrolled is added. */
body:not(.page-scrolled):not(.page-product) .main-fixed-header {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body:not(.page-scrolled):not(.page-product) .main-fixed-header .nav-link,
body:not(.page-scrolled):not(.page-product) .main-fixed-header .lang-toggle,
body:not(.page-scrolled):not(.page-product) .main-fixed-header .mobile-menu-toggle {
    color: #ffffff !important;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.48);
}

body:not(.page-scrolled):not(.page-product) .main-fixed-header .logo-svg {
    filter: brightness(0) invert(1) drop-shadow(0 1px 10px rgba(0, 0, 0, 0.32)) !important;
}

body:not(.page-scrolled):not(.page-product) .main-fixed-header .lang-toggle::after {
    background: rgba(255, 255, 255, 0.86) !important;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.30);
}

body:not(.page-scrolled):not(.page-product) .main-fixed-header .mobile-menu-toggle span {
    background: #ffffff !important;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

@media (max-width: 900px) {
    body:not(.page-product) #solutions .bento-scenarios-layout {
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
        height: auto !important;
    }

    body:not(.page-product) #solutions .bento-sc-card {
        min-height: 0 !important;
        height: auto !important;
        padding: 26px !important;
    }

    body:not(.page-product) #solutions .bento-sc-card p {
        min-height: 0 !important;
    }
}

/* Mobile homepage experiment: let the transparent default navigation sit
   over the hero instead of reserving a 77px strip above it. */
@media (max-width: 768px) {
    body:not(.page-product) .hero-wrapper-section {
        margin-top: 0 !important;
        min-height: 100svh !important;
    }

    body:not(.page-product) .hero-banner-card {
        min-height: 100svh !important;
    }

    body:not(.page-scrolled):not(.page-product) .main-fixed-header {
        background: transparent !important;
        border-bottom-color: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* The expanded mobile menu remains a light glass sheet with dark links. */
    body:not(.page-scrolled):not(.page-product) .main-fixed-header.mobile-menu-open nav {
        background: rgba(255, 255, 255, 0.94) !important;
        border-color: rgba(16, 90, 115, 0.12) !important;
        backdrop-filter: blur(24px) saturate(160%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
    }

    body:not(.page-scrolled):not(.page-product) .main-fixed-header.mobile-menu-open .nav-link {
        color: #105a73 !important;
        text-shadow: none !important;
    }
}

/* Product page: three rounded service cards revealed in a sticky stack. */
body.page-product .product-stack-section {
    position: relative;
    background: #ffffff !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

body.page-product .product-stack-track {
    position: relative;
    height: 320svh;
    min-height: 2100px;
}

body.page-product .product-stack-stage {
    position: sticky;
    --product-nav-height: 84px;
    top: var(--product-nav-height);
    height: calc(100svh - var(--product-nav-height));
    min-height: 640px;
    padding: clamp(16px, 3vw, 44px);
    overflow: hidden;
    isolation: isolate;
}

body.page-product .product-stack-card {
    position: absolute;
    --stack-edge: clamp(16px, 3vw, 44px);
    --stack-gap: clamp(30px, 3.3vw, 48px);
    inset: var(--stack-edge);
    overflow: hidden;
    border-radius: clamp(22px, 2.4vw, 34px);
    background: #105a73;
    color: #ffffff;
    transform: translate3d(0, var(--card-y, 0%), 0) scale(var(--card-scale, 1));
    opacity: var(--card-opacity, 1);
    transform-origin: center bottom;
    will-change: transform, opacity;
    contain: layout paint;
    pointer-events: none;
}

body.page-product .product-stack-card.is-current {
    pointer-events: auto;
}

body.page-product .product-stack-card[data-card-index="1"],
body.page-product .product-stack-card[data-card-index="2"] {
    --card-y: 108%;
}

body.page-product .product-stack-card[data-card-index="1"] {
    top: calc(var(--stack-edge) + var(--stack-gap));
    right: var(--stack-edge);
    bottom: var(--stack-edge);
    left: var(--stack-edge);
}

body.page-product .product-stack-card[data-card-index="2"] {
    top: calc(var(--stack-edge) + var(--stack-gap) + var(--stack-gap));
    right: var(--stack-edge);
    bottom: var(--stack-edge);
    left: var(--stack-edge);
}

body.page-product .product-stack-card__image,
body.page-product .product-stack-card__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

body.page-product .product-stack-card__image {
    z-index: 0;
    object-fit: cover;
    object-position: center;
}

body.page-product .product-stack-card__veil {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7, 25, 34, 0.92) 0%, rgba(7, 25, 34, 0.66) 36%, rgba(7, 25, 34, 0.20) 76%, rgba(7, 25, 34, 0.08) 100%),
        linear-gradient(0deg, rgba(7, 25, 34, 0.58) 0%, rgba(7, 25, 34, 0) 46%);
}

body.page-product .product-stack-card__body {
    position: absolute;
    z-index: 2;
}

body.page-product .product-stack-card__body {
    left: clamp(24px, 5vw, 72px);
    bottom: clamp(34px, 6vw, 68px);
    width: min(620px, 56vw);
}

body.page-product .product-stack-card__body h2 {
    margin: 0 0 clamp(14px, 1.8vw, 24px);
    color: #ffffff !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: clamp(42px, 5.6vw, 82px);
    font-weight: 600 !important;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

body.page-product .product-stack-card__copy {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 300;
    line-height: 1.55;
}

@media (max-width: 768px) {
    body.page-product .product-stack-track {
        height: 330svh;
        min-height: 1980px;
    }

    body.page-product .product-stack-stage {
        --product-nav-height: 76px;
        top: var(--product-nav-height);
        height: calc(100svh - var(--product-nav-height));
        min-height: 620px;
        padding: 14px;
    }

    body.page-product .product-stack-card {
        --stack-edge: 14px;
        --stack-gap: 30px;
        inset: var(--stack-edge);
        border-radius: 22px;
    }

    body.page-product .product-stack-card[data-card-index="1"] {
        top: calc(var(--stack-edge) + var(--stack-gap));
        right: var(--stack-edge);
        bottom: var(--stack-edge);
        left: var(--stack-edge);
    }

    body.page-product .product-stack-card[data-card-index="2"] {
        top: calc(var(--stack-edge) + var(--stack-gap) + var(--stack-gap));
        right: var(--stack-edge);
        bottom: var(--stack-edge);
        left: var(--stack-edge);
    }

    body.page-product .product-stack-card__body {
        left: 22px;
        right: 22px;
        bottom: 30px;
        width: auto;
    }

    body.page-product .product-stack-card__body h2 {
        font-size: clamp(38px, 11vw, 58px);
    }

    body.page-product .product-stack-card__copy {
        font-size: 14px;
        line-height: 1.48;
    }

}

/* Let the final rounded card module meet the About section with no blank strip. */
body.page-product .product-stack-section + .about-us-section {
    margin-top: 0 !important;
}

/* Product Hero comparison: fill exactly one viewport from edge to edge. */
body.page-product .product-hero-wrapper {
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: none !important;
}

/* Product Hero: staged copy entrance on initial page appearance. */
@keyframes product-hero-copy-in {
    from {
        opacity: 0;
        filter: blur(8px);
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0);
    }
}

body.page-product .product-banner-left .product-title-main {
    animation: product-hero-copy-in 760ms cubic-bezier(0.23, 1, 0.32, 1) 100ms both;
}

body.page-product .product-banner-left .product-desc-main {
    animation: product-hero-copy-in 680ms cubic-bezier(0.23, 1, 0.32, 1) 330ms both;
}

body.page-product .product-banner-left .product-desc-main:nth-child(even) {
    animation-delay: 470ms;
}

@media (prefers-reduced-motion: reduce) {
    body.page-product .product-banner-left .product-title-main,
    body.page-product .product-banner-left .product-desc-main {
        animation: none;
        opacity: 1;
        filter: none;
        transform: none;
    }

    body.page-product .product-stack-track {
        height: auto;
        min-height: 0;
    }

    body.page-product .product-stack-stage {
        position: relative;
        top: auto;
        height: auto;
        min-height: 0;
        padding: 24px;
        overflow: visible;
    }

    body.page-product .product-stack-card,
    body.page-product .product-stack-card[data-card-index="1"],
    body.page-product .product-stack-card[data-card-index="2"] {
        position: relative;
        inset: auto;
        min-height: 600px;
        margin-bottom: 18px;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Product services: mobile uses a normal single-column flow. */
@media (max-width: 768px) {
    body.page-product .product-stack-track {
        height: auto !important;
        min-height: 0 !important;
    }

    body.page-product .product-stack-stage {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 24px !important;
        overflow: visible !important;
    }

    body.page-product .product-stack-card,
    body.page-product .product-stack-card[data-card-index="1"],
    body.page-product .product-stack-card[data-card-index="2"] {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        inset: auto !important;
        min-height: 600px !important;
        margin: 0 0 18px !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        will-change: auto !important;
    }

    body.page-product .product-stack-card:last-child {
        margin-bottom: 0 !important;
    }
}

/* Product Hero trial: bottom-aligned copy with no vignette mask. */
body.page-product .product-hero-wrapper .hero-left-content-wrap {
    align-items: flex-end;
    padding-top: 84px;
    padding-bottom: clamp(48px, 8svh, 96px);
}

body.page-product .product-vignette-overlay {
    display: none !important;
    background: none !important;
}

body.page-product .product-backdrop-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Product Hero: first video starts active; videos crossfade and repeat in order. */
body.page-product .product-hero-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 700ms ease;
}

body.page-product .product-hero-video.is-active {
    opacity: 1;
}

/* Product navigation: transparent white state over the Hero, frosted state after scroll. */
body.page-product:not(.page-scrolled) header,
body.page-product header:not(.header-scrolled) {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
}

body.page-product:not(.page-scrolled) header .logo-svg,
body.page-product header:not(.header-scrolled) .logo-svg {
    filter: brightness(0) invert(1) !important;
}

body.page-product:not(.page-scrolled) header .nav-link,
body.page-product header:not(.header-scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.page-product:not(.page-scrolled) header .lang-toggle,
body.page-product header:not(.header-scrolled) .lang-toggle {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
    color: #ffffff !important;
}

body.page-product.page-scrolled header,
body.page-product header.header-scrolled {
    background: rgba(255, 255, 255, 0.90) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-bottom-color: rgba(16, 90, 115, 0.10) !important;
    box-shadow: 0 8px 30px rgba(16, 90, 115, 0.10) !important;
}

body.page-product.page-scrolled header .logo-svg,
body.page-product header.header-scrolled .logo-svg {
    filter: none !important;
}

body.page-product.page-scrolled header .nav-link,
body.page-product header.header-scrolled .nav-link {
    color: #105a73 !important;
}

body.page-product.page-scrolled header .lang-toggle,
body.page-product header.header-scrolled .lang-toggle {
    background: rgba(16, 90, 115, 0.07) !important;
    border-color: rgba(16, 90, 115, 0.18) !important;
    color: #105a73 !important;
}

body.page-product header .nav-actions {
    background: none !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

body.page-product header #lang-toggle-btn {
    all: unset !important;
    box-sizing: border-box !important;
    position: relative !important;
    display: inline-flex !important;
    min-width: 44px !important;
    min-height: 44px !important;
    padding: 8px 2px !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 0.05em !important;
    cursor: pointer !important;
}

body.page-product.page-scrolled header #lang-toggle-btn,
body.page-product header.header-scrolled #lang-toggle-btn {
    color: #105a73 !important;
}

body.page-product header #lang-toggle-btn::before {
    content: none !important;
}

body.page-product header #lang-toggle-btn::after {
    background: currentColor !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* ============================================
   WHO WE SERVE — FOOTER-BACKED HOVER CARDS
   ============================================ */
body:not(.page-product) #solutions {
    position: relative;
    isolation: isolate;
    background: #29849d !important;
}

body:not(.page-product) #solutions > .container {
    position: relative;
    z-index: 1;
}

body:not(.page-product) #solutions .section-header {
    position: relative;
    z-index: 2;
    align-items: center !important;
    max-width: 900px;
    margin-bottom: 56px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
}

body:not(.page-product) #solutions .section-header h2,
body:not(.page-product) #solutions .section-header p {
    color: #ffffff !important;
    text-align: center !important;
    text-shadow: 0 2px 24px rgba(1, 18, 27, 0.26);
}

body:not(.page-product) #solutions .section-header p {
    color: rgba(255, 255, 255, 0.78) !important;
}

body:not(.page-product) #solutions .section-eyebrow-pill {
    color: rgba(255, 255, 255, 0.90) !important;
    background: rgba(255, 255, 255, 0.10) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
}

body:not(.page-product) #solutions .scenario-toggle-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
    gap: clamp(14px, 1.4vw, 22px) !important;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
}

body:not(.page-product) #solutions .scenario-toggle-card {
    position: relative;
    isolation: isolate;
    min-width: 0;
    height: clamp(420px, 58svh, 560px) !important;
    padding: clamp(24px, 2vw, 32px);
    overflow: hidden;
    background: #105a73 url('home/business-scenarios/scenario-fallback.jpg') center / cover no-repeat;
    border: none;
    border-radius: 22px;
    color: #103a49;
    box-shadow: 0 18px 48px rgba(2, 24, 35, 0.16);
    outline: none;
    transition: box-shadow 220ms ease;
}

body:not(.page-product) #solutions .scenario-toggle-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    z-index: 1;
    height: 62%;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(16, 58, 73, 0.86) 0%,
        rgba(16, 58, 73, 0.40) 48%,
        rgba(16, 58, 73, 0) 100%
    );
}

body:not(.page-product) #solutions .scenario-toggle-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transform: scale(1.01);
    transition: opacity 220ms cubic-bezier(0.23, 1, 0.32, 1), transform 260ms cubic-bezier(0.23, 1, 0.32, 1);
}

body:not(.page-product) #solutions .scenario-toggle-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    text-align: left;
}

body:not(.page-product) #solutions .scenario-toggle-copy h3 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: clamp(25px, 2vw, 32px) !important;
    font-weight: 500 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 18px rgba(1, 18, 27, 0.34);
}

body:not(.page-product) #solutions .scenario-toggle-copy p {
    max-width: 290px;
    margin: 24px 0 0 !important;
    color: rgba(255, 255, 255, 0.90) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    text-shadow: 0 2px 16px rgba(1, 18, 27, 0.26);
    transition: opacity 180ms cubic-bezier(0.23, 1, 0.32, 1), transform 220ms cubic-bezier(0.23, 1, 0.32, 1), visibility 0s linear 220ms;
}

@media (hover: hover) and (pointer: fine) {
    body:not(.page-product) #solutions .scenario-toggle-card {
        cursor: pointer;
    }

    body:not(.page-product) #solutions .scenario-toggle-card:hover,
    body:not(.page-product) #solutions .scenario-toggle-card:focus-visible {
        box-shadow: 0 22px 54px rgba(2, 24, 35, 0.26);
    }

    body:not(.page-product) #solutions .scenario-toggle-card:hover .scenario-toggle-image,
    body:not(.page-product) #solutions .scenario-toggle-card:focus-visible .scenario-toggle-image {
        opacity: 0;
        transform: scale(1.035);
    }

    body:not(.page-product) #solutions .scenario-toggle-card:hover .scenario-toggle-copy p,
    body:not(.page-product) #solutions .scenario-toggle-card:focus-visible .scenario-toggle-copy p {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition-delay: 40ms, 40ms, 0s;
    }
}

@media (hover: none), (pointer: coarse) {
    body:not(.page-product) #solutions .scenario-toggle-card::before {
        height: 62%;
        background: linear-gradient(
            180deg,
            rgba(16, 58, 73, 0.86) 0%,
            rgba(16, 58, 73, 0.40) 48%,
            rgba(16, 58, 73, 0) 100%
        );
    }

    body:not(.page-product) #solutions .scenario-toggle-image {
        opacity: 1;
        transition: opacity 220ms cubic-bezier(0.23, 1, 0.32, 1), transform 260ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    body:not(.page-product) #solutions .scenario-toggle-copy p {
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
    }

    body:not(.page-product) #solutions .scenario-toggle-card:focus,
    body:not(.page-product) #solutions .scenario-toggle-card:focus-within,
    body:not(.page-product) #solutions .scenario-toggle-card.is-tapped .scenario-toggle-image {
        opacity: 0;
        transform: scale(1.035);
    }

    body:not(.page-product) #solutions .scenario-toggle-card:focus .scenario-toggle-copy p,
    body:not(.page-product) #solutions .scenario-toggle-card:focus-within .scenario-toggle-copy p,
    body:not(.page-product) #solutions .scenario-toggle-card.is-tapped .scenario-toggle-copy p {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: opacity 180ms cubic-bezier(0.23, 1, 0.32, 1), transform 220ms cubic-bezier(0.23, 1, 0.32, 1), visibility 0s linear 0s;
    }
}

@media (max-width: 1100px) {
    body:not(.page-product) #solutions {
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    body:not(.page-product) #solutions .scenario-toggle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body:not(.page-product) #solutions .scenario-toggle-card {
        height: 440px !important;
    }
}

@media (max-width: 640px) {
    body:not(.page-product) #solutions .section-header {
        align-items: flex-start !important;
        margin-bottom: 38px !important;
        text-align: left !important;
    }

    body:not(.page-product) #solutions .section-header h2,
    body:not(.page-product) #solutions .section-header p {
        text-align: left !important;
    }

    body:not(.page-product) #solutions .section-header h2 {
        font-size: 32px !important;
    }

    body:not(.page-product) #solutions .scenario-toggle-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    body:not(.page-product) #solutions .scenario-toggle-card {
        height: 460px !important;
        border-radius: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body:not(.page-product) #solutions .scenario-toggle-image,
    body:not(.page-product) #solutions .scenario-toggle-copy p {
        transition: none !important;
    }
}

/* Solutions entrance: let the heading settle before the four cards arrive. */
html.section-motion-ready #solutions .scenario-toggle-card {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 360ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

html.section-motion-ready #solutions.solutions-entrance-started .scenario-toggle-grid {
    opacity: 1;
    transform: none;
    transition: none;
}

html.section-motion-ready #solutions.solutions-entrance-started .section-header > .section-motion-item {
    opacity: 1;
    filter: none;
    transform: none;
}

html.section-motion-ready #solutions.solutions-entrance-started .scenario-toggle-card {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

html.section-motion-ready #solutions.solutions-entrance-started .scenario-toggle-card:nth-child(1) {
    transition-delay: 140ms;
}

html.section-motion-ready #solutions.solutions-entrance-started .scenario-toggle-card:nth-child(2) {
    transition-delay: 560ms;
}

html.section-motion-ready #solutions.solutions-entrance-started .scenario-toggle-card:nth-child(3) {
    transition-delay: 980ms;
}

html.section-motion-ready #solutions.solutions-entrance-started .scenario-toggle-card:nth-child(4) {
    transition-delay: 1400ms;
}

@media (prefers-reduced-motion: reduce) {
    html.section-motion-ready #solutions .scenario-toggle-card,
    html.section-motion-ready #solutions.solutions-entrance-started .scenario-toggle-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* What We Do entrance: reveal the heading and cards as one continuous sequence. */
html.section-motion-ready #capabilities .service-acc-card {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 400ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 440ms cubic-bezier(0.23, 1, 0.32, 1);
}

html.section-motion-ready #capabilities.capabilities-entrance-started .services-accordion-container {
    opacity: 1;
    transform: none;
    transition: none;
}

html.section-motion-ready #capabilities.capabilities-entrance-started .section-header > .section-motion-item {
    opacity: 1;
    filter: none;
    transform: none;
}

html.section-motion-ready #capabilities.capabilities-entrance-started .service-acc-card {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

html.section-motion-ready #capabilities.capabilities-entrance-started .service-acc-card:nth-child(1) {
    --cap-card-entrance-delay: 120ms;
}

html.section-motion-ready #capabilities.capabilities-entrance-started .service-acc-card:nth-child(2) {
    --cap-card-entrance-delay: 500ms;
}

html.section-motion-ready #capabilities.capabilities-entrance-started .service-acc-card:nth-child(3) {
    --cap-card-entrance-delay: 880ms;
}

@media (prefers-reduced-motion: reduce) {
    html.section-motion-ready #capabilities .service-acc-card,
    html.section-motion-ready #capabilities.capabilities-entrance-started .service-acc-card {
        --cap-card-entrance-delay: 0ms;
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Why NEXREACH entrance: title first, then the four capability cards. */
html.section-motion-ready #why-nexreach .bento-box {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 400ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 440ms cubic-bezier(0.23, 1, 0.32, 1);
}

html.section-motion-ready #why-nexreach.why-entrance-started .why-carousel-shell {
    opacity: 1;
    transform: none;
    transition: none;
}

html.section-motion-ready #why-nexreach.why-entrance-started .section-header > .section-motion-item {
    opacity: 1;
    filter: none;
    transform: none;
}

html.section-motion-ready #why-nexreach.why-entrance-started .bento-box {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

html.section-motion-ready #why-nexreach.why-entrance-started .bento-box:nth-child(1) {
    transition-delay: 120ms;
}

html.section-motion-ready #why-nexreach.why-entrance-started .bento-box:nth-child(2) {
    transition-delay: 500ms;
}

html.section-motion-ready #why-nexreach.why-entrance-started .bento-box:nth-child(3) {
    transition-delay: 880ms;
}

html.section-motion-ready #why-nexreach.why-entrance-started .bento-box:nth-child(4) {
    transition-delay: 1260ms;
}

@media (prefers-reduced-motion: reduce) {
    html.section-motion-ready #why-nexreach .bento-box,
    html.section-motion-ready #why-nexreach.why-entrance-started .bento-box {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* What We Do state change: clear the old card before sequencing the new copy. */
@media (min-width: 993px) {
    body:not(.page-product) #capabilities .service-acc-card,
    body:not(.page-product) #capabilities .service-acc-card.active {
        contain: layout;
        will-change: flex;
        transition:
            flex 680ms cubic-bezier(0.42, 0, 0.58, 1) 0ms,
            box-shadow 520ms cubic-bezier(0.42, 0, 0.58, 1) 0ms,
            opacity 360ms cubic-bezier(0.42, 0, 0.58, 1) var(--cap-card-entrance-delay, 0ms),
            transform 460ms cubic-bezier(0.42, 0, 0.58, 1) var(--cap-card-entrance-delay, 0ms);
    }

    body:not(.page-product) #capabilities .card-collapsed-label {
        transition: opacity 180ms cubic-bezier(0.23, 1, 0.32, 1) !important;
        will-change: opacity;
    }

    body:not(.page-product) #capabilities .service-acc-card.active .card-collapsed-label {
        opacity: 0;
        transition-delay: 0ms;
    }

    body:not(.page-product) #capabilities .card-expanded-body {
        opacity: 0 !important;
        transform: translate3d(0, 36px, 0) !important;
        transition:
            opacity 520ms cubic-bezier(0.42, 0, 0.58, 1),
            transform 640ms cubic-bezier(0.42, 0, 0.58, 1) !important;
        will-change: opacity, transform;
    }

    body:not(.page-product) #capabilities .service-acc-card.active .card-expanded-body {
        opacity: 1 !important;
        transform: none !important;
        transition-delay: 140ms !important;
        will-change: auto;
    }

    body:not(.page-product) #capabilities .card-expanded-body .card-left-content > * {
        opacity: 1;
        transform: none;
        transition: none;
    }

    body:not(.page-product) #capabilities .service-acc-card.active .card-left-content {
        position: relative;
        padding: 18px 22px 20px;
        border: 0 !important;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.14) !important;
        backdrop-filter: blur(32px) saturate(115%) !important;
        -webkit-backdrop-filter: blur(32px) saturate(115%) !important;
        color: rgba(255, 255, 255, 0.95) !important;
        transition: all 0.3s ease;
        box-shadow: none !important;
    }
}

/* Final carousel state layer: keep depth transforms above shared section motion. */
body:not(.page-product) #why-nexreach .why-carousel-track {
    perspective: none;
    transform-style: flat;
    padding-right: 0 !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track::after {
    content: "";
    flex: 0 0 calc(50% - 11px);
    display: block;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box {
    transform-style: flat;
    backface-visibility: visible;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-active {
    z-index: 3;
    opacity: 1;
    filter: none;
    transform: scale(1) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-next {
    z-index: 1;
    opacity: 0.82;
    filter: saturate(0.9) brightness(0.97);
    transform: scale(0.96) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-hidden {
    z-index: 0;
    opacity: 0.58;
    pointer-events: auto !important;
    filter: saturate(0.82) brightness(0.94);
    transform: scale(0.94) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-retreating-forward {
    z-index: 1;
    opacity: 0;
    filter: saturate(0.7) brightness(0.86) blur(1px);
    transform: translate3d(calc(-100% - 22px), 18px, -170px) rotateY(24deg) scale(0.76) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-retreating-backward {
    z-index: 1;
    opacity: 0;
    filter: saturate(0.7) brightness(0.86) blur(1px);
    transform: translate3d(calc(100% + 22px), 18px, -170px) rotateY(-24deg) scale(0.76) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-entering-backward {
    z-index: 2;
    opacity: 0;
    transform: translate3d(calc(-100% - 22px), 0, -80px) rotateY(18deg) scale(0.92) !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-next h3,
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-next p {
    opacity: 0.9;
    transform: translateY(0);
}
#capabilities .collections-bg-img,
#capabilities .bg-collapsed-img,
#capabilities .bg-expanded-img,
#capabilities .payouts-bg-img,
#capabilities .fx-bg-img {
    object-position: center top !important;
}

#capabilities .bg-expanded-img,
#capabilities .payouts-bg-img,
#capabilities .fx-bg-img {
    object-position: right top !important;
}

/* Keep the two visible More Than Moving Money cards at full color; no contrast reduction. */
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-active,
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-next,
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-ring-right {
    opacity: 1 !important;
    filter: none !important;
}

/* Other cards stay hidden so only the two large cards show. */
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-hidden,
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-ring-hidden,
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-ring-back,
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-retreating-forward,
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-retreating-backward,
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-entering-backward {
    opacity: 0 !important;
}

body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-active h3,
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-active p,
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-next h3,
body:not(.page-product) #why-nexreach .why-carousel-track .bento-box.is-next p {
    opacity: 1 !important;
    transform: none !important;
}

/* Global Settlement expanded card: top-aligned artwork. */
body:not(.page-product) #capabilities .payouts-bg-img {
    object-position: center top !important;
}

/* Product value statement below the hero banner. */
body.page-product .product-value-statement {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: clamp(160px, 22svh, 240px);
    padding: clamp(28px, 3.5svh, 44px) max(var(--site-content-gutter), calc((100% - var(--home-content-max)) / 2));
    box-sizing: border-box;
    background: linear-gradient(90deg, #1f7a93 0%, #105a73 100%) !important;
    background-color: #105a73 !important;
}

body.page-product .product-value-statement-inner {
    width: min(100%, 900px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(18px, 2.6svh, 30px);
    text-align: center;
}

body.page-product .product-value-line {
    max-width: 860px;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: clamp(17px, 1.65vw, 22px);
    font-weight: 300;
    line-height: 1.65;
    text-align: center;
    text-shadow: none;
}

/* Product stack: blue gradient covers the top half of the card stage. */
body.page-product .product-stack-section {
    position: relative;
    background: #ffffff !important;
}

body.page-product .product-stack-section::before {
    display: none;
}

body.page-product .product-stack-stage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(90deg, #1f7a93 0%, #105a73 100%);
}

@media (max-width: 768px) {
    body.page-product .product-value-statement {
        min-height: 140px;
        padding: 30px 24px;
    }

    body.page-product .product-value-line {
        font-size: 16px;
    }
}

/* Homepage: tighten the vertical gap between More Than Moving Money and About. */
@media (min-width: 993px) {
    body:not(.page-product) #why-nexreach {
        min-height: 0 !important;
        height: auto !important;
        padding-top: clamp(96px, 12svh, 120px) !important;
        padding-bottom: 24px !important;
    }
}

/* Homepage hero: match the Product page's bottom-left aligned title. */
@media (min-width: 769px) {
    body:not(.page-product) .hero-left-content-wrap {
        align-items: flex-end !important;
        justify-content: flex-start !important;
        padding-top: clamp(110px, 14svh, 150px) !important;
        padding-bottom: clamp(78px, calc(7svh + 30px), 114px) !important;
    }

    body:not(.page-product) .hero-left-content,
    body:not(.page-product) .hero-title-main {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    body:not(.page-product) .hero-title-main {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    body:not(.page-product) .hero-feature-line {
        align-self: flex-start !important;
    }
}

/* More Than Moving Money: narrow the supporting paragraph. */
body:not(.page-product) #why-nexreach .why-copy-panel .section-header p {
    max-width: 400px;
}

@media (max-width: 768px) {
    body:not(.page-product) {
        --site-content-gutter: 24px;
    }

    body:not(.page-product) .hero-left-content {
        align-items: flex-start !important;
        text-align: left !important;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }

    body:not(.page-product) .hero-title-main {
        text-align: center !important;
    }

    body:not(.page-product) .hero-feature-line {
        align-self: center !important;
    }
}

/* Slide-up title entrance (SlideUpText effect): characters rise from below. */
.slide-up-title {
    opacity: 1 !important;
}

.sut-word {
    display: inline-block;
    white-space: nowrap;
}

.sut-char-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
}

.sut-char {
    display: inline-block;
    transform: translateY(115%);
    opacity: 0;
    transition:
        transform 500ms cubic-bezier(0.625, 0.05, 0, 1),
        opacity 350ms ease;
    will-change: transform;
}

.slide-up-title.is-sut-visible .sut-char {
    transform: translateY(0);
    opacity: 1;
}

/* When the slide-up effect is active, disable the old whole-title animation. */
body.page-product .product-banner-left .slide-up-title {
    animation: none !important;
}

/* Product hero title: widen the copy area so the two lines stay on two lines. */
body.page-product .hero-left-content,
body.page-product .product-banner-left {
    width: min(100%, 920px) !important;
    max-width: 920px !important;
}

body.page-product .product-title-main {
    width: min(100%, 900px) !important;
    max-width: 900px !important;
}

/* Navigation Contact button: text-only with underline, matches nav colors. */
.nav-contact-btn {
    background: none;
    border: 0;
    color: #ffffff;
    padding: 7px 16px;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 5px;
    cursor: pointer;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-contact-btn:hover {
    color: var(--brand-lime) !important;
}

header.header-scrolled .nav-contact-btn,
body.page-scrolled header .nav-contact-btn,
body:not(.page-product) .main-fixed-header .nav-contact-btn {
    background: none !important;
    border: 0 !important;
    color: var(--brand-primary) !important;
    opacity: 0.85;
}

header.header-scrolled .nav-contact-btn:hover,
body.page-scrolled header .nav-contact-btn:hover,
body:not(.page-product) .main-fixed-header .nav-contact-btn:hover {
    color: var(--brand-cyan) !important;
    opacity: 1;
}

/* NEXREACH homepage: match the Contact button to the lang toggle at the
   transparent top-of-page state (white text over the dark hero). Scoped to
   the desktop header bar so the mobile folded menu stays teal. */
body:not(.page-product):not(.page-scrolled) .main-fixed-header .nav-actions .nav-contact-btn {
    color: #ffffff !important;
    opacity: 1;
}

/* Contact modal: left image + right form. */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.contact-modal.is-open {
    display: flex;
}

.contact-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 25, 34, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-modal-card {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
    display: grid;
    grid-template-columns: 42% 58%;
    background: #f4faf9;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(2, 24, 35, 0.35);
}

.contact-modal-media {
    min-height: 320px;
}

.contact-modal-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.contact-modal-form {
    padding: clamp(36px, 5vw, 64px) clamp(32px, 4.5vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-modal-form h2 {
    margin: 0 0 clamp(24px, 3vw, 36px);
    color: #101820;
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.7vw, 34px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.contact-modal-form label {
    margin: clamp(18px, 2.4vw, 26px) 0 4px;
    color: rgba(16, 58, 73, 0.62);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-modal-form input,
.contact-modal-form select {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 2px;
    border: 0;
    border-bottom: 1px solid rgba(16, 58, 73, 0.22);
    border-radius: 0;
    background: transparent;
    color: #101820;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-modal-form input:focus,
.contact-modal-form select:focus {
    border-bottom-color: #2cafce;
}

.contact-submit-btn {
    width: fit-content;
    margin-top: clamp(28px, 3.5vw, 40px);
    padding: 14px 36px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(90deg, #2cafce 0%, #105a73 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 10px 24px rgba(16, 90, 115, 0.30);
}

.contact-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(7, 25, 34, 0.08);
    color: #103a49;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.contact-form-success {
    margin: 14px 0 0;
    color: #2e7d32;
    font-size: 14px;
}

.contact-form-privacy {
    margin: 18px 0 0;
    color: rgba(16, 58, 73, 0.66);
    font-size: 12.5px;
    line-height: 1.6;
}

.contact-privacy-link {
    padding: 0;
    border: 0;
    background: none;
    color: #105a73;
    font-family: var(--font-body);
    font-size: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.contact-privacy-link:hover {
    color: #2cafce;
}

.contact-modal-form[hidden],
.contact-modal-privacy[hidden],
.contact-modal-media[hidden] {
    display: none !important;
}

.contact-modal-privacy {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    max-height: min(78svh, 720px);
    background: #f2f8f6;
}

.contact-privacy-header {
    padding: 24px clamp(32px, 5vw, 64px) 18px;
    border-bottom: 1px solid rgba(16, 58, 73, 0.10);
}

.contact-privacy-header h2 {
    margin: 0 0 4px;
    color: #101820;
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.contact-privacy-updated {
    margin: 0;
    color: rgba(16, 58, 73, 0.62);
    font-size: 13px;
}

.contact-privacy-body {
    width: 100%;
    padding: 28px clamp(32px, 5vw, 64px) 40px;
    overflow-y: auto;
    color: #101820;
    font-size: 14px;
    line-height: 1.7;
}

.contact-privacy-body h3 {
    margin: 22px 0 8px;
    color: #105a73;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
}

.contact-privacy-body p {
    margin: 0 0 12px;
}

.contact-privacy-body ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.contact-privacy-body li {
    margin-bottom: 8px;
}

.contact-privacy-body a {
    color: #2cafce;
}

.contact-privacy-footer {
    display: flex;
    justify-content: flex-end;
    padding: 18px 24px 24px;
    border-top: 1px solid rgba(16, 58, 73, 0.08);
    background: rgba(255, 255, 255, 0.55);
}

.contact-privacy-accept {
    padding: 13px 38px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(90deg, #2cafce 0%, #105a73 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-privacy-accept:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 10px 24px rgba(16, 90, 115, 0.30);
}

@media (max-width: 768px) {
    .contact-modal {
        align-items: flex-start;
        padding: 88px 16px 24px;
        overflow: hidden;
    }

    .contact-modal-card {
        width: 100%;
        grid-template-columns: 1fr;
        height: calc(100svh - 112px);
        max-height: calc(100svh - 112px);
        overflow: hidden;
    }

    .contact-modal-media {
        min-height: 0;
        height: clamp(180px, 26svh, 220px);
    }

    .contact-modal-form {
        padding: clamp(24px, 4svh, 36px) 32px;
    }

    .contact-modal-close {
        top: 12px;
        right: 12px;
        width: 48px;
        height: 48px;
        font-size: 25px;
        border: 2px solid rgba(255, 255, 255, 0.88);
        background: #103a49 !important;
        color: #ffffff !important;
        box-shadow: 0 6px 18px rgba(2, 24, 35, 0.34);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .contact-modal-close:focus-visible,
    .contact-modal-close:hover {
        background: #105a73 !important;
        color: #ffffff !important;
        outline: 2px solid rgba(255, 255, 255, 0.92);
        outline-offset: 2px;
    }
}

@media (max-width: 768px) and (max-height: 720px) {
    .contact-modal-media {
        height: 150px;
    }

    .contact-modal-form {
        padding: 18px 24px;
    }

    .contact-modal-form h2 {
        margin-bottom: 14px;
        font-size: 24px;
        line-height: 1.1;
    }

    .contact-modal-form label {
        margin-top: 12px;
    }

    .contact-modal-form input,
    .contact-modal-form select {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .contact-form-privacy {
        margin-top: 12px;
        line-height: 1.4;
    }

    .contact-submit-btn {
        margin-top: 16px;
        padding-top: 11px;
        padding-bottom: 11px;
    }
}

/* Mobile pages should only pan vertically; prevent horizontal rubber-band
   movement after closing fixed overlays. */
@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip !important;
        overscroll-behavior-x: none !important;
        touch-action: pan-y;
    }
}

/* Supporting copy slides in as a whole paragraph. */
.para-slide-in {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
        opacity 520ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 560ms cubic-bezier(0.23, 1, 0.32, 1);
}

.para-slide-in.is-para-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Mobile folded menu: keep lang/contact dark regardless of the transparent
   top-of-page white rules that target the desktop header bar. */
@media (max-width: 768px) {
    body .main-fixed-header .mobile-nav-actions .lang-toggle,
    body header .mobile-nav-actions .lang-toggle {
        color: #105a73 !important;
        text-shadow: none !important;
    }

    body .main-fixed-header .mobile-nav-actions .nav-contact-btn,
    body header .mobile-nav-actions .nav-contact-btn {
        color: #105a73 !important;
        opacity: 1 !important;
        text-shadow: none !important;
    }
}

/* Mobile Hero: end the section after its visual and copy instead of
   reserving an extra viewport of empty space below it. */
@media (max-width: 768px) {
    body:not(.page-product) .hero-wrapper-section,
    body:not(.page-product) .hero-banner-card {
        min-height: 0 !important;
    }

    body:not(.page-product) .hero-title-main {
        font-size: clamp(28px, 8vw, 34px) !important;
    }

    /* Keep every language state aligned with the Product page hero. */
    body:not(.page-product) .hero-left-content,
    body:not(.page-product) .hero-title-main,
    body:not(.page-product) .hero-title-main > span {
        align-items: flex-start !important;
        text-align: left !important;
    }
}

/* Mobile product Hero: use the requested line break after “for”. */
.hero-title-break-mobile,
.hero-title-break-zh-mobile,
.product-title-break-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-title-break-zh-mobile {
        display: block;
    }

    body:not(.page-product).lang-cn .hero-left-content-wrap {
        padding-top: clamp(48px, 7svh, 64px) !important;
        padding-bottom: clamp(48px, 7svh, 64px) !important;
        align-items: flex-end !important;
        justify-content: flex-start !important;
    }

    body:not(.page-product).lang-cn .hero-title-main {
        width: 100% !important;
        margin: 0 !important;
        text-align: left !important;
    }

    .product-title-break-desktop {
        display: none;
    }

    .product-title-break-mobile {
        display: block;
    }

    body.page-product .product-title-main {
        width: calc(100vw - 32px) !important;
        max-width: none !important;
        font-size: clamp(18px, 6.2vw, 26px) !important;
    }
}

/* Keep both mobile navigation drawers readable in every header state. */
@media (max-width: 768px) {
    body.page-product header .nav-actions .lang-toggle,
    body.page-product header .nav-actions .nav-contact-btn,
    body:not(.page-product) header .nav-actions .lang-toggle,
    body:not(.page-product) header .nav-actions .nav-contact-btn {
        display: none !important;
    }

    body.page-product header .nav-actions #lang-toggle-btn {
        display: none !important;
    }

    body.page-product header nav .nav-link,
    body.page-product header nav .mobile-nav-actions .lang-toggle,
    body.page-product header nav .mobile-nav-actions .nav-contact-btn,
    body:not(.page-product) header nav .nav-link,
    body:not(.page-product) header nav .mobile-nav-actions .lang-toggle,
    body:not(.page-product) header nav .mobile-nav-actions .nav-contact-btn,
    body:not(.page-product):not(.page-scrolled) header nav .nav-link,
    body:not(.page-product):not(.page-scrolled) header nav .mobile-nav-actions .lang-toggle,
    body:not(.page-product):not(.page-scrolled) header nav .mobile-nav-actions .nav-contact-btn {
        color: #105a73 !important;
        text-shadow: none !important;
    }

    body.page-product header:not(.header-scrolled) nav .nav-link,
    body.page-product header:not(.header-scrolled) nav .mobile-nav-actions .lang-toggle,
    body.page-product header:not(.header-scrolled) nav .mobile-nav-actions .nav-contact-btn,
    body:not(.page-product):not(.page-scrolled) .main-fixed-header nav .nav-link,
    body:not(.page-product):not(.page-scrolled) .main-fixed-header nav .mobile-nav-actions .lang-toggle,
    body:not(.page-product):not(.page-scrolled) .main-fixed-header nav .mobile-nav-actions .nav-contact-btn {
        color: #105a73 !important;
        text-shadow: none !important;
    }

    body.page-product header nav .mobile-nav-actions .lang-toggle,
    body:not(.page-product) header nav .mobile-nav-actions .lang-toggle {
        background: transparent !important;
        border-color: transparent !important;
    }

    body.page-product header nav .mobile-nav-actions .lang-toggle::after,
    body:not(.page-product) header nav .mobile-nav-actions .lang-toggle::after,
    body:not(.page-product):not(.page-scrolled) .main-fixed-header nav .mobile-nav-actions .lang-toggle::after {
        background: currentColor !important;
        box-shadow: none !important;
    }
}

/* Foreign Exchange card: shift the artwork upward to reveal more bottom detail. */
body:not(.page-product) #capabilities .service-acc-card:nth-child(3) .collections-bg-img {
    object-position: center 20% !important;
}

/* Alternate What We Do comparison layout. */
.what-we-do-comparison {
    display: grid;
    grid-template-columns: 3fr 7fr;
    gap: clamp(16px, 2.4vw, 36px);
    align-items: start;
    margin-top: clamp(24px, 3vw, 40px);
}

.what-we-do-comparison-thumbnails {
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 1.6vw, 24px);
}

.what-we-do-comparison-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    padding: 0;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    opacity: 0.62;
    transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.what-we-do-comparison-thumb:hover,
.what-we-do-comparison-thumb:focus-visible,
.what-we-do-comparison-thumb.is-active {
    opacity: 1;
    border-color: currentColor;
}

.what-we-do-comparison-thumb:hover,
.what-we-do-comparison-thumb:focus-visible {
    transform: translateY(-2px);
}

.what-we-do-comparison-thumb:focus-visible {
    outline: none;
}

.what-we-do-comparison-thumb img,
.what-we-do-comparison-preview-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.what-we-do-comparison-thumb-label {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 12px;
    color: #fff;
    font-size: clamp(11px, 1vw, 15px);
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    pointer-events: none;
}

.what-we-do-comparison-thumb-number {
    padding: 4px 8px;
    border-radius: 12px;
    color: #ece980;
    background: rgba(11, 45, 59, 0.6);
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 0.05em;
}

.what-we-do-comparison-thumb-label > [lang="en"],
.what-we-do-comparison-thumb-label > [lang="zh"] {
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(90deg, #2cafce 0%, #105a73 100%);
    box-shadow: 0 8px 22px rgba(16, 90, 115, 0.24);
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.what-we-do-comparison-thumb-label > [lang="en"] {
    display: inline-block !important;
}

.what-we-do-comparison-thumb-label > [lang="zh"] {
    display: none !important;
}

body.lang-cn .what-we-do-comparison-thumb-label > [lang="en"] {
    display: none !important;
}

body.lang-cn .what-we-do-comparison-thumb-label > [lang="zh"] {
    display: inline-block !important;
}

/* Thumbnail descriptions stay hidden in both language states. */
body .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc,
body.lang-cn .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc {
    display: none !important;
}

.what-we-do-comparison-thumb-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(11, 45, 59, 0.55);
    pointer-events: none;
}

.what-we-do-comparison-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(16, 90, 115, 0.08);
    align-self: start;
    border-radius: var(--radius-md);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.what-we-do-comparison-preview-image {
    position: absolute;
    inset: 0;
    transition: none;
}

.what-we-do-comparison-preview-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 22px 28px 24px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px) saturate(115%);
    -webkit-backdrop-filter: blur(20px) saturate(115%);
    transform: translateZ(0);
    backface-visibility: hidden;
    box-sizing: border-box;
}

.what-we-do-comparison-preview-copy .expanded-heading {
    display: block;
    width: auto;
    margin: 0 0 8px;
    color: #fff !important;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.22;
    text-shadow: none;
    white-space: nowrap;
}

.what-we-do-comparison-preview-copy .expanded-heading > [lang] {
    font-weight: 400 !important;
    white-space: nowrap !important;
}

.what-we-do-comparison-preview-copy .expanded-desc {
    width: 100%;
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 14px;
    line-height: 1.55;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
}

.what-we-do-comparison-preview-copy .expanded-desc > [lang] {
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap !important;
}

.what-we-do-comparison-preview-copy .expanded-desc > [lang="en"] {
    display: block !important;
}

.what-we-do-comparison-preview-copy .expanded-desc > [lang="zh"] {
    display: none !important;
}

body.lang-cn .what-we-do-comparison-preview-copy .expanded-desc > [lang="en"] {
    display: none !important;
}

body.lang-cn .what-we-do-comparison-preview-copy .expanded-desc > [lang="zh"] {
    display: block !important;
}

/* The comparison preview must show the full support line on one desktop row. */
body:not(.page-product) #capabilities .what-we-do-comparison-preview-copy .expanded-desc {
    width: 100% !important;
    max-width: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

/* The 3:7 desktop split needs shorter thumbnail frames so all three rows
   finish exactly with the 16:9 preview. The image remains fully covered. */
@media (min-width: 769px) {
    .what-we-do-comparison-thumb {
        min-height: 0;
        aspect-ratio: auto;
    }

    /* Desktop switches through compact left cards: titles only there.
       The enlarged right-side preview keeps its heading and support copy. */
    .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .what-we-do-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    /* Mobile: three big cards, one per column, title on top + large image below. */
    .what-we-do-comparison-thumbnails {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 20px;
    }

    .what-we-do-comparison-thumb {
        display: flex;
        flex-direction: column;
        aspect-ratio: auto;
        min-height: 0;
        opacity: 1;
        border: 1px solid rgba(16, 90, 115, 0.09);
        border-radius: var(--radius-md);
        overflow: hidden;
        background: var(--brand-white);
        box-shadow: 0 12px 30px rgba(16, 58, 73, 0.1);
        transform: none;
    }

    .what-we-do-comparison-thumb:hover,
    .what-we-do-comparison-thumb:focus-visible {
        transform: none;
    }

    .what-we-do-comparison-thumb,
    .what-we-do-comparison-thumb:hover,
    .what-we-do-comparison-thumb:focus-visible,
    .what-we-do-comparison-thumb.is-active {
        border-color: rgba(16, 90, 115, 0.09) !important;
    }

    /* Title sits on its own row above the image so they never overlap. */
    .what-we-do-comparison-thumb-label {
        position: static;
        inset: auto;
        z-index: 1;
        display: flex;
        order: -1;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 16px 18px;
        color: var(--brand-primary);
        background: var(--brand-white);
        text-align: left;
        pointer-events: auto;
    }

    .what-we-do-comparison-thumb-label > [lang="en"],
    body.lang-cn .what-we-do-comparison-thumb-label > [lang="zh"] {
        display: inline-block !important;
        max-width: 100%;
        padding: 0;
        border-radius: 0;
        color: var(--brand-primary);
        background: none;
        box-shadow: none;
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        font-size: clamp(21px, 6vw, 24px);
        font-weight: 600;
        line-height: 1.15;
        letter-spacing: -0.02em;
    }

    /* Add one visibly smaller support line under every mobile card title.
       Do not set display here; the global language switcher controls it. */
    .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc,
    body.lang-cn .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc {
        max-width: 100%;
        margin-top: 9px;
        color: rgba(16, 58, 73, 0.62);
        font-size: 12.5px;
        font-weight: 200;
        line-height: 1.6;
    }

    /* Thumbnail cards keep title-only labels in both languages. */
    .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc {
        display: none !important;
    }

    .what-we-do-comparison-thumb img {
        position: static;
        order: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    /* The desktop switcher preview is not shown on mobile. */
    .what-we-do-comparison-preview {
        display: none;
    }

    .what-we-do-comparison-thumb-number {
        display: none;
    }

    .what-we-do-comparison-thumb-shade {
        display: none;
    }
}

/* Active state uses the existing visual highlight; do not add a border. */
.what-we-do-comparison-thumb.is-active {
    border-color: transparent;
}

/* Move the real expanded card so no visual layer is swapped at the end. */
.what-we-do-comparison-preview.is-flying {
    z-index: 1000;
    transform-origin: left top;
    will-change: transform;
    pointer-events: none !important;
    opacity: 1 !important;
    filter: none !important;
}

.what-we-do-comparison-preview.is-flying img {
    opacity: 1 !important;
    filter: none !important;
    image-rendering: auto;
}

/* Shared page typography: all semantic titles use Regular weight. */
body :is(h1, h2, h3, h4),
body :is(h1, h2, h3, h4) * {
    font-weight: 400 !important;
}

body:not(.page-product) #solutions :is(.scenario-toggle-copy, .bento-sc-card) h3,
body:not(.page-product) #solutions :is(.scenario-toggle-copy, .bento-sc-card) h3 *,
body.page-product .product-stack-card__body h2,
body.page-product .product-stack-card__body h2 * {
    font-weight: 400 !important;
}

/* Product About: reveal each icon and paragraph as one fast, ordered group. */
body.page-product .about-us-section .about-copy-item.about-item-slide-in {
    opacity: 0 !important;
    transform: translate3d(0, 16px, 0) !important;
    transition:
        opacity 340ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 400ms cubic-bezier(0.23, 1, 0.32, 1) !important;
    will-change: opacity, transform;
}

body.page-product .about-us-section .about-copy-item.about-item-slide-in.is-about-item-visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
}

/* Critical footer background: apply the final artwork before brand-footer.css loads. */
body:not(.page-product) .brand-statement-footer .brand-statement-card,
body.page-product .brand-statement-footer .brand-statement-card {
    background-image: url('shared/brand/nexreach-brand-footer.jpg') !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

@media (max-width: 768px) {
    body:not(.page-product) .brand-statement-footer .brand-statement-card,
    body.page-product .brand-statement-footer .brand-statement-card {
        background-image: url('home/more-than-moving-money/expanded-card-background.png') !important;
    }

    /* Mobile cards show the same smaller support copy as the expanded card. */
    body:not(.lang-cn) .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc[lang="en"] {
        display: block !important;
    }

    body:not(.lang-cn) .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc[lang="zh"],
    body.lang-cn .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc[lang="en"] {
        display: none !important;
    }

body.lang-cn .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc[lang="zh"] {
        display: block !important;
    }
}

/* Final What We Do card grid: keep the existing media and bilingual copy,
   but present all three services as white cards with the image above text. */
.what-we-do-card-grid {
    display: block !important;
    margin-top: clamp(24px, 3vw, 40px) !important;
}

/* Keep the Value In Motion to card-grid gap at a consistent 30px. */
body:not(.page-product) #capabilities .value-in-motion-bar {
    margin-bottom: 30px !important;
}

body:not(.page-product) #capabilities .what-we-do-card-grid {
    margin-top: 30px !important;
}

.what-we-do-card-grid .what-we-do-comparison-thumbnails {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
    height: auto !important;
    gap: clamp(16px, 2vw, 28px) !important;
}

.what-we-do-card-grid .what-we-do-comparison-thumb,
.what-we-do-card-grid .what-we-do-comparison-thumb:hover,
.what-we-do-card-grid .what-we-do-comparison-thumb:focus-visible,
.what-we-do-card-grid .what-we-do-comparison-thumb.is-active {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    padding: 0 !important;
    opacity: 1 !important;
    overflow: hidden !important;
    border: none !important;
    border-radius: var(--radius-md) !important;
    background: var(--brand-white) !important;
    box-shadow: 0 12px 30px rgba(16, 58, 73, 0.09) !important;
    transform: none !important;
    justify-content: center !important;
    color: var(--brand-primary) !important;
    cursor: default !important;
}

.what-we-do-card-grid .what-we-do-comparison-thumb > img {
    display: none !important;
}

.what-we-do-card-grid .what-we-do-comparison-thumb-icon.bento-icon-badge {
    position: static !important;
    order: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    margin: 20px auto 0 !important;
    border: 1px solid rgba(44, 175, 206, 0.28) !important;
    border-radius: 14px !important;
    color: #105a73 !important;
    background: rgba(44, 175, 206, 0.10) !important;
    box-shadow: none !important;
}

.what-we-do-card-grid .what-we-do-comparison-thumb:hover,
.what-we-do-card-grid .what-we-do-comparison-thumb:focus-visible {
    box-shadow: 0 16px 34px rgba(16, 58, 73, 0.13) !important;
}

.what-we-do-card-grid .what-we-do-comparison-thumb-label {
    position: static !important;
    inset: auto !important;
    order: 1 !important;
    margin-top: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: auto !important;
    padding: 18px 20px 22px !important;
    color: var(--brand-primary) !important;
    background: var(--brand-white) !important;
    text-align: center !important;
    pointer-events: none !important;
}

.what-we-do-card-grid .what-we-do-comparison-thumb-label > [lang="en"],
.what-we-do-card-grid body.lang-cn .what-we-do-comparison-thumb-label > [lang="zh"],
body.lang-cn .what-we-do-card-grid .what-we-do-comparison-thumb-label > [lang="zh"] {
    display: inline-block !important;
    max-width: 100% !important;
    padding: 0 !important;
    border-radius: 0 !important;
    color: var(--brand-primary) !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    font-size: clamp(19px, 1.8vw, 25px) !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em !important;
}

.what-we-do-card-grid .what-we-do-comparison-thumb-label > [lang="zh"] {
    display: none !important;
}

body.lang-cn .what-we-do-card-grid .what-we-do-comparison-thumb-label > [lang="en"] {
    display: none !important;
}

body.lang-cn .what-we-do-card-grid .what-we-do-comparison-thumb-label > [lang="zh"] {
    display: inline-block !important;
}

.what-we-do-card-grid .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc {
    display: block !important;
    max-width: 100% !important;
    margin-top: 8px !important;
    padding: 0 !important;
    color: rgba(16, 58, 73, 0.68) !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 1.65 !important;
    white-space: normal !important;
    /* Reserve a consistent two-line block so all three card titles stay
       horizontally aligned regardless of description length. */
    min-height: 3.3em !important;
}

body.lang-cn .what-we-do-card-grid .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc[lang="en"] {
    display: none !important;
}

body:not(.lang-cn) .what-we-do-card-grid .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc[lang="zh"] {
    display: none !important;
}

/* In the Chinese state the description also carries lang="zh", so the higher
   specificity heading rule (body.lang-cn ... > [lang="zh"]) would win and make
   the description as large as the title. Force it back to the small support size. */
body.lang-cn .what-we-do-card-grid .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc[lang="zh"],
body.lang-cn .what-we-do-card-grid .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc {
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 1.65 !important;
}

.what-we-do-card-grid .what-we-do-comparison-thumb-shade,
.what-we-do-card-grid .what-we-do-comparison-preview {
    display: none !important;
}

@media (max-width: 768px) {
    .what-we-do-card-grid .what-we-do-comparison-thumbnails {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .what-we-do-card-grid .what-we-do-comparison-thumb-label {
        padding: 16px 18px 18px !important;
    }

    .what-we-do-card-grid .what-we-do-comparison-thumb-label > [lang="en"],
    body.lang-cn .what-we-do-card-grid .what-we-do-comparison-thumb-label > [lang="zh"] {
        font-size: clamp(21px, 6vw, 24px) !important;
    }

    .what-we-do-card-grid .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc {
        font-size: 14px !important;
    }

    body.lang-cn .what-we-do-card-grid .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc[lang="zh"],
    body.lang-cn .what-we-do-card-grid .what-we-do-comparison-thumb-label > .what-we-do-comparison-thumb-desc {
        font-size: 14px !important;
    }
}

/* Tighten the homepage What We Do module: with the three cards now square
   (1:1), size the section to its content instead of stretching it to a full
   viewport height, removing the excess whitespace above and below the
   module. This is homepage only (product page has no #capabilities section). */
@media (min-width: 769px) {
    body:not(.page-product) #capabilities {
        min-height: auto !important;
        height: auto !important;
        display: block !important;
        padding-top: clamp(48px, 6svh, 72px) !important;
        padding-bottom: clamp(40px, 5svh, 56px) !important;
    }

    body:not(.page-product) #capabilities > .container {
        transform: translateY(clamp(48px, 6.6svh, 56px)) !important;
    }
}

/* More Than Moving Money: four quiet content cards with icon, title and copy.
   The existing four cards keep their current content; only their presentation
   changes from image carousel to a clean white grid. */
.why-card-grid {
    background: var(--brand-white) !important;
}

.why-card-grid .why-content-layout {
    display: block !important;
}

.why-card-grid .why-copy-panel .section-header {
    max-width: 760px !important;
    margin: 0 auto clamp(28px, 4vw, 48px) !important;
    align-items: center !important;
    text-align: center !important;
}

.why-card-grid .why-copy-panel .section-header h2,
.why-card-grid .why-copy-panel .section-header p {
    text-align: center !important;
}

/* Center the Why NEXREACH heading + copy, overriding the higher-specificity
   left-aligned rule for the non-product (homepage) layout. */
body:not(.page-product) #why-nexreach.why-card-grid .why-copy-panel .section-header {
    margin: 0 auto clamp(28px, 4vw, 48px) !important;
    align-items: center !important;
    text-align: center !important;
}

body:not(.page-product) #why-nexreach.why-card-grid .why-copy-panel .section-header h2,
body:not(.page-product) #why-nexreach.why-card-grid .why-copy-panel .section-header p {
    text-align: center !important;
}

.why-card-grid .why-carousel-navigation,
.why-card-grid .dots-matrix-canvas {
    display: none !important;
}

.why-card-grid .why-carousel-shell {
    width: 100% !important;
    margin: 0 !important;
    overflow: visible !important;
}

.why-card-grid .why-carousel-track,
.why-card-grid .bento-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
    gap: clamp(14px, 1.8vw, 24px) !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    overflow: visible !important;
    perspective: none !important;
    transform-style: flat !important;
}

.why-card-grid .bento-box,
.why-card-grid .bento-box:nth-child(n),
.why-card-grid .bento-box.is-active,
.why-card-grid .bento-box.is-next,
.why-card-grid .bento-box.is-hidden {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 310px !important;
    padding: clamp(20px, 2.2vw, 30px) !important;
    margin: 0 !important;
    border: 1px solid rgba(16, 90, 115, 0.16) !important;
    border-radius: 22px !important;
    background: var(--brand-white) !important;
    box-shadow: 0 12px 30px rgba(16, 58, 73, 0.08) !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease !important;
    pointer-events: auto !important;
    overflow: hidden !important;
}

.why-card-grid .bento-box:hover {
    border-color: rgba(16, 90, 115, 0.30) !important;
    box-shadow: 0 16px 36px rgba(16, 58, 73, 0.13) !important;
    transform: translateY(-2px) !important;
}

.why-card-grid .bento-box::after {
    display: none !important;
}

.why-card-grid .bento-header-wrap {
    position: static !important;
    inset: auto !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-height: 36px !important;
    padding: 0 !important;
    margin: 0 0 28px !important;
}

.why-card-grid .bento-index-pill {
    display: none !important;
}

.why-card-grid .bento-icon-badge {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    border: 1px solid rgba(44, 175, 206, 0.28) !important;
    border-radius: 14px !important;
    color: #105a73 !important;
    background: rgba(44, 175, 206, 0.10) !important;
    box-shadow: none !important;
}

.why-card-grid .bento-box h3,
.why-card-grid .bento-box p {
    position: static !important;
    z-index: auto !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    color: var(--brand-primary) !important;
    -webkit-text-fill-color: initial !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    filter: none !important;
    text-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
}

.why-card-grid .bento-box h3 {
    margin-top: 0 !important;
    margin-bottom: clamp(16px, 1.4vw, 20px) !important;
    font-size: clamp(20px, 1.7vw, 25px) !important;
    line-height: 1.25 !important;
    text-align: left !important;
}

.why-card-grid .bento-box p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    color: rgba(16, 58, 73, 0.68) !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 1.7 !important;
    text-align: left !important;
}

.why-card-grid .bento-widget {
    display: none !important;
}

body:not(.lang-cn) .why-card-grid .bento-box h3[lang="zh"],
body.lang-cn .why-card-grid .bento-box h3[lang="en"],
body:not(.lang-cn) .why-card-grid .bento-box p[lang="zh"],
body.lang-cn .why-card-grid .bento-box p[lang="en"] {
    display: none !important;
}

body:not(.lang-cn) .why-card-grid .bento-box h3[lang="en"],
body.lang-cn .why-card-grid .bento-box h3[lang="zh"],
body:not(.lang-cn) .why-card-grid .bento-box p[lang="en"],
body.lang-cn .why-card-grid .bento-box p[lang="zh"] {
    display: block !important;
}

@media (max-width: 1023px) {
    .why-card-grid .why-carousel-track,
    .why-card-grid .bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .why-card-grid .why-carousel-track,
    .why-card-grid .bento-grid {
        grid-template-columns: 1fr !important;
    }

    .why-card-grid .bento-box,
    .why-card-grid .bento-box:nth-child(n) {
        min-height: 0 !important;
        padding: 22px !important;
    }
}

/* Final visibility and alignment pass for the static four-card layout. */
html.section-motion-ready #why-nexreach.why-card-grid .why-carousel-shell,
html.section-motion-ready #why-nexreach.why-card-grid .why-carousel-track,
html.section-motion-ready #why-nexreach.why-card-grid .bento-box,
html.section-motion-ready #why-nexreach.why-card-grid .section-header > * {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
}

.why-card-grid .bento-box,
.why-card-grid .bento-box:nth-child(n) {
    justify-content: flex-start !important;
}

@media (min-width: 1024px) {
    .why-card-grid .why-carousel-track,
    .why-card-grid .bento-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

/* Definitive desktop override: remove every legacy orbit/carousel constraint. */
html body:not(.page-product) #why-nexreach.why-card-grid .why-content-layout {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
}

html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-navigation,
html body:not(.page-product) #why-nexreach.why-card-grid .dots-matrix-canvas {
    display: none !important;
}

html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-shell {
    position: relative !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: clamp(40px, 4vw, 56px) 0 0 !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
}

html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track,
html body:not(.page-product) #why-nexreach.why-card-grid .bento-grid {
    position: static !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
    gap: clamp(14px, 1.8vw, 24px) !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    perspective: none !important;
    transform: none !important;
    transform-style: flat !important;
}

html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box,
html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box:nth-child(n),
html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box.is-active,
html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box.is-next,
html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box.is-hidden,
html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box.is-ring-right,
html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box.is-ring-back,
html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box.is-ring-hidden {
    position: relative !important;
    inset: auto !important;
    z-index: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 310px !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    padding: clamp(20px, 2.2vw, 30px) !important;
    flex: none !important;
    border: 1px solid rgba(16, 90, 115, 0.16) !important;
    border-radius: 22px !important;
    background-color: #ffffff !important;
    background-image: none !important;
    box-shadow: 0 12px 30px rgba(16, 58, 73, 0.08) !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
    transform-style: flat !important;
    backface-visibility: visible !important;
    pointer-events: auto !important;
    will-change: auto !important;
}

html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box::before,
html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box::after,
html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-shell::before,
html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-shell::after {
    display: none !important;
}

html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-header-wrap {
    position: static !important;
    inset: auto !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
}

html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-index-pill {
    display: none !important;
}

html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-icon-badge {
    position: static !important;
    inset: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    border: 1px solid rgba(44, 175, 206, 0.28) !important;
    border-radius: 14px !important;
    color: #105a73 !important;
    background: rgba(44, 175, 206, 0.10) !important;
    box-shadow: none !important;
}

html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box h3,
html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box p {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    color: #105a73 !important;
    -webkit-text-fill-color: #105a73 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    filter: none !important;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box h3 {
    margin-top: 0 !important;
    margin-bottom: clamp(16px, 1.4vw, 20px) !important;
    font-size: clamp(20px, 1.7vw, 25px) !important;
    line-height: 1.25 !important;
    text-align: left !important;
}

html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    color: rgba(16, 58, 73, 0.68) !important;
    -webkit-text-fill-color: rgba(16, 58, 73, 0.68) !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 1.7 !important;
    text-align: left !important;
}

html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-widget {
    display: none !important;
}

@media (max-width: 1023px) {
    html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track,
    html body:not(.page-product) #why-nexreach.why-card-grid .bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-shell {
        margin-top: 42px !important;
    }

    html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track,
    html body:not(.page-product) #why-nexreach.why-card-grid .bento-grid {
        grid-template-columns: 1fr !important;
    }

    html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box,
    html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box:nth-child(n) {
        min-height: 0 !important;
    }

    html body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box h3 {
        margin-bottom: 14px !important;
    }
}

/* Who We Serve / Business Scenarios: four clean white cards (image top, then
   title and small copy below) matching the approved What We Do card style.
   Only the presentation changes; copy, images and titles are untouched. */
html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-card,
html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-card:hover,
html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-card:focus,
html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-card:focus-visible,
html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-card:focus-within,
html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-card.is-tapped {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    padding: 0 !important;
    overflow: hidden !important;
    cursor: default !important;
    color: var(--brand-primary) !important;
    border: 1px solid rgba(16, 90, 115, 0.16) !important;
    border-radius: var(--radius-md) !important;
    background: var(--brand-white) !important;
    box-shadow: 0 12px 30px rgba(16, 58, 73, 0.09) !important;
    transform: none !important;
}

html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-card:hover,
html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-card:focus-visible {
    border-color: rgba(16, 90, 115, 0.28) !important;
    box-shadow: 0 16px 34px rgba(16, 58, 73, 0.13) !important;
}

html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-card::before {
    display: none !important;
}

html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-image,
html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-card:hover .scenario-toggle-image,
html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-card:focus .scenario-toggle-image,
html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-card:focus-visible .scenario-toggle-image,
html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-card:focus-within .scenario-toggle-image,
html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-card.is-tapped .scenario-toggle-image {
    position: static !important;
    inset: auto !important;
    order: 0 !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
}

html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-copy {
    position: static !important;
    inset: auto !important;
    z-index: auto !important;
    order: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 18px 20px 20px !important;
    color: var(--brand-primary) !important;
    background: var(--brand-white) !important;
    text-align: left !important;
}

html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-copy h3,
html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-copy p {
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    color: var(--brand-primary) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
}

html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-copy h3 {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
    font-size: clamp(20px, 1.8vw, 25px) !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em !important;
}

html body:not(.page-product) #solutions.solutions-static-cards .scenario-toggle-copy p {
    margin: 8px 0 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
    color: rgba(16, 58, 73, 0.68) !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 1.65 !important;
    white-space: normal !important;
}

/* Four-card entrance: calm staggered rise with no bounce. */
html.section-motion-ready body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box {
    opacity: 0 !important;
    visibility: visible !important;
    transform: translate3d(0, 22px, 0) scale(0.985) !important;
    transition:
        opacity 360ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 480ms cubic-bezier(0.23, 1, 0.32, 1) !important;
    transition-delay: 0ms !important;
    will-change: opacity, transform !important;
}

html.section-motion-ready body:not(.page-product) #why-nexreach.why-card-grid.why-entrance-started .why-carousel-track .bento-box {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

html.section-motion-ready body:not(.page-product) #why-nexreach.why-card-grid.why-entrance-started .why-carousel-track .bento-box:nth-child(1) {
    transition-delay: 80ms !important;
}

html.section-motion-ready body:not(.page-product) #why-nexreach.why-card-grid.why-entrance-started .why-carousel-track .bento-box:nth-child(2) {
    transition-delay: 400ms !important;
}

html.section-motion-ready body:not(.page-product) #why-nexreach.why-card-grid.why-entrance-started .why-carousel-track .bento-box:nth-child(3) {
    transition-delay: 720ms !important;
}

html.section-motion-ready body:not(.page-product) #why-nexreach.why-card-grid.why-entrance-started .why-carousel-track .bento-box:nth-child(4) {
    transition-delay: 1040ms !important;
}

@media (prefers-reduced-motion: reduce) {
    html.section-motion-ready body:not(.page-product) #why-nexreach.why-card-grid .why-carousel-track .bento-box,
    html.section-motion-ready body:not(.page-product) #why-nexreach.why-card-grid.why-entrance-started .why-carousel-track .bento-box {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* What We Do: three cards enter clearly from left to right. */
html.section-motion-ready body:not(.page-product) #capabilities .what-we-do-card-grid .what-we-do-comparison-thumb {
    opacity: 0 !important;
    visibility: visible !important;
    transform: translate3d(0, 22px, 0) scale(0.985) !important;
    transition:
        opacity 360ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 480ms cubic-bezier(0.23, 1, 0.32, 1) !important;
    transition-delay: 0ms !important;
    will-change: opacity, transform !important;
}

html.section-motion-ready body:not(.page-product) #capabilities.capabilities-entrance-started .what-we-do-card-grid .what-we-do-comparison-thumb {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

html.section-motion-ready body:not(.page-product) #capabilities.capabilities-entrance-started .what-we-do-card-grid .what-we-do-comparison-thumb:nth-child(1) {
    transition-delay: 80ms !important;
}

html.section-motion-ready body:not(.page-product) #capabilities.capabilities-entrance-started .what-we-do-card-grid .what-we-do-comparison-thumb:nth-child(2) {
    transition-delay: 400ms !important;
}

html.section-motion-ready body:not(.page-product) #capabilities.capabilities-entrance-started .what-we-do-card-grid .what-we-do-comparison-thumb:nth-child(3) {
    transition-delay: 720ms !important;
}

@media (prefers-reduced-motion: reduce) {
    html.section-motion-ready body:not(.page-product) #capabilities .what-we-do-card-grid .what-we-do-comparison-thumb,
    html.section-motion-ready body:not(.page-product) #capabilities.capabilities-entrance-started .what-we-do-card-grid .what-we-do-comparison-thumb {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* Final mobile homepage alignment: keep every content-bearing module on the
   same centered track while preserving full-bleed section backgrounds. */
@media (max-width: 768px) {
    body:not(.page-product) .container,
    body:not(.page-product) #capabilities > .container,
    body:not(.page-product) #solutions > .container,
    body:not(.page-product) #why-nexreach > .container,
    body:not(.page-product) .about-us-section > .about-us-container {
        width: calc(100% - (2 * var(--site-content-gutter))) !important;
        max-width: var(--home-content-max) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body:not(.page-product) .hero-left-content-wrap {
        padding-left: var(--site-content-gutter) !important;
        padding-right: var(--site-content-gutter) !important;
    }

    body:not(.page-product) .hero-left-content,
    body:not(.page-product) .hero-title-main,
    body:not(.page-product) #capabilities .section-header,
    body:not(.page-product) #solutions .section-header,
    body:not(.page-product) #why-nexreach .section-header {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body:not(.page-product) #solutions .section-header {
        align-items: center !important;
        text-align: center !important;
    }

    body:not(.page-product) #solutions .section-header h2,
    body:not(.page-product) #solutions .section-header p {
        text-align: center !important;
    }
}

/* Mobile homepage Hero: mirror the Product Hero's full-screen composition
   while leaving the desktop homepage layout unchanged. */
@media (max-width: 768px) {
    body:not(.page-product) .hero-wrapper-section {
        height: 100svh !important;
        min-height: 100svh !important;
        max-height: none !important;
    }

    body:not(.page-product) .hero-banner-card {
        height: 100% !important;
        min-height: 0 !important;
    }

    body:not(.page-product) .hero-bg-layer {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: transparent !important;
    }

    body:not(.page-product) .hero-backdrop-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    body:not(.page-product) .hero-left-content-wrap {
        align-items: flex-end !important;
        justify-content: flex-start !important;
        height: 100% !important;
        min-height: 100% !important;
        background: transparent !important;
        padding: 84px 32px clamp(48px, 8svh, 96px) !important;
    }

    body:not(.page-product) .hero-left-content,
    body:not(.page-product) .hero-title-main {
        width: 100% !important;
        max-width: none !important;
    }

    body:not(.page-product) .hero-left-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body:not(.page-product) .hero-title-main {
        font-size: clamp(18px, 6.2vw, 26px) !important;
        line-height: 1.02 !important;
        text-align: left !important;
    }

    body:not(.page-product) .hero-title-main > span[lang="en"] {
        display: block !important;
        font-size: clamp(18px, 5.5vw, 22px) !important;
        line-height: 1.02 !important;
        font-weight: 400 !important;
        letter-spacing: -0.04em !important;
    }

    body:not(.page-product).lang-cn .hero-title-main > span[lang="en"] {
        display: none !important;
    }

    body:not(.page-product).lang-cn .hero-title-main > span[lang="zh"] {
        display: block !important;
    }

    body:not(.page-product) .hero-title-break-desktop {
        display: none !important;
    }

    body:not(.page-product) .hero-title-break-mobile {
        display: block !important;
    }
}
