/* SentianOrbit Tactical Pricing Design */

.pricing-header {
    text-align: center;
    padding: 140px 20px 60px;
    background: radial-gradient(circle at top, rgba(0, 242, 254, 0.05) 0%, transparent 70%);
}

.pricing-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.pricing-header p {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Pricing Toggle */
.toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.currency-selector label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dim);
}

.currency-selector select {
    background: transparent;
    color: var(--primary);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.85rem;
    outline: none;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dim);
    transition: color 0.3s;
}

.toggle-label.active {
    color: var(--primary);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background-color: var(--primary);
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

input:checked + .slider {
    background-color: rgba(0, 242, 254, 0.2);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.discount-badge {
    background: rgba(46, 204, 113, 0.1);
    color: var(--accent);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 10px;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 80px 100px;
    max-width: 1500px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(0, 242, 254, 0.03) 0%, rgba(5, 8, 10, 1) 100%);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured:hover {
    box-shadow: 0 30px 60px rgba(0, 242, 254, 0.15);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 5px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.tier-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2px;
    display: flex;
    align-items: baseline;
    gap: 2px;
    letter-spacing: -2px;
}

.currency-symbol {
    font-size: 2rem;
    color: var(--secondary);
    margin-right: 4px;
}

.price .unit {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 400;
}

.annual-billing-text {
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: -5px;
    margin-bottom: 20px;
    font-weight: 600;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.price-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 30px;
    height: 40px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.features-list li {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 900;
}

.features-list li.unavailable {
    opacity: 0.4;
}

.features-list li.unavailable::before {
    content: '×';
    color: #e74c3c;
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    text-align: center;
}

.btn-pricing-free {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-bright);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-pricing-free:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-pricing-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #000;
}

.btn-pricing-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-pricing-outline:hover {
    background: rgba(0, 242, 254, 0.05);
}

@media (max-width: 1024px) {
    .pricing-grid {
        padding: 0 40px 100px;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 2.5rem;
    }
    .pricing-grid {
        padding: 0 20px 60px;
    }
}
