/*--------------------------------------------------------------
# Global Save/Credibility Section
--------------------------------------------------------------*/
.global-save-section {
    width: 100%;
    background: #105310;
    box-sizing: border-box;
}

.global-save-section * {
    box-sizing: border-box;
}

.save-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1280px;
    padding: 80px 1rem;
    margin: 0 auto;
}

/* Headline */
.save-header {
    text-align: center;
    width: 100%;
}

.save-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin: 0;
}

.save-highlight {
    color: #31B331;
}

#save-money-value,
#save-hours-value {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

#save-money-value {
    min-width: 5ch;
}

#save-hours-value {
    min-width: 2.5ch;
}

/* Slider Area */
.save-slider-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 600px;
}

.save-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Slider Wrapper */
.save-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

/* Custom Range Slider */
.save-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 12px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.4) var(--slider-pct, 33%),
        rgba(255, 255, 255, 0.2) var(--slider-pct, 33%),
        rgba(255, 255, 255, 0.2) 100%
    );
    outline: none;
    cursor: pointer;
    transition: background 0.1s ease;
}

/* Thumb – WebKit */
.save-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #228C22;
    border: 4px solid #FFFFFF;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.save-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Thumb – Firefox */
.save-slider::-moz-range-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #228C22;
    border: 4px solid #FFFFFF;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.save-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
}

/* Firefox track */
.save-slider::-moz-range-track {
    height: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
}

/* Tick Labels */
.save-slider-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.save-slider-labels span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 768px) {
    .save-title {
        font-size: 32px;
    }

    .save-subtitle {
        font-size: 20px;
    }

    .save-container {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .save-title {
        font-size: 26px;
    }

    .save-subtitle {
        font-size: 18px;
    }
}
