*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0d1b2a;
    --navy2: #1a2d42;
    --navy3: #243447;
    --cyan: #00CFFF;
    --cyan-light: #4de0ff;
    --white: #ffffff;
    --sky: #e8f4fc;
    --sky2: #d6eef8;
    --sky3: #b8dff5;
    --muted: #7a9ab8;
    --text: #0d1b2a;
    --border: #d0e4f0;
    --red: #c0392b;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk',sans-serif;
    background: var(--sky);
    color: var(--text);
    overflow-x: hidden;
}

a {
    color: var(--cyan);
    text-decoration: none;
}

    a:hover {
        opacity: .8;
    }

/* TOPBAR */
.topbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 52px;
    border-bottom: 1px solid rgba(0,207,255,.15);
}

.free-btn {
    background: var(--cyan);
    border: none;
    color: var(--navy);
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 24px;
    cursor: pointer;
    transition: background .18s;
}

    .free-btn:hover {
        background: var(--cyan-light);
    }

.topbar-center {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-label {
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-right: 6px;
}

.tb-box {
    background: var(--navy2);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: 5px 10px;
    text-align: center;
    min-width: 52px;
}

.tb-num {
    font-family: 'Bebas Neue',sans-serif;
    font-size: 22px;
    color: var(--cyan);
    line-height: 1;
    display: block;
}

.tb-sep {
    font-family: 'Bebas Neue',sans-serif;
    font-size: 22px;
    color: rgba(255,255,255,.2);
    padding: 0 2px;
}

.tb-lbl {
    font-size: 8px;
    letter-spacing: .12em;
    color: rgba(255,255,255,.3);
    display: block;
}

.login-btn {
    background: transparent;
    border: 1.5px solid var(--cyan);
    color: var(--cyan);
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;
    padding: 7px 18px;
    border-radius: 24px;
    cursor: pointer;
    transition: background .18s;
}

    .login-btn:hover {
        background: rgba(0,207,255,.1);
    }

/* TICKER */
.ticker {
    background: var(--navy2);
    padding: 9px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 2px solid rgba(0,207,255,.2);
}

.ticker-track {
    display: inline-block;
    animation: tickmove 24s linear infinite;
}

    .ticker-track span {
        font-family: 'Bebas Neue',sans-serif;
        font-size: 14px;
        letter-spacing: .2em;
        color: var(--cyan);
        padding: 0 24px;
    }

        .ticker-track span.sep {
            color: rgba(255,255,255,.2);
            padding: 0 8px;
        }

@keyframes tickmove {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* HERO */
.hero {
    background: linear-gradient(180deg,var(--sky3) 0%,var(--sky2) 40%,var(--sky) 100%);
    padding: 56px 24px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 560px;
}

.hero-logo-text {
    font-family: 'Bebas Neue',sans-serif;
    font-size: 12px;
    letter-spacing: .35em;
    color: rgba(13,27,42,.45);
    margin-bottom: 6px;
}

.hero-permit {
    display: inline-block;
    background: var(--navy);
    color: var(--cyan);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 24px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Bebas Neue',sans-serif;
    font-size: clamp(60px,12vw,108px);
    line-height: .9;
    color: var(--navy);
    letter-spacing: .02em;
    margin-bottom: 16px;
}

    .hero h1 .cyan {
        color: var(--cyan);
    }

.hero-sub {
    font-size: 15px;
    color: rgba(13,27,42,.55);
    max-width: 440px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background .18s,transform .12s;
}

    .btn-primary:hover {
        background: var(--navy2);
        transform: scale(1.03);
    }

.btn-outline {
    background: transparent;
    color: var(--navy);
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 50px;
    border: 2px solid var(--navy);
    cursor: pointer;
    transition: background .18s;
}

    .btn-outline:hover {
        background: rgba(13,27,42,.08);
    }

.hero-car-wrap {
    position: relative;
    margin: 0 -24px;
    overflow: hidden;
}

.diagonal-band {
    position: absolute;
    left: -5%;
    right: -5%;
    top: 35%;
    height: 60px;
    background: var(--navy);
    transform: rotate(-3deg);
    z-index: 2;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.diagonal-band-inner {
    font-family: 'Bebas Neue',sans-serif;
    font-size: 24px;
    letter-spacing: .24em;
    color: var(--cyan);
    white-space: nowrap;
    animation: tickmove 16s linear infinite;
    display: inline-block;
}

.hero-car-svg {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
    padding-top: 70px;
    padding-bottom: 16px;
}

/* SECTIONS */
.section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Bebas Neue',sans-serif;
    font-size: clamp(36px,6vw,58px);
    color: var(--navy);
    letter-spacing: .02em;
    margin-bottom: 32px;
}

    .section-title.light {
        color: var(--white);
    }

/* PACKAGES */
.packages {
    background: var(--white);
    padding: 64px 24px 48px;
    text-align: center;
}

.pkg-note {
    font-size: 11px;
    color: var(--muted);
    margin-top: 20px;
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 18px;
    max-width: 960px;
    margin: 0 auto;
}

.pkg {
    background: #f4f8fc;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 28px 20px;
    position: relative;
    text-align: left;
    transition: transform .18s;
}

    .pkg:hover {
        transform: translateY(-3px);
    }

    .pkg.featured {
        background: var(--navy);
        border-color: var(--cyan);
        color: var(--white);
    }

.pkg-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 4px 16px;
    border-radius: 24px;
    white-space: nowrap;
}

.pkg-tier {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 6px;
}

.pkg-price {
    font-family: 'Bebas Neue',sans-serif;
    font-size: 52px;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 2px;
}

.pkg.featured .pkg-price {
    color: var(--white);
}

.pkg-period {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 18px;
}

.pkg.featured .pkg-period {
    color: rgba(255,255,255,.4);
}

.pkg-features {
    list-style: none;
    margin-bottom: 22px;
}

    .pkg-features li {
        font-size: 13px;
        color: #4a6a88;
        padding: 6px 0;
        border-bottom: 1px solid #e0eaf3;
        display: flex;
        align-items: center;
        gap: 8px;
    }

.pkg.featured .pkg-features li {
    color: rgba(255,255,255,.55);
    border-bottom-color: rgba(255,255,255,.08);
}

.pkg-features li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    flex-shrink: 0;
}

