/* ==========================================================================
   SKYFALL V3 - PRICING TOGGLE SWITCH
   ========================================================================== */
.pricing-switch {
    display: block;
    position: relative;
    width: 80px;
    height: 40px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.pricing-switch input {
    display: none;
}

.pricing-slider {
    position: absolute;
    inset: 0;
    background-color: #646475;
    border-radius: 9999px;
    box-shadow:
        inset 0 4px 8px rgba(0, 0, 0, 0.6),
        inset 0 1px 2px rgba(0, 0, 0, 0.8),
        0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.4s ease;
    overflow: hidden;
}

.pricing-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #c2410c, #EA580C);
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-slider-inner {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 32px;
    height: 32px;
    background: linear-gradient(180deg, #f4f4f5 0%, #e4e4e7 100%);
    border-radius: 50%;
    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.pricing-slider-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(to right, #c2410c, #EA580C);
    border-radius: 50%;
    opacity: 0.5;
}

.pricing-switch input:checked + .pricing-slider::before {
    opacity: 1;
}

.pricing-switch input:checked + .pricing-slider .pricing-slider-inner {
    transform: translateX(40px);
    box-shadow:
        -2px 2px 5px rgba(0, 0, 0, 0.4),
        -4px 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.pricing-label {
    color: #a1a1aa;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-label:hover {
    color: #FFFFFF;
}

.pricing-toggle-container.is-annual .label-annual {
    color: #F97316;
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.5);
}

.pricing-toggle-container:not(.is-annual) .label-monthly {
    color: #FFFFFF;
}

/* LED Pulse for Annual */
.pricing-toggle-container.is-annual .label-annual::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffedd5, #ea580c);
    box-shadow: 0 0 10px rgba(234, 88, 12, 0.8);
    animation: led-pulse 1.5s infinite;
}

@keyframes led-pulse {
    0% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px rgba(234, 88, 12, 0.8);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.9);
        box-shadow: 0 0 5px rgba(234, 88, 12, 0.4);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px rgba(234, 88, 12, 0.8);
    }
}
