/* ==========================================================================
   BancBridge - Modern Professional Design System
   Inspired by clean, light theme with blue accents
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Primary Colors (BancBridge brand navy/red) */
    --primary-blue: #003366;
    --accent-blue: #2b6fd6;
    --accent-light: #4a86dd;
    --brand-red: #a01c22;
    --brand-coral: #ff8d7a;

    /* Reversed logo on navy — v3 handoff spec: white + #b03e43.
       #b03e43 is a *darkened* brick red, not a brightened one. Brightening
       #a01c22 for contrast pushes it to salmon/pink (blue rises to meet green);
       the approved answer keeps blue just above green, as in the original, and
       accepts a lower contrast to stay a true crimson. It measures 2.78:1 on
       #0d2238 — below AA — which is a deliberate, client-approved call for a
       logo mark. Do not "fix" it by lightening. */
    --logo-rev-banc: #ffffff;
    --logo-rev-bridge: #b03e43;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-gray: #f7f9fb;
    --bg-subtle: #eef3f8;
    --bg-trust: #f4f7fa;
    --bg-pill: #eaf1fb;

    /* Text Colors */
    --text-dark: #0d2238;
    --text-body: #51606e;
    --text-muted: #8793a0;
    --text-ui: #2a3744;

    /* Footer-specific */
    --footer-bg: #0d2238;
    --footer-muted: #7e93a8;
    --footer-body: #9fb1c4;
    --footer-links: #cdd9e6;

    /* Border & UI */
    --border-light: #eaeef2;
    --card-border: #e6edf3;
    --frame-border: #e3e9ef;
    --chip-border: #d8e2ec;
    --gradient-blue: radial-gradient(120% 140% at 85% 0%, #0a4a85 0%, #003366 45%, #00203f 100%);
    --gradient-navy-header: radial-gradient(120% 160% at 85% -20%, #0a4a85 0%, #003366 48%, #00203f 100%);

    /* Semantic Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;

    /* Typography */
    --font-primary: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Layout */
    --container-max: 1190px;
    --container-narrow: 600px;
    --header-height: 80px;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 80px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50px;
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* Background texture - subtle */
.bg-texture {
    display: none;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-tag {
    display: inline-block;
    background: rgba(43, 111, 214, 0.1);
    color: var(--accent-blue);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-body);
    max-width: 600px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.7rem 1.5rem;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.btn svg {
    transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 111, 214, 0.3);
}

.btn-primary.btn-light {
    background: var(--bg-white);
    color: var(--text-dark);
}

.btn-primary.btn-light:hover {
    background: var(--bg-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary,
.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border-light);
}

.btn-secondary:hover,
.btn-outline:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-ghost {
    background: transparent;
    color: var(--text-body);
    border: 1.5px solid var(--border-light);
}

.btn-ghost:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 56px;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    height: var(--header-height);
}

@media (max-width: 1024px) {
    .header {
        padding: 0 var(--space-8);
    }
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: var(--container-max);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo img {
    height: 50px;
    width: auto;
}

/* --------------------------------------------------------------------------
   BancBridge Logo (Concept 04 — boxed wordmark)
   -------------------------------------------------------------------------- */
.bb-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.bb-logo-box {
    display: inline-block;
    flex: none;
    border-style: solid;
    box-sizing: border-box;
}

.bb-logo-box--navy {
    border-color: var(--primary-blue);
}

.bb-logo-box--red {
    border-color: var(--brand-red);
}

.bb-logo-word {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.bb-logo-banc {
    color: var(--primary-blue);
}

.bb-logo-bridge {
    color: var(--brand-red);
}

.bb-logo--reversed .bb-logo-banc {
    color: var(--logo-rev-banc);
}

.bb-logo--reversed .bb-logo-bridge {
    color: var(--logo-rev-bridge);
}

.bb-logo--reversed .bb-logo-box--navy {
    border-color: var(--logo-rev-banc);
}

.bb-logo--reversed .bb-logo-box--red {
    border-color: var(--logo-rev-bridge);
}

.bb-logo--nav {
    font-size: 29px;
}

.bb-logo--nav .bb-logo-box {
    width: 14px;
    height: 14px;
    border-width: 3px;
}

@media (max-width: 1024px) {
    .bb-logo--nav {
        font-size: 25px;
        gap: 11px;
    }

    .bb-logo--nav .bb-logo-box {
        width: 13px;
        height: 13px;
    }
}

.bb-logo--footer {
    font-size: 30px;
}

.bb-logo--footer .bb-logo-box {
    width: 14px;
    height: 14px;
    border-width: 3px;
}

.bb-logo--sm {
    font-size: 16px;
    gap: 9px;
}

.bb-logo--sm .bb-logo-box {
    width: 11px;
    height: 11px;
    border-width: 2px;
}

/* Navigation */
.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        gap: var(--space-8);
        align-items: center;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.nav-list a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-body);
    transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-blue);
}

/* --------------------------------------------------------------------------
   Nav-right group (logo | nav links + CTA | mobile toggle) — used by pages
   built to the new design (homepage, products)
   -------------------------------------------------------------------------- */
.bb-nav-right {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .bb-nav-right {
        display: flex;
    }
}

.bb-nav-right .nav-list a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-ui);
}

.bb-nav-cta {
    display: inline-block;
    background: var(--primary-blue);
    color: #ffffff;
    padding: 11px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background var(--duration-fast) var(--ease-out);
}

.bb-nav-cta:hover {
    background: #002a54;
}

/* --------------------------------------------------------------------------
   Brand buttons / links (Concept 04 direction)
   -------------------------------------------------------------------------- */
.bb-btn-primary {
    display: inline-block;
    background: var(--primary-blue);
    color: #ffffff;
    padding: 15px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: background var(--duration-fast) var(--ease-out);
}

