/* ===== HERO SECTION ===== */
.heroSection_ {
    width: 100%;
    background-color: #faf8f4;
    padding: 20px 24px 60px;
}

.heroContainer_ {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* ===== TITLE ===== */
.heroTitle_ {
    font-family: "Inter", sans-serif;
    font-size: 44px;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2e2a26 !important;
    line-height: 1.25;
    margin-bottom: 32px;
}

/* ===== SUBTITLE ===== */
.heroSubtitle_ {
    max-width: 900px;
    margin: 0 auto 48px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #6f6a64;
}

/* ===== BENEFITS CARD ===== */
.benefitsContainer_ {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.benefitsGrid_ {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 32px 40px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

/* ===== BENEFIT ITEM ===== */
.benefitItem_ {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

/* ===== ICON WRAPPER ===== */
.benefitIconWrapper_ {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #f2eee9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== ICON ===== */
.benefitIcon_ {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
    color: #b89a63;
}

/* ===== BENEFIT TEXT ===== */
.benefitText_ {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #4f4b45;
    max-width: 140px;
}

/* ===== INFO TEXT ===== */
.info-text_ {
    max-width: 780px;
    margin: 32px auto 56px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #6f6a64;
}

/* ===== CTA ===== */
.ctaContainer_ {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ctaText_ {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2e2a26;
}

/* ===== CTA LINE ===== */
.ctaLine_ {
    width: 120px;
    height: 2px;
    background-color: #d7c6a3;
    border-radius: 2px;
}

.boxWhiteContainer_ {
    align-self: center;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 10px 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .benefitsGrid_ {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

@media (max-width: 600px) {
    .heroTitle_ {
        font-size: 32px;
        letter-spacing: 0.08em;
    }

    .heroSubtitle_ {
        font-size: 16px;
    }

    .benefitsGrid_ {
        grid-template-columns: repeat(2, 1fr);
        padding: 28px;
    }

    .ctaText_ {
        font-size: 16px;
        text-align: center;
    }
}