/* ═══════════════════════════════════════ */
/* FINANCE PAGE SPECIFIC STYLES           */
/* ═══════════════════════════════════════ */

.quick-links-header {
    color: #f59e0be8;
    align-self: center;
}

/* ─── CARD TOOLTIP ─── */
.card-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
    color: #e0e0e0;
    white-space: normal;
    width: 200px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: none;
    line-height: 1.4;
}

.card-tooltip ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.card-tooltip li {
    font-size: 0.72rem;
    line-height: 1.4;
    padding-left: 0.8rem;
    position: relative;
    margin-bottom: 0.2rem;
}

.card-tooltip li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #22c55e;
}

.card-tooltip li:last-child {
    margin-bottom: 0;
}

.card-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(34, 197, 94, 0.4);
}

/* ─── QUICK LINK BUTTONS — BASE OVERRIDE ─── */
#credit-section .quick-link-btn:hover {
    border-color: #22c55e;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.2);
}

/* ─── CREDIT CARD GRID ─── */
.credit-card-grid-section {
    margin-top: 1rem;
}

.credit-card-grid-section h3 {
    text-align: center;
    color: #f59e0be8;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.credit-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.75rem;
}

.cc-grid-item {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 12px;
    padding: 1rem 0.6rem;
    text-align: center;
    text-decoration: none;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.cc-grid-item img {
    width: 100%;
    height: 88px;
    object-fit: cover;
    border-radius: 8px;
}

.cc-grid-item:hover .card-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px);
}

.cc-grid-item:hover {
    transform: translateY(-5px);
    border-color: #22c55e;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.05);
}

.cc-grid-item:hover img {
    filter: brightness(1.1);
}

.cc-grid-item .card-title {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.95;
    line-height: 1.3;
}

.cc-grid-item .card-bonus {
    font-size: 0.7rem;
    color: #22c55e;
    font-weight: 600;
    opacity: 0.85;
}

@media (max-width: 560px) {
    .credit-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .credit-card-grid-section {
        align-self: center;
    }

    .cc-grid-item {
        padding: 0.8rem 0.4rem;
    }

    .cc-grid-item img {
        width: 100px;
        height: auto;
    }
}

/* ─── FINANCE INFO BOX ─── */
.finance-info-box {
    position: relative;
    background: rgba(34, 197, 94, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.info-box-title {
    font-size: 1.1rem;
    color: #22c55e;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ─── MYTHS GRID ─── */
.myths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.myth-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.myth-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.1);
}

.myth-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 0.3rem;
}

.truth-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #22c55e;
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
}

.myth-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* ─── TIPS LIST ─── */
.tips-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tips-list li {
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 1.2rem;
    position: relative;
    opacity: 0.9;
}

.tips-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.tips-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

