.snf-intake-form {
    max-width: 980px;
    margin: 2rem auto;
    font-size: 16px;
    line-height: 1.5;
}
.snf-form-section {
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.snf-form-section h2 {
    margin-top: 0;
}
.snf-grid.two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.snf-intake-form label {
    display: block;
    font-weight: 600;
}
.snf-intake-form input[type="text"],
.snf-intake-form input[type="email"],
.snf-intake-form select,
.snf-intake-form textarea {
    width: 100%;
    margin-top: .35rem;
    padding: .75rem;
    border: 1px solid #d4d4d8;
    border-radius: 10px;
    font: inherit;
}
.snf-required {
    color: #b91c1c;
}
.snf-note {
    background: #f8fafc;
    border-left: 4px solid #18181b;
    padding: .85rem 1rem;
    border-radius: 8px;
}
.snf-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .6rem .9rem;
}
.snf-checkbox,
.snf-agreement {
    font-weight: 500 !important;
}
.snf-scale {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}
.snf-scale:last-child {
    border-bottom: 0;
}
.snf-scale-row {
    display: grid;
    grid-template-columns: 1fr repeat(5, auto) 1fr;
    gap: .5rem;
    align-items: center;
}
.snf-agreements label {
    margin-bottom: .7rem;
}
.snf-submit {
    border: 0;
    border-radius: 999px;
    padding: 1rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
}
.snf-errors,
.snf-confirmation {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1.25rem;
    border-radius: 16px;
}
.snf-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
}
.snf-confirmation {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}
@media (max-width: 760px) {
    .snf-grid.two,
    .snf-checkbox-grid,
    .snf-scale-row {
        grid-template-columns: 1fr;
    }
}

.snf-confirmation-page {
    max-width: 820px;
    margin: 3rem auto;
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(0,0,0,.06);
}
.snf-confirmation-page .snf-eyebrow {
    margin: 0 0 .5rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    font-weight: 800;
    color: #71717a;
}
.snf-confirmation-alert {
    background: #f8fafc;
    border: 1px solid #e4e4e7;
    border-left: 4px solid #18181b;
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0 1.5rem;
}
.snf-confirmation-body p:last-child {
    margin-bottom: 0;
}
