.achievements-hero {
    padding: 2.5rem 0 1.5rem;
    background: #00ccff;
}

.achievements-hero .container {
    position: relative;
    z-index: 2;
}

.achievements-hero::before,
.achievements-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.achievements-hero::before {
    background: radial-gradient(circle at 12% 26%, rgba(255, 186, 0, 0.22), transparent 32%),
                radial-gradient(circle at 88% 20%, rgba(0, 139, 154, 0.18), transparent 32%);
    opacity: 0.9;
}

.achievements-hero::after {
    background: url('/welcome/css/green-wheelz/hero-shape.svg') no-repeat top right;
    background-size: 540px;
    opacity: 0.08;
}

.achievements-hero .hero-copy h1,
.achievements-hero .hero-copy .lead {
    color: #02294F;
}

.achievements-hero .hero-copy h1 {
    line-height: 1.2;
    text-wrap: balance;
}

.achievements-hero .hero-copy .lead {
    max-width: 640px;
    font-size: 1.1rem;
    color: #184682;
}

.hero-highlight-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 24px 60px rgba(2, 41, 79, 0.12);
    border: 1px solid rgba(0, 139, 154, 0.16);
    backdrop-filter: blur(6px);
}

.hero-highlight-card .icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #00CCFF, #56B7CA);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 38px rgba(0, 204, 255, 0.35);
}

.hero-highlight-card li {
    color: #184682;
    font-weight: 600;
}

.hero-highlight-card i.bi-check2-circle {
    color: #00A240;
}

@media (max-width: 767.98px) {
    .achievements-hero {
        padding: 1.75rem 0 1rem;
    }

    .hero-highlight-card {
        margin-top: 0.75rem;
    }
}