.main-hero {
    background-color: var(--vp-navy);
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-bg-text {
    position: absolute;
    font-size: 12vw;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.promo-card {
    background: #fff;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 2;
    border-radius: var(--radius-sharp);
    box-shadow: 20px 20px 0px rgba(0,0,0,0.1);
    margin: 0 auto;
    text-align: center;
}

.promo-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.promo-tag {
    background: var(--vp-orange);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.promo-card h1 { font-size: 3rem; line-height: 1; font-weight: 800; margin-bottom: 20px; }
.promo-card p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; }

.btn-dark { background: #000; color: #fff; padding: 15px 30px; text-decoration: none; font-weight: 600; }
.btn-outline { border: 1px solid #000; color: #000; padding: 15px 30px; text-decoration: none; font-weight: 600; margin-left: 10px; }

.announcement-bar {
    background: #000;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .promo-card {
        padding: 30px 20px;
        width: 85%;
        box-shadow: 10px 10px 0px rgba(0,0,0,0.1);
    }

    .promo-card h1 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .promo-card p,
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .promo-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .btn-dark, .btn-outline {
        display: block;
        width: 100%;
        margin-left: 0 !important;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-bg-text {
        font-size: 18vw;
    }
}