/* Pricing Page Specific Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Pricing Header */
.pricing-header {
    background: #2c384d;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.pricing-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.pricing-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(44, 56, 77, 0.15);
    border-color: #2c384d;
}

.pricing-card.featured {
    border-color: #2c384d;
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c384d;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4a6fa5;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.plan-price .period {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 400;
}

.plan-description {
    color: #666666;
    font-size: 1rem;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features ul li {
    padding: 0.75rem 0;
    color: #555555;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.plan-features ul li:last-child {
    border-bottom: none;
}

.plan-cta {
    margin-top: auto;
}

.btn-plan {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid #2c384d;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #2c384d;
    text-transform: lowercase;
}

.btn-plan:hover {
    background: #2c384d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(44, 56, 77, 0.25);
}

.btn-featured {
    background: #2c384d;
    color: #ffffff;
    border-color: #2c384d;
}

.btn-featured:hover {
    background: #3d4a5f;
    border-color: #3d4a5f;
    box-shadow: 0 8px 16px rgba(44, 56, 77, 0.3);
}

.btn-active {
    background: #2c384d !important;
    color: #ffffff !important;
    border-color: #2c384d !important;
    cursor: not-allowed !important;
    opacity: 1;
    box-shadow: 0 10px 20px rgba(44, 56, 77, 0.35);
}

.btn-active:hover {
    background: #2c384d !important;
    border-color: #2c384d !important;
    transform: none !important;
    box-shadow: 0 10px 20px rgba(44, 56, 77, 0.35) !important;
}

.btn-plan:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-active:disabled,
.btn-plan.btn-active:disabled {
    opacity: 1 !important;
    cursor: not-allowed;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #1a1a1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2c384d;
    box-shadow: 0 4px 12px rgba(44, 56, 77, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .pricing-header {
        padding: 3rem 1.5rem;
    }

    .pricing-header h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .pricing-header p {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }

    .pricing-section {
        padding: 3rem 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        margin: 0 auto;
        justify-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .plan-price .amount {
        font-size: 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-section h2 {
        font-size: 2rem;
    }
}

