.cw-faq-accordion {
    max-width: 960px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cw-faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.cw-faq-question {
    width: 100%;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #111827;
    text-align: left;
}

.cw-faq-question::after {
    content: "⌄";
    font-size: 1rem;
    color: #6b7280;
    transition: transform .25s ease;
}

.cw-faq-question[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.cw-faq-answer {
    padding: 0 1.75rem 1.25rem;
    border-top: 1px solid #f3f4f6;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Generic section spacing */
.cw-section {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

/* Grid helper */
.cw-grid {
    display: grid;
    gap: 1.5rem;
}

.cw-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .cw-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .cw-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Cards for pain points & benefits */
.cw-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.cw-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #111827;
}

.cw-card-body {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Process steps */
.cw-process-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cw-process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.cw-process-step-badge {
    min-width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.cw-process-step-title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
}

.cw-process-step-body {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.6;
    color: #4b5563;
}