/* ============== PRICING PAGE ============== */
.pricing-container {
    max-width: 1200px;
    width: 95%;
    margin: 2rem auto;
    padding: 1rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h1 {
    color: #e3ad3e;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-header p {
    color: #a0a8c0;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.pricing-card {
    background: #090c20;
    border: 1px solid #2a3042;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: #e3ad3e;
}

.pricing-card.popular {
    border: 2px solid #e3ad3e;
    background: linear-gradient(135deg, #090c20 0%, #12162d 100%);
}

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

.pricing-card-header h3 {
    color: #e3ad3e;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.pricing-price .currency {
    font-size: 1.2rem;
    color: #a0a8c0;
}

.pricing-price .period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}

.pricing-features {
    flex: 1;
    margin-bottom: 25px;
}

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

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0a8c0;
    font-size: 0.95rem;
    border-bottom: 1px solid #2a3042;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    font-size: 0.9rem;
}

.pricing-features li .fas.fa-check {
    color: #28a745;
}

.pricing-features li .fas.fa-times {
    color: #dc3545;
    opacity: 0.6;
}

.pricing-card-footer {
    text-align: center;
}

.pricing-card-footer .btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-pricing-outline {
    background: transparent;
    border: 1px solid #e3ad3e;
    color: #e3ad3e;
}

.btn-pricing-outline:hover {
    background: #e3ad3e;
    color: #090c20;
}

.btn-pricing-primary {
    background: #e3ad3e;
    color: #090c20;
    border: 1px solid #e3ad3e;
}

.btn-pricing-primary:hover {
    background: #ffd700;
    color: #090c20;
}

.btn-pricing-disabled {
    background: rgba(108, 117, 125, 0.2);
    color: #6c757d;
    border: 1px solid #6c757d;
    cursor: not-allowed;
}

.current-plan-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-security-note {
    text-align: center;
    color: #6c757d;
    font-size: 0.95rem;
    margin-top: 2rem;
    padding-top: 20px;
    border-top: 1px solid #2a3042;
}

.pricing-security-note i {
    color: #28a745;
    margin-right: 6px;
}

/* Мобильные стили */
@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    .btn-pricing-outline,
    .btn-pricing-primary {
        padding: 10px;
        font-size: 0.95rem;
    }
}