.customer-hero {
    background-color: transparent;
    padding: var(--space-xl) 0 0;
    text-align: center;
    overflow: hidden;
}

.customer-hero .container{
    max-width: 100%;
}

.customer-hero__title {
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: var(--space-md);

    background: var(--text-fifthly);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    display: inline-block;

    max-width: 90%;
}

.customer-hero__subtitle {
    font-weight: 700;
    font-size: var(--font-size-xl, 32px);
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--text-primary, #111827);
    max-width: 1000px;
    margin: 0 auto var(--space-md);
}

.customer-hero__for {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--bg-sexdecennary);
    margin-bottom: var(--space-md);
}

.customer-hero__categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.category-pill {
    background: #2FBED2;
    box-shadow: 0 2px 5px 0 #00000040;
    border-radius: 20px;
    padding: 6px 20px;

    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--text-primary);
    text-align: center;

    max-width: 281px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.cta-buttons {
    margin-bottom: 18px;
    animation: fadeInUp 0.6s ease-out forwards;
    display: flex;
    justify-content: center;
}

.btn.btn-primary.btn-lg {
    font-weight: 600;
    font-size: var(--font-size-xl);
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
    opacity: 1;
    border-radius: 5px;
    border-width: 1px;
    background: radial-gradient(167.66% 167.66% at 50% 50%, #2FBED2 38.94%, #18626C 100%);
    box-shadow: 3px 5px 9.9px 0 #00000040;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .customer-hero .container{
        padding: 0;
    }
    .customer-hero__title{
        padding: 0 var(--space-lg);
    }
    .customer-hero__subtitle{
        padding: 0 var(--space-lg);
    }
    .category-pill{
        width: 100%;
        font-size: var(--font-size-md);
    }
    .category-pill:nth-child(1){
        max-width: 33%;
    }
    .category-pill:nth-child(2){
        max-width: 60%;
    }
    .category-pill:nth-child(3){
        max-width: 51%;
    }
    .category-pill:nth-child(4){
        max-width: 46%;
    }
    .category-pill:nth-child(5){
        max-width: 80%;
        margin-right: 10%;
    }

}