/* ==========================================================================
   COROX BANK — Official Responsive Design System
   Corox Institutional Institutional Architecture & Wireframe Framework
   Signature Brand Palette: Corox Crimson Red (#CC0000), Onyx Carbon (#1B1B1B), 
   Pure Crisp White (#FFFFFF), Warm Gold (#DDAA00), and Soft Neutral Canvas
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    /* Corox Institutional Institutional Typography System */
    --font-serif: 'Merriweather', 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-primary: var(--font-sans);
    --font-display: 'Merriweather', 'Playfair Display', Georgia, serif;

    /* Corox Bank Official Color System */
    --brand-red: #CC0000;           /* Signature Corox Crimson Red */
    --brand-red-hover: #B30000;     /* Deep Red */
    --brand-red-dark: #8B0000;      /* Dark Crimson */
    --brand-red-subtle: rgba(204, 0, 0, 0.08);

    --brand-gold: #DDAA00;          /* Warm Institutional Gold Accent */
    --brand-gold-accent: #FFB81C;   /* Corox Institutional Stagecoach Gold */
    --brand-gold-dark: #B8860B;

    --brand-dark: #1B1B1B;          /* Carbon Onyx from logo */
    --brand-dark-deep: #111317;     /* Midnight Obsidian */
    --brand-dark-surface: #1E2229;  /* Modern Card Surface */
    --brand-dark-light: #2D323C;

    --pure-white: #FFFFFF;
    --off-white: #F8F9FA;
    --surface-light: #F3F4F6;
    --bg-cream: #FAF9F6;

    --text-dark: #111827;
    --text-muted-dark: #4B5563;
    --text-light: #FFFFFF;
    --text-muted-light: #9CA3AF;

    --accent-red-gradient: linear-gradient(135deg, #CC0000 0%, #8B0000 100%);
    --accent-dark-gradient: linear-gradient(135deg, #1B1B1B 0%, #0B0D11 100%);

    --border-subtle: #E5E7EB;
    --border-medium: #D1D5DB;
    --border-red: rgba(204, 0, 0, 0.2);

    --success: #059669;
    --success-bg: #ecfdf5;
    --warning: #D97706;
    --warning-bg: #fffbeb;
    --danger: #CC0000;
    --danger-bg: #fef2f2;
    --info: #CC0000;
    --info-bg: #fef2f2;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-pill: 9999px;

    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.1);
    --shadow-button: 0 4px 14px rgba(204, 0, 0, 0.3);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: var(--font-primary);
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.65;
    min-height: 100vh;
}

h1, h2, h3, .serif-heading {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--text-dark);
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ==========================================================================
   Corox Institutional Style Utility Navigation Bar
   ========================================================================== */
.wf-utility-bar {
    background: #F3F4F6;
    border-bottom: 1px solid #E5E7EB;
    font-size: 13px;
    font-family: var(--font-sans);
    width: 100%;
}

.wf-utility-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 38px;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.wf-segments {
    display: flex;
    align-items: center;
    gap: 0;
}

.wf-segment {
    padding: 9px 16px;
    font-weight: 600;
    color: #4B5563;
    font-size: 13px;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
    display: inline-flex;
    align-items: center;
}

.wf-segment:hover {
    color: var(--brand-red);
}

.wf-segment.active {
    color: var(--brand-red);
    font-weight: 800;
    border-bottom: 3px solid var(--brand-red);
    background: #FFFFFF;
}

.wf-quick-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 12px;
    color: #6B7280;
    font-weight: 600;
}

.wf-quick-links a {
    transition: color 0.2s;
}

.wf-quick-links a:hover {
    color: var(--brand-red);
    text-decoration: underline;
}

.wf-wire-desk-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #111827;
    font-weight: 700;
}

/* ==========================================================================
   Main Institutional Header (Crisp White Corox Institutional Style)
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.nav-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    transition: all 0.2s ease;
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--brand-red);
}

.nav-link.active {
    color: var(--brand-red);
    font-weight: 800;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-red);
    border-radius: 2px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-nav {
    padding: 0.6rem 1.3rem;
    font-size: 14px;
    min-height: 42px;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.btn-outline {
    background: transparent;
    color: var(--brand-red);
    border: 1.5px solid var(--brand-red);
}

.btn-outline:hover {
    background: var(--brand-red);
    color: #FFFFFF;
}

/* ==========================================================================
   Continuous Moving Marquee Ticker — Pure Crisp White Corox Institutional Style
   ========================================================================== */
.ticker-bar {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    color: #111827 !important;
    padding: 0.65rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #E5E7EB !important;
    border-bottom: 1px solid #E5E7EB !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    position: relative;
    width: 100%;
    box-sizing: border-box;
    z-index: 20;
}

.ticker-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.ticker-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #CC0000;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 11px;
    border-radius: 4px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

.ticker-track-wrapper {
    overflow: hidden;
    flex: 1;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0px, black 25px, black calc(100% - 25px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0px, black 25px, black calc(100% - 25px), transparent 100%);
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 3.5rem;
    white-space: nowrap;
    animation: marquee 48s linear infinite;
    will-change: transform;
}

.ticker-bar:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    white-space: nowrap;
}

.ticker-label {
    color: #4B5563 !important;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.ticker-val {
    font-weight: 800;
    color: #111827 !important;
    font-size: 13px;
}

.ticker-up {
    color: #059669 !important;
}

.ticker-down {
    color: #CC0000 !important;
}

.brand-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.brand-text {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--pure-white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    list-style: none;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted-light);
    transition: all 0.25s ease;
    padding: 6px 0;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--pure-white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--pure-white);
    border-radius: 2px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-nav {
    padding: 0.6rem 1.2rem;
    font-size: 13px;
    min-height: 40px;
}

/* ==========================================================================
   Hamburger Button & Mobile Navigation Drawer
   ========================================================================== */
.nav-mobile-btn {
    display: none;
    background: #FFFFFF;
    border: 1.5px solid #D1D5DB;
    border-radius: 6px;
    color: #1F2937;
    cursor: pointer;
    padding: 6px 11px;
    height: 38px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    user-select: none;
}

.nav-mobile-btn:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
    color: var(--brand-red);
}

.nav-mobile-btn:active {
    transform: scale(0.96);
    background: #F3F4F6;
}

.nav-mobile-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