.bb-btn-primary:hover {
    background: #002a54;
}

.bb-btn-primary--lg {
    padding: 16px 32px;
    font-size: 17px;
}

.bb-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid #c2cedb;
    padding: 15px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: border-color var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}

.bb-btn-secondary:hover {
    border-color: var(--primary-blue);
}

.bb-link-arrow {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bb-link-arrow span {
    font-size: 18px;
    transition: transform var(--duration-fast) var(--ease-out);
}

.bb-link-arrow:hover {
    text-decoration: underline;
}

.bb-link-arrow:hover span {
    transform: translateX(3px);
}

.bb-check-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 24px;
}

.bb-check-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    font-size: 16px;
    color: var(--text-ui);
}

.bb-check {
    color: var(--accent-blue);
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   Brand footer (dark navy, 4-column) — homepage & products page
   -------------------------------------------------------------------------- */
.bb-footer {
    background: var(--footer-bg);
    color: #ffffff;
    padding: 56px 56px 40px;
}

.bb-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.bb-footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--footer-body);
    margin: 14px 0 0;
    max-width: 260px;
}

.bb-footer-heading {
    font: 700 12px 'Public Sans', sans-serif;
    letter-spacing: 0.1em;
    color: var(--footer-muted);
    text-transform: uppercase;
}

.bb-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    font-size: 14px;
}

.bb-footer-links a {
    color: var(--footer-links);
}

.bb-footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.bb-footer-bottom {
    max-width: var(--container-max);
    margin: 40px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    color: var(--footer-muted);
}

@media (max-width: 900px) {
    .bb-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .bb-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Page shell (package 2) — shared by every new interior page: Solutions,
   TreasuryAgent + audience pages, FAQs, CustomerFlow, FileAdaptor,
   How-it-works index + viewers, Support, Company, Contact.
   -------------------------------------------------------------------------- */
body.bb-shell-page {
    padding-top: var(--header-height);
}

/* v3: every interior hero is the navy gradient over the bridge photograph.
   The photo reads at roughly 10% through the gradient — texture, not picture.
   background-color is the fallback if the image fails to load. The homepage
   is the exception: it uses the same photo at full strength. */
.bb-page-header {
    background:
        radial-gradient(120% 160% at 85% -20%,
            rgba(10, 74, 133, 0.88) 0%,
            rgba(0, 51, 102, 0.90) 48%,
            rgba(0, 32, 63, 0.93) 100%),
        url('assets/bridge-hero.png') center/cover no-repeat;
    background-color: #00203f;
    color: #ffffff;
    padding: 72px 56px 80px;
}

.bb-page-header-inner {
    max-width: 860px;
}

/* Product/audience heroes put the reversed product mark opposite the text */
.bb-page-header--mark {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 56px;
}

.bb-page-header-mark {
    flex: none;
    width: 176px;
    height: auto;
    opacity: 0.9;
}

.bb-page-eyebrow {
    display: inline-block;
    font: 700 12px 'Public Sans', sans-serif;
    letter-spacing: 0.14em;
    color: #a9c6e6;
    text-transform: uppercase;
}


.bb-page-header h1 {
    font-size: 46px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 12px 0 0;
    max-width: 780px;
}


.bb-page-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #c4d2e1;
    margin: 18px 0 0;
    max-width: 720px;
}

/* Eyebrow following a back-link (FAQ, audience pages) needs its own top gap */
.bb-page-eyebrow--after-back {
    display: block;
    margin-top: 22px;
}


.bb-page-header .bb-btn-primary,
.bb-page-header .bb-btn-secondary {
    margin-top: 28px;
}

.bb-page-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.bb-page-actions .bb-btn-primary,
.bb-page-actions .bb-btn-secondary {
    margin-top: 0;
}

.bb-btn-primary--white {
    background: #ffffff;
    color: var(--primary-blue);
}

.bb-btn-primary--white:hover {
    background: #eef3f8;
}

.bb-btn-outline {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 1px solid #4a7fb5;
    padding: 15px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: background var(--duration-fast) var(--ease-out);
}

.bb-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Body: content, or content + sidebar */
.bb-shell-body {
    padding: 56px;
    max-width: 1440px;
    margin: 0 auto;
}

.bb-shell-body--sidebar {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
}

.bb-shell-body--sidebar.bb-shell-body--narrow-aside {
    grid-template-columns: 1fr 320px;
}

.bb-shell-main {
    max-width: 820px;
}

.bb-shell-main h2 {
    font-size: 30px;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin-top: 44px;
}

.bb-shell-main h2:first-child {
    margin-top: 0;
}

.bb-shell-main > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    margin: 16px 0 0;
    text-wrap: pretty;
}

/* Definition rows — bordered stack, not bullets */
.bb-def-rows {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}

.bb-def-row {
    padding: 13px 0;
    border-top: 1px solid var(--card-border);
    font-size: 15px;
    line-height: 1.6;
    color: #3c4c5c;
}

.bb-def-rows .bb-def-row:last-child {
    border-bottom: 1px solid var(--card-border);
}

.bb-def-row strong {
    color: var(--text-dark);
}

/* Two-column key/value rows */
.bb-kv-rows {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}

.bb-kv-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    padding: 13px 0;
    border-top: 1px solid var(--card-border);
    font-size: 15px;
    line-height: 1.6;
    color: #3c4c5c;
}

.bb-kv-rows .bb-kv-row:last-child {
    border-bottom: 1px solid var(--card-border);
}

.bb-kv-row dt {
    font-weight: 600;
    color: var(--text-dark);
}

.bb-kv-row dd {
    margin: 0;
}

