/* Pricing Page Specific Styles */

/* Pricing Hero */
.pricing-hero {
    text-align: center;
    padding: 120px 20px 60px;
}

.pricing-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
}

/* Pricing Cards Section */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.pricing-card-large {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
}

.pricing-card-large.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card-large.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge,
.best-value-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 0 12px 12px;
}

.best-value-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Card Header */
.card-header {
    padding: 40px 30px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header.free {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
}

.card-header.starter {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.1));
}

.card-header.pro {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.05));
}

.card-header h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.price-tag {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.price-tag .currency {
    font-size: 28px;
    font-weight: 600;
    margin-top: 8px;
}

.price-tag .amount {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.savings {
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
}

/* Card Body */
.card-body {
    padding: 30px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li.included {
    color: rgba(255, 255, 255, 0.9);
}

.feature-list li.not-included {
    color: rgba(255, 255, 255, 0.4);
}

.feature-list li.not-included span {
    text-decoration: line-through;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.x-icon {
    width: 20px;
    height: 20px;
    color: #ef4444;
    flex-shrink: 0;
}

/* Buttons */
.card-body .cta-button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.card-body .cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.card-body .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.card-body .cta-button:not(.secondary) {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: white;
}

.card-body .cta-button:not(.secondary):hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.card-body .cta-button.pro-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.card-body .cta-button.pro-btn:hover {
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.card-body .secure-note {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Comparison Section */
.comparison-section {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.comparison-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.05);
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table td {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: rgba(102, 126, 234, 0.1);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.table-check,
.table-x {
    width: 24px;
    height: 24px;
    display: inline-block;
}

/* FAQ Section */
.faq-section {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: white;
}

.faq-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .pricing-card-large.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card-large.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 36px;
    }
    
    .pricing-hero p {
        font-size: 18px;
    }
    
    .price-tag .amount {
        font-size: 56px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-section h2,
    .faq-section h2 {
        font-size: 32px;
    }
}
