        :root {
        --navy: #0a1f44;
        --gold: #c8922a;
        --gold-light: #e8b84b;
        --cream: #fdf8f0;
        --white: #ffffff;
        --gray-soft: #e8e4dc;
    }

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

    body {
        font-family: 'DM Sans', sans-serif;
        background-color: var(--cream);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow-x: hidden;
    }

    /* Background */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background:
            radial-gradient(ellipse 80% 60% at 50% -10%, rgba(10,31,68,.08) 0%, transparent 70%),
            repeating-linear-gradient(
                45deg,
                transparent,
                transparent 40px,
                rgba(200,146,42,.04) 40px,
                rgba(200,146,42,.04) 41px
            );
        pointer-events: none;
        z-index: 0;
    }

    /* Card */
    .card-wrap {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 560px;
        margin: 2rem 1rem;
        background: var(--white);
        border-radius: 20px;
        box-shadow:
            0 2px 4px rgba(10,31,68,.06),
            0 12px 40px rgba(10,31,68,.12),
            0 0 0 1px rgba(200,146,42,.15);
        overflow: hidden;
        animation: fadeUp .6s ease;
    }

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

    /* HEADER */
    .card-header-band {
        background: var(--navy);
        padding: 2rem 2rem 1.5rem;
        text-align: center;
        position: relative;
    }

    .card-header-band::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    }

    /* LOGO */
    .logo-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-bottom: 1rem;
    }

    .logo-box {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-box img {
        width: clamp(48px, 6vw, 64px);
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    }

    /* TEXT */
    .logo-text-block {
        text-align: left;
    }

    .logo-main {
        font-family: 'Playfair Display', serif;
        font-weight: 900;
        font-size: clamp(1.6rem, 5vw, 2.1rem);
        color: var(--gold-light);
        line-height: 1;
    }

    .logo-sub {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.65);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: 3px;
    }

    /* BADGES */
    .badge-row {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .badge-pill {
        font-size: 0.65rem;
        padding: 4px 10px;
        border-radius: 50px;
        border: 1px solid rgba(200,146,42,.4);
        color: rgba(255,255,255,0.7);
    }

    /* BODY */
    .card-body-section {
        padding: 2rem;
    }

    .section-label {
        font-size: 0.7rem;
        color: var(--gold);
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        color: var(--navy);
        margin-bottom: 10px;
    }

    .section-desc {
        font-size: 0.85rem;
        color: #6b7280;
        margin-bottom: 20px;
    }

    /* SELECT */
    .select-wrapper {
        position: relative;
    }

    .select-wrapper::after {
        content: '';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid var(--gold);
    }

    .styled-select {
        width: 100%;
        padding: 12px 40px 12px 12px;
        border-radius: 10px;
        border: 2px solid var(--gray-soft);
        background: var(--cream);
    }

    /* BUTTON */
    .btn-proceed {
        display: none;
        width: 100%;
        margin-top: 15px;
        padding: 12px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--navy), #1a3a70);
        color: white;
        border: none;
    }

    .btn-proceed.visible {
        display: block;
    }

    /* STATS */
    .stats-row {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
    }

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

    .stat-number {
        font-weight: bold;
        color: var(--navy);
    }

    /* FOOTER */
    .card-footer-band {
        padding: 1rem;
        background: #f7f3ec;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .card-body-section {
            padding: 1.5rem;
        }
    }

    @media (max-width: 480px) {

        .logo-container {
            gap: 10px;
        }

        .logo-box img {
            width: 50px;
        }

        .logo-main {
            font-size: 1.4rem;
        }

        .card-body-section {
            padding: 1.5rem 1rem;
        }

        .stats-row {
            flex-direction: column;
            gap: 10px;
        }
    }
