.wp-intake {
    min-height: 100vh;
    background: #f3f3f3;
    color: #13263f;
}

.wp-intake .portal-header-wrapper {
    background: linear-gradient(180deg, #1d3558 0%, #102646 100%);
    color: #fff;
    box-shadow: inset 0 -1px rgba(255, 255, 255, 0.08);
    padding: 2rem 0 3.5rem;
}

.wp-intake .portal-header-inner {
    max-width: 960px;
}

.wp-intake .portal-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wp-intake .portal-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.wp-intake .brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #dff8f3;
}

.wp-intake .portal-exit {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.4rem 0.7rem;
}

.wp-intake .portal-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 2.2rem 1.5rem 3rem;
    text-align: center;
}

.wp-intake .portal-content h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.05em;
    color: #13263f;
}

.wp-intake .portal-subtitle {
    max-width: 760px;
    margin: 1rem auto 0;
    color: rgba(19, 38, 63, 0.75);
    font-size: 1.05rem;
    line-height: 1.6;
}

.wp-intake .portal-alert {
    margin: 2.3rem auto 0;
    max-width: 760px;
    background: #f1ead7;
    border: 1px solid #d8d2b7;
    border-radius: 12px;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 1rem;
    text-align: left;
}

.wp-intake .alert-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(23, 107, 93, 0.12);
    color: #1d6b5d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.wp-intake .alert-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    color: #1a2d4d;
}

.wp-intake .alert-copy span {
    font-weight: 600;
}

.wp-intake .alert-copy small {
    color: rgba(19, 38, 63, 0.7);
}

.wp-intake .alert-actions {
    display: flex;
    gap: 0.7rem;
}

.wp-intake .primary-btn,
.wp-intake .secondary-btn {
    border-radius: 8px;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.wp-intake .primary-btn {
    background: #1a7f73;
    color: white;
}

.wp-intake .secondary-btn {
    background: transparent;
    color: #1a2d4d;
    border: 1px solid rgba(19, 38, 63, 0.2);
}

.wp-intake .portal-section-title {
    margin: 3rem auto 1.6rem;
    max-width: 920px;
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #1a2d4d;
}

.wp-intake .choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 1.2rem;
    max-width: 920px;
    margin: 0 auto;
}

.wp-intake .choice-card {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(19, 38, 63, 0.14);
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 1.5rem 1.4rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wp-intake .choice-card:hover {
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
    border-color: rgba(22, 126, 118, 0.35);
}

.wp-intake .choice-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    background: rgba(19, 38, 63, 0.04);
    color: #1a2d4d;
}

.wp-intake .icon-person {
    background: rgba(21, 101, 192, 0.08);
    color: #1a2d4d;
}

.wp-intake .icon-file {
    background: rgba(127, 86, 154, 0.08);
    color: #4c2f7a;
}

.wp-intake .icon-briefcase {
    background: rgba(160, 98, 51, 0.08);
    color: #7c4d28;
}

.wp-intake .icon-help {
    background: rgba(245, 158, 11, 0.12);
    color: #a16207;
}

.wp-intake .choice-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.03em;
    color: #1a2d4d;
    margin-bottom: 0.5rem;
}

.wp-intake .choice-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(19, 38, 63, 0.7);
}

.wp-intake .portal-footer {
    max-width: 920px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(19, 38, 63, 0.14);
    text-align: left;
    color: rgba(19, 38, 63, 0.7);
}

.wp-intake .footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    align-items: center;
    font-size: 0.88rem;
    margin-bottom: 0.45rem;
}

.wp-intake .subtitle-row {
    color: rgba(19, 38, 63, 0.6);
}

.wp-intake .portal-footer p {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(19, 38, 63, 0.7);
}

.wp-intake .report-choice-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3rem;
}

.wp-intake .report-choice-inner {
    max-width: 760px;
    margin: 0 auto;
}

.wp-intake .mini-back {
    background: transparent;
    border: none;
    color: #1a2d4d;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1.2rem;
}

.wp-intake .report-choice-inner h2 {
    margin: 0 0 2rem;
    text-align: left;
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    letter-spacing: -0.04em;
    color: #1a2d4d;
}

