.cori-form-section {
    background: #f8fbff;
    border-top: 1px solid #dbeafe;
    border-bottom: 1px solid #dbeafe;
    padding: 72px 0;
}

.cori-form-wrap {
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 36px;
    align-items: start;
}

.cori-form-kicker {
    margin: 0;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.2em;
    line-height: 1.3;
    text-transform: uppercase;
}

.cori-form-title {
    margin: 14px 0 0;
    color: #020617;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: 0;
}

.cori-form-copy {
    margin: 18px 0 0;
    max-width: 560px;
    color: #475569;
    font-size: 18px;
    line-height: 1.75;
}

.cori-form-points {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    color: #334155;
    font-size: 15px;
    line-height: 1.55;
}

.cori-form-points li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.cori-form-points li::before {
    content: "";
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #dbeafe;
    box-shadow: inset 0 0 0 1px #bfdbfe;
}

.cori-form-card {
    margin: 0;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
    padding: 28px;
}

.cori-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cori-field {
    display: grid;
    gap: 7px;
}

.cori-field--full {
    grid-column: 1 / -1;
}

.cori-field label,
.cori-consent {
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.45;
}

.cori-field input,
.cori-field select,
.cori-field textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    background: #ffffff;
    color: #0f172a;
    font: inherit;
    font-size: 15px;
    line-height: 1.45;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cori-field textarea {
    min-height: 130px;
    resize: vertical;
}

.cori-field input:focus,
.cori-field select:focus,
.cori-field textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.cori-consent {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: #475569;
    font-weight: 700;
}

.cori-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #1d4ed8;
}

.cori-submit {
    grid-column: 1 / -1;
    display: inline-flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid #1d4ed8;
    border-radius: 8px;
    background: #1d4ed8;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    font-weight: 950;
    line-height: 1.2;
    padding: 14px 20px;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.cori-submit:hover {
    background: #1e40af;
    border-color: #1e40af;
}

.cori-submit:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.cori-form-status {
    grid-column: 1 / -1;
    display: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
    padding: 12px 14px;
}

.cori-form-status.is-visible {
    display: block;
}

.cori-form-status.is-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.cori-form-status.is-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.cori-botcheck {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

@media (max-width: 860px) {
    .cori-form-section {
        padding: 56px 0;
    }

    .cori-form-wrap,
    .cori-form-grid {
        grid-template-columns: 1fr;
    }

    .cori-form-card {
        padding: 22px;
    }
}
