
/* ============================================================
   Cathay BANK - Main Stylesheet
   Light theme, institutional credibility + modern polish
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #FFFBF8;
    --bg-secondary: #F5F0EC;
    --bg-warm: #F0EAE4;
    --bg-card: rgba(255, 251, 248, 0.92);
    --text-primary: #2D1A1E;
    --text-secondary: #6B5055;
    --text-muted: #9A7A7F;
    --accent-navy: #8B1A2B;
    --accent-navy-light: #A02035;
    --accent-red: #9B1B30;
    --accent-red-dark: #7A1526;
    --accent-gold: #C4953A;
    --border-light: rgba(45, 26, 30, 0.06);
    --border-medium: rgba(45, 26, 30, 0.1);
    --shadow-soft: 0 4px 24px rgba(45, 26, 30, 0.06);
    --shadow-medium: 0 8px 40px rgba(45, 26, 30, 0.1);
    --glass-bg: rgba(255, 251, 248, 0.92);
    --glass-border: rgba(255, 251, 248, 0.5);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Crimson Text', Georgia, 'Times New Roman', serif;
    --container-max: 1400px;
    --container-padding: 2rem;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    padding: 0.6rem 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-bar-inner strong {
    color: var(--text-secondary);
    font-weight: 600;
}

.fdic-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: Arial Black, sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

/* ===== HEADER ===== */
.header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-soft);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--accent-navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--accent-navy);
}

.nav-link.active {
    color: var(--accent-navy);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -26px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    color: var(--accent-navy);
    border: 1.5px solid var(--border-medium);
}

.btn-outline:hover {
    border-color: var(--accent-navy);
    background: rgba(139, 26, 43, 0.04);
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--accent-navy);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-navy-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.btn-red {
    background: var(--accent-red);
    color: white;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-red:hover {
    background: var(--accent-red-dark);
    transform: translateY(-1px);
}

.btn-white {
    background: white;
    color: var(--accent-navy);
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
}

.btn-white:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45,26,30,0.2);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    color: var(--accent-navy);
    background: var(--bg-secondary);
}

/* ===== ICON BUTTONS ===== */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition-base);
    border: none;
    background: none;
    font-family: inherit;
}

.lang-selector:hover {
    background: var(--bg-secondary);
}

.search-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-medium);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.search-btn:hover {
    border-color: var(--accent-navy);
    color: var(--accent-navy);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--bg-primary);
    border-left: 1px solid var(--border-light);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: var(--shadow-medium);
    overflow-y: auto;
}

.mobile-menu.active { right: 0; }

.mobile-menu .nav-link {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(45,26,30,0.75) 0%, rgba(45,26,30,0.3) 60%, transparent 100%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 4rem var(--container-padding);
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content h1 em {
    font-style: italic;
    color: #E8C97A;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-base);
}

.hero-cta:hover {
    border-bottom-color: white;
    gap: 1rem;
}

.hero-cta i { transition: transform var(--transition-base); }
.hero-cta:hover i { transform: translateX(5px); }

/* ===== LOGIN CARD ===== */
.login-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
}

.login-card h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.login-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
}

.login-tab {
    flex: 1;
    padding: 0.75rem;
    text-align: center;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: color var(--transition-base);
}

.login-tab.active {
    color: var(--accent-navy);
}

.login-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-red);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 2.75rem;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-navy);
    box-shadow: 0 0 0 3px rgba(139, 26, 43, 0.08);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
}

.form-group textarea {
    padding-left: 1rem;
    min-height: 120px;
    resize: vertical;
}

.form-group textarea + i {
    top: 1.25rem;
    transform: none;
}

.login-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.login-links a {
    color: var(--accent-navy);
    font-size: 0.85rem;
    font-weight: 500;
}

.login-links a:hover { text-decoration: underline; }

.login-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-light);
}

.login-footer a {
    color: var(--accent-navy);
    font-size: 0.85rem;
    font-weight: 500;
}

.login-footer a:hover { text-decoration: underline; }

/* ===== PRODUCTS ROW ===== */
.products-row {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    padding: 2.5rem 0;
}

.products-row-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-base);
    border: 1.5px solid transparent;
}

.product-item:hover {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.product-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    transition: transform var(--transition-base);
}

.product-item:hover .product-icon {
    transform: scale(1.1);
}