.pkg-btn {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 12px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background .18s;
}

    .pkg-btn:hover {
        background: var(--navy3);
    }

.pkg.featured .pkg-btn {
    background: var(--cyan);
    color: var(--navy);
}

    .pkg.featured .pkg-btn:hover {
        background: var(--cyan-light);
    }

/* HOW IT WORKS */
.how {
    background: var(--sky);
    padding: 64px 24px;
}

.how-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    margin-top: 8px;
    text-align: left;
}

.step-card {
    border-radius: 18px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
}

    .step-card.s1 {
        background: var(--navy);
    }

    .step-card.s2 {
        background: var(--white);
    }

    .step-card.s3 {
        background: var(--white);
    }

    .step-card.s4 {
        background: var(--navy);
        grid-column: span 2;
    }

.step-num-badge {
    display: inline-block;
    background: var(--cyan);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: .1em;
}

.step-card h3 {
    font-family: 'Bebas Neue',sans-serif;
    font-size: 30px;
    letter-spacing: .02em;
    margin-bottom: 10px;
}

.step-card.s1 h3, .step-card.s4 h3 {
    color: var(--white);
}

.step-card.s2 h3, .step-card.s3 h3 {
    color: var(--navy);
}

.step-card p {
    font-size: 13px;
    line-height: 1.65;
}

.step-card.s1 p, .step-card.s4 p {
    color: rgba(255,255,255,.45);
}

.step-card.s2 p, .step-card.s3 p {
    color: #5a7a9a;
}

.step-cta-btn {
    display: inline-block;
    margin-top: 16px;
    background: var(--cyan);
    color: var(--navy);
    font-family: 'Space Grotesk',sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
}

.next-draw-card {
    background: var(--red);
    border-radius: 14px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.nd-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    color: rgba(255,255,255,.5);
    margin-bottom: 5px;
}

.nd-title {
    font-family: 'Bebas Neue',sans-serif;
    font-size: 42px;
    color: var(--white);
    letter-spacing: .02em;
    line-height: 1;
}

.nd-sub {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    margin-top: 4px;
}