.wp-intake .report-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 1.2rem;
}

.wp-intake .report-choice-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(19, 38, 63, 0.18);
    border-radius: 12px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 1.5rem 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wp-intake .report-choice-card:hover {
    border-color: rgba(21, 128, 98, 0.4);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.wp-intake .report-choice-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #1a2d4d;
    margin-bottom: 0.5rem;
}

.wp-intake .report-choice-sub {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(19, 38, 63, 0.7);
}

.wp-intake .wizard-page {
    min-height: calc(100vh - 120px);
    background: #f2f3f1;
}

.wp-intake .wizard-topbar {
    background: #182d4d;
    color: white;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem 0 1.25rem;
    font-size: 0.96rem;
}

.wp-intake .wizard-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
}

.wp-intake .wizard-dot {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
}

.wp-intake .wizard-subtitle {
    font-weight: 500;
    opacity: 0.9;
}

.wp-intake .wizard-exit {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-size: 1.2rem;
}

.wp-intake .wizard-progress-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.1rem 0.7rem;
    background: rgba(255, 255, 255, 0.45);
    border-bottom: 1px solid rgba(19, 38, 63, 0.1);
}

.wp-intake .progress-rail {
    overflow-x: auto;
    flex: 1;
}

.wp-intake .progress-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 780px;
}

.wp-intake .progress-step {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e7e9ea;
    color: #5b6572;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
}

.wp-intake .progress-step.active {
    background: #1b2d4d;
    color: white;
}

.wp-intake .progress-label {
    font-size: 0.72rem;
    color: #5c6675;
    white-space: nowrap;
}

.wp-intake .progress-label.active {
    color: #1b2d4d;
    font-weight: 700;
}

.wp-intake .progress-divider {
    height: 1px;
    width: 16px;
    background: rgba(19, 38, 63, 0.14);
}

.wp-intake .clear-data-btn {
    border: 1px solid rgba(19, 38, 63, 0.18);
    background: transparent;
    color: #1a2d4d;
    border-radius: 999px;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    font-size: 0.8rem;
}

.wp-intake .wizard-content {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 1.2rem 3rem;
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(260px, 0.92fr);
    gap: 2rem;
}

.wp-intake .wizard-card {
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(19, 38, 63, 0.14);
    border-radius: 14px;
    min-height: 470px;
    display: flex;
}

.wp-intake .wizard-card-body {
    width: 100%;
    padding: 2rem 2.2rem 1.2rem;
}

.wp-intake .wizard-step-label {
    margin: 0 0 1rem;
    color: #5d6c7c;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.wp-intake .wizard-card-body h3 {
    margin: 0 0 1.5rem;
    font-size: clamp(2rem, 2.8vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #1a2d4d;
}

.wp-intake .safe-options {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1rem;
}

.wp-intake .safe-option {
    display: flex;
    align-items: center;
    min-height: 52px;
    border: 1px solid rgba(19, 38, 63, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.8rem 1rem;
    cursor: pointer;
    font-size: 1.05rem;
    color: #1a2d4d;
}

.wp-intake .safe-option input {
    width: 18px;
    height: 18px;
    margin: 0 0.85rem 0 0;
    accent-color: #1d536f;
}

.wp-intake .safety-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #fff0f0;
    border: 1.5px solid #f87171;
    border-radius: 10px;
    padding: 1rem 1.1rem;
    margin-top: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.wp-intake .safety-warning-box p,
.wp-intake .safety-warning-box p strong,
.wp-intake .safety-warning-box span {
    margin: 0;
    color: #b91c1c !important;
}

.wp-intake .safety-warning-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: #b91c1c !important;
}

.wp-intake .safety-continue-note {
    margin: 0.6rem 0 0;
    font-size: 0.82rem;
    color: #1d536f;
    font-style: italic;
}

.wp-intake .safety-contact-question {
    margin-top: 1.25rem;
}

.wp-intake .safety-contact-label {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: #1a2d4d;
}

.wp-intake .contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.wp-intake .contact-field-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a2d4d;
    margin-bottom: 0.4rem;
}

