/* =============================================
   Pricing Page Styles
   Dark Luxury Theme
   ============================================= */

.pricing-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #0a192f 0%, #112240 100%);
    color: #ffffff;
    padding: 0 0 4rem;
}

/* Navigation */
.pricing-nav {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.pricing-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a8b2d1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.nav-back:hover {
    color: #d4af37;
}

.nav-back i,
.nav-back svg {
    width: 18px;
    height: 18px;
}

.nav-logo img {
    height: 32px;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem 0;
}

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

.pricing-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0 0 0.5rem 0;
}

.pricing-header p {
    font-size: 1.125rem;
    color: #a8b2d1;
    margin: 0;
}

/* Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.toggle-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    color: #8892b0;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-btn.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    color: #d4af37;
}

/* Pricing Cards - 4 columns */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.pricing-card.popular {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.03) 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a192f;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.package-desc {
    font-size: 0.875rem;
    color: #8892b0;
    margin: 0 0 1.5rem 0;
}

.package-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
}

.price-amount span {
    font-size: 1.25rem;
    font-weight: 400;
    color: #8892b0;
}

.price-period {
    font-size: 0.875rem;
    color: #8892b0;
}

/* Features */
.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: #ccd6f6;
}

.package-features li i,
.package-features li svg {
    width: 18px;
    height: 18px;
    color: #28a745;
    flex-shrink: 0;
    margin-top: 2px;
}

.package-features li.disabled {
    color: #5a6a8a;
}

.package-features li.disabled i,
.package-features li.disabled svg {
    color: #5a6a8a;
}

/* CTA Button */
.package-cta {
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.package-cta.primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    color: #0a192f;
}

.package-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.package-cta.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.package-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Comparison Table */
.comparison-section {
    margin-top: 4rem;
}

.comparison-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #d4af37;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.3);
    font-weight: 600;
    color: #d4af37;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    padding-left: 1.5rem;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.check-icon {
    color: #28a745;
}

.cross-icon {
    color: #6b7a9a;
}

/* Payment Methods */
.payment-methods {
    margin-top: 3rem;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.payment-methods h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #8892b0;
    margin-bottom: 1rem;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #ccd6f6;
    font-size: 0.875rem;
}

/* FAQ */
.faq-section {
    margin-top: 4rem;
}

.faq-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #d4af37;
}

.faq-list {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-answer {
    padding: 0 1.25rem 1rem;
    color: #a8b2d1;
    font-size: 0.9375rem;
    line-height: 1.6;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

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

@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    /* Mobile table scroll */
    .comparison-section {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 600px;
    }

    .payment-icons {
        flex-direction: column;
        align-items: center;
    }
}