.product-icon.checking { background: rgba(139, 26, 43, 0.08); color: var(--accent-navy); }
.product-icon.savings { background: rgba(184, 134, 11, 0.1); color: var(--accent-gold); }
.product-icon.loans { background: rgba(196, 30, 58, 0.08); color: var(--accent-red); }
.product-icon.cards { background: rgba(139, 26, 43, 0.08); color: var(--accent-navy); }
.product-icon.digital { background: rgba(90, 90, 110, 0.08); color: var(--text-secondary); }
.product-icon.investments { background: rgba(139, 26, 43, 0.08); color: var(--accent-navy); }
.product-icon.business { background: rgba(184, 134, 11, 0.1); color: var(--accent-gold); }
.product-icon.support { background: rgba(196, 30, 58, 0.08); color: var(--accent-red); }

.product-item span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: var(--accent-red);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section h2 em {
    font-style: italic;
    color: var(--accent-navy);
}

.section p.subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 300;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--border-medium);
}

.feature-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover img {
    transform: scale(1.03);
}

.feature-content {
    padding: 1.75rem;
}

.feature-tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(196, 30, 58, 0.08);
    color: var(--accent-red);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.feature-tag.navy { background: rgba(139, 26, 43, 0.08); color: var(--accent-navy); }
.feature-tag.gold { background: rgba(184, 134, 11, 0.1); color: var(--accent-gold); }
.feature-tag.green { background: rgba(45, 107, 74, 0.08); color: #2D6B4A; }

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-navy);
    font-size: 0.85rem;
    font-weight: 600;
    transition: gap var(--transition-base);
}

.feature-link:hover {
    gap: 0.75rem;
}

/* ===== RATES STRIP ===== */
.rates-strip {
    background: var(--bg-secondary);
    padding: 3rem 0;
}

.rates-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.rate-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.rate-item:hover {
    background: var(--bg-primary);
    box-shadow: var(--shadow-soft);
}

.rate-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rate-value span {
    font-size: 1rem;
    color: var(--text-muted);
}

.rate-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--accent-navy);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: white;
}

.cta-inner p {
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
    font-weight: 300;
}

/* ===== CONTENT PAGES ===== */
.page-header {
    background: var(--accent-navy);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: white;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    margin-top: 0.75rem;
    font-size: 1.1rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    transition: color var(--transition-base);
}

.breadcrumb a:hover { color: white; }

.breadcrumb i { font-size: 0.7rem; }

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 4rem 0;
}

.content-section.alt {
    background: var(--bg-secondary);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
}

.content-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-text ul {
    list-style: none;
    margin: 1rem 0;
}











.content-text ul:not(.legal-nav):not(.contact-methods):not(.footer-list) li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.content-text ul:not(.legal-nav):not(.contact-methods):not(.footer-list) li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 700;
}











.content-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.content-image:hover img {
    transform: scale(1.03);
}

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all var(--transition-base);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--border-medium);
}