/* Pull quote */
.bb-pullquote {
    border-left: 3px solid var(--primary-blue);
    padding: 4px 0 4px 24px;
    margin: 32px 0 0;
}

.bb-pullquote p {
    font-family: var(--font-heading);
    font-weight: 600;
    font-style: italic;
    font-size: 20px;
    line-height: 1.45;
    color: var(--text-dark);
    margin: 0;
}

.bb-pullquote cite {
    display: block;
    font-style: normal;
    font-size: 14px;
    color: #6b7784;
    margin-top: 10px;
}

/* Sidebar card */
.bb-sidebar-card {
    border: 1px solid #e4e9f1;
    border-radius: 6px;
    padding: 26px;
}

.bb-sidebar-card + .bb-sidebar-card {
    margin-top: 20px;
}

.bb-sidebar-card--tinted {
    background: var(--bg-gray);
}

.bb-sidebar-label {
    font: 700 12px 'Public Sans', sans-serif;
    letter-spacing: 0.12em;
    color: var(--accent-blue);
    text-transform: uppercase;
}

.bb-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 16px;
    font-size: 15px;
    color: var(--primary-blue);
    font-weight: 600;
}

.bb-sidebar-links a:hover {
    text-decoration: underline;
}

.bb-sidebar-links span.bb-sidebar-inert {
    color: var(--text-muted);
    font-weight: 500;
}

.bb-sidebar-links--plain {
    color: #3c4c5c;
    font-weight: 400;
}

/* "Walk through the drawings" sidebar card — TreasuryAgent hub + audience pages */
.bb-drawings-card {
    display: block;
    border: 1px solid var(--primary-blue);
    border-radius: 6px;
    padding: 22px 26px;
    margin-top: 20px;
}

.bb-drawings-title {
    font: 700 17px 'Archivo', sans-serif;
    color: var(--primary-blue);
}

.bb-drawings-sub {
    font-size: 14px;
    line-height: 1.55;
    color: #5b6b7a;
    margin-top: 6px;
}

/* Page-header back-link ("← Solutions", "← TreasuryAgent") */
.bb-page-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 600 14px 'Public Sans', sans-serif;
    color: #a9c6e6;
}

.bb-page-back:hover {
    color: #ffffff;
}

.bb-page-back span {
    font-size: 17px;
}

/* CTA band */
.bb-cta-band {
    background: var(--primary-blue);
    color: #ffffff;
    padding: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.bb-cta-band h2 {
    font-size: 30px;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0;
}

.bb-cta-band p {
    font-size: 16px;
    line-height: 1.6;
    color: #b9cbdd;
    margin: 10px 0 0;
}

/* Audience tab row — TreasuryAgent hub + its 3 audience pages.
   v3: tinted on the hub so the tabs read as a strip of links; white on the
   audience pages themselves. Navy 600 + a small chevron were added at the
   client's direction so these read as links rather than labels. */
.bb-tab-row {
    display: flex;
    gap: 0;
    padding: 0 56px;
    background: #eef1f4;
    border-bottom: 1px solid #dde3e9;
    overflow-x: auto;
}

.bb-tab-row--plain {
    background: #ffffff;
    border-bottom-color: var(--card-border);
}

.bb-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 18px 26px;
    font: 600 15px 'Public Sans', sans-serif;
    color: var(--primary-blue);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.bb-tab-chevron {
    font-size: 13px;
    color: #7e94ab;
}

.bb-tab:hover {
    border-bottom-color: #c2cedb;
}

.bb-tab--active {
    color: var(--primary-blue);
    font-weight: 700;
    border-bottom-color: var(--primary-blue);
}

@media (max-width: 900px) {
    .bb-page-header {
        padding: 56px 24px 64px;
    }

    .bb-page-header h1 {
        font-size: 34px;
    }


    .bb-shell-body {
        padding: 40px 24px;
    }

    /* Collapse every sidebar variant. The --narrow-aside rule is a compound
       selector, so it has to be matched at equal specificity to be overridden. */
    .bb-shell-body--sidebar,
    .bb-shell-body--sidebar.bb-shell-body--narrow-aside {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* The hero product mark must not hold the page open */
    .bb-page-header--mark {
        flex-wrap: wrap;
        gap: 28px;
    }

    .bb-page-header-mark {
        width: 120px;
    }

    /* Key/value rows stack rather than reserving a fixed 220px label column */
    .bb-kv-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .bb-shell-aside {
        order: -1;
    }

    .bb-cta-band {
        padding: 40px 24px;
    }

    .bb-tab-row {
        padding: 0 24px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--duration-normal) var(--ease-out);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    padding: var(--space-8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all var(--duration-normal) var(--ease-out);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.mobile-nav-list a {
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--text-dark);
    display: block;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-list a:hover {
    color: var(--accent-blue);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    padding: 10rem var(--space-16) 6rem;
    background: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(43, 111, 214, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(43, 111, 214, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

@media (max-width: 1024px) {
    .hero {
        padding: 8rem var(--space-8) 4rem;
    }
}

.hero-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    animation: fadeInUp 0.8s var(--ease-out) both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(43, 111, 214, 0.1);
    color: var(--accent-blue);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-6);
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-6);
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: var(--text-4xl);
    }
}

.hero-title-line {
    display: block;
}

.hero-title-line.accent {
    color: var(--accent-blue);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-body);
    margin-bottom: var(--space-8);
    max-width: 520px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

/* Hero Visual - Dashboard Preview */
.hero-visual {
    display: none;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

.dashboard-preview {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-6);
    position: relative;
}

.dashboard-header {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
}

.dashboard-dot.red { background: #f87171; }
.dashboard-dot.yellow { background: #fbbf24; }
.dashboard-dot.green { background: #34d399; }

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.dash-card {
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    padding: var(--space-5);
}

.dash-card.wide {
    grid-column: span 2;
}

.dash-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

.dash-value {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-dark);
}

.dash-value.positive {
    color: var(--color-success);
}

.dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-top: var(--space-3);
}

.chart-bar {
    flex: 1;
    background: var(--accent-blue);
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
}

.chart-bar:nth-child(1) { height: 40%; }
.chart-bar:nth-child(2) { height: 65%; }
.chart-bar:nth-child(3) { height: 45%; }
.chart-bar:nth-child(4) { height: 80%; }
.chart-bar:nth-child(5) { height: 60%; }
.chart-bar:nth-child(6) { height: 90%; opacity: 1; }

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: white;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    animation: float 3s ease-in-out infinite;
}

.floating-badge.top {
    top: -20px;
    right: 40px;
}

.floating-badge.bottom {
    bottom: 30px;
    left: -30px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon.blue { background: rgba(43, 111, 214, 0.1); }
.badge-icon.green { background: rgba(16, 185, 129, 0.1); }

.badge-icon svg {
    width: 18px;
    height: 18px;
}

.badge-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-dark);
}

.badge-sub {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.badge-sub-tags {
    display: flex;
    gap: 6px;
    margin-top: 2px;
}

.badge-sub-tags span {
    font-size: 10px;
    font-weight: 500;
    color: var(--accent-blue);
    background: rgba(43, 111, 214, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.02em;
}

/* Hide old hero cards on homepage */
.home-page .hero-card {
    display: none;
}

/* --------------------------------------------------------------------------
   Trusted By / Logos Section
   -------------------------------------------------------------------------- */
.logos-section {
    padding: var(--space-16) var(--space-16);
    border-bottom: 1px solid var(--border-light);
}

@media (max-width: 1024px) {
    .logos-section {
        padding: var(--space-12) var(--space-8);
    }
}

.logos-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.logos-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-8);
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-16);
    flex-wrap: wrap;
    opacity: 0.5;
}

.logo-placeholder {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-body);
    letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   Stats Section
   -------------------------------------------------------------------------- */
.stats-section {
    background: var(--bg-white);
    padding: var(--space-16) var(--space-16);
    border-bottom: 1px solid var(--border-light);
}

@media (max-width: 1024px) {
    .stats-section {
        padding: var(--space-12) var(--space-8);
    }
}

.stats-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
}