.nav-mobile-btn-text {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: currentColor;
    line-height: 1;
}

/* Drawer Banking Division Segments */
.drawer-segments-wrapper {
    padding: 0.9rem 1.4rem;
    background: #151515;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.drawer-segments-title {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: #9CA3AF;
    margin-bottom: 0.6rem;
}

.drawer-segments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.drawer-segment-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0.55rem 0.75rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #D1D5DB;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.drawer-segment-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.15);
}

.drawer-segment-pill:active {
    transform: scale(0.97);
}

.drawer-segment-pill.active {
    background: var(--brand-red);
    color: #FFFFFF;
    border-color: var(--brand-red);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(204, 0, 0, 0.4);
}

.drawer-segment-pill svg {
    flex-shrink: 0;
    opacity: 0.85;
}

.drawer-segment-pill.active svg {
    opacity: 1;
}

/* Mobile Nav Drawer Backdrop */
.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 19, 23, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
    pointer-events: none;
}

.mobile-nav-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Body Scroll Lock */
body.drawer-open,
body.sidebar-open {
    overflow: hidden !important;
    touch-action: none;
}

/* Slide-in Navigation Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 86%;
    max-width: 380px;
    background: #1B1B1B;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.mobile-nav-drawer.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #151515;
    flex-shrink: 0;
}

.mobile-nav-brand {
    display: flex;
    align-items: center;
}

.mobile-drawer-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    cursor: pointer;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #FFB81C;
}

.mobile-drawer-close:active {
    transform: scale(0.92);
}

.mobile-drawer-cta {
    padding: 1.2rem 1.4rem;
    background: #222222;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

.mobile-drawer-cta .btn {
    min-height: 44px;
    font-size: 14px;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius-sm);
}

.mobile-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-group-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFB81C;
    margin-bottom: 0.7rem;
    padding-left: 0.2rem;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mobile-nav-list a {
    font-size: 14.5px;
    font-weight: 600;
    color: #E5E7EB;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.7rem 0.8rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    text-decoration: none;
    min-height: 44px;
}

.mobile-nav-list a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #FFFFFF;
}

.mobile-nav-list a.active {
    background: rgba(204, 0, 0, 0.2);
    color: #FFFFFF;
    font-weight: 700;
    border-left: 3px solid var(--brand-red);
}

.mobile-nav-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #D1D5DB;
    flex-shrink: 0;
}

.mobile-nav-list a.active .mobile-nav-icon {
    background: var(--brand-red);
    color: #FFFFFF;
}

.mobile-nav-badge {
    margin-left: auto;
    background: #059669;
    color: #FFFFFF;
    font-size: 10.5px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.mobile-drawer-footer {
    padding: 1rem 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #151515;
    flex-shrink: 0;
}

.drawer-support-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    text-align: center;
}

.drawer-support-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #9CA3AF;
    font-weight: 700;
}

.drawer-support-phone {
    font-size: 15px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 2px 0;
}

.drawer-support-sub {
    font-size: 11px;
    color: #9CA3AF;
}

/* Corox Bank Crimson & Onyx Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.8rem 1.6rem;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    min-height: 48px;
    letter-spacing: 0.2px;
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background: var(--brand-red);
    color: var(--pure-white);
    box-shadow: var(--shadow-button);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.5);
}

.btn-secondary {
    background: var(--brand-dark);
    color: var(--pure-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 16px;
    min-height: 52px;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero-video-wrapper {
    position: relative;
    padding: 5.5rem 1.5rem 4.5rem;
    overflow: hidden;
    background: var(--brand-dark-deep);
    color: var(--pure-white);
    width: 100%;
    box-sizing: border-box;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
    z-index: 0;
    filter: brightness(0.55) contrast(1.15);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(204, 0, 0, 0.15) 0%, rgba(11, 13, 17, 0.96) 80%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--pure-white);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--pure-white);
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted-light);
    max-width: 780px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.hero-video-container {
    margin-top: 3rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    background: #000;
    width: 100%;
}

.hero-video-container video {
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: cover;
    display: block;
}

/* Page Hero */
.page-hero {
    padding: 5rem 1.5rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #111317 0%, #1B1B1B 100%);
    border-bottom: 3px solid var(--brand-red);
    color: var(--pure-white);
    width: 100%;
    box-sizing: border-box;
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-muted-light);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section Containers & Spacing */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1.8rem;
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-muted-dark);
    font-size: 1.08rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.card-with-img {
    background: var(--pure-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    width: 100%;
}

.card-with-img:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-red);
}

.card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--brand-dark);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-with-img:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.8rem;
}

.card-body p {
    color: var(--text-muted-dark);
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 1.8rem;
    flex: 1;
}

/* Split Showcase Feature */
.showcase-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}

.showcase-img-box {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-hover);
    width: 100%;
    background: var(--brand-dark);
}

.showcase-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.feature-card {
    background: var(--pure-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-red);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(204, 0, 0, 0.08);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: var(--text-muted-dark);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Stat Cards in About Us */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.stat-card {
    background: var(--pure-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.stat-title {
    font-size: 11px;
    color: var(--text-muted-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.4rem;
    font-weight: 800;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-red);
    font-family: var(--font-serif);
}

/* ==========================================================================
   Footer — Corox Brand Red Corox Institutional Style
   ========================================================================== */
.site-footer {
    background: #CC0000 !important;
    background-color: #CC0000 !important;
    color: #FFFFFF !important;
    padding: 4.5rem 1.8rem 2.5rem;
    border-top: 5px solid #8B0000;
    width: 100%;
    box-sizing: border-box;
}

.footer-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3.5rem;
    width: 100%;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 1.2rem;
    font-family: var(--font-serif);
    letter-spacing: 0.3px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #FFFFFF;
    text-decoration: underline;
    padding-left: 3px;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.25s ease;
}

.social-icon-btn:hover {
    background: #FFFFFF;
    color: #CC0000;
    transform: translateY(-3px);
    border-color: #FFFFFF;
}

.footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    text-align: center;
    width: 100%;
    line-height: 1.7;
}

/* ==========================================================================
   Corox Institutional Wireframe Setting & UI/UX Components
   ========================================================================== */
.wf-hero-wrapper {
    background: #FAF9F6;
    border-bottom: 1px solid #E5E7EB;
    width: 100%;
    padding: 2.5rem 1rem;
    box-sizing: border-box;
}

.wf-hero-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

@media (max-width: 980px) {
    .wf-hero-grid {
        grid-template-columns: 1fr;
    }
}

/* Corox Institutional Signature Embedded Sign-On Card */
.wf-signon-card {
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
    border-radius: 12px;
    padding: 2rem 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wf-signon-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #E5E7EB;
}

.wf-signon-header h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #111827;
    margin: 0;
    font-weight: 700;
}

