/**
 * Pricing Page Styles
 * Clean, professional pricing cards with orange accents
 */

/* ============================================
   Pricing Page Layout
   ============================================ */

.pricing-page {
    min-height: 100vh;
    background: var(--color-slate-50);
}

.pricing-content {
    padding-top: 80px; /* Header height */
}

/* ============================================
   Hero Section
   ============================================ */

.pricing-hero {
    padding: var(--space-16) var(--space-6);
    text-align: center;
    background: linear-gradient(135deg, var(--color-slate-50) 0%, var(--color-slate-100) 100%);
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-title {
    font-family: var(--font-display-hero);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-slate-900);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: var(--text-xl);
    color: var(--color-slate-600);
    line-height: 1.6;
}

/* ============================================
   Currency Selector
   ============================================ */

.pricing-currency-selector {
    max-width: 1200px;
    margin: var(--space-8) auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}

.pricing-currency-selector label {
    font-weight: 600;
    color: var(--color-slate-700);
}

.currency-buttons {
    display: flex;
    gap: var(--space-2);
    background: white;
    padding: var(--space-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.currency-btn {
    padding: var(--space-2) var(--space-4);
    border: none;
    background: transparent;
    color: var(--color-slate-600);
    font-weight: 500;
    font-size: var(--text-sm);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.currency-btn:hover {
    background: var(--color-slate-100);
}

.currency-btn.active {
    background: var(--color-predictator-orange);
    color: white;
}

/* ============================================
   Pricing Cards
   ============================================ */

.pricing-cards {
    max-width: 1200px;
    margin: var(--space-12) auto;
    padding: 0 var(--space-6);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-8);
    position: relative;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.pricing-card-highlight {
    border-color: var(--color-predictator-orange);
    box-shadow: 0 20px 40px rgba(222, 88, 15, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-predictator-orange);
    color: white;
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Card Header */
.pricing-card-header {
    text-align: center;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-slate-200);
}

.pricing-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, var(--color-orange-100), var(--color-orange-50));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-predictator-orange);
}

.pricing-card-name {
    font-family: var(--font-display-hero);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-slate-900);
    margin-bottom: var(--space-3);
    letter-spacing: 0.05em;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-1);
    margin-bottom: var(--space-2);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-predictator-orange);
}

.price-period {
    font-size: var(--text-base);
    color: var(--color-slate-500);
}

.price-free {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green-600);
}

.pricing-card-credits {
    font-size: var(--text-sm);
    color: var(--color-slate-600);
    font-weight: 500;
}

/* Card Features */
.pricing-card-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
}

.pricing-card-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    font-size: var(--text-base);
    color: var(--color-slate-700);
}

.pricing-card-features li.feature-disabled {
    opacity: 0.4;
}

.feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.pricing-card-features li:not(.feature-disabled) .feature-icon svg {
    color: var(--color-green-600);
}

.pricing-card-features li.feature-disabled .feature-icon svg {
    color: var(--color-slate-400);
}

.feature-text {
    flex: 1;
}

/* Card Footer */
.pricing-card-footer {
    margin-top: var(--space-6);
}

.btn-pricing {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-slate-300);
    background: white;
    color: var(--color-slate-700);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-pricing:hover {
    border-color: var(--color-predictator-orange);
    color: var(--color-predictator-orange);
    transform: translateY(-2px);
}

.btn-pricing-highlight {
    background: var(--color-predictator-orange);
    color: white;
    border-color: var(--color-predictator-orange);
}

.btn-pricing-highlight:hover {
    background: var(--color-orange-600);
    border-color: var(--color-orange-600);
    color: white;
}

.pricing-card-extra {
    text-align: center;
    margin-top: var(--space-4);
    color: var(--color-slate-500);
    font-size: var(--text-sm);
}

/* ============================================
   Loading State
   ============================================ */

.pricing-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-16);
    gap: var(--space-4);
}

.pricing-loading p {
    color: var(--color-slate-600);
    font-size: var(--text-lg);
}

/* ============================================
   FAQ Section
   ============================================ */

.pricing-faq {
    max-width: 800px;
    margin: var(--space-16) auto;
    padding: 0 var(--space-6);
}

.faq-title {
    font-family: var(--font-display-hero);
    font-size: var(--text-3xl);
    font-weight: 700;
    text-align: center;
    color: var(--color-slate-900);
    margin-bottom: var(--space-8);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.faq-item {
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-slate-900);
    margin-bottom: var(--space-2);
}

.faq-item p {
    font-size: var(--text-base);
    color: var(--color-slate-600);
    line-height: 1.6;
}

/* ============================================
   CTA Section
   ============================================ */

.pricing-cta {
    text-align: center;
    padding: var(--space-16) var(--space-6);
    background: linear-gradient(135deg, var(--color-orange-50) 0%, var(--color-orange-100) 100%);
}

.pricing-cta h2 {
    font-family: var(--font-display-hero);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-slate-900);
    margin-bottom: var(--space-4);
}

.pricing-cta p {
    font-size: var(--text-xl);
    color: var(--color-slate-600);
    margin-bottom: var(--space-8);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
    .pricing-title {
        font-size: 2.5rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .pricing-currency-selector {
        flex-direction: column;
    }
}