@media (min-width: 768px) {
    .stats-inner {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-4);
    }
}

.stat-item {
    padding: var(--space-4);
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--accent-blue);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.stat-divider {
    display: none;
}

/* --------------------------------------------------------------------------
   Vision & Mission Section
   -------------------------------------------------------------------------- */
.vision-mission {
    padding: var(--space-24) var(--space-16);
    max-width: var(--container-max);
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .vision-mission {
        padding: var(--space-16) var(--space-8);
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-header h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: var(--text-3xl);
    }
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.vm-card {
    background: var(--bg-gray);
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-blue);
}

.vm-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.vm-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent-blue);
}

.vm-card h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.vm-card p {
    color: var(--text-body);
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   Features Section
   -------------------------------------------------------------------------- */
.features-section {
    padding: var(--space-24) var(--space-16);
    max-width: var(--container-max);
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .features-section {
        padding: var(--space-16) var(--space-8);
    }
}

.features-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.features-header .section-subtitle {
    margin: 0 auto;
}

/* Convert section-label to section-tag style */
.features-header .section-label {
    display: inline-block;
    background: rgba(43, 111, 214, 0.1);
    color: var(--accent-blue);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    text-transform: none;
    letter-spacing: normal;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: var(--space-8);
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-blue);
    transition: height var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-number {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: rgba(43, 111, 214, 0.15);
    line-height: 1;
    margin-bottom: var(--space-4);
    transition: color var(--duration-normal);
}

.feature-card:hover .feature-number {
    color: rgba(43, 111, 214, 0.3);
}

.feature-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--text-dark);
}

.feature-card p {
    font-size: var(--text-base);
    color: var(--text-body);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Values Section (Dark)
   -------------------------------------------------------------------------- */
.values-section {
    background: var(--primary-blue);
    padding: var(--space-24) var(--space-16);
    color: white;
}

@media (max-width: 1024px) {
    .values-section {
        padding: var(--space-16) var(--space-8);
    }
}

.values-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.values-section .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.values-section .section-header h2 {
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
}

.value-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.value-card h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: white;
}

.value-card p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Testimonial Section
   -------------------------------------------------------------------------- */
.testimonial-section {
    padding: var(--space-24) var(--space-16);
    background: var(--bg-white);
}

@media (max-width: 1024px) {
    .testimonial-section {
        padding: var(--space-16) var(--space-8);
    }
}

.testimonial-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    color: var(--accent-blue);
    opacity: 0.3;
    margin-bottom: var(--space-6);
}

.testimonial-content blockquote {
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: var(--space-8);
}

@media (max-width: 768px) {
    .testimonial-content blockquote {
        font-size: var(--text-xl);
    }
}

.testimonial-content cite {
    display: block;
}

.testimonial-content cite strong {
    display: block;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-1);
}