.wf-input-group {
    margin-bottom: 1.1rem;
}

.wf-input-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.4rem;
}

.wf-input-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #D1D5DB;
    border-radius: 6px;
    font-size: 15px;
    color: #111827;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.wf-input-group input:focus {
    border-color: #CC0000;
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.12);
}

.wf-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 13px;
}

.wf-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4B5563;
    font-weight: 500;
    cursor: pointer;
}

.wf-signon-btn {
    background: #CC0000;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 15px;
    padding: 0.85rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
}

.wf-signon-btn:hover {
    background: #E00000;
    box-shadow: 0 6px 18px rgba(204, 0, 0, 0.35);
}

.wf-signon-sublinks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.wf-signon-sublinks a {
    color: #4B5563;
    font-weight: 600;
    text-decoration: none;
}

.wf-signon-sublinks a:hover {
    color: #CC0000;
    text-decoration: underline;
}

.wf-security-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: #6B7280;
    font-weight: 600;
    margin-top: 0.8rem;
}

/* Corox Institutional Hero Editorial Showcase */
.wf-hero-promo {
    background: linear-gradient(135deg, #11141A 0%, #1A1E24 100%);
    border-radius: 14px;
    padding: 3.5rem 3rem;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #374151;
}

.wf-hero-promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: brightness(0.7) contrast(1.1);
}

.wf-hero-promo-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.wf-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #FFB81C;
    margin-bottom: 0.8rem;
}

.wf-hero-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.wf-hero-rate-box {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: rgba(204, 0, 0, 0.15);
    border: 1px solid #CC0000;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.4rem;
}

.wf-hero-rate-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFFFFF;
}

.wf-hero-rate-label {
    font-size: 14px;
    font-weight: 700;
    color: #FCA5A5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Corox Institutional 6-Tile Action Wireframe Grid */
.wf-actions-section {
    padding: 4rem 1.5rem;
    max-width: 1320px;
    margin: 0 auto;
}

.wf-actions-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.wf-actions-header h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.wf-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.wf-action-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 1.8rem;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.wf-action-card:hover {
    border-color: #CC0000;
    box-shadow: 0 10px 25px rgba(204, 0, 0, 0.1);
    transform: translateY(-4px);
}

.wf-action-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(204, 0, 0, 0.08);
    color: #CC0000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.wf-action-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.wf-action-card p {
    color: #4B5563;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex: 1;
}

.wf-action-link {
    color: #CC0000;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   Corox Institutional Wireframe Setting: Audience Tabs, Rate Sheet, & Showcases
   ========================================================================== */

/* Audience Solution Tabs */
.wf-tabs-section {
    padding: 3.5rem 1.5rem;
    max-width: 1320px;
    margin: 0 auto;
}

.wf-tabs-header {
    text-align: center;
    margin-bottom: 2rem;
}

.wf-tabs-header h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.wf-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    border-bottom: 2px solid #E5E7EB;
    padding-bottom: 0.8rem;
}

.wf-tab-btn {
    background: transparent;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 15px;
    font-weight: 700;
    color: #4B5563;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    position: relative;
}

.wf-tab-btn:hover {
    color: var(--brand-red);
}

.wf-tab-btn.active {
    color: var(--brand-red);
    background: rgba(204, 0, 0, 0.08);
}

.wf-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--brand-red);
    border-radius: 2px;
}

.wf-tab-panel {
    display: none;
}

.wf-tab-panel.active {
    display: block;
}

/* Corox Institutional Institutional Rate Sheet Table */
.wf-rate-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
    width: 100%;
}

.wf-rate-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.wf-rate-table th {
    background: #FAF9F6;
    color: #111827;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 1.1rem 1.6rem;
    border-bottom: 2px solid #E5E7EB;
}

.wf-rate-table td {
    padding: 1.4rem 1.6rem;
    border-bottom: 1px solid #F3F4F6;
    vertical-align: middle;
}

.wf-rate-table tr:hover td {
    background: #FCFCFD;
}

.wf-rate-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(204, 0, 0, 0.08);
    color: #CC0000;
    margin-bottom: 4px;
}

.wf-rate-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: #059669;
    font-family: var(--font-serif);
}

.wf-rate-product-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 3px;
}

/* Corox Institutional Split Feature Rows */
.wf-split-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4.5rem 1.5rem;
    max-width: 1320px;
    margin: 0 auto;
}

.wf-split-feature.reverse {
    direction: rtl;
}

.wf-split-feature.reverse > * {
    direction: ltr;
}

.wf-feature-eyebrow {
    color: #CC0000;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.6rem;
}

.wf-split-title {
    font-family: var(--font-serif);
    font-size: 2.3rem;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.wf-split-p {
    color: #4B5563;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.wf-check-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wf-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #1F2937;
    font-weight: 600;
}

.wf-check-item svg {
    color: #CC0000;
    flex-shrink: 0;
    margin-top: 3px;
}

.wf-split-img-box {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #1B1B1B;
}

.wf-split-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Corox Institutional Editorial Knowledge Hub */
.wf-editorial-section {
    background: #FAF9F6;
    padding: 4.5rem 1.5rem;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.wf-editorial-container {
    max-width: 1320px;
    margin: 0 auto;
}

.wf-editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.wf-editorial-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.wf-editorial-card:hover {
    border-color: #CC0000;
    box-shadow: 0 12px 25px rgba(204, 0, 0, 0.08);
    transform: translateY(-4px);
}

.wf-editorial-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #111827;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.wf-editorial-card p {
    color: #4B5563;
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.wf-editorial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #6B7280;
    border-top: 1px solid #F3F4F6;
    padding-top: 1rem;
}

/* Auth Pages */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.2rem;
    background: linear-gradient(135deg, #111317 0%, #1B1B1B 100%);
    width: 100%;
    box-sizing: border-box;
}

.auth-card {
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    padding: 3rem 2.2rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    color: var(--text-dark);
    box-sizing: border-box;
}

.auth-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: var(--surface-light);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-size: 15px;
    outline: none;
    transition: all 0.25s ease;
}