.wp-intake .label-required {
    color: #b91c1c;
}

.wp-intake .contact-field-input {
    width: 100%;
    border: 1px solid rgba(19, 38, 63, 0.2);
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    color: #1a2d4d;
    background: #fff;
    box-sizing: border-box;
    outline: none;
}

.wp-intake .contact-field-input:focus {
    border-color: #1d536f;
    box-shadow: 0 0 0 2px rgba(29, 83, 111, 0.12);
}

.wp-intake .contact-anon-note {
    margin: 0.75rem 0 0;
    font-size: 0.78rem;
    color: #1d536f;
}

.wp-intake .contact-no-warning {
    margin-top: 1rem;
}

.wp-intake .wizard-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.wp-intake .save-exit-link {
    background: transparent;
    border: none;
    color: #1a2d4d;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
}

.wp-intake .continue-btn {
    background: #b1d3c8;
    border: none;
    color: #1a2d4d;
    border-radius: 10px;
    padding: 0.8rem 1.6rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

.wp-intake .wizard-side-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Guidance & FAQs header card */
.wp-intake .side-card-guidance {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.wp-intake .side-guidance-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(45, 122, 94, 0.1);
    color: #2d7a5e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.wp-intake .side-guidance-title {
    margin: 0 0 0.25rem;
    font-size: 0.97rem;
    font-weight: 700;
    color: #1a2d4d;
}

.wp-intake .side-guidance-sub {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(19, 38, 63, 0.6);
    line-height: 1.5;
}

/* Side cards base */
.wp-intake .side-card {
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(19, 38, 63, 0.14);
    border-radius: 12px;
    padding: 1rem 1.1rem;
}

/* Section labels (QUICK TUTORIALS, FREQUENTLY ASKED QUESTIONS) */
.wp-intake .side-section-label {
    margin: 0 0 0.9rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5c6675;
}

/* Tutorial items */
.wp-intake .tutorial-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(19, 38, 63, 0.08);
}

.wp-intake .tutorial-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wp-intake .tutorial-play {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a2d4d;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-left: 2px;
}

.wp-intake .tutorial-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.wp-intake .tutorial-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2d4d;
}

.wp-intake .tutorial-text small {
    font-size: 0.78rem;
    color: #2d7a5e;
    font-weight: 500;
}

.wp-intake .faq-item {

    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(19, 38, 63, 0.1);
    color: #1a2d4d;
    font-size: 0.9rem;
    cursor: pointer;
    user-select: none;
}

.wp-intake .faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wp-intake .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
}

.wp-intake .faq-question>span:first-child {
    flex: 1;
}

.wp-intake .faq-chevron {
    color: #5d7a99;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.wp-intake .faq-open .faq-question {
    color: #1d536f;
}

.wp-intake .faq-open .faq-chevron {
    color: #1d536f;
}

.wp-intake .faq-answer {
    display: block;
    margin: 0.5rem 0 0.1rem;
    font-size: 0.82rem;
    color: rgba(19, 38, 63, 0.6);
    line-height: 1.55;
    font-weight: 400;
}

.wp-intake .support-box {
    background: #1b2d4d;
    border-radius: 12px;
    color: white;
    padding: 1.2rem;
}

.wp-intake .support-box h4 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
}

.wp-intake .support-box p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

.wp-intake .support-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: white;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 0.6rem;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    text-align: left;
    transition: background 0.15s;
}

.wp-intake .support-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}


@media (max-width: 700px) {
    .wp-intake .portal-topbar {
        padding: 1rem 1rem;
    }

    .wp-intake .portal-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .wp-intake .portal-alert {
        flex-direction: column;
        align-items: flex-start;
    }

    .wp-intake .alert-actions {
        width: 100%;
    }

    .wp-intake .primary-btn,
    .wp-intake .secondary-btn {
        flex: 1;
    }

    .wp-intake .choice-grid,
    .wp-intake .report-choice-grid,
    .wp-intake .wizard-content {
        grid-template-columns: 1fr;
    }

    .wp-intake .portal-section-title {
        font-size: 1.5rem;
    }

    .wp-intake .progress-row {
        min-width: 700px;
    }

    .wp-intake .wizard-card-body {
        padding: 1.2rem;
    }
}

