/* SEPARATE PRICING PAGE STYLES */
/* ===================================== */

/* PRICING CONTAINER & HEADER */
.pricing-container {
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.pricing-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

/* PRICING GRID & CARDS */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    align-items: start;
}

.pricing-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease-out;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 70px -15px rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.4);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #8b5cf6;
    box-shadow: 0 30px 60px -12px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: 0 40px 80px -15px rgba(139, 92, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.3);
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 0.75rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    z-index: 20;
}

/* CARD HEADER */
.pricing-header-card {
    padding: 1.5rem 1rem 1.5rem;
    text-align: center;
    position: relative;
}

.pricing-header-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.price-amount {
    font-size: 1.35rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.9;
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-left: 0.25rem;
}

.tariff-description {
    color: var(--text-muted);
    font-size: 1rem;
    font-style: italic;
}

/* FEATURES SECTION */
.pricing-features {
    padding: 0 2rem 1.5rem;
    flex-grow: 1;
}

.pricing-features h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid #8b5cf6;
    padding-bottom: 0.5rem;
    display: inline-block;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.15s ease-in-out;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    background: rgba(139, 92, 246, 0.05);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0.5rem;
}

.feature-icon {
    font-size: 1.25rem;
    min-width: 24px;
    text-align: center;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
}

.feature-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* PRICING FOOTER */
.pricing-footer {
    padding: 0 2rem 2.5rem;
    margin-top: auto;
}

.billing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
    font-style: italic;
}

/* BUTTONS */
.btn-full {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    color: white;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #a78bfa 0%, #06d6a0 100%);
    opacity: 0;
    transition: opacity 0.3s ease-out;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
    color: white;
    text-decoration: none;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid #8b5cf6;
    color: #a78bfa;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.btn-secondary:hover {
    background: #8b5cf6;
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease-out;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* COMPARISON TABLE */
.pricing-comparison {
    background: var(--bg-secondary);
    padding: 5rem 0;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.pricing-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.comparison-table {
    overflow-x: auto;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.comparison-table th {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}

.comparison-table th:first-child {
    border-radius: 0.75rem 0 0 0;
    text-align: left;
}

.comparison-table th:last-child {
    border-radius: 0 0.75rem 0 0;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.15s ease-in-out;
}

.comparison-table tr:hover td {
    background: rgba(139, 92, 246, 0.05);
}

.feature-name {
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.feature-value {
    text-align: center;
    color: var(--text-secondary);
    font-weight: 500;
}

/* FAQ SECTION */
.pricing-faq {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.pricing-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(30, 41, 59, 0.6);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA SECTION */
.pricing-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 50%, #475569 100%);
    text-align: center;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.pricing-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.pricing-cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 2.5rem;
    }
    
    .pricing-header p {
        font-size: 1.1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .comparison-table {
        padding: 1rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pricing-container {
        padding: 2rem 1rem;
    }
    
    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .pricing-card {
        min-height: auto;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-comparison,
    .pricing-faq,
    .pricing-cta {
        padding: 3rem 0;
    }
}