.testimonial-content cite span {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   News Section
   -------------------------------------------------------------------------- */
.news-section {
    padding: var(--space-24) var(--space-16);
    background: var(--bg-gray);
}

@media (max-width: 1024px) {
    .news-section {
        padding: var(--space-16) var(--space-8);
    }
}

.news-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.news-header {
    margin-bottom: var(--space-12);
}

/* Convert news section-label to section-tag style */
.news-header .section-label {
    display: inline-block;
    background: rgba(43, 111, 214, 0.1);
    color: var(--accent-blue);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    text-transform: none;
    letter-spacing: normal;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    transition: all var(--duration-normal) var(--ease-out);
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.news-card.news-featured {
    background: var(--primary-blue);
    color: white;
    border: none;
}

.news-card.news-featured .news-date {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.news-card.news-featured .news-date .day,
.news-card.news-featured .news-date .month {
    color: white;
}

.news-card.news-featured h3 {
    color: white;
}

.news-card.news-featured p {
    color: rgba(255, 255, 255, 0.7);
}

.news-card.news-featured .news-tag {
    background: var(--accent-blue);
    color: white;
}

.news-card.news-featured .news-link {
    color: rgba(255, 255, 255, 0.9);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.news-date .day {
    font-size: var(--text-2xl);
    font-weight: 700;
    line-height: 1;
    color: var(--text-dark);
}

.news-date .month {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.news-date .year {
    display: none;
}

.news-content {
    flex: 1;
}

.news-tag {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: rgba(43, 111, 214, 0.1);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-blue);
    margin-bottom: var(--space-3);
}

.news-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
    line-height: 1.4;
}

.news-card p {
    font-size: var(--text-sm);
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.news-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-blue);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.news-link::after {
    content: '→';
    transition: transform var(--duration-fast);
}

.news-link:hover::after {
    transform: translateX(4px);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-blue);
}

.view-all-link svg {
    transition: transform var(--duration-fast);
}

.view-all-link:hover svg {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
    padding: var(--space-24) var(--space-16);
    text-align: center;
    background: var(--bg-white);
}

@media (max-width: 1024px) {
    .cta-section {
        padding: var(--space-16) var(--space-8);
    }
}

.cta-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.cta-content h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: var(--text-3xl);
    }
}

.cta-content p {
    font-size: var(--text-lg);
    color: var(--text-body);
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--bg-gray);
    padding: var(--space-8) var(--space-8);
    border-top: 1px solid var(--border-light);
}

@media (max-width: 1024px) {
    .footer {
        padding: var(--space-6) var(--space-6);
    }
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

@media (max-width: 768px) {
    .footer-brand {
        flex-direction: column;
        gap: var(--space-4);
    }
}

.footer-brand img {
    height: 32px;
    width: auto;
}

.footer-brand p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a,
.footer-col a {
    font-size: var(--text-sm);
    color: var(--text-body);
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-col a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: var(--space-8) auto 0;
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.footer-bottom a {
    font-size: var(--text-sm);
    color: var(--text-body);
}

.footer-bottom a:hover {
    color: var(--accent-blue);
}

/* ==========================================================================
   Subpage Styles (for non-homepage)
   ========================================================================== */

.page-wrapper {
    min-height: 100vh;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-8);
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding: var(--space-8) 0;
}

@media (min-width: 768px) {
    .content-layout {
        grid-template-columns: 220px 1fr;
        gap: var(--space-12);
    }
}

.content-sidebar {
    padding: var(--space-4) 0;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.sidebar-nav a {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast);
}

.sidebar-nav a:hover,
.sidebar-nav a.active-link {
    background: var(--bg-gray);
    color: var(--accent-blue);
}

.content-main {
    padding: var(--space-4) 0;
}

.headline {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-8);
    color: var(--text-dark);
    position: relative;
}

.headline::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-blue);
    margin-top: var(--space-4);
    border-radius: 2px;
}

.body-text {
    color: var(--text-body);
    line-height: 1.8;
}

.body-text p {
    margin-bottom: var(--space-6);
}

.body-text a {
    color: var(--accent-blue);
}

.body-text a:hover {
    text-decoration: underline;
}

.company-section {
    margin-bottom: var(--space-8);
}

.company-section h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
}

/* Product Items */
.product-item {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--border-light);
}

.product-logo {
    flex-shrink: 0;
}

.product-info h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.product-info p {
    color: var(--text-body);
    margin-bottom: var(--space-4);
}

.product-info a {
    font-weight: 600;
    color: var(--accent-blue);
}

/* Forms */
.contact-form {
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(43, 111, 214, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-6);
}

.product-card-small {
    text-align: center;
}

.product-card-small img {
    margin: 0 auto var(--space-3);
    border-radius: var(--radius-md);
    transition: transform var(--duration-fast);
}

.product-card-small:hover img {
    transform: scale(1.05);
}

.product-card-small a {
    font-weight: 600;
    color: var(--accent-blue);
}

/* Legacy page compatibility */
body:not(.home-page) {
    padding-top: var(--header-height);
}

body:not(.home-page) .header {
    background: var(--bg-white);
}

body:not(.home-page) .main-content {
    padding: var(--space-8) 0 var(--space-16);
}

body:not(.home-page) .footer {
    margin-top: auto;
}

/* Utility Classes */
.active-link {
    font-weight: 600;
    color: var(--accent-blue) !important;
}

/* Products Header Image */
.products-header {
    margin-bottom: var(--space-8);
}

.products-header img {
    border-radius: var(--radius-md);
}

/* Products Hero Banner with Bridge */
.products-hero {
    position: relative;
    height: 280px;
    margin-top: var(--header-height);
    overflow: hidden;
}

.products-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.7)),
        url('../placed/products_bridge.jpg') center center / cover no-repeat;
}

.products-hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
    text-align: center;
}

