@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

.iw-faq-wrapper {
    --primary-blue: #2563eb;
    --text-slate: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #fdfdfe;
    padding: 80px 5%;
    color: var(--text-slate);
}

.iw-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.iw-faq-eyebrow {
    color: var(--primary-blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.iw-faq-header h1 {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    margin: 15px 0;
}

.iw-faq-gradient {
    background: linear-gradient(90deg, var(--primary-blue), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.iw-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.iw-faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    transition: all 0.3s ease;
}

.iw-faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.05);
}

.iw-faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-slate);
}

.iw-faq-icon {
    font-size: 20px !important;
    color: #94a3b8;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Interaction States */
.iw-faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.1);
}

.iw-faq-item.active .iw-faq-icon {
    transform: rotate(45deg);
    color: var(--primary-blue);
}

.iw-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.iw-faq-answer p {
    padding: 0 30px 24px 30px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
}

.iw-faq-footer {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: #f8fafc;
    border-radius: 24px;
}

.iw-faq-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 14px;
    transition: 0.3s;
}

.iw-faq-btn:hover {
    background: #1d4ed8;
    transform: scale(1.03);
}

@media (max-width: 600px) {
    .iw-faq-question { padding: 20px; font-size: 15px; }
    .iw-faq-answer p { padding: 0 20px 20px; }
}