.svgmvf-wrap {
    width: 100%;
    max-width: 1040px;
    margin: 34px auto;
    padding: 34px 36px;
    box-sizing: border-box;
    background: #f8f1e9;
    border: 1px solid #eadfd6;
    border-radius: 22px;
}

.svgmvf-kicker {
    margin: 0 0 8px;
    color: #bb7775;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .18em;
}

.svgmvf-title {
    margin: 0 0 10px;
    color: #8f2734;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.12;
}

.svgmvf-lead {
    max-width: 760px;
    margin: 0 0 28px;
    color: #5e7887;
    font-size: 16px;
    line-height: 1.65;
}

.svgmvf-form {
    margin: 0;
}

.svgmvf-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.svgmvf-field {
    min-width: 0;
}

.svgmvf-full {
    margin-top: 20px;
}

.svgmvf-field > label {
    display: block;
    margin: 0 0 7px;
    color: #405d6b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.svgmvf-field > label span,
.svgmvf-field > label strong,
.svgmvf-consent strong,
.svgmvf-check-card strong {
    color: #9f2939;
}

.svgmvf-field > label small {
    color: #81939c;
    font-size: 12px;
    font-weight: 400;
}

.svgmvf-field input[type="text"],
.svgmvf-field input[type="email"],
.svgmvf-field input[type="tel"],
.svgmvf-field select,
.svgmvf-field textarea {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #d9dfe1;
    border-radius: 10px;
    color: #405d6b;
    font: inherit;
    font-size: 15px;
    line-height: 1.45;
    box-shadow: none;
    outline: none;
}

.svgmvf-field input:focus,
.svgmvf-field select:focus,
.svgmvf-field textarea:focus {
    border-color: #a83947;
    box-shadow: 0 0 0 3px rgba(143, 39, 52, .09);
}

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

.svgmvf-check-card,
.svgmvf-consent {
    margin-top: 20px;
    padding: 15px 17px;
    background: rgba(255,255,255,.72);
    border: 1px solid #e4d8cf;
    border-radius: 12px;
}

.svgmvf-check-card label,
.svgmvf-consent label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    cursor: pointer;
}

.svgmvf-check-card input,
.svgmvf-consent input {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 2px 0 0;
    accent-color: #8f2734;
}

.svgmvf-check-card span,
.svgmvf-consent span {
    color: #526d79;
    font-size: 14px;
    line-height: 1.55;
}

.svgmvf-consent a {
    color: #8f2734;
    font-weight: 700;
    text-decoration: underline;
}

.svgmvf-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}

.svgmvf-submit {
    min-height: 46px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: #98293a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.svgmvf-submit:hover,
.svgmvf-submit:focus {
    background: #7f202e;
    color: #ffffff;
}

.svgmvf-required-note {
    color: #82959e;
    font-size: 12px;
}

.svgmvf-message {
    margin: 0 0 22px;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.svgmvf-success {
    background: #eef6ef;
    border: 1px solid #cfe2d2;
    color: #3f6846;
}

.svgmvf-error {
    background: #fbefef;
    border: 1px solid #edcccc;
    color: #8f2734;
}

.svgmvf-hp {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
}

@media (max-width: 767px) {
    .svgmvf-wrap {
        margin: 24px auto;
        padding: 24px 20px;
        border-radius: 16px;
    }

    .svgmvf-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .svgmvf-title {
        font-size: 29px;
    }

    .svgmvf-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .svgmvf-submit {
        width: 100%;
    }
}
