/* 
   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)
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100;200;300;400;500;700&family=Poppins:wght@300;400;500;600;700&display=swap');

: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: Titles strictly Poppins, Body & Small text Noto Sans SC Thin */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Noto Sans SC', 'Poppins', -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; /* Noto Sans SC Thin */
    overflow-x: hidden;
}

/* 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;
}

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;
}

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) {
    .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: 100%;
    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;
}

.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;
}

.nav-console-btn {
    padding: 8px 22px !important;
    font-size: 13px !important;
    border-radius: 20px !important;
    background-color: #2cafce !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(44, 175, 206, 0.35);
    transition: all 0.25s ease !important;
    border: none !important;
}

.nav-console-btn:hover {
    background-color: #1f9cb8 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(44, 175, 206, 0.5);
}

header.header-scrolled .nav-console-btn, .main-fixed-header.header-scrolled .nav-console-btn,
body.page-scrolled header .nav-console-btn, body.page-scrolled .main-fixed-header .nav-console-btn {
    background-color: #2cafce !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(44, 175, 206, 0.35);
}

.nav-console-btn:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

@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: monospace;
    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 center;
    opacity: 0.92;
}

.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;
}