/* ── Step 2: What happened ── */

.wp-intake .step2-subtitle {
    margin: 0 0 1.5rem;
    font-size: 0.9rem;
    color: #2d7a5e;
    line-height: 1.5;
}

.wp-intake .concern-category-grid,
.wp-intake .multi-category-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: start;
}

.wp-intake .concern-category-option {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 48px;
    border: 1px solid rgba(19, 38, 63, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.75rem 0.9rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #1a2d4d;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.wp-intake .concern-category-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.wp-intake .concern-category-details {
    display: none;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(19, 38, 63, 0.08);
}

.wp-intake .concern-category-option:hover .concern-category-details {
    display: block;
}

.wp-intake .concern-category-details ul {
    margin: 0;
    padding: 0 0 0 1.5rem;
    font-size: 0.85rem;
    color: #5b6572;
    list-style-type: disc;
}

.wp-intake .concern-category-details li {
    margin-bottom: 0.35rem;
}

.wp-intake .concern-category-option input {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin: 0;
    accent-color: #1d536f;
}

.wp-intake .concern-category-option.selected {
    border-color: #1d536f;
    background: rgba(29, 83, 111, 0.06);
}

.wp-intake .concern-category-option:hover {
    border-color: rgba(29, 83, 111, 0.4);
    background: rgba(29, 83, 111, 0.04);
}

.wp-intake .concern-cat-text {
    flex: 1;
    line-height: 1.35;
    font-weight: 500;
}

.wp-intake .concern-cat-info {
    color: #8a9ab0;
    font-size: 0.85rem;
    flex-shrink: 0;
    cursor: help;
}

.wp-intake .multi-category-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.5rem 0 1rem;
    font-size: 0.9rem;
    color: #2d7a5e;
    font-weight: 600;
    cursor: pointer;
}

.wp-intake .multi-category-check input {
    width: 16px;
    height: 16px;
    accent-color: #1d536f;
    flex-shrink: 0;
}

.wp-intake .multi-category-picker {
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.wp-intake .step2-summary-group {
    margin-top: 1.25rem;
}

.wp-intake .step2-summary-label {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
    color: #1a2d4d;
    margin-bottom: 0.5rem;
}

.wp-intake .step2-summary-input {
    width: 100%;
    border: 1px solid rgba(19, 38, 63, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    color: #1a2d4d;
    background: #fff;
    box-sizing: border-box;
    resize: none;
    outline: none;
    font-family: inherit;
}

.wp-intake .step2-summary-input:focus {
    border-color: #1d536f;
    box-shadow: 0 0 0 2px rgba(29, 83, 111, 0.12);
}

.wp-intake .step2-summary-input::placeholder {
    color: rgba(19, 38, 63, 0.38);
}

/* Wizard actions with left sub-group (Back + Save & Exit) */
.wp-intake .wizard-actions-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.wp-intake .back-btn {
    background: transparent;
    border: 1px solid rgba(19, 38, 63, 0.22);
    color: #1a2d4d;
    border-radius: 10px;
    padding: 0.65rem 1.1rem;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background 0.15s;
}

.wp-intake .back-btn:hover {
    background: rgba(19, 38, 63, 0.05);
}

/* Progress step: done state (completed previous steps) */
.wp-intake .progress-step.done {
    background: #1b7a5a;
    color: white;
    font-size: 0.65rem;
}

.wp-intake .progress-label.done {
    color: #1b7a5a;
    font-weight: 600;
}

/* ── Step 3: Notice ── */
.wp-intake .step3-notice-text {
    font-size: 0.95rem;
    color: rgba(19, 38, 63, 0.7);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.wp-intake .privacy-notice-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid transparent;
    color: #2d7a5e;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 2rem;
    border-radius: 4px;
    transition: all 0.15s;
}

.wp-intake .privacy-notice-link.expanded {
    border-color: #2d7a5e;
    padding: 0.25rem 0.5rem;
    margin-bottom: 0.75rem;
}

.wp-intake .privacy-notice-link .chevron {
    font-size: 1.1rem;
    font-weight: 700;
}

.wp-intake .privacy-notice-full-box {
    background: #f9fafb;
    border: 1px solid rgba(19, 38, 63, 0.08);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(19, 38, 63, 0.85);
    line-height: 1.6;
    max-height: 350px;
    overflow-y: auto;
}

.wp-intake .privacy-notice-full-box p {
    margin: 0 0 1rem;
}

.wp-intake .privacy-notice-full-box ul {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.wp-intake .privacy-notice-full-box li {
    margin-bottom: 0.4rem;
}

.wp-intake .notice-ack-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a2d4d;
    cursor: pointer;
    margin-bottom: 1rem;
}

.wp-intake .notice-ack-check input {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(19, 38, 63, 0.2);
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    display: grid;
    place-content: center;
    background: white;
}

.wp-intake .notice-ack-check input::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #1d536f;
}

.wp-intake .notice-ack-check input:checked::before {
    transform: scale(1);
}

.wp-intake .notice-ack-check input:checked {
    border-color: #1d536f;
}

/* ── Step 4: About You ── */
.wp-intake .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.wp-intake .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.wp-intake .form-group.half,
.wp-intake .form-group.third {
    flex: 1;
    margin-bottom: 0;
}

.wp-intake .form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a2d4d;
}