.form-control:focus {
    border-color: var(--brand-red);
    background: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(204, 0, 0, 0.12);
}

/* App Dashboard Layout */
.app-layout {
    display: flex;
    min-height: 100vh;
    background: var(--off-white);
    width: 100%;
}

.sidebar {
    width: 280px;
    background: #1B1B1B;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 900;
    transition: transform 0.3s ease;
    color: var(--pure-white);
}

.sidebar-brand {
    padding: 1.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-nav {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
    overflow-y: auto;
}

.sidebar-nav-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-light);
    padding: 1rem 0.8rem 0.4rem;
    font-weight: 800;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-muted-light);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.sidebar-nav a svg {
    width: 18px;
    height: 18px;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
    background: rgba(204, 0, 0, 0.15);
    color: var(--pure-white);
}

.sidebar-nav a.active {
    border-left: 4px solid var(--brand-red);
    color: var(--pure-white);
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 2.5rem;
    max-width: 1380px;
    width: calc(100% - 280px);
    box-sizing: border-box;
}

.table-card {
    background: var(--pure-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: var(--shadow-card);
    width: 100%;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}

th {
    background: var(--surface-light);
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 1rem 1.4rem;
    border-bottom: 1px solid var(--border-subtle);
}

td {
    padding: 1.2rem 1.4rem;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 14px;
    color: var(--text-dark);
}

/* Authenticated Portal Mobile Topbar & Sidebar Backdrop (Corox Institutional Style) */
.app-mobile-topbar {
    display: none;
    position: sticky;
    top: 0;
    z-index: 800;
    background: var(--brand-red);
    border-bottom: 2px solid #B30000;
    padding: 0.65rem 1rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.app-mobile-brand-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-mobile-user-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #FFFFFF;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.app-mobile-user-btn:active {
    transform: scale(0.92);
    background: rgba(255, 255, 255, 0.25);
}

.app-mobile-nav-toggle {
    background: transparent;
    border: none;
    color: #FFFFFF;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.app-mobile-nav-toggle:active {
    transform: scale(0.92);
}

.sidebar-close-btn {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    cursor: pointer;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 899;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    pointer-events: none;
}

.sidebar-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-toggle {
    display: none;
}

/* ==========================================================================
   Mobile Bottom Navigation Bar (Thumb Zone - Corox Institutional Style)
   ========================================================================== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    background: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    z-index: 950;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.06);
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #4B5563;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    flex: 1;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s ease;
}

.mobile-bottom-item svg {
    transition: transform 0.2s ease, stroke 0.2s ease;
}

.mobile-bottom-item:active svg {
    transform: scale(0.9);
}

.mobile-bottom-item:hover,
.mobile-bottom-item.active {
    color: var(--brand-red);
    font-weight: 800;
}

.mobile-bottom-item.active svg {
    stroke: var(--brand-red);
}

/* Authenticated Portal Bottom Bar Theme (Corox Institutional Style - White & Red) */
.app-bottom-bar {
    background: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.06);
}

.app-bottom-bar .mobile-bottom-item {
    color: #4B5563;
}

.app-bottom-bar .mobile-bottom-item:hover,
.app-bottom-bar .mobile-bottom-item.active {
    color: var(--brand-red);
    font-weight: 800;
}

.app-bottom-bar .mobile-bottom-item.active svg {
    stroke: var(--brand-red);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (TABLETS & MOBILE SMARTPHONES)
   ========================================================================== */

@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }
    .nav-mobile-btn {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 2rem 1.2rem;
    }
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.open {
        transform: translateX(0);
    }
    .sidebar-close-btn {
        display: inline-flex;
    }
    .app-mobile-topbar {
        display: flex;
    }
}

