/* ==================== SAVINGS SECTION - PROFESSIONAL DESIGN ==================== */

.savings-section {
    background: linear-gradient(to bottom, rgba(1, 7, 37, 0.9), rgba(0, 32, 101, 0.9));
    padding: 4rem 0;
}

.savings-container {
    max-width: 70%;
    margin: 0 auto;
}

.savings-wrapper {
    display: grid;
    justify-content: start;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 6rem;
}

.savings-card {
    /* background: white; */
    /* border: 1px solid #e2e8f0; */
    border-radius: 12px;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.savings-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    flex-grow: 1;
    color: white;
}

.savings-label {
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-align: center;
}

.savings-number {
    font-size: 7rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.savings-percent {
    font-size: 3rem;
    vertical-align: top;
    padding-left: 1rem;
    font-weight: bold;
}

.savings-description {
    font-size: 3.5rem;
    line-height: 1.5;
    text-align: center;
    font-weight: bold;
}

.savings-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f172a;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.938rem;
    transition: all 0.2s ease;
    border: 2px solid #0f172a;
}

@media (max-width: 1024px) {
    .savings-container {
        max-width: 85%;
    }

    .savings-number {
        font-size: 4rem;
    }

    .savings-percent {
        font-size: 2.5rem;
    }
}

@media (max-width: 1220px) {
    .savings-content {
        justify-content: start;
    }
}

@media (max-width: 768px) {
    .savings-container {
        max-width: 90%;
    }

    .savings-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .savings-card {
        min-height: 300px;
    }
}

@media (max-width: 620px) {
    .savings-container {
        max-width: 95%;
    }

    .savings-card {
        padding: 2rem 1.5rem;
        min-height: 200px;
    }

    .savings-number {
        font-size: 3.5rem;
    }

    .savings-percent {
        font-size: 2rem;
    }

    .savings-description {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .savings-number {
        font-size: 3rem;
    }

    .savings-percent {
        font-size: 1.75rem;
    }
}

@media (max-width: 400px) {
    .savings-label {
        font-size: 1.75rem;
    }

    .savings-percent {
        font-size: 1.5rem;
    }

    .savings-description {
        font-size: 1.75rem;
    }
}

@media (max-width: 340px) {
    .savings-container {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .savings-card {
        padding: 1.5rem 1rem;
        min-height: 180px;
    }

    .savings-percent {
        font-size: 1.25rem;
        padding-left: 0.5rem;
    }
}