.nd-car {
    flex: 1;
    min-width: 140px;
    display: flex;
    justify-content: flex-end;
}

/* WINNERS */
.winners {
    background: var(--navy);
    padding: 64px 24px;
    text-align: center;
}

.winner-cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.winner-card {
    background: var(--navy2);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 22px 20px;
    width: 170px;
    text-align: center;
    transition: border-color .18s;
}

    .winner-card:hover {
        border-color: rgba(0,207,255,.35);
    }

.winner-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(0,207,255,.12);
    border: 2px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-family: 'Bebas Neue',sans-serif;
    font-size: 24px;
    color: var(--cyan);
    letter-spacing: .04em;
}

.winner-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 4px;
}

.winner-prize {
    font-size: 12px;
    color: rgba(255,255,255,.4);
}

.winner-month {
    font-size: 10px;
    color: var(--cyan);
    margin-top: 4px;
    letter-spacing: .1em;
}

/* FAQ */
.faq {
    background: #f0f7fc;
    padding: 64px 24px;
}

.faq-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.faq-list {
    margin-top: 8px;
    text-align: left;
}

details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
}

    details:hover {
        box-shadow: 0 2px 12px rgba(0,0,0,.06);
    }

summary {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    summary::-webkit-details-marker {
        display: none;
    }

    summary::after {
        content: '+';
        font-family: 'Bebas Neue',sans-serif;
        font-size: 26px;
        color: var(--cyan);
        flex-shrink: 0;
        margin-left: 12px;
        line-height: 1;
    }

details[open] summary::after {
    content: '−';
}

details p {
    font-size: 14px;
    color: #4a6a88;
    padding: 0 20px 18px;
    line-height: 1.75;
}

/* TRUST */
.trust-band {
    background: var(--white);
    padding: 36px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

    .trust-band p {
        font-size: 14px;
        color: #5a7a9a;
        margin-bottom: 16px;
    }

    .trust-band strong {
        color: var(--navy);
    }

.trust-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--sky);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

    .trust-pill svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

/* SUPPORT */
.support {
    background: var(--navy);
    padding: 48px 24px;
    text-align: center;
}

    .support h3 {
        font-family: 'Bebas Neue',sans-serif;
        font-size: 36px;
        color: var(--white);
        letter-spacing: .04em;
        margin-bottom: 8px;
    }

    .support p {
        font-size: 14px;
        color: rgba(255,255,255,.4);
        margin-bottom: 22px;
    }

.contact-btn {
    background: var(--cyan);
    color: var(--navy);
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 13px 36px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background .18s;
}

    .contact-btn:hover {
        background: var(--cyan-light);
    }

.support .email {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255,255,255,.25);
}

/* FOOTER */
footer {
    background: #071422;
    padding: 48px 24px 24px;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-brand {
    font-family: 'Bebas Neue',sans-serif;
    font-size: 28px;
    letter-spacing: .1em;
    color: var(--white);
    margin-bottom: 6px;
}

    .footer-brand span {
        color: var(--cyan);
    }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-top: 32px;
}

.footer-col h4 {
    font-family: 'Bebas Neue',sans-serif;
    font-size: 14px;
    letter-spacing: .2em;
    color: var(--cyan);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,207,255,.15);
}

.footer-col p, .footer-col a {
    font-size: 12px;
    color: rgba(255,255,255,.35);
    line-height: 2;
    display: block;
    transition: color .15s;
}

.footer-col a {
    cursor: pointer;
}

    .footer-col a:hover {
        color: rgba(255,255,255,.65);
    }

.footer-disclaimer {
    font-size: 11px;
    color: rgba(255,255,255,.18);
    line-height: 1.8;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.05);
}

.footer-bottom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-bottom p {
        font-size: 11px;
        color: rgba(255,255,255,.2);
    }

    .footer-bottom a {
        font-size: 11px;
        color: rgba(255,255,255,.2);
        cursor: pointer;
    }

        .footer-bottom a:hover {
            color: rgba(255,255,255,.45);
        }

