.container {
    width: 100%;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.hero-banner {
    position: relative;
    text-align: center;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-button {
    text-decoration: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary-500);
    color: #fff;
    padding: 12px 24px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.promo-button::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: saturate(1.5) brightness(1.3);
    pointer-events: none;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1;
}

.promo-button:hover::after {
    opacity: 1;
    transform: scaleX(1);
    animation: promo-shine 0.7s linear;
}

@keyframes promo-shine {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }

    100% {
        opacity: 0;
        transform: scaleX(1);
    }
}

.promo-button span {
    position: relative;
    z-index: 2;
}

.promo-button:hover {
    background: var(--color-primary-400);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.features-bar {
    background-color: #eee;
}

.features-bar .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(80px, 15vw, 150px), 1fr));
    gap: clamp(0.5rem, 2vw, 1rem);
    padding: 1rem 0;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.feature {
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: clamp(0.2rem, 1vw, 0.5rem);
    padding: 0.5rem 0.2rem;
    container-type: inline-size;
}

.feature img {
    width: clamp(40px, 8vw, 80px);
    height: auto;
}

.feature span {
    white-space: normal;
    font-size: clamp(0.7rem, 2vw, 1rem);
    line-height: 1.2;
    text-align: center;
    hyphens: auto;
    word-break: break-word;
}

@container (min-width: 120px) {
    .feature {
        flex-direction: row;
        align-items: center;
    }

    .feature span {
        white-space: nowrap;
        text-align: left;
    }
}

.main-title {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--color-bg);
}

.main-title h2 {
    color: var(--color-secondary-500);
    font-size: 1.5rem;
}

.categories {
    background-color: var(--color-bg);
}

.categories .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.categories .category {
    padding-inline: 12px;
}

.category a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.category a:hover {
    transform: translateY(-5px);
}

.category img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.category h3 {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    background: var(--color-secondary-500);
    color: #fff;
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
}

.why-choose-us {
    padding: 2rem 1rem;
    text-align: center;
    background-color: #ffffff;
}

.why-choose-us h2 {
    color: var(--color-primary-500);
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.reason img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    max-width: 160px;
    border: 1px solid #ddd;
}

.reason-title {
    color: var(--color-secondary-500);
    margin-top: 0.5rem;
    font-weight: bold;
    font-size: 1rem;
}

.reason-desc {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.3rem;
}

@media (max-width: 480px) {
    .promo-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .main-title h2 {
        font-size: 1.2rem;
    }

    .category h3 {
        font-size: 1rem;
    }

    .why-choose-us h2 {
        font-size: 1.4rem;
    }

    .reason-title {
        font-size: 0.95rem;
    }

    .reason-desc {
        font-size: 0.85rem;
    }
}

@media (min-width: 850px) {
    .container {
        max-width: var(--max-width);
    }
}