/* Pricing Page Styles */

.launch-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.timer-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.timer-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.timer-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.timer-separator {
    font-size: 2rem;
    color: white;
    display: flex;
    align-items: center;
    font-weight: 700;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
}

.pricing-cards-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card-large {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
}

.pricing-card-large.featured {
    border-color: var(--green-primary);
    border-width: 3px;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.pricing-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.pricing-price-large {
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.price-comparison {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--text-tertiary);
}

.discount-badge {
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
}

.current-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-primary);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--green-primary);
    line-height: 1;
}

.period {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.price-note {
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Features List */
.pricing-features-large {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features-large li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-features-large i {
    font-size: 1.25rem;
    color: var(--green-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.pricing-features-large li.disabled i {
    color: var(--text-tertiary);
}

.pricing-features-large strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.pricing-features-large p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.guarantee {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.guarantee i {
    color: var(--green-primary);
}

/* Comparison Table */
.comparison-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--bg-tertiary);
}

.comparison-table th {
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th.featured-col {
    background: var(--green-primary);
    color: white;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: center;
    color: var(--text-secondary);
}

.comparison-table td:first-child {
    text-align: left;
    color: var(--text-primary);
}

.comparison-table td.featured-col {
    background: var(--green-light);
    color: var(--text-primary);
    font-weight: 600;
}

.comparison-table i.fa-check {
    color: var(--green-primary);
    font-size: 1.25rem;
}

.comparison-table i.fa-times {
    color: var(--text-tertiary);
    font-size: 1.25rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

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

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

.faq-item {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
}

.faq-item h3 i {
    color: var(--green-primary);
}

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

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-primary);
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-box p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--green-primary);
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 968px) {
    .pricing-cards-large {
        grid-template-columns: 1fr;
    }
    
    .timer-value {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .launch-timer {
        gap: 0.5rem;
    }
    
    .timer-item {
        padding: 0.75rem 1rem;
    }
    
    .timer-value {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-box h2 {
        font-size: 1.75rem;
    }
}