.products-hero-content p {
    color: #fff;
    font-size: var(--text-2xl);
    font-style: italic;
    font-weight: 300;
    max-width: 700px;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Adjust main content when products hero is present */
.products-hero + .main-content {
    padding-top: var(--space-8);
}

/* Pages with hero banner - no default body padding */
body.has-hero-banner {
    padding-top: 0;
}

/* Section Label fallback styling (for existing pages) */
.section-label {
    display: inline-block;
    background: rgba(43, 111, 214, 0.1);
    color: var(--accent-blue);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

/* Connection lines - hide */
.connection-lines {
    display: none;
}

/* ==========================================================================
   Additional Subpage Styles
   ========================================================================== */

/* Sidebar Box (for sidebar additional content) */
.sidebar-box {
    background: var(--bg-gray);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    margin-top: var(--space-6);
}

.sidebar-box p {
    margin: 0;
    font-size: var(--text-sm);
}

.sidebar-box a {
    color: var(--accent-blue);
    font-weight: 600;
}

/* FAQ Styles */
.faq-content {
    max-width: 800px;
}

.faq-item {
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
}

.faq-item p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 0;
}

/* News Article Styles (for news page) */
.news-article {
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--border-light);
}

.news-article:first-child {
    padding-top: 0;
}

.news-article:last-child {
    border-bottom: none;
}

.news-article h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
}

.news-article p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Feature List (bullet points) */
.feature-list {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
}

.feature-list li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
    color: var(--text-body);
    line-height: 1.7;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
}

/* Two Column List */
.two-column-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2);
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
}

@media (min-width: 600px) {
    .two-column-list {
        grid-template-columns: 1fr 1fr;
    }
}

.two-column-list li {
    position: relative;
    padding-left: var(--space-6);
    color: var(--text-body);
    line-height: 1.7;
}

.two-column-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

/* Quote Block */
.quote-block {
    background: var(--bg-gray);
    border-left: 4px solid var(--accent-blue);
    padding: var(--space-6);
    margin: var(--space-6) 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quote-block p {
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 0;
    font-size: var(--text-lg);
    line-height: 1.8;
}

/* Job Listing Styles */
.job-listing {
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--border-light);
}

.job-listing:last-child {
    border-bottom: none;
}

.job-listing h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.job-listing p {
    color: var(--text-body);
    margin-bottom: var(--space-3);
}

.job-listing .job-meta {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Support/Contact Info Box */
.info-box {
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    margin: var(--space-6) 0;
}

.info-box h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
    color: var(--text-dark);
}

.info-box p {
    color: var(--text-body);
    margin-bottom: var(--space-3);
}

.info-box a {
    color: var(--accent-blue);
    font-weight: 500;
}

/* Benefits Grid (for careers page) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    margin: var(--space-8) 0;
}

.benefit-item {
    background: var(--bg-gray);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
}

.benefit-item h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.benefit-item p {
    font-size: var(--text-sm);
    color: var(--text-body);
    margin: 0;
}

/* Stock Table (for investors page) */
.stock-info {
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin: var(--space-6) 0;
}

.stock-info table {
    width: 100%;
    border-collapse: collapse;
}

.stock-info td {
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--border-light);
}

.stock-info tr:last-child td {
    border-bottom: none;
}

.stock-info td:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.stock-info td:last-child {
    text-align: right;
    color: var(--text-body);
}

/* Footer copyright text */
.footer-copy {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ==========================================================================
   Enhanced Company Page Styles
   ========================================================================== */

/* Enhanced Layout */
.content-layout-enhanced {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding: var(--space-6) 0;
}

@media (min-width: 768px) {
    .content-layout-enhanced {
        grid-template-columns: 240px 1fr;
        gap: var(--space-10);
    }
}

/* Enhanced Sidebar */
.sidebar-enhanced {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.sidebar-section {
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    padding: var(--space-5);
}

.sidebar-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--border-light);
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-menu li a {
    display: block;
    padding: var(--space-2) var(--space-3);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
}

.sidebar-menu li a:hover {
    background: var(--bg-white);
    color: var(--accent-blue);
}

.sidebar-menu li a.active {
    background: var(--bg-white);
    color: var(--accent-blue);
    box-shadow: var(--shadow-sm);
}

.sidebar-contact-card {
    background: var(--primary-blue);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    text-align: center;
}

.sidebar-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-3);
}

.sidebar-contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
}

.sidebar-contact-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-1);
}

.sidebar-contact-value {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* Enhanced Main Content */
.content-main-enhanced {
    min-width: 0;
}

.page-header-enhanced {
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--border-light);
}

.page-tag {
    display: none;
}

.page-title-enhanced {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
}

.page-subtitle-enhanced {
    font-size: 14px;
    color: var(--text-body);
    max-width: 500px;
    line-height: 1.6;
}

/* Content Body */
.content-body-enhanced {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.content-section {
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--border-light);
}

.content-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.section-heading {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.section-heading::before {
    content: '';
    width: 3px;
    height: 18px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.content-body-enhanced p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: var(--space-4);
}

.content-body-enhanced p:last-child {
    margin-bottom: 0;
}

.content-body-enhanced a {
    color: var(--accent-blue);
    font-weight: 500;
}

.content-body-enhanced a:hover {
    text-decoration: underline;
}

/* Client Grid */
.client-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-top: var(--space-4);
}

@media (min-width: 600px) {
    .client-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.client-category {
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    padding: var(--space-4);
}

.client-category h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-blue);
    margin-bottom: var(--space-2);
}

.client-category p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Content Callout */
.content-callout {
    background: var(--bg-gray);
    border-left: 3px solid var(--slate-300);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: var(--space-6) var(--space-6) var(--space-6) var(--space-8);
    margin-top: var(--space-6);
    position: relative;
}

.content-callout::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 16px;
    font-size: 40px;
    font-family: Georgia, serif;
    color: var(--slate-300);
    line-height: 1;
}

.content-callout .callout-quote {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0 0 var(--space-2) 0;
    font-style: italic;
    line-height: 1.7;
}

.content-callout .callout-attribution {
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-500);
    margin: 0;
    font-style: normal;
}