/* ===== ALL MODALS (shared base) ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.82);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

    .modal-overlay.active {
        display: flex;
    }

/* Registration/Login modal (white, compact) */
.modal-box {
    background: var(--white);
    border-radius: 22px;
    padding: 38px 32px;
    max-width: 440px;
    width: 100%;
    position: relative;
    animation: modalIn .22s ease;
    margin: auto;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.97)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 26px;
    color: #aabccc;
    cursor: pointer;
    line-height: 1;
}

    .modal-close-btn:hover {
        color: var(--navy);
    }

.modal-box h3 {
    font-family: 'Bebas Neue',sans-serif;
    font-size: 40px;
    color: var(--navy);
    letter-spacing: .02em;
    margin-bottom: 4px;
}

.modal-sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
}

.modal-box label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #7a9ab8;
    margin-bottom: 5px;
}

.modal-box input {
    width: 100%;
    background: #f4f8fc;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--navy);
    font-family: 'Space Grotesk',sans-serif;
    outline: none;
    margin-bottom: 16px;
    transition: border-color .15s;
}

    .modal-box input:focus {
        border-color: var(--cyan);
        background: var(--white);
    }

.submit-btn {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 15px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background .18s;
}

    .submit-btn:hover {
        background: var(--navy2);
    }

.modal-terms {
    font-size: 11px;
    color: #aabccc;
    text-align: center;
    margin-top: 12px;
    line-height: 1.65;
}

    .modal-terms a {
        color: #7a9ab8;
        cursor: pointer;
        text-decoration: underline;
    }

.success-view {
    text-align: center;
    padding: 12px 0;
    display: none;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0,207,255,.1);
    border: 2px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.success-big {
    font-family: 'Bebas Neue',sans-serif;
    font-size: 58px;
    color: var(--cyan);
    letter-spacing: .02em;
    line-height: 1;
}

.success-sub {
    font-size: 14px;
    color: #5a7a9a;
    margin-top: 10px;
    line-height: 1.7;
}

.success-permit {
    font-size: 11px;
    color: #aabccc;
    margin-top: 14px;
}

/* tab switch for register/login */
.modal-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border);
}

.modal-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 12px;
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color .15s,border-color .15s;
}

    .modal-tab.active {
        color: var(--navy);
        border-bottom-color: var(--cyan);
    }

.tab-pane {
    display: none;
}

    .tab-pane.active {
        display: block;
    }

.forgot-link {
    font-size: 12px;
    color: var(--muted);
    text-align: right;
    margin-top: -10px;
    margin-bottom: 16px;
    cursor: pointer;
    display: block;
}

    .forgot-link:hover {
        color: var(--navy);
    }

.divider-or {
    text-align: center;
    font-size: 12px;
    color: #aabccc;
    margin: 16px 0;
    position: relative;
}

    .divider-or::before, .divider-or::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 42%;
        height: 1px;
        background: var(--border);
    }

    .divider-or::before {
        left: 0;
    }

    .divider-or::after {
        right: 0;
    }