@media (max-width: 768px) {
    /* Enable Mobile Bottom Bar & Safe Bottom Padding */
    .mobile-bottom-bar {
        display: flex;
    }

    body {
        padding-bottom: calc(62px + env(safe-area-inset-bottom));
    }

    /* Hide Corox Institutional Utility Bar entirely on Mobile Devices (< 769px) */
    .wf-utility-bar {
        display: none !important;
    }

    /* Header Mobile Optimization */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .nav-container {
        padding: 0.6rem 1rem;
        gap: 0.8rem;
    }
    .brand-logo-img {
        height: 38px;
    }
    .header-cta {
        gap: 0.5rem;
    }
    .header-btn-register {
        display: none;
    }
    .header-btn-signon,
    .header-btn-portal {
        padding: 0.45rem 0.9rem;
        font-size: 13px;
        min-height: 38px;
        border-radius: var(--radius-sm);
    }

    /* Live Ticker Mobile Sizing */
    .ticker-bar {
        padding: 0.45rem 0;
    }
    .ticker-container {
        padding: 0 0.8rem;
        gap: 0.8rem;
    }
    .ticker-badge {
        font-size: 10px;
        padding: 3px 8px;
        letter-spacing: 0.3px;
    }
    .ticker-track {
        gap: 2rem;
        animation-duration: 36s;
    }
    .ticker-item {
        font-size: 12px;
        gap: 5px;
    }
    .ticker-label {
        font-size: 10.5px;
    }
    .ticker-val {
        font-size: 12px;
    }

    /* Hero Section Mobile Formatting */
    .wf-hero-wrapper {
        padding: 1.5rem 0.8rem;
    }
    .wf-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .wf-signon-card {
        padding: 1.4rem 1.1rem;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    .wf-signon-header h3 {
        font-size: 1.15rem;
    }
    .wf-hero-promo {
        padding: 2rem 1.2rem;
        border-radius: 12px;
    }
    .wf-hero-title {
        font-size: 1.8rem;
        line-height: 1.25;
        margin-bottom: 0.8rem;
    }
    .wf-hero-promo p {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 1.2rem;
    }
    .wf-hero-rate-box {
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.2rem;
    }
    .wf-hero-rate-num {
        font-size: 1.7rem;
    }
    .wf-hero-rate-label {
        font-size: 12px;
    }

    /* Core Banking Services Mobile Grid */
    .wf-actions-section {
        padding: 2.8rem 1rem;
    }
    .wf-actions-header {
        margin-bottom: 1.8rem;
    }
    .wf-actions-header h2 {
        font-size: 1.75rem;
    }
    .wf-actions-header p {
        font-size: 0.95rem;
    }
    .wf-actions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .wf-action-card {
        padding: 1.25rem;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    .wf-action-icon-box {
        width: 42px;
        height: 42px;
        margin-bottom: 0.8rem;
    }
    .wf-action-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
    }
    .wf-action-card p {
        font-size: 13.5px;
        line-height: 1.55;
        margin-bottom: 0.8rem;
    }

    /* Rates & Comparison Tables Mobile Touch Scroll */
    .wf-rate-card,
    .comparison-table-wrapper {
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
    }
    .comparison-table-wrapper::before,
    .wf-rate-card::before {
        content: '← Swipe to compare options →';
        display: block;
        text-align: right;
        padding: 6px 12px;
        font-size: 11px;
        font-weight: 700;
        color: #9CA3AF;
        background: #F9FAFB;
        border-bottom: 1px solid #E5E7EB;
        letter-spacing: 0.3px;
    }
    .wf-rate-table,
    .comparison-table {
        min-width: 580px;
    }
    .wf-rate-table th,
    .comparison-table th {
        padding: 0.85rem 1rem;
        font-size: 11px;
        white-space: nowrap;
    }
    .wf-rate-table td,
    .comparison-table td {
        padding: 0.9rem 1rem;
        font-size: 13px;
    }
    /* Sticky first column on mobile comparison tables */
    .wf-rate-table th:first-child,
    .wf-rate-table td:first-child,
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        position: sticky;
        left: 0;
        background: #FFFFFF;
        z-index: 2;
        box-shadow: 3px 0 8px rgba(0, 0, 0, 0.05);
    }
    .wf-rate-table th:first-child,
    .comparison-table th:first-child {
        background: #FAF9F6;
        z-index: 3;
    }
    .wf-rate-num {
        font-size: 1.3rem;
    }
    .wf-rate-product-name {
        font-size: 1rem;
    }

    /* Split Feature Rows Mobile Stacking */
    .wf-split-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.8rem 1rem;
    }
    .wf-split-feature.reverse {
        direction: ltr;
    }
    .wf-split-title {
        font-size: 1.75rem;
        margin-bottom: 0.8rem;
    }
    .wf-split-p {
        font-size: 0.95rem;
        margin-bottom: 1.4rem;
    }
    .wf-check-list {
        margin-bottom: 1.5rem;
        gap: 0.6rem;
    }
    .wf-check-item {
        font-size: 13.5px;
    }

    /* Editorial Knowledge Hub Mobile Cards */
    .wf-editorial-section {
        padding: 2.8rem 1rem;
    }
    .wf-editorial-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 1.8rem;
    }
    .wf-editorial-card {
        padding: 1.5rem 1.2rem;
        border-radius: 10px;
    }
    .wf-editorial-card h3 {
        font-size: 1.15rem;
    }
    .wf-editorial-card p {
        font-size: 13.5px;
    }

    /* Cards Grid on Subpages */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .feature-card {
        padding: 1.4rem 1.2rem;
        border-radius: 10px;
    }
    .page-hero {
        padding: 3rem 1rem 2.5rem;
    }
    .page-hero h1 {
        font-size: 1.9rem;
    }
    .page-hero p {
        font-size: 0.95rem;
    }

    /* Mobile Footer */
    .site-footer {
        padding: 3rem 1rem 1.8rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 0.8rem;
    }
    .footer-links {
        gap: 0.6rem;
    }
    .footer-links a {
        font-size: 13.5px;
    }
    .footer-bottom {
        font-size: 12px;
        padding-top: 1.5rem;
    }

    /* Interactive Widgets (Calculators & Cards) */
    .card-visualizer-container {
        grid-template-columns: 1fr;
        padding: 1.5rem 1rem;
        gap: 1.8rem;
        border-radius: 10px;
        margin-bottom: 2.5rem;
    }
    .realistic-card {
        max-width: 100%;
        height: auto;
        aspect-ratio: 1.586 / 1;
        padding: 1.2rem 1.4rem;
    }
    .card-number {
        font-size: 1.05rem;
        letter-spacing: 2px;
        margin: 0.6rem 0 0.2rem;
    }
    .calc-card {
        padding: 1.5rem 1.1rem;
        border-radius: 10px;
        margin-bottom: 2.5rem;
    }
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .calc-result-box {
        padding: 1.8rem 1.2rem;
        border-radius: 8px;
    }
    .calc-result-amount {
        font-size: 2.2rem;
        margin-bottom: 0.6rem;
    }
    .calc-breakdown {
        gap: 0.6rem;
        padding-top: 1rem;
        margin-top: 1rem;
    }
    .calc-breakdown-item strong {
        font-size: 14px;
    }
    .calc-range {
        height: 10px;
    }
    .faq-container {
        margin-bottom: 2.5rem;
    }
    .faq-question {
        padding: 1.1rem 1.2rem;
        font-size: 0.95rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
        font-size: 13.5px;
    }
    .stat-strip {
        padding: 2rem 1.2rem;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    .stat-strip-num {
        font-size: 2rem;
    }

    /* Auth Card */
    .auth-card {
        padding: 2rem 1.2rem;
        border-radius: 12px;
    }

    /* iOS Auto-Zoom Prevention: Ensure 16px font-size on all mobile inputs */
    input, select, textarea, .form-control, .wf-input-group input {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 2.5rem 0.9rem;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    .brand-logo-img {
        height: 32px;
    }
    .btn-lg {
        padding: 0.85rem 1.3rem;
        font-size: 14.5px;
        min-height: 46px;
    }
    .wf-hero-title {
        font-size: 1.6rem;
    }
    .realistic-card {
        padding: 1rem 1.1rem;
    }
    .card-number {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }
}

/* ==========================================================================
   Interactive Banking Widgets: Calculators, Cards, Tables, FAQs
   ========================================================================== */

/* Realistic Interactive Credit Card Visualizer */
.card-visualizer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .card-visualizer-container {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }
}

