/* Pricing Hero */
.pricing-hero {
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Pricing Container */
.pricing-container {
    max-width: 480px;
    margin: 0 auto;
}

/* Pricing Card */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Plan Toggle */
.pricing-toggle {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.toggle-btn {
    flex: 1;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    position: relative;
    font-family: inherit;
}

.toggle-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.toggle-btn.active {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.08);
}

.toggle-btn span {
    display: block;
}

.toggle-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.toggle-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 8px;
}

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

.save-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

/* Promo Section */
.promo-section {
    margin-bottom: 28px;
}

.promo-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.promo-input-group {
    display: flex;
    gap: 8px;
}

.promo-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color var(--transition-base);
}

.promo-input:focus {
    outline: none;
    border-color: var(--primary);
}

.promo-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.promo-btn {
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: inherit;
}

.promo-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

/* Features */
.pricing-features {
    margin-bottom: 32px;
}

.features-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.features-list li i {
    color: var(--primary);
    font-size: 1rem;
}

/* Pro Features Section */
.pro-features-section {
    background: rgba(0, 0, 0, 0.2);
}

.pro-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pro-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-base);
}

.pro-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.pro-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
}

.pro-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.pro-feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-primary);
}

/* Responsive */
@media (max-width: 968px) {
    .pro-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-toggle {
        flex-direction: column;
    }
    
    .pro-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pro-feature-card {
        padding: 24px;
    }
}
