/* ── scoped to .ma-* — no global reset, won't touch navbar ── */

.ma-hero {
    background: linear-gradient(135deg, #7B0D1E 0%, #B91C1C 55%, #EF4444 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

.ma-hero::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -90px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 55px solid rgba(255, 255, 255, 0.07);
    animation: maRing 4s ease-in-out infinite;
}

.ma-hero::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -50px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 38px solid rgba(247, 168, 0, 0.10);
    animation: maRing 4s ease-in-out infinite 1.5s;
}

@keyframes maRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.06);
        opacity: 0.55;
    }
}

.ma-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 58px 24px 52px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ma-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(247, 168, 0, 0.18);
    border: 1.5px solid rgba(247, 168, 0, 0.50);
    color: #F7A800;
    border-radius: 30px;
    padding: 5px 17px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    width: fit-content;
}

.ma-hero-title {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 16px;
}

.ma-hero-title .t-gold {
    color: #F7A800;
}

.ma-hero-title .t-lite {
    color: #fecaca;
}

.ma-hero-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.80;
    max-width: 530px;
    margin-bottom: 30px;
}

.ma-hero-btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.ma-btn-gold {
    background: linear-gradient(135deg, #F7A800, #d98600);
    color: #7B0D1E;
    font-weight: 800;
    font-size: 15px;
    padding: 13px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 6px 22px rgba(247, 168, 0, 0.44);
    transition: transform .2s, box-shadow .2s;
}

.ma-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(247, 168, 0, 0.55);
    color: #7B0D1E;
    text-decoration: none;
}

.ma-btn-ghost {
    background: rgba(0, 0, 0, 0.16);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 28px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.48);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: all .2s;
}

.ma-btn-ghost:hover {
    border-color: #F7A800;
    color: #F7A800;
    text-decoration: none;
}

/* stat pills */
.ma-pills {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.ma-pill {
    background: rgba(0, 0, 0, 0.17);
    border: 1.5px solid rgba(255, 255, 255, 0.20);
    border-radius: 14px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    transition: background .2s, border-color .2s;
    box-sizing: border-box;
}

.ma-pill:hover {
    background: rgba(0, 0, 0, 0.27);
    border-color: rgba(255, 255, 255, 0.48);
}

.ma-pill-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pi-red {
    background: linear-gradient(135deg, #7B0D1E, #B91C1C);
}

.pi-green {
    background: linear-gradient(135deg, #3AAA35, #267a22);
}

.pi-gold {
    background: linear-gradient(135deg, #F7A800, #c97f00);
}

.pi-navy {
    background: linear-gradient(135deg, #1B2A4A, #2d4580);
}

.ma-pill-val {
    font-size: 16px;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.ma-pill-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.68);
}

/* brand strip */
.ma-strip {
    height: 4px;
    background: linear-gradient(to right, #7B0D1E, #B91C1C, #29ABE2, #F7A800);
}

/* responsive */
@media (max-width: 960px) {
    .ma-hero-inner {
        grid-template-columns: 1fr;
        padding: 42px 24px 46px;
    }

    .ma-pills {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ma-pill {
        flex: 1 1 200px;
    }

    .ma-hero-title {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .ma-hero-title {
        font-size: 26px;
    }

    .ma-hero-btns {
        flex-wrap: wrap;
    }
}