/* ─── TIPS COLUMNS (SIDE BY SIDE) ─── */
.tips-columns {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tips-column {
    flex: 1;
    min-width: 0; /* prevents flex overflow */
}

@media (max-width: 900px) {
    .tips-columns {
        flex-direction: column;
    }
}

/* ─── SOURCES ICON BUTTON ─── */
.sources-icon-btn {
    position: absolute;
    right: 0.8rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(167, 139, 250, 0.4);
    background: rgba(167, 139, 250, 0.1);
    color: #a78bfa;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.sources-icon-btn:hover {
    background: rgba(167, 139, 250, 0.25);
    border-color: #a78bfa;
    box-shadow: 0 0 12px rgba(167, 139, 250, 0.3);
    transform: scale(1.1);
}

/* ─── SOURCES MODAL ─── */
.sources-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sources-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.sources-modal {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 15px;
    padding: 2rem;
    max-width: 450px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.sources-modal-overlay.open .sources-modal {
    transform: translateY(0);
}

.sources-modal h4 {
    color: #a78bfa;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.sources-modal-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: none;
    border: none;
    color: #a0a0a0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.sources-modal-close:hover {
    color: #ef4444;
}

.sources-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sources-links a {
    font-size: 0.75rem;
    color: #60a5fa;
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    background: rgba(96, 165, 250, 0.05);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sources-links a:hover {
    background: rgba(96, 165, 250, 0.15);
    border-color: #60a5fa;
}

/* ─── COLLAPSIBLE SECTIONS ─── */
.collapsible-section {
    background: rgba(34, 197, 94, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.collapsible-toggle {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(34, 197, 94, 0.05);
    border: none;
    color: #22c55e;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.collapsible-toggle:hover {
    background: rgba(34, 197, 94, 0.1);
}

.toggle-arrow {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.collapsible-section.open .toggle-arrow {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.collapsible-section.open .collapsible-content {
    max-height: 2000px;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
}

/* ─── BANKS GRID ─── */
.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.bank-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 12px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    text-decoration: none;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.bank-card:hover {
    transform: translateY(-5px);
    border-color: #22c55e;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.05);
}

.bank-card img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.bank-card:hover img {
    filter: brightness(1.1);
}

.bank-card span {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.bank-bonus {
    font-size: 0.7rem !important;
    color: #22c55e !important;
    font-weight: 600 !important;
    opacity: 1 !important;
}

/* ─── CRYPTO TICKER WRAPPER ─── */
.crypto-ticker-wrapper {
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, 0.15);
    background: rgba(34, 197, 94, 0.03);
    width: 105%;
    align-self: center;
    height: 55px;
    overflow: hidden;
}

/* ─── UNCLAIMED MONEY BOX ─── */
.unclaimed-money-box {
    background: rgba(234, 179, 8, 0.05);
    border: 2px solid rgba(234, 179, 8, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.unclaimed-money-box:hover {
    border-color: rgba(234, 179, 8, 0.6);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.15);
}

.unclaimed-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #eab308;
    margin-bottom: 0.8rem;
}

.unclaimed-btn {
    background: rgba(234, 179, 8, 0.1) !important;
    border-color: rgba(234, 179, 8, 0.3) !important;
    color: #eab308 !important;
}

.unclaimed-btn:hover {
    background: rgba(234, 179, 8, 0.2) !important;
    border-color: #eab308 !important;
    box-shadow: 0 5px 15px rgba(234, 179, 8, 0.3) !important;
}

/* ─── WIDGETS ROW ─── */
.widgets-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ─── TRACKER WIDGET ─── */
.tracker-widget {
    flex: 1;
    min-width: 200px;
    max-width: 350px;
    background: rgba(34, 197, 94, 0.05);
    border: 2px solid rgba(34, 197, 94, 0.25);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.tracker-widget:hover {
    border-color: #22c55e;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
    transform: translateY(-5px);
}

.widget-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.4));
}

.widget-label {
    font-size: 0.9rem;
    color: #22c55e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.widget-value {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    background: linear-gradient(45deg, #22c55e, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.widget-updated {
    font-size: 0.75rem;
    opacity: 0.5;
    color: #a0a0a0;
}

/* ─── CREDIT SCORES ROW ─── */
.credit-scores-row {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.score-card {
    flex: 1;
    min-width: 150px;
    max-width: 220px;
    background: rgba(34, 197, 94, 0.05);
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 15px;
    padding: 1.2rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.score-card:hover {
    border-color: #22c55e;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
    transform: translateY(-4px);
}

.bureau-logo {
    width: 80px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0.85);
    transition: filter 0.3s ease;
}

.score-card:hover .bureau-logo {
    filter: brightness(1.1);
}

.bureau-name {
    font-size: 0.75rem;
    color: #a0a0a0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.score-value {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(45deg, #22c55e, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-label {
    font-size: 0.7rem;
    color: #22c55e;
    font-weight: 600;
    opacity: 0.7;
    letter-spacing: 1px;
}

@media (max-width: 560px) {
    .credit-scores-row {
        align-items: center;
    }

    .score-card {
        max-width: 100%;
        width: 100%;
    }
}

/* ═══════════════════════════════════════ */
/* FINANCE PAGE RESPONSIVE                */
/* ═══════════════════════════════════════ */

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

    .banks-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .widgets-row {
        flex-direction: column;
        align-items: center;
    }

    .tracker-widget {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .banks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .bank-card {
        padding: 0.8rem 0.5rem;
    }

    .bank-card img {
        width: 45px;
        height: 30px;
    }

    .collapsible-toggle {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    .unclaimed-money-box {
        padding: 1rem;
    }

    .sources-links {
        flex-direction: column;
    }
}

/* ─── SECTION HEADERS ─── */
.finance-box h3 {
    font-family: 'Carter One';
    font-size: clamp(1.45rem, 3vw, 1.525rem);
    margin-bottom: 0.3rem;
}

.finance-box p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;    margin-bottom: .5rem;
}

/* ─── SECTION SPACING & DIVIDERS ─── */
.finance-box {
    margin-bottom: 2.5rem;
}

/* ─── SECTION ACCENT OVERRIDES ─── */

/* Crypto section — blue-purple accent */
#crypto-section .info-box-title {
    color: #a78bfa;
}

#crypto-section .finance-info-box {
    background: rgba(167, 139, 250, 0.03);
    border-color: rgba(167, 139, 250, 0.15);
}

#crypto-section .quick-link-btn:hover {
    border-color: #a78bfa;
    box-shadow: 0 5px 15px rgba(167, 139, 250, 0.2);
}

#crypto-section .crypto-ticker-wrapper {
    border-color: rgba(167, 139, 250, 0.15);
    background: rgba(167, 139, 250, 0.03);
}

/* Investing section — warm amber accent */
#investing-section .info-box-title {
    color: #f59e0b;
}

#investing-section .finance-info-box {
    background: rgba(245, 158, 11, 0.03);
    border-color: rgba(245, 158, 11, 0.15);
}

#investing-section .tips-list li::before {
    color: #f59e0b;
}

#investing-section .quick-link-btn:hover {
    border-color: #f59e0b;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.2);
}

/* Taxes section — neutral cool blue accent */
#taxes-section .info-box-title {
    color: #60a5fa;
}

#taxes-section .finance-info-box {
    background: rgba(96, 165, 250, 0.03);
    border-color: rgba(96, 165, 250, 0.15);
}

