.fvf-shell,
.fvf-shell * {
    box-sizing: border-box;
}

.fvf-shell {
    --fvf-green-950: #063d32;
    --fvf-green-900: #074437;
    --fvf-green-700: #08725d;
    --fvf-green-600: #078665;
    --fvf-border: #d9e5df;
    --fvf-text: #13231e;
    --fvf-muted: #687770;
    --fvf-warning: #fff8e8;
    --fvf-warning-border: #f0c76b;
    display: grid;
    grid-template-columns: minmax(230px, .82fr) minmax(320px, 1.25fr);
    gap: 16px;
    width: min(100%, 980px);
    margin: 24px auto;
    padding: 12px;
    border-radius: 22px;
    background: #f8fbf9;
    box-shadow: 0 18px 45px rgba(9, 43, 35, .12);
    font-family: inherit;
    color: var(--fvf-text);
}

.fvf-info-panel {
    min-height: 100%;
    padding: 34px 28px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(160deg, var(--fvf-green-950), #0c3f35 58%, #174a38);
}

.fvf-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #d8fff2;
    font-size: 12px;
    font-weight: 700;
}

.fvf-pill::before {
    content: "✦";
    font-size: 10px;
}

.fvf-info-panel h2 {
    margin: 24px 0 12px;
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    line-height: .98;
    letter-spacing: -.04em;
}

.fvf-info-panel p {
    max-width: 300px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
    line-height: 1.55;
}

.fvf-info-list {
    display: grid;
    gap: 18px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.fvf-info-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
}

.fvf-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(252, 198, 79, .13);
    color: #f5c85a;
    font-size: 13px;
}

.fvf-info-item strong {
    display: block;
    color: #fff;
    font-size: 14px;
}

.fvf-info-item small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
}

.fvf-form-card {
    padding: clamp(24px, 4vw, 42px);
    border-radius: 16px;
    background: #fff;
}

.fvf-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--fvf-green-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.fvf-form h3 {
    margin: 0;
    color: var(--fvf-text);
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.fvf-intro {
    margin: 10px 0 24px;
    color: var(--fvf-muted);
    line-height: 1.55;
}

.fvf-form fieldset {
    margin: 0 0 24px;
    padding: 0;
    border: 0;
}

.fvf-form legend {
    width: 100%;
    margin: 0 0 14px;
    padding: 0;
    color: var(--fvf-text);
    font-size: 15px;
    font-weight: 800;
}

.fvf-grid {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
}

.fvf-grid:last-child {
    margin-bottom: 0;
}

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

.fvf-field label {
    display: block;
    margin: 0 0 7px;
    color: #24352f;
    font-size: 13px;
    font-weight: 750;
}

.fvf-field label span,
.fvf-security-question label span,
.fvf-check span span {
    color: var(--fvf-green-600);
}

.fvf-field label small {
    margin-left: 4px;
    color: #9aa6a0;
    font-size: 11px;
    font-weight: 700;
}

.fvf-field input,
.fvf-field textarea,
.fvf-security-question input {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid var(--fvf-border);
    border-radius: 10px;
    background: #fff;
    color: var(--fvf-text);
    font: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.fvf-field textarea {
    min-height: 118px;
    resize: vertical;
}

.fvf-field input:focus,
.fvf-field textarea:focus,
.fvf-security-question input:focus {
    border-color: var(--fvf-green-600);
    box-shadow: 0 0 0 3px rgba(7, 134, 101, .12);
}

.fvf-consents {
    display: grid;
    gap: 10px;
    margin: 6px 0 18px;
}

.fvf-check {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px;
    border: 1px solid var(--fvf-border);
    border-radius: 12px;
    background: #f8fcfa;
    color: #3e4c47;
    font-size: 13px;
    line-height: 1.45;
}

.fvf-check input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--fvf-green-600);
}

.fvf-check a {
    color: var(--fvf-green-700);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fvf-security-box {
    display: grid;
    grid-template-columns: 1fr minmax(160px, 230px);
    gap: 16px;
    align-items: end;
    margin: 0 0 16px;
    padding: 16px;
    border: 1px solid var(--fvf-warning-border);
    border-radius: 12px;
    background: var(--fvf-warning);
}

.fvf-security-box strong {
    display: block;
    color: #533d0f;
    font-size: 14px;
}

.fvf-security-box span {
    display: block;
    margin-top: 4px;
    color: #8f6a19;
    font-size: 12px;
}

.fvf-security-question label {
    display: block;
    margin-bottom: 7px;
    color: #533d0f;
    font-size: 13px;
    font-weight: 800;
}

.fvf-submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 10px;
    background: var(--fvf-green-600);
    color: #fff;
    font: inherit;
    font-size: 15px;
    font-weight: 850;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.fvf-submit:hover,
.fvf-submit:focus {
    background: #056f55;
    box-shadow: 0 12px 25px rgba(7, 134, 101, .28);
    transform: translateY(-1px);
}

.fvf-notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    line-height: 1.5;
}

.fvf-notice ul {
    margin: 8px 0 0 18px;
}

.fvf-notice-error {
    border: 1px solid #ef9a9a;
    background: #fff3f3;
    color: #7b1b1b;
}

.fvf-notice-success {
    border: 1px solid #9bd5bd;
    background: #effaf4;
    color: #14563f;
}

.fvf-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

@media (max-width: 820px) {
    .fvf-shell {
        grid-template-columns: 1fr;
    }

    .fvf-info-panel {
        padding: 28px 24px;
    }
}

@media (max-width: 620px) {
    .fvf-grid-2,
    .fvf-security-box {
        grid-template-columns: 1fr;
    }

    .fvf-form-card {
        padding: 22px 18px;
    }
}