/* Large content modals (T&C, Privacy, Disclaimer, Contact) */
.content-modal-box {
    background: var(--white);
    border-radius: 22px;
    padding: 0;
    max-width: 700px;
    width: 100%;
    position: relative;
    animation: modalIn .22s ease;
    margin: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.content-modal-header {
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

    .content-modal-header h3 {
        font-family: 'Bebas Neue',sans-serif;
        font-size: 36px;
        color: var(--navy);
        letter-spacing: .03em;
        line-height: 1;
    }

    .content-modal-header p {
        font-size: 12px;
        color: var(--muted);
        margin-top: 4px;
    }

.content-modal-body {
    padding: 24px 32px;
    overflow-y: auto;
    flex: 1;
}

    .content-modal-body h4 {
        font-family: 'Bebas Neue',sans-serif;
        font-size: 16px;
        letter-spacing: .08em;
        color: var(--navy);
        margin: 22px 0 8px;
    }

        .content-modal-body h4:first-child {
            margin-top: 0;
        }

    .content-modal-body p {
        font-size: 13px;
        color: #4a6a88;
        line-height: 1.8;
        margin-bottom: 10px;
    }

    .content-modal-body ul {
        margin: 0 0 12px 18px;
    }

    .content-modal-body li {
        font-size: 13px;
        color: #4a6a88;
        line-height: 1.8;
    }

.content-modal-footer {
    padding: 16px 32px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
    font-size: 11px;
    color: #aabccc;
    text-align: center;
}

/* Contact modal */
.contact-modal-body {
    padding: 28px 32px;
}

.contact-grid-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-card-modal {
    background: #f4f8fc;
    border-radius: 14px;
    padding: 18px;
}

    .contact-card-modal h5 {
        font-family: 'Bebas Neue',sans-serif;
        font-size: 14px;
        letter-spacing: .1em;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .contact-card-modal p {
        font-size: 13px;
        color: #5a7a9a;
        line-height: 1.7;
    }

    .contact-card-modal a {
        color: var(--cyan);
        font-size: 13px;
    }

.email-compose {
    background: #f4f8fc;
    border-radius: 14px;
    padding: 20px;
}

    .email-compose h5 {
        font-family: 'Bebas Neue',sans-serif;
        font-size: 14px;
        letter-spacing: .1em;
        color: var(--navy);
        margin-bottom: 14px;
    }

    .email-compose input, .email-compose textarea {
        width: 100%;
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: 10px;
        padding: 11px 14px;
        font-size: 13px;
        color: var(--navy);
        font-family: 'Space Grotesk',sans-serif;
        outline: none;
        margin-bottom: 12px;
        transition: border-color .15s;
    }

        .email-compose input:focus, .email-compose textarea:focus {
            border-color: var(--cyan);
        }

    .email-compose textarea {
        resize: vertical;
        min-height: 90px;
    }

.send-btn {
    background: var(--navy);
    color: var(--white);
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 11px 28px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    transition: background .18s;
}

    .send-btn:hover {
        background: var(--navy2);
    }

@media(max-width:640px) {
    .topbar-label {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card.s4 {
        grid-column: span 1;
    }

    .hero h1 {
        font-size: 68px;
    }

    .modal-box {
        padding: 28px 20px;
    }

    .content-modal-header {
        padding: 20px 20px 16px;
    }

    .content-modal-body {
        padding: 16px 20px;
    }

    .contact-modal-body {
        padding: 20px;
    }

    .contact-grid-modal {
        grid-template-columns: 1fr;
    }

    .topbar {
        padding: 0 14px;
    }
}
.rg-footer {
    font-family: var(--font-sans);
    border-top: 0.5px solid var(--color-border-tertiary);
    padding: 2rem 0 1rem;
    color: var(--color-text-secondary);
    font-size: 13px;
    line-height: 1.7;
    background: antiquewhite;
    padding: 20px 20px;
}

.rg-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
    align-items: center;
}

.rg-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-background-secondary);
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: var(--border-radius-md);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
}

    .rg-badge i {
        font-size: 15px;
        color: var(--color-text-secondary);
    }

    .rg-badge.accent {
        background: var(--color-background-danger);
        border-color: var(--color-border-danger);
        color: var(--color-text-danger);
    }

        .rg-badge.accent i {
            color: var(--color-text-danger);
        }

.rg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 1.5rem;
}

.rg-contact-card {
    background: var(--color-background-primary);
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: var(--border-radius-lg);
    padding: 14px 16px;
}

    .rg-contact-card .label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--color-text-tertiary);
        margin-bottom: 4px;
    }

    .rg-contact-card .value {
        font-size: 15px;
        font-weight: 500;
        color: var(--color-text-primary);
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .rg-contact-card .value i {
            font-size: 16px;
            color: var(--color-text-secondary);
        }

    .rg-contact-card .sub {
        font-size: 12px;
        color: var(--color-text-secondary);
        margin-top: 2px;
    }

    .rg-contact-card a {
        color: inherit;
        text-decoration: none;
        border-bottom: 0.5px solid var(--color-border-secondary);
    }

.rg-text {
    font-size: 12px;
    color: var(--color-text-tertiary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

    .rg-text a {
        color: var(--color-text-secondary);
        text-decoration: none;
        border-bottom: 0.5px solid var(--color-border-secondary);
    }

        .rg-text a:hover {
            color: var(--color-text-primary);
        }

.rg-divider {
    height: 0.5px;
    background: var(--color-border-tertiary);
    margin: 1.25rem 0;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-text-primary);
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-primary);
    flex-shrink: 0;
}