/* Enhanced News Items */
.news-item-enhanced {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--border-light);
}

.news-item-enhanced:first-child {
    padding-top: 0;
}

.news-item-enhanced:last-child {
    border-bottom: none;
}

.news-date-badge {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.news-date-badge .news-day {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-blue);
    line-height: 1;
}

.news-date-badge .news-month {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 2px;
}

.news-item-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
    line-height: 1.4;
}

.news-item-content p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* Enhanced Product Cards */
.product-card-enhanced {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-5);
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
    transition: all 0.2s ease;
}

.product-card-enhanced:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.product-card-enhanced:last-child {
    margin-bottom: 0;
}

.product-card-icon {
    flex-shrink: 0;
}

.product-card-icon img {
    border-radius: var(--radius-sm);
    transition: transform 0.2s ease;
}

.product-card-enhanced:hover .product-card-icon img {
    transform: scale(1.05);
}

.product-card-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.product-card-content h3 a {
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.product-card-content h3 a:hover {
    color: var(--accent-blue);
}

.product-card-tagline {
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-blue);
    margin-bottom: var(--space-3);
}

.product-card-content p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-blue);
}

.product-card-link span {
    transition: transform 0.2s ease;
}

.product-card-link:hover span {
    transform: translateX(4px);
}

/* ==========================================================================
   Solution Cards (for TreasuryAgent page)
   ========================================================================== */

.solution-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.solution-card {
    display: block;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-decoration: none;
    transition: all 0.2s ease;
}

.solution-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.solution-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-4);
}

.solution-card h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.solution-card p {
    font-size: var(--text-sm);
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: var(--space-3);
}

.solution-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-blue);
}

/* ==========================================================================
   TreasuryAgent Solution Cards (Modern)
   ========================================================================== */
.ta-solutions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.ta-solution-card {
    display: block;
    padding: 32px 28px;
    background: #f7f9fb;
    border: 1px solid #eaeef2;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ta-solution-card:hover {
    background: #fff;
    border-color: #2b6fd6;
    box-shadow: 0 4px 20px rgba(43, 111, 214, 0.1);
}

.ta-solution-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #eaeef2;
    border-radius: 12px;
    margin-bottom: 20px;
    color: #2b6fd6;
    transition: all 0.2s ease;
}

.ta-solution-card:hover .ta-solution-icon {
    background: #2b6fd6;
    border-color: #2b6fd6;
    color: #fff;
}

.ta-solution-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0d2238;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.ta-solution-card:hover h4 {
    color: #2b6fd6;
}

.ta-solution-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #51606e;
    margin-bottom: 16px;
}

.ta-solution-link {
    font-size: 14px;
    font-weight: 600;
    color: #2b6fd6;
}

.ta-solution-link::after {
    content: ' \2192';
    display: inline-block;
    transition: transform 0.2s ease;
}

.ta-solution-card:hover .ta-solution-link::after {
    transform: translateX(4px);
}

.ta-solution-card--static {
    cursor: default;
}

.ta-solution-card--static:hover {
    background: #f7f9fb;
    border-color: #eaeef2;
    box-shadow: none;
}

.ta-solution-card--static:hover .ta-solution-icon {
    background: #fff;
    border-color: #eaeef2;
    color: #2b6fd6;
}

.ta-solution-card--static:hover h4 {
    color: #0d2238;
}

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

/* ==========================================================================
   Options Grid (for integration options, support resources)
   ========================================================================== */

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-5);
    margin-top: var(--space-5);
}

.option-card {
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.option-card h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.option-card p {
    font-size: var(--text-sm);
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

.option-card-link {
    display: block;
    text-decoration: none;
}

.option-card-link:hover {
    border-color: var(--accent-blue);
    background: var(--bg-white);
}

.option-card-action {
    display: block;
    margin-top: var(--space-3);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-blue);
}

/* ==========================================================================
   Two-Column Features
   ========================================================================== */

.features-two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-5);
}

.feature-category h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--accent-blue);
}

/* ==========================================================================
   Support Page Styles
   ========================================================================== */

.sidebar-contact {
    padding: var(--space-2) 0;
}

.sidebar-contact p {
    font-size: 13px;
    color: var(--text-body);
    margin-bottom: var(--space-3);
    line-height: 1.5;
}

.sidebar-contact p:last-child {
    margin-bottom: 0;
}

.sidebar-contact a {
    color: var(--accent-blue);
    font-weight: 500;
}

.support-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-5);
    margin-top: var(--space-5);
}

.support-contact-card {
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    padding: var(--space-6);
}

.support-contact-card h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
}

.support-number {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-3) !important;
}

.support-email {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--accent-blue);
}

.support-note {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0 !important;
}

.support-hours-box {
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    margin-top: var(--space-4);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-light);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-muted);
}

.hours-value {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-dark);
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-5);
    margin-top: var(--space-5);
}

.office-card {
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    padding: var(--space-6);
}

.office-card h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
}

.office-address {
    font-size: var(--text-base);
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: var(--space-4) !important;
}

.office-details {
    border-top: 1px solid var(--border-light);
    padding-top: var(--space-4);
    margin-bottom: var(--space-4);
}

.office-details p {
    font-size: var(--text-sm);
    color: var(--text-body);
    margin-bottom: var(--space-2) !important;
}

.office-details p:last-child {
    margin-bottom: 0 !important;
}

