/* HOME GUARANTEE CSS VERSION 1 */

.home_guarantee_section {
    position: relative;
    z-index: 2;
}

.home_guarantee_container {
    background: #ffffff;
	margin-top: -128px;
    padding-top: 4rem;
    padding-bottom: 4rem;
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.08);
}

.home_guarantee_header {
    max-width: 52rem;
}

.home_guarantee_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.home_guarantee_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #111111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 1.45rem 1.1rem 1.25rem;
    box-shadow:
        0 6px 12px rgba(0,0,0,0.22),
        0 2px 4px rgba(0,0,0,0.12);
}

.home_guarantee_icon {
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #f0d77a 0%, #d4af37 100%);
    color: #111111;
    font-weight: var(--weight-bold);
    font-size: 1rem;
    box-shadow:
        0 4px 10px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.home_guarantee_card h3 {
    margin: 0 0 0.55rem;
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1.2;
}

.home_guarantee_card p {
    margin: 0;
    color: rgba(255,255,255,0.80);
    font-size: 0.9rem;
    line-height: 1.55;
}

.home_guarantee_strip {
    margin-top: 1.5rem;
}

.home_guarantee_strip ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.home_guarantee_strip li {
    position: relative;
    padding-left: 1.3rem;
    color: #111111;
    font-size: 0.9rem;
    font-weight: var(--weight-medium);
    line-height: 1.4;
}

.home_guarantee_strip li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-weight: var(--weight-bold);
}

.home_guarantee_footer {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

@media (max-width: 1023px) {
    .home_guarantee_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home_guarantee_container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .home_guarantee_grid {
        grid-template-columns: 1fr;
        margin-top: 1.5rem;
    }

    .home_guarantee_footer {
        flex-direction: column;
    }

    .home_guarantee_footer .button {
        width: 100%;
    }
}