.iw-lead-wrap {
    --iw-lime: #b6ff00;
    --iw-text: #111111;
    --iw-muted: #666666;
    --iw-line: #dedede;
    --iw-soft: #f7f7f7;
    max-width: 1100px;
    margin: 24px auto;
    padding: 34px;
    background: #ffffff;
    color: var(--iw-text);
    border: 1px solid #e6e6e6;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0,0,0,.07);
    box-sizing: border-box;
}
.iw-lead-wrap *, .iw-lead-wrap *::before, .iw-lead-wrap *::after { box-sizing: border-box; }
.iw-lead-head { margin-bottom: 28px; }
.iw-lead-head .iw-kicker {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .14em;
    color: #111;
    text-transform: uppercase;
    border-bottom: 4px solid var(--iw-lime);
    padding-bottom: 5px;
}
.iw-lead-head h2 { margin: 0 0 10px; color: #111; font-size: clamp(27px, 4vw, 42px); line-height: 1.08; font-weight: 800; }
.iw-lead-head p { margin: 0; color: var(--iw-muted); font-size: 16px; line-height: 1.6; max-width: 820px; }
.iw-grid { display: grid; gap: 16px; margin-bottom: 16px; }
.iw-grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.iw-grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.iw-grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.iw-field { margin-bottom: 18px; }
.iw-grid .iw-field { margin-bottom: 0; }
.iw-field label, .iw-section legend { display: block; margin: 0 0 8px; color: #151515; font-size: 14px; font-weight: 750; }
.iw-field input[type="text"], .iw-field input[type="email"], .iw-field input[type="tel"], .iw-field select, .iw-field textarea, .iw-field input[type="file"] {
    width: 100%;
    background: #fff;
    color: #111;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    padding: 13px 14px;
    font: inherit;
    line-height: 1.3;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.iw-field textarea { resize: vertical; min-height: 120px; }
.iw-field input:focus, .iw-field select:focus, .iw-field textarea:focus {
    outline: none;
    border-color: #7da900;
    box-shadow: 0 0 0 3px rgba(182,255,0,.28);
}
.iw-field small, .iw-optional { color: #777; font-size: 12px; }
.iw-required { color: #577900; }
.iw-section { margin: 26px 0; padding: 0; border: 0; min-width: 0; }
.iw-section legend { font-size: 17px; font-weight: 800; margin-bottom: 12px; }
.iw-subsection { background: var(--iw-soft); border: 1px solid #e5e5e5; border-radius: 14px; padding: 18px; }
.iw-check-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.iw-check-card { position: relative; display: block; cursor: pointer; }
.iw-check-card input { position: absolute; opacity: 0; pointer-events: none; }
.iw-check-card span {
    display: flex;
    align-items: center;
    min-height: 52px;
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    color: #191919;
    border: 1px solid #d7d7d7;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.3;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.iw-check-card:hover span { border-color: #a6a6a6; }
.iw-check-card.is-selected span, .iw-check-card input:checked + span {
    background: #f7ffe2;
    border-color: #82b300;
    box-shadow: inset 4px 0 0 var(--iw-lime);
}
.iw-check-card input:focus-visible + span { outline: 3px solid rgba(182,255,0,.5); outline-offset: 2px; }
.iw-conditional[hidden] { display: none !important; }
.iw-consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; color: #454545; font-size: 12px; line-height: 1.5; }
.iw-consent input { margin-top: 3px; flex: 0 0 auto; }
.iw-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    border-radius: 10px;
    background: var(--iw-lime);
    color: #080808;
    font: inherit;
    font-weight: 900;
    letter-spacing: .03em;
    cursor: pointer;
    transition: transform .12s ease, filter .12s ease;
}
.iw-submit:hover { filter: brightness(.94); transform: translateY(-1px); }
.iw-form-foot { margin: 12px 0 0; color: #666; font-size: 13px; }
.iw-form-foot a { color: #111; font-weight: 750; }
.iw-lead-alert { margin-bottom: 20px; padding: 14px 16px; border-radius: 10px; font-weight: 650; }
.iw-lead-success { background: #f4ffe0; color: #203000; border: 1px solid #bde86b; }
.iw-lead-error { background: #fff2f2; color: #791616; border: 1px solid #efb6b6; }
.iw-file-list { margin-top: 7px; color: #555; font-size: 12px; }
.iw-file-list.has-error { color: #9a1a1a; font-weight: 650; }
.iw-honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
@media (max-width: 850px) {
    .iw-grid-4, .iw-grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .iw-check-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px) {
    .iw-lead-wrap { margin: 12px auto; padding: 22px 16px; border-radius: 14px; }
    .iw-grid-4, .iw-grid-3, .iw-grid-2, .iw-check-grid { grid-template-columns: 1fr; }
    .iw-grid { gap: 12px; }
    .iw-submit { width: 100%; }
}
