/* Pricing Page Styles */
body {
    background-color: #FAFAFA;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 40px;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    background: #F0F0F0;
    border-radius: 8px;
    padding: 4px;
    max-width: 300px;
    margin: 0 auto;
}

.toggle-btn {
    flex: 1;
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-btn.active {
    background: #0066FF;
    color: white;
}

/* Pricing Cards */
.pricing-cards {
    margin-bottom: 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.featured {
    background: #0066FF;
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

/* Card Header */
.card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: inherit;
}

.pricing-card.featured h3 {
    color: white;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0066FF;
}

.pricing-card.featured .currency {
    color: white;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: #0066FF;
    line-height: 1;
}

.pricing-card.featured .amount {
    color: white;
}

.period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.pricing-card.featured .period {
    color: rgba(255,255,255,0.8);
}

.price-contact {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text {
    font-size: 2rem;
    font-weight: 700;
    color: #0066FF;
}

.pricing-card.featured .contact-text {
    color: white;
}

/* Card Content */
.card-content {
    padding: 0 2rem 2rem;
}

.card-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.pricing-card.featured .card-description {
    color: rgba(255,255,255,0.9);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.features-list li {
    padding: 0.75rem 0;
    color: #333;
    border-bottom: 1px solid #F0F0F0;
    font-size: 0.95rem;
}

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

.pricing-card.featured .features-list li {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #0066FF;
    color: white;
    border-color: #0066FF;
}

.btn-primary:hover {
    background: #0052CC;
    border-color: #0052CC;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: #0066FF;
    border-color: #0066FF;
}

.btn-outline:hover {
    background: #0066FF;
    color: white;
    text-decoration: none;
}

.pricing-card.featured .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.pricing-card.featured .btn-outline:hover {
    background: white;
    color: #0066FF;
}

.btn-full {
    width: 100%;
    display: block;
}

.btn-large {
    font-size: 1.25rem;
    padding: 18px 48px;
}

.btn-small {
    font-size: 0.875rem;
    padding: 8px 16px;
}

.btn-text {
    background: none;
    border: none;
    color: #666;
    font-size: 1.25rem;
    padding: 8px;
    cursor: pointer;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 100px;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-label {
    color: #0066FF;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-header p {
    color: #666;
    font-size: 1.125rem;
}

.chat-link {
    color: #0066FF;
    text-decoration: underline;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E0E0E0;
}

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

.faq-question:hover {
    color: #0066FF;
}

.faq-icon {
    font-size: 1.5rem;
    color: #0066FF;
}

.faq-answer {
    display: none;
    padding: 0 0 1.5rem 0;
    color: #666;
    line-height: 1.6;
}

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

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* Metrics Section */
.metrics-section {
    margin: 80px 0;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.metric-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: #0066FF;
}

.metric-label {
    font-size: 1.125rem;
    color: #666;
}

/* CTA Section */
.pricing-cta {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    margin-top: 80px;
}

.pricing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-cta p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-illustration {
    margin-top: 3rem;
}

.cta-illustration img {
    max-width: 300px;
    height: auto;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: white;
}

/* Cookie Notice */
.cookie-notice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #2D2D2D;
    border-radius: 8px;
    margin-top: 40px;
}

.cookie-notice p {
    flex: 1;
    margin: 0;
    margin-right: 2rem;
    font-size: 0.9rem;
    color: #CCC;
}

.cookie-notice a {
    color: #0066FF;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Active navigation state */
.nav-links a.active {
    color: #0066FF;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 2.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-notice {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-notice p {
        margin-right: 0;
    }
}

/* JavaScript interactions */
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.faq-icon {
    transition: transform 0.2s ease;
}