/* Toggle Wrapper */
.pricing-toggle-wrapper {
    margin-bottom: 30px;
}

/* Toggle Container */
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f4f6fb;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Toggle Labels */
.toggle-label {
    font-weight: 600;
    color: #6c757d;
    transition: 0.3s;
}

.toggle-label.active {
    color: #0d3ea8;
}

/* Switch Styling */
.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 26px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #d1d5db;
    border-radius: 34px;
    transition: 0.4s;
}

.slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #ffffff;
    border-radius: 50%;
    transition: 0.4s;
}

.switch input:checked + .slider {
    background: #1652cc;
}

.switch input:checked + .slider:before {
    transform: translateX(26px);
}

/* Offer Badge */
.offer-badge {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(45deg, #ff3c3c, #c40000);
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
}