.card-stage {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.realistic-card {
    width: 100%;
    max-width: 420px;
    height: 250px;
    border-radius: 16px;
    padding: 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #FFFFFF;
}

.realistic-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Card Themes */
.card-theme-gold {
    background: linear-gradient(135deg, #2A2111 0%, #151109 40%, #3D2E14 100%);
    border: 1px solid rgba(221, 170, 0, 0.4);
}
.card-theme-gold .card-accent-strip {
    background: linear-gradient(90deg, #DDAA00, #FFD700, #B8860B);
}

.card-theme-platinum {
    background: linear-gradient(135deg, #1E232A 0%, #0F1216 50%, #2A303A 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.card-theme-platinum .card-accent-strip {
    background: linear-gradient(90deg, #E5E7EB, #FFFFFF, #9CA3AF);
}

.card-theme-executive {
    background: linear-gradient(135deg, #0A192F 0%, #030B17 50%, #172A45 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
}
.card-theme-executive .card-accent-strip {
    background: linear-gradient(90deg, #3B82F6, #60A5FA, #1D4ED8);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-chip-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-chip {
    width: 44px;
    height: 32px;
    background: linear-gradient(135deg, #E0A938 0%, #F5CE62 50%, #C98A1C 100%);
    border-radius: 6px;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
}

.card-chip::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid rgba(0,0,0,0.25);
    border-radius: 3px;
}

.card-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.25rem;
    letter-spacing: 3px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin: 1.2rem 0 0.5rem;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-holder-label {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.card-holder-name {
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

.card-selector-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: #F3F4F6;
    padding: 6px;
    border-radius: var(--radius-md);
}

.card-selector-tab {
    flex: 1;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 13px;
    color: #4B5563;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.card-selector-tab.active {
    background: #FFFFFF;
    color: var(--brand-red);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Calculators */
.calc-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 2.5rem;
    margin-bottom: 4rem;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 992px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-group-header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.calc-group-value {
    font-weight: 800;
    color: var(--brand-red);
}

.calc-range {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #E5E7EB;
    outline: none;
    -webkit-appearance: none;
    accent-color: var(--brand-red);
}

.calc-result-box {
    background: linear-gradient(135deg, #1B1B1B 0%, #111317 100%);
    color: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.calc-result-label {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-bottom: 0.5rem;
}

.calc-result-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    font-family: var(--font-serif);
    line-height: 1;
    margin-bottom: 1rem;
}

.calc-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    text-align: left;
}

.calc-breakdown-item span {
    display: block;
    font-size: 11px;
    color: #9CA3AF;
    text-transform: uppercase;
}

.calc-breakdown-item strong {
    font-size: 16px;
    color: #FFFFFF;
}

/* Comparison Tables */
.comparison-table-wrapper {
    overflow-x: auto;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    margin-bottom: 4rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}

.comparison-table th {
    background: #F9FAFB;
    padding: 1.2rem 1.5rem;
    border-bottom: 2px solid #E5E7EB;
    font-weight: 800;
    color: #111827;
}

.comparison-table th.highlight-col {
    background: #FEF2F2;
    color: var(--brand-red);
    border-top: 3px solid var(--brand-red);
}

.comparison-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    color: #4B5563;
}

.comparison-table tr:hover td {
    background: #F9FAFB;
}

.comparison-table td.highlight-col {
    background: #FFFBFB;
    font-weight: 600;
    color: #111827;
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.process-step-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    position: relative;
    box-shadow: var(--shadow-card);
}

.process-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-red-subtle);
    color: var(--brand-red);
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border: 2px solid var(--brand-red);
}

.process-step-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.process-step-card p {
    font-size: 13.5px;
    color: #4B5563;
    line-height: 1.6;
}

/* Accordion FAQs */
.faq-container {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-question {
    padding: 1.4rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question:hover {
    color: var(--brand-red);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brand-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.8rem;
    color: #4B5563;
    line-height: 1.7;
    font-size: 14.5px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.8rem 1.5rem;
}

/* Institutional Stat Grid */
.stat-strip {
    background: linear-gradient(135deg, #1B1B1B 0%, #111317 100%);
    color: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-bottom: 4rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-strip-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.stat-strip-label {
    font-size: 13px;
    color: #D1D5DB;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Corox Institutional DASHBOARD ARCHITECTURE & COROX BRAND STYLING
   ========================================================================== */

.wf-dashboard-wrapper {
    width: 100%;
    box-sizing: border-box;
}

/* Desktop Red Top Bar (Image 4) */
.wf-desktop-topbar {
    background: var(--brand-red);
    color: #FFFFFF;
    padding: 0.75rem 1.4rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(204, 0, 0, 0.15);
    flex-wrap: wrap;
    gap: 1rem;
}

.wf-desktop-topbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wf-desktop-topbar-brand span:first-child {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: #FFFFFF;
}

.wf-desktop-topbar-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 10px;
    font-weight: 500;
}

.wf-desktop-topbar-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    font-size: 13px;
    font-weight: 600;
}

.wf-desktop-topbar-links a {
    color: #FFFFFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s ease;
}

.wf-desktop-topbar-links a:hover {
    opacity: 0.85;
    text-decoration: underline;
}

.wf-desktop-topbar-wire {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.wf-desktop-topbar-signoff {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.wf-desktop-topbar-signoff:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFFFFF;
}

/* Account Summary Subheader (Images 1, 2, 4) */
.wf-summary-bar {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1.1rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    flex-wrap: wrap;
    gap: 1rem;
}

.wf-summary-selector {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.wf-summary-title {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
    letter-spacing: -0.3px;
}

.wf-account-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F9FAFB;
    border: 1px solid #D1D5DB;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wf-account-filter-pill:hover {
    background: #F3F4F6;
    border-color: #9CA3AF;
}

.wf-summary-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.wf-meta-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.wf-meta-label {
    font-size: 12.5px;
    color: #6B7280;
    font-weight: 600;
}

.wf-meta-val {
    font-family: 'Plus Jakarta Sans', var(--font-sans);
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
}

.wf-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

/* 2-Column Dashboard Grid (Image 4) */
.wf-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
    align-items: start;
}

.wf-accounts-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.wf-account-cards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Corox Institutional Account Card (Images 1, 2, 4) */
.wf-account-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-left: 4.5px solid var(--brand-red); /* Corox Institutional Iconic Red Stripe */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.2s ease;
}

.wf-account-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: #D1D5DB;
    border-left-color: var(--brand-red);
}

.wf-account-card-main {
    padding: 1.2rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.wf-account-card-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 200px;
}

.wf-account-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(204, 0, 0, 0.06);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wf-account-name {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 700;
    color: #8B0000; /* Dark Crimson Corox Institutional Style */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 3px 0;
    line-height: 1.3;
}

.wf-account-number {
    font-size: 13px;
    color: #6B7280;
    font-weight: 600;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.wf-account-routing {
    font-size: 11.5px;
    color: #9CA3AF;
    font-weight: 500;
    background: #F3F4F6;
    padding: 2px 7px;
    border-radius: 4px;
}

.wf-account-card-right {
    text-align: right;
}

.wf-balance-amount {
    font-family: 'Plus Jakarta Sans', var(--font-sans);
    font-size: 1.55rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.wf-balance-label {
    font-size: 11.5px;
    color: #6B7280;
    font-weight: 500;
    margin-top: 3px;
}

.wf-account-card-menu {
    display: flex;
    align-items: center;
}

.wf-dots-btn {
    background: transparent;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.wf-dots-btn:hover {
    background: #F3F4F6;
    color: #1F2937;
}

/* Card Quick Links Row (Image 4) */
.wf-account-quick-links {
    background: #FAFAFA;
    border-top: 1px solid #F3F4F6;
    padding: 0.65rem 1.4rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.wf-quick-link {
    font-size: 12.5px;
    font-weight: 600;
    color: #4B5563;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.wf-quick-link:hover {
    color: var(--brand-red);
    text-decoration: underline;
}

.wf-quick-link svg {
    color: #9CA3AF;
}

/* In-Between Promotional Banner (Images 1 & 2) */
.wf-promo-card {
    background: #F9FAFB;
    border: 1px dashed #D1D5DB;
    border-radius: 8px;
    padding: 0.85rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.wf-promo-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wf-promo-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(204, 0, 0, 0.08);
    color: var(--brand-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wf-promo-text {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.wf-promo-action {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--brand-red);
    text-decoration: none;
}

.wf-promo-action:hover {
    text-decoration: underline;
}

/* Advisory Banner (Image 2) */
.wf-advisory-banner {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1.2rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.wf-advisory-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 240px;
}

.wf-advisory-pie {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #EFF6FF;
    color: #2563EB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wf-advisory-title {
    font-family: var(--font-serif);
    font-size: 14.5px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 2px;
}

.wf-advisory-sub {
    font-size: 12.5px;
    color: #6B7280;
    line-height: 1.4;
}

.wf-advisory-btn {
    background: #1E3A8A;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.wf-advisory-btn:hover {
    background: #172554;
}

/* Recent Activity Section */
.wf-activity-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1.4rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.wf-activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 1rem;
}

.wf-activity-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 3px 0;
}

.wf-activity-sub {
    font-size: 12.5px;
    color: #6B7280;
    font-weight: 500;
}

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

.wf-table th {
    background: #F9FAFB;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4B5563;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.wf-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #F3F4F6;
    vertical-align: middle;
}

.wf-disclosures-box {
    padding: 1.2rem 0;
    font-size: 11.5px;
    color: #6B7280;
    line-height: 1.65;
}

.wf-disclosures-title {
    font-weight: 700;
    color: #4B5563;
    margin-bottom: 4px;
}

/* Right Sidebar Column (Image 4) */
.wf-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* User Greeting Card (Image 4) */
.wf-user-widget {
    background: #1B1B1B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 8px;
    padding: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.wf-user-greeting {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.wf-last-signon {
    font-size: 12px;
    color: #9CA3AF;
    margin-bottom: 1.1rem;
}

.wf-user-actions {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.8rem;
}

.wf-user-action-link {
    color: #E5E7EB;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.wf-user-action-link:hover {
    color: #FFB81C;
}

.wf-signoff-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 0.55rem 1rem;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    transition: all 0.2s ease;
}

.wf-signoff-btn:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
}

/* Tool / Wire Desk Card */
.wf-tool-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.wf-tool-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.9rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #F3F4F6;
}

.wf-tool-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(204, 0, 0, 0.08);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wf-tool-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #6B7280;
    font-weight: 700;
}

.wf-tool-phone {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 800;
    color: #111827;
}

.wf-tool-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wf-tool-detail {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: #4B5563;
}

/* Planning & Tools Accordion Menu (Image 4) */
.wf-accordion-card,
.wf-offers-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.wf-accordion-header,
.wf-offers-title {
    background: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
    padding: 0.85rem 1.2rem;
    font-family: var(--font-serif);
    font-size: 13.5px;
    font-weight: 800;
    color: #1F2937;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wf-accordion-header svg {
    color: var(--brand-red);
}

.wf-accordion-list,
.wf-offers-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wf-accordion-list li,
.wf-offers-list li {
    border-bottom: 1px solid #F3F4F6;
}

.wf-accordion-list li:last-child,
.wf-offers-list li:last-child {
    border-bottom: none;
}

.wf-accordion-list a,
.wf-offers-list a {
    padding: 0.75rem 1.2rem;
    font-size: 12.5px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.wf-accordion-list a:hover,
.wf-offers-list a:hover {
    background: #F9FAFB;
    color: var(--brand-red);
    padding-left: 1.4rem;
}

.wf-accordion-list a svg,
.wf-offers-list a svg {
    color: #9CA3AF;
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Architecture for Dashboard
   ========================================================================== */

/* Default Desktop/Tablet display rules for transaction views */
.wf-mobile-tx-list {
    display: none;
}

.wf-desktop-table {
    display: block;
}

@media (max-width: 992px) {
    .wf-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .wf-desktop-topbar {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
        width: 100% !important;
        max-width: 100vw !important;
        padding: 0.85rem 0.75rem calc(75px + env(safe-area-inset-bottom)) 0.75rem !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    .app-layout {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    .wf-dashboard-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 640px) {
    /* Account Summary Bar — Clean Native Mobile Selector (Images 1 & 2) */
    .wf-summary-bar {
        padding: 0.75rem 0.85rem;
        margin-bottom: 0.85rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
        border-radius: 8px;
    }
    .wf-summary-selector {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .wf-summary-title {
        display: none; /* Matches Image 1: Clean dropdown selector only */
    }
    .wf-account-filter-pill {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 12px;
        font-size: 13px;
        background: #F9FAFB;
        border: 1px solid #D1D5DB;
        box-sizing: border-box;
    }
    .wf-summary-meta {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        padding-top: 0.5rem;
        border-top: 1px solid #F3F4F6;
        flex-wrap: nowrap;
    }
    .wf-meta-item {
        font-size: 11.5px;
    }
    .wf-meta-val {
        font-size: 1.15rem;
        font-weight: 800;
        letter-spacing: -0.3px;
    }
    .wf-meta-badge {
        font-size: 10.5px;
        padding: 2px 7px;
        white-space: nowrap;
    }

    /* Account Card — Authentic Side-by-Side Mobile Proportions (Images 1 & 2) */
    .wf-account-card {
        border-radius: 8px;
        border-left-width: 4px;
        box-sizing: border-box;
        overflow: hidden;
    }
    .wf-account-card-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.9rem 1rem;
        gap: 8px;
        flex-wrap: nowrap;
    }
    .wf-account-card-left {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
        min-width: 0;
    }
    .wf-account-icon-box {
        display: none; /* Hide bulky icon box on mobile for authentic app spacing (Image 1) */
    }
    .wf-account-name {
        font-size: 13px;
        font-weight: 700;
        line-height: 1.25;
        letter-spacing: 0.3px;
        margin: 0 0 2px 0;
        white-space: normal;
        word-break: break-word;
    }
    .wf-account-number {
        font-size: 11.5px;
        color: #6B7280;
    }
    .wf-account-routing {
        display: none; /* Hide routing on mobile card preview, just like Image 1 (...1830) */
    }
    .wf-account-card-right {
        text-align: right;
        flex-shrink: 0;
    }
    .wf-balance-amount {
        font-size: 1.22rem;
        font-weight: 800;
        letter-spacing: -0.3px;
        line-height: 1.1;
        white-space: nowrap;
        font-variant-numeric: tabular-nums;
    }
    .wf-balance-label {
        font-size: 10.5px;
        color: #6B7280;
        margin-top: 2px;
    }
    .wf-account-card-menu {
        flex-shrink: 0;
    }
    .wf-dots-btn {
        width: 26px;
        height: 26px;
        color: #9CA3AF;
    }

    /* Card Quick Actions — 3-Column Native Mobile Grid (Image 4 on Mobile) */
    .wf-account-quick-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        padding: 0.5rem 0.75rem;
        background: #F9FAFB;
        border-top: 1px solid #F3F4F6;
    }
    .wf-quick-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 6px 2px;
        font-size: 10.5px;
        font-weight: 700;
        color: #374151;
        background: #FFFFFF;
        border: 1px solid #E5E7EB;
        border-radius: 6px;
        gap: 3px;
        text-decoration: none;
        transition: all 0.15s ease;
    }
    .wf-quick-link:active {
        background: #F3F4F6;
        transform: scale(0.97);
    }
    .wf-quick-link svg {
        width: 14px;
        height: 14px;
        color: var(--brand-red);
    }

    /* In-Between Promo Card (Image 1) */
    .wf-promo-card {
        padding: 0.75rem 0.85rem;
        gap: 6px;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 8px;
    }
    .wf-promo-content {
        gap: 8px;
    }
    .wf-promo-icon {
        width: 24px;
        height: 24px;
    }
    .wf-promo-text {
        font-size: 11.5px;
        line-height: 1.35;
    }
    .wf-promo-action {
        font-size: 11.5px;
        align-self: flex-end;
    }

    /* Wealth Advisory Banner (Image 2) */
    .wf-advisory-banner {
        padding: 0.85rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        border-radius: 8px;
    }
    .wf-advisory-left {
        gap: 10px;
        min-width: 0;
        width: 100%;
    }
    .wf-advisory-pie {
        width: 36px;
        height: 36px;
    }
    .wf-advisory-title {
        font-size: 13px;
    }
    .wf-advisory-sub {
        font-size: 11px;
    }
    .wf-advisory-btn {
        width: 100%;
        text-align: center;
        padding: 0.5rem;
        font-size: 11.5px;
    }

    /* Recent Activity Card & Responsive Feed */
    .wf-activity-card {
        padding: 1rem;
        border-radius: 8px;
    }
    .wf-activity-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        padding-bottom: 0.75rem;
    }
    .wf-activity-title {
        font-size: 1.15rem;
    }
    .wf-activity-sub {
        font-size: 11.5px;
    }
    .wf-activity-header .btn {
        width: 100%;
        text-align: center;
    }

    /* Hide wide table on mobile and display native mobile feed */
    .wf-desktop-table {
        display: none !important;
    }
    .wf-mobile-tx-list {
        display: flex !important;
        flex-direction: column;
        margin-top: 0.5rem;
    }
    .wf-mobile-tx-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0.25rem;
        border-bottom: 1px solid #F3F4F6;
        gap: 10px;
    }
    .wf-mobile-tx-item:last-child {
        border-bottom: none;
    }
    .wf-mobile-tx-left {
        flex: 1;
        min-width: 0;
    }
    .wf-mobile-tx-desc {
        font-weight: 700;
        font-size: 12.5px;
        color: #111827;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .wf-mobile-tx-date {
        font-size: 11px;
        color: #6B7280;
        margin-top: 2px;
    }
    .wf-mobile-tx-right {
        text-align: right;
        flex-shrink: 0;
    }
    .wf-mobile-tx-amount {
        font-weight: 800;
        font-size: 13.5px;
        letter-spacing: -0.3px;
        font-variant-numeric: tabular-nums;
        line-height: 1.1;
    }
    .wf-mobile-tx-badge {
        margin-top: 2px;
    }

    /* Sidebar Widgets on Mobile */
    .wf-sidebar-column {
        gap: 0.85rem;
        margin-top: 0.5rem;
    }
    .wf-user-widget {
        padding: 1.1rem;
        border-radius: 8px;
    }
    .wf-user-greeting {
        font-size: 1.05rem;
    }
    .wf-last-signon {
        font-size: 11.5px;
        margin-bottom: 0.9rem;
    }
    .wf-tool-card,
    .wf-accordion-card,
    .wf-offers-card {
        padding: 0.9rem 1rem;
        border-radius: 8px;
    }
    .wf-accordion-list a,
    .wf-offers-list a {
        padding: 0.7rem 0.5rem;
        font-size: 12px;
    }
}