/* FAQ SECTION */
.faq-section {
    background: linear-gradient(135deg, #a0bdd6 0%, #c0d8e8 30%, #dce7f0 70%, #f2f6f9 100%);
    padding: 7rem 20px;
    color: #2c3e50;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-container.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

.faq-container.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.faq-header p {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-list {
    margin-bottom: 40px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #19b2cb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-icon::before {
    content: '+';
    color: white;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    display: block;
    font-family: Roboto;
}

.faq-item.active .faq-question h3 {
    color: #0b687f;
}

.faq-item.active .faq-question {
    background-color: #f8f9fa;
}

.faq-item.active {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-content {
    padding: 0 28px 24px 28px;
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.7;
}

.faq-answer-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.faq-answer-content p {
    margin-bottom: 12px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.pg_home .cta-status,
.pg_pricing .cta-status {
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid #e5e7eb;
}

.pg_home .cta-status p,
.pg_pricing .cta-status p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.pg_home .cta-status p strong {
    color: #666;
}
.pg_home .cta-status-benefits,
.pg_pricing .cta-status-benefits {
    font-size: 0.9rem;
    color: #778599;
}
.pg_home .cta-status h3 {
    color: #2c3e50 !important;
}
.pg_home .cta-status-benefits {
    color: #778599;
    font-weight: normal !important;
}

/* -- noplan -- */
.pg_home .cta-status.noplan,
.pg_pricing .cta-status.noplan {
    background: linear-gradient(135deg, #fcfdff 0%, #ebf6f9 100%);
}

/* -- trial_3_2 -- */
.pg_pricing .cta-status.trial_3_2 {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border: 1px solid #0284c7 !important;
}
/* -- trial_1 -- */
.pg_home .cta-status.trial_1 {
    animation: none;
    background: linear-gradient(135deg, #faf3f4 0%, #ffdade 100%);
}
.pg_home .cta-status.trial_1 .cta-status-benefits{
    color: #c62828 !important;
    font-weight: 600 !important;
}
.pg_pricing .cta-status.trial_1 {
    border: 3px solid #f44336;

}


@media (max-width: 768px) {
    .faq-container {
        padding: 40px 24px;
    }
    .faq-header h2 {
        font-size: 32px;
        line-height: 2.4rem;
    }
    .faq-header p {
        font-size: 16px;
    }
    .faq-question {
        padding: 20px;
    }
    .faq-question h3 {
        font-size: 16px;
    }
    .faq-answer-content {
        padding: 0 20px 20px 20px;
        font-size: 15px;
    }
}
@media (max-width: 640px) {
    .faq-section {
        padding: 60px 20px 40px;
    }
    .faq-container {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 10px 40px;
    }
    .faq-container {
        padding: 40px 14px;
    }
    .pg_home .cta-status p,
    .pg_pricing .cta-status p {
        font-size: 1rem;
    }
}