.info-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.info-card-icon.navy { background: rgba(139, 26, 43, 0.08); color: var(--accent-navy); }
.info-card-icon.red { background: rgba(196, 30, 58, 0.08); color: var(--accent-red); }
.info-card-icon.gold { background: rgba(184, 134, 11, 0.1); color: var(--accent-gold); }
.info-card-icon.green { background: rgba(45, 107, 74, 0.08); color: #2D6B4A; }

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== COMPARISON TABLE ===== */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.compare-table th,
.compare-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.compare-table th {
    background: var(--bg-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.compare-table td {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.compare-table td strong {
    color: var(--text-primary);
    font-weight: 600;
}

.compare-table tr:hover td {
    background: var(--bg-secondary);
}

.compare-table .highlight {
    background: rgba(155, 27, 48, 0.03);
}

.compare-table .highlight td:first-child {
    border-left: 3px solid var(--accent-red);
}

/* ===== ACCORDION ===== */
.accordion {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-primary);
}

.accordion-item {
    border-bottom: 1px solid var(--border-light);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: background var(--transition-base);
}

.accordion-header:hover {
    background: var(--bg-secondary);
}

.accordion-header i {
    transition: transform var(--transition-base);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.accordion-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    transition: all var(--transition-base);
}

.contact-method:hover {
    background: var(--bg-secondary);
}

.contact-method i {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(139, 26, 43, 0.08);
    color: var(--accent-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-method span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* ===== LOCATIONS ===== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.location-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--border-medium);
}

.location-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-card .city {
    color: var(--accent-red);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.location-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.location-card p i {
    width: 20px;
    color: var(--text-muted);
}

/* ===== CAREERS ===== */
.job-listing {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    transition: all var(--transition-base);
}

.job-listing:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-soft);
    transform: translateX(4px);
}

.job-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.job-tag {
    padding: 0.35rem 0.875rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-tag.remote {
    background: rgba(45, 107, 74, 0.1);
    color: #2D6B4A;
}

.job-tag.onsite {
    background: rgba(139, 26, 43, 0.08);
    color: var(--accent-navy);
}

/* ===== SECURITY BADGES ===== */
.security-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.security-badge {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.security-badge:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-soft);
}

.security-badge i {
    font-size: 2.5rem;
    color: var(--accent-navy);
    margin-bottom: 1rem;
}

.security-badge h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.security-badge p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== MARQUEE ===== */
.marquee-section {
    padding: 2.5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.marquee-track {
    display: flex;
    gap: 5rem;
    animation: marquee 35s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marquee-item i {
    color: var(--accent-gold);
    font-size: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 0;
    border-top: 1px solid var(--border-light);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all var(--transition-base);
}

.social-links a:hover {
    border-color: var(--accent-navy);
    color: var(--accent-navy);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all var(--transition-base);
    display: inline-block;
}

.footer-column a:hover {
    color: var(--accent-navy);
    transform: translateX(3px);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 3rem auto 0;
    padding: 1.5rem var(--container-padding);
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
    color: var(--accent-navy);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: var(--text-primary);
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-secondary);
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-nav {
    position: sticky;
    top: 100px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.legal-nav h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.legal-nav a {
    display: block;
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.legal-nav a:hover,
.legal-nav a.active {
    color: var(--accent-navy);
    padding-left: 0.5rem;
}

/* ===== 404 PAGE ===== */
.error-page {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.error-code {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 600;
    color: var(--accent-navy);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-page h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.error-page p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 400px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}






/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --container-padding: 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-bg img {
        object-position: center;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(45,26,30,0.8) 0%, rgba(45,26,30,0.6) 100%);
    }

    .products-row-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid,
    .cards-grid,
    .security-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .rates-inner,
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .legal-nav {
        position: relative;
        top: 0;
        max-height: none;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-desktop,
    .header-actions .btn-outline,
    .header-actions .lang-selector {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-container {
        padding: 3rem var(--container-padding);
    }

    .login-card {
        padding: 1.5rem;
    }

    .products-row-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .cards-grid,
    .rates-inner,
    .locations-grid,
    .security-badges {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .job-listing {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .error-code {
        font-size: 5rem;
    }
}

/* ===== BUSINESS HERO ===== */
.page-hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-hero .hero-content {
  max-width: 600px;
}

.page-hero .hero-content h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.page-hero .hero-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-hero .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.page-hero .hero-image-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}

.page-hero .hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating stat cards on business hero image */
.page-hero .floating-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

.page-hero .floating-card i {
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
}

.page-hero .floating-card.card-1 {
  top: 1.5rem;
  right: -1.5rem;
  animation-delay: 0s;
}
.page-hero .floating-card.card-1 i {
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary-light);
}

.page-hero .floating-card.card-2 {
  bottom: 4rem;
  left: -1.5rem;
  animation-delay: 2s;
}
.page-hero .floating-card.card-2 i {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
}

.page-hero .floating-card.card-3 {
  bottom: 1rem;
  right: 1rem;
  animation-delay: 4s;
}
.page-hero .floating-card.card-3 i {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.fc-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fc-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== SHOWCASE GRID ===== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.showcase-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-card:hover img {
  transform: scale(1.05);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.3s ease;
}

.showcase-card:hover .showcase-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%);
}

.showcase-tag {
  display: inline-block;
  background: rgba(59, 130, 246, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 0.4rem;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.showcase-overlay h4 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.showcase-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .page-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .page-hero .hero-content h1 {
    font-size: 2.2rem;
  }
  .page-hero .hero-image-card {
    max-width: 350px;
  }
  .page-hero .floating-card {
    display: none;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-card {
    height: 280px;
  }
}