#taxes-section .tips-list li::before {
    color: #60a5fa;
}

#taxes-section .quick-link-btn:hover {
    border-color: #60a5fa;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.2);
}

/* Net Worth section — teal-green gradient feel */
#networth-section .tracker-widget,
#networth-section .score-card {
    border-color: rgba(20, 184, 166, 0.25);
    background: rgba(20, 184, 166, 0.05);
}

#networth-section .tracker-widget:hover {
    border-color: #14b8a6;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.2);
}

#networth-section .widget-value {
    background: linear-gradient(45deg, #14b8a6, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#networth-section .score-value {
    background: linear-gradient(45deg, #14b8a6, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#networth-section .info-box-title {
    color: #14b8a6;
}

#networth-section .finance-info-box {
    background: rgba(20, 184, 166, 0.03);
    border-color: rgba(20, 184, 166, 0.15);
}

/* ─── QUICK LINK BUTTONS — BASE OVERRIDE ─── */
#credit-section .quick-link-btn:hover {
    border-color: #22c55e;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.2);
}

/* ─── SECTION TITLE ACCENT BARS ─── */
#crypto-section h3::after {
    background: #a78bfa;
}

#investing-section h3::after {
    background: #f59e0b;
}

#taxes-section h3::after {
    background: #60a5fa;
}

#networth-section h3::after {
    background: #14b8a6;
}

/* ─── INFO BOX LEFT ACCENT ─── */
#credit-section .finance-info-box {
    border-left: 3px solid rgba(34, 197, 94, 0.4);
}

#crypto-section .finance-info-box {
    border-left: 3px solid rgba(167, 139, 250, 0.4);
}

#investing-section .finance-info-box {
    border-left: 3px solid rgba(245, 158, 11, 0.4);
}

#taxes-section .finance-info-box {
    border-left: 3px solid rgba(96, 165, 250, 0.4);
}

#networth-section .finance-info-box {
    border-left: 3px solid rgba(20, 184, 166, 0.4);
}

/* ─── FINANCE CARD SLIDER ─── */
.finance-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 250px auto auto auto;
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}

/* 1. The Window */
.finance-slides-viewport {
    width: 100%;
    overflow: hidden;
    transition: height 0.4s ease;
    will-change: height;
    overflow-anchor: none; 
}

/* 2. The Track (No more flexbox!) */
.finance-slides {
    position: relative;
    width: 100%;
}

/* 3. The Cards (Stacked & Invisible) */
.finance-slide {
    position: absolute;
    backdrop-filter: blur(5px);
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* 4. The Active Card (Visible) */
.finance-slide.active-slide {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

/* ─── NAVIGATION TIMELINE BAR ─── */
.finance-nav-bar {
    display: flex;
    gap: 1.5rem;
    padding: 1.2rem 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 2rem;
    z-index: 50;
    border-radius: 0 50px; /* rounded bottom corners only */

    margin: auto 3rem;
}

/* ─── ARROWS ─── */
.nav-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-arrow:hover {
    background: rgba(167, 139, 250, 0.2);
    border-color: #a78bfa;
    transform: scale(1.1);
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* ─── DOTS TRACK ─── */
.nav-dots-track {
    display: flex;
    align-items: flex-start;
    position: relative;
    flex: 1;
    justify-content: center;
    padding: 0; /* Remove padding */
    gap: 0;     /* Remove gap so flex math works perfectly */
}

/* ─── PROGRESS LINE (behind dots) ─── */
.nav-progress-line {
    position: absolute;
    top: 13px; /* 👈 Locks exactly to the center of the visual dot (ignoring text) */
    left: 10%; /* 👈 Starts exactly in the middle of the first dot */
    right: 10%; /* 👈 Ends exactly in the middle of the last dot */
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 0;
    border-radius: 2px;
}

.nav-progress-fill {
    height: 100%;
    background: #a78bfa;
    border-radius: 2px;
    transition: width 0.5s ease, background 0.5s ease;
    width: 0%;
}

/* ─── NAV DOTS ─── */
.nav-dot {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    padding: 0.3rem 0; /* Standardize padding */
}

.dot-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-dot.active .dot-indicator {
    background: var(--dot-color, #a78bfa);
    border-color: var(--dot-color, #a78bfa);
    box-shadow: 0 0 12px var(--dot-color, rgba(167, 139, 250, 0.5));
    transform: scale(1.2);
}

.nav-dot:hover .dot-indicator {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.15);
}

.dot-label {
    font-size: 0.7rem;
    color: #a0a0a0;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-dot.active .dot-label {
    color: #e0e0e0;
    font-weight: 600;
}

/* ─── MOBILE: Hide labels, smaller bar ─── */
@media (max-width: 700px) {
    .dot-label {
        display: none;
    }

    .nav-dots-track {
        gap: 0;
        margin: auto;
    }

    .finance-nav-bar {
        padding: .8rem 1.2rem;
        margin: 0 1rem;
    }

    .finance-slide {
        padding: 1.5rem 0.8rem;
    }
}