/* ==========================================
   Site Registration / Pricing Component Styles
   ========================================== */

.pricing-wrapper {
    background-color: #0f0c29;
    background-image: linear-gradient(315deg, #0f0c29 0%, #302b63 74%, #24243e 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    font-family: 'Inter', sans-serif;
}

/* Decorative Spheres */
.sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.sphere-1 {
    width: 300px;
    height: 300px;
    background: rgba(102, 126, 234, 0.4);
    top: -50px;
    left: -50px;
}

.sphere-2 {
    width: 200px;
    height: 200px;
    background: rgba(236, 72, 153, 0.3);
    bottom: 50px;
    right: -50px;
}

.sphere-3 {
    width: 150px;
    height: 150px;
    background: rgba(16, 185, 129, 0.3);
    top: 40%;
    left: 40%;
    opacity: 0.2;
}

.pricing-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-header p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Toggle Switch */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    font-weight: 500;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    /* fallback */
    background: rgba(255, 255, 255, 0.1);
    -webkit-transition: .4s;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #10b981;
    /* Green accent */
    border-color: #10b981;
}

input:focus+.slider {
    box-shadow: 0 0 1px #10b981;
}

input:checked+.slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-toggle small {
    color: #10b981;
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Pricing Cards */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 320px;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(165, 180, 252, 0.3);
    transform: scale(1.05);
    position: relative;
    z-index: 2;
    /* Bring to front */
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}


.pricing-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.pricing-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 40px;
    /* Align heights */
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
    /* Push button down */
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.check-icon {
    color: #10b981;
    /* Green check */
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: white;
    color: #0f0c29;
}

/* Featured Button Style override */
.pricing-card.featured .pricing-btn {
    background: white;
    color: #0f0c29;
    font-weight: 600;
    border: none;
}

.pricing-card.featured .pricing-btn:hover {
    background: #e2e8f0;
}