.wp-intake .label-muted {
    color: rgba(19, 38, 63, 0.5);
    font-weight: 400;
    font-size: 0.85rem;
    margin-left: 0.25rem;
}

.wp-intake .text-input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(19, 38, 63, 0.15);
    border-radius: 8px;
    font-size: 0.95rem;
    color: #1a2d4d;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.wp-intake .text-input:focus {
    outline: none;
    border-color: #2d7a5e;
    box-shadow: 0 0 0 2px rgba(45, 122, 94, 0.15);
}

.wp-intake .select-input {
    appearance: auto;
    cursor: pointer;
}

.wp-intake .info-alert {
    display: flex;
    gap: 0.75rem;
    background: #f0f4fa;
    border: 1px solid rgba(29, 83, 111, 0.15);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.wp-intake .info-icon {
    color: #1d536f;
    font-size: 1.1rem;
}

.wp-intake .info-alert p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #1d536f;
}

.wp-intake .link-btn {
    background: none;
    border: none;
    color: #2d7a5e;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.wp-intake .link-btn:hover {
    text-decoration: underline;
}

.wp-intake .section-divider-title {
    font-size: 0.85rem;
    color: rgba(19, 38, 63, 0.6);
    margin: 2.5rem 0 1rem;
}

.wp-intake .mt-1 {
    margin-top: 0.25rem;
}

.wp-intake .mt-4 {
    margin-top: 2rem;
}

/* ── Step 5: Respondent ── */
.wp-intake .step-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1d536f;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wp-intake .respondent-box {
    border: 1px solid rgba(19, 38, 63, 0.12);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    background: white;
}

.wp-intake .radio-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.wp-intake .radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(19, 38, 63, 0.15);
    border-radius: 8px;
    cursor: pointer;
    background: white;
    font-size: 0.95rem;
    color: #1a2d4d;
    transition: all 0.15s;
}

.wp-intake .radio-option.inline-radio {
    border: none;
    padding: 0;
    background: transparent;
}

.wp-intake .radio-option input {
    margin: 0;
    width: 16px;
    height: 16px;
    accent-color: #1d536f;
}

.wp-intake .radio-option:not(.inline-radio):hover {
    border-color: rgba(29, 83, 111, 0.4);
    background: rgba(29, 83, 111, 0.02);
}

.wp-intake .radio-option.selected {
    border-color: #1d536f;
    background: rgba(29, 83, 111, 0.04);
}

.wp-intake .mb-3 {
    margin-bottom: 1rem;
}

.wp-intake .mb-4 {
    margin-bottom: 1.5rem;
}

.wp-intake .mb-0 {
    margin-bottom: 0;
}

@media (max-width: 700px) {

    .wp-intake .concern-category-grid,
    .wp-intake .multi-category-picker {
        grid-template-columns: 1fr;
    }
}