/* =====================================================
   Equity Bridge Funding — Custom Styles
   Design system: Navy Blue + Gold accent
   ===================================================== */

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #191c1d;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* ── Gradient Utilities ─────────────────────────────── */

.primary-gradient {
    background: linear-gradient(135deg, #001e45 0%, #0a2d60 50%, #123c73 100%);
}

.gold-gradient {
    background: linear-gradient(135deg, #C9921A 0%, #E8B84B 50%, #C9921A 100%);
}

/* ── Gold Button ────────────────────────────────────── */

.gold-btn {
    background: linear-gradient(135deg, #C9921A 0%, #E8B84B 100%);
    color: #1a0f00;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(201, 146, 26, 0.45);
    transition: all 0.2s ease;
}

.gold-btn:hover {
    background: linear-gradient(135deg, #A5780F 0%, #C9921A 100%);
    box-shadow: 0 6px 28px rgba(201, 146, 26, 0.55);
    transform: translateY(-1px);
}

/* ── Gold Outline Button ────────────────────────────── */

.gold-outline-btn {
    border: 2px solid #C9921A;
    color: #C9921A;
    font-weight: 700;
    background: transparent;
    transition: all 0.2s ease;
}

.gold-outline-btn:hover {
    background: rgba(201, 146, 26, 0.08);
}

/* ── Gold Text & Accents ────────────────────────────── */

.gold-text {
    color: #C9921A;
}

.gold-accent-bar {
    display: inline-block;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, #C9921A, #E8B84B);
    border-radius: 2px;
    margin-bottom: 16px;
}

.gold-badge {
    background: linear-gradient(135deg, rgba(201, 146, 26, 0.15), rgba(232, 184, 75, 0.1));
    border: 1px solid rgba(201, 146, 26, 0.35);
    color: #A5780F;
}

/* ── Glass Card ─────────────────────────────────────── */

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(195, 198, 209, 0.3);
}

/* ── How It Works Step Connector ────────────────────── */

.step-line::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #C9921A, rgba(201, 146, 26, 0.2));
    z-index: 0;
}

.step-line:last-child::after {
    display: none;
}

/* ── Program Card ───────────────────────────────────── */

.program-card {
    border-bottom: 4px solid #C9921A;
    transition: all 0.25s ease;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(201, 146, 26, 0.18), 0 4px 12px rgba(0, 38, 83, 0.08);
}

/* ── Stat Number ────────────────────────────────────── */

.stat-number {
    color: #C9921A;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

/* ── Testimonial Card ───────────────────────────────── */

.testimonial-card {
    border-top: 3px solid #C9921A;
}

/* ── CTA Pulse Animation ────────────────────────────── */

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(201, 146, 26, 0.45);
    }
    50% {
        box-shadow: 0 4px 32px rgba(201, 146, 26, 0.7);
    }
}

.cta-gold-btn {
    animation: pulse-gold 2.5s ease-in-out infinite;
}

/* ── Hero Highlight ─────────────────────────────────── */

.hero-highlight {
    color: #C9921A;
}

/* ── Nav Active State ───────────────────────────────── */

.nav-active {
    border-bottom: 2px solid #C9921A;
    color: #002653;
}