.office-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-blue);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.hotel-link {
    display: block;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.hotel-link:hover {
    border-color: var(--accent-blue);
    background: var(--bg-white);
}

.hotel-link strong {
    display: block;
    font-size: var(--text-base);
    color: var(--text-dark);
    margin-bottom: var(--space-1);
}

.hotel-link span {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ==========================================================================
   Investors Page Styles
   ========================================================================== */

.info-card {
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    margin-top: var(--space-4);
}

.info-address {
    font-size: var(--text-base);
    color: var(--text-body);
    line-height: 1.7;
    margin: 0 !important;
}

.contact-link-large {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--accent-blue);
}

/* ==========================================================================
   Careers Page Styles
   ========================================================================== */

.apply-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
    margin-top: var(--space-5);
}

.apply-card {
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    text-align: center;
}

.apply-card h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.apply-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-4) !important;
}

.apply-card .btn {
    display: inline-block;
}

.apply-email {
    display: inline-block;
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--primary-blue);
    text-decoration: none;
}

.apply-email:hover {
    text-decoration: underline;
}

.apply-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #2b6fd6 !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.apply-btn:hover {
    background: #003366 !important;
    color: #fff !important;
}

.job-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: var(--space-5);
}

.job-header {
    background: var(--bg-gray);
    padding: var(--space-5);
    border-bottom: 1px solid var(--border-light);
}

.job-header h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.job-meta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.job-location,
.job-type {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.job-location::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    margin-right: var(--space-2);
}

.job-type::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    margin-right: var(--space-2);
}

.job-content {
    padding: var(--space-6);
}

.job-content h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-dark);
    margin-top: var(--space-5);
    margin-bottom: var(--space-3);
}

.job-content h4:first-child {
    margin-top: 0;
}

.job-content p {
    font-size: var(--text-base);
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.job-apply {
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.job-note {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-style: italic;
    margin: 0 !important;
}

/* ==========================================================================
   Redesigned Home Page Styles
   ========================================================================== */

/* Clean Hero Section */
.hero-clean {
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-white) 100%);
    padding: var(--space-16) var(--space-6);
    border-bottom: 1px solid var(--border-light);
}

.hero-clean-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.hero-clean-content {
    max-width: 720px;
    margin-bottom: var(--space-12);
}

.hero-tag {
    display: inline-block;
    background: rgba(43, 111, 214, 0.1);
    color: var(--accent-blue);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.hero-clean-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: var(--space-5);
}

.hero-clean-subtitle {
    font-size: var(--text-lg);
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 600px;
}

.hero-clean-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--bg-white);
}

.hero-clean-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 600px;
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-light);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-1);
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Products Overview Section */
.products-overview {
    padding: var(--space-16) var(--space-6);
    background: var(--bg-white);
}

.products-overview-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-header-clean {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-header-clean h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
}

.section-header-clean p {
    font-size: var(--text-lg);
    color: var(--text-muted);
}

.products-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
}

.product-card-home {
    display: block;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-card-home:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-5);
}

.product-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card-home h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
}

.product-card-home p {
    font-size: var(--text-base);
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.product-card-link-home {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-blue);
}

/* Why Section */
.why-section {
    padding: var(--space-16) var(--space-6);
    background: var(--bg-gray);
}

.why-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
}

@media (min-width: 1024px) {
    .why-inner {
        grid-template-columns: 1.5fr 1fr;
        align-items: start;
    }
}

.section-tag-alt {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-blue);
    margin-bottom: var(--space-3);
}

.why-content h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.why-intro {
    font-size: var(--text-lg);
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.why-feature {
    display: flex;
    gap: var(--space-4);
}

.why-feature-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--accent-blue);
    color: var(--bg-white);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-1);
}

.why-feature p {
    font-size: var(--text-sm);
    color: var(--text-body);
    line-height: 1.6;
}

.why-quote {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border-left: 4px solid var(--accent-blue);
}

.why-quote blockquote {
    font-size: var(--text-lg);
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: var(--space-5);
    font-style: italic;
}

.why-quote cite {
    display: block;
}

.why-quote cite strong {
    display: block;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-dark);
    font-style: normal;
}

.why-quote cite span {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-style: normal;
}

/* Audiences Section */
.audiences-section {
    padding: var(--space-16) var(--space-6);
    background: var(--bg-white);
}

.audiences-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.audiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.audience-card {
    display: block;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.audience-card:hover {
    background: var(--bg-white);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-md);
}

.audience-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
}

.audience-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-blue);
}

.audience-card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
}

.audience-card p {
    font-size: var(--text-base);
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.audience-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-blue);
}

/* Company Brief Section */
.company-brief {
    padding: var(--space-16) var(--space-6);
    background: var(--bg-gray);
}

.company-brief-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
}

@media (min-width: 1024px) {
    .company-brief-inner {
        grid-template-columns: 2fr 1fr;
        align-items: start;
    }
}

.company-brief-content h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-5);
}

.company-brief-content p {
    font-size: var(--text-base);
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.company-brief-content .btn {
    margin-top: var(--space-4);
}

.company-brief-highlights {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
}

.highlight-item {
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border-light);
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-1);
}

.highlight-value {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
}

/* Clean CTA Section */
.cta-clean {
    padding: var(--space-16) var(--space-6);
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003366 100%);
    text-align: center;
}

.cta-clean-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-clean h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: var(--space-4);
}

.cta-clean p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
}

.cta-clean-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--bg-white);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive for New Home */
@media (max-width: 767px) {
    .hero-clean {
        padding: var(--space-10) var(--space-4);
    }

    .hero-clean-stats {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        text-align: left;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        gap: var(--space-3);
        text-align: left;
    }

    .hero-stat-number {
        font-size: var(--text-2xl);
    }

    .products-overview,
    .why-section,
    .audiences-section,
    .company-brief,
    .cta-clean {
        padding: var(--space-10) var(--space-4);
    }

    .products-grid-home,
    .audiences-grid {
        grid-template-columns: 1fr;
    }

    .why-quote {
        margin-top: var(--space-8);
    }
}
