@font-face {
    font-family: "Roboto Condensed Local";
    src: url("../fonts/roboto-condensed-latin-ext-700-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Roboto Condensed Local";
    src: url("../fonts/roboto-condensed-latin-700-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --navy: #006225;
    --navy-deep: #00451a;
    --navy-soft: #238443;
    --orange: #238443;
    --orange-dark: #006225;
    --text-primary: #173a27;
    --text-secondary: #496456;
    --text-muted: #5a7264;
    --text-on-dark: #ffffff;
    --ink: var(--text-primary);
    --muted: var(--text-muted);
    --surface: #ffffff;
    --surface-soft: #f3f8f4;
    --surface-blue: #e5f2e8;
    --border: #d3e4d7;
    --border-strong: #8db99a;
    --icon-accent: #238443;
    --shadow-sm: 0 3px 12px rgba(0, 98, 37, 0.07);
    --shadow-md: 0 9px 24px rgba(0, 98, 37, 0.12);
    --radius-sm: 6px;
    --radius: 8px;
    --container: 1180px;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 28px;
    --space-8: 32px;
    --space-9: 36px;
    --space-10: 40px;
    --space-12: 48px;
    --space-14: 56px;
    --space-16: 64px;
    --gutter: var(--space-4);
    --heading-font: "Roboto Condensed Local", "Arial Narrow", "Aptos Narrow", "Helvetica Neue Condensed", sans-serif;
    --body-font: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
    --focus-on-light: #006225;
    --focus-on-dark: #b9e3c4;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 125%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

@supports (overflow: clip) {
    body {
        overflow-x: clip;
    }
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button,
.button,
.faq__trigger {
    touch-action: manipulation;
}

:focus-visible {
    outline: 3px solid var(--focus-on-light);
    outline-offset: 3px;
}

.container {
    width: min(100% - (var(--gutter) * 2), var(--container));
    margin-inline: auto;
}

.section {
    padding-block: var(--space-7);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
.brand__text,
.button,
.compensation-card strong,
.compensation-card > span {
    font-family: var(--heading-font);
}

h1,
h2,
h3 {
    color: var(--navy);
    font-weight: 700;
}

h1 {
    margin-bottom: var(--space-4);
    font-size: clamp(2rem, 10vw, 3.15rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
}

h2 {
    margin-bottom: var(--space-5);
    font-size: clamp(1.35rem, 6vw, 1.9rem);
    line-height: 1.08;
    text-align: center;
    letter-spacing: -0.018em;
}

h3 {
    margin-bottom: var(--space-2);
    font-size: 1rem;
    line-height: 1.17;
}

p {
    margin-bottom: var(--space-4);
}

.hero {
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 48%, rgba(246, 248, 250, 0.88) 100%);
}

.site-header {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    min-height: 76px;
    padding-block: var(--space-3);
}

.brand,
.phone-contact {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    text-decoration: none;
}

.brand {
    color: var(--navy);
}

.brand__logo {
    width: min(250px, 68vw);
    height: auto;
}

.brand__mark {
    width: 33px;
    height: 33px;
    padding: var(--space-1);
    color: var(--text-on-dark);
    border-radius: 50% 50% 46% 46%;
    background: var(--navy);
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__text strong {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.brand__text small {
    margin-top: var(--space-1);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.035em;
}

.phone-contact {
    flex: 0 0 auto;
    gap: var(--space-2);
    color: var(--navy);
}

.phone-contact__icon {
    width: 25px;
    height: 25px;
}

.phone-contact span {
    display: none;
    flex-direction: column;
    line-height: 1.15;
}

.phone-contact small {
    font-size: 0.68rem;
}

.phone-contact strong {
    font-size: 0.83rem;
}

.brand:hover,
.phone-contact:hover {
    color: var(--navy-soft);
}

.brand,
.phone-contact {
    transition: color 160ms ease, opacity 100ms ease;
}

.brand:active,
.phone-contact:active {
    color: var(--navy-deep);
    opacity: 0.68;
}

.hero__layout {
    display: grid;
    gap: var(--space-6);
    padding-top: var(--space-5);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-bottom: var(--space-1);
}

.eyebrow {
    display: inline-block;
    margin-bottom: var(--space-2);
    color: var(--navy-soft);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.hero__lead {
    margin-bottom: var(--space-3);
    max-width: 36rem;
    color: var(--text-primary);
    font-size: 1.08rem;
    line-height: 1.34;
}

.hero__content > p:not(.eyebrow):not(.hero__lead) {
    max-width: 38rem;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.52;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    min-height: 48px;
    padding: var(--space-3) var(--space-6);
    border: 0;
    border-radius: var(--radius-sm);
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.015em;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 160ms ease, box-shadow 160ms ease, transform 100ms ease;
}

.button span {
    font-family: var(--body-font);
    font-size: 1.6em;
    font-weight: 400;
    line-height: 0;
}

.button--primary,
.button--submit {
    color: var(--text-on-dark);
    background: var(--orange);
    box-shadow: 0 5px 14px rgba(0, 98, 37, 0.22);
}

.button--primary:hover,
.button--submit:hover {
    background: var(--orange-dark);
    box-shadow: 0 7px 18px rgba(0, 69, 26, 0.26);
}

.button:active {
    transform: translateY(1px);
    box-shadow: none;
}

.hero__media {
    position: relative;
    min-width: 0;
    padding-bottom: var(--space-16);
}

.hero__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 54% center;
    border-radius: 10px 10px 0 0;
    background: var(--surface-soft);
}

@media (max-width: 819px) {
    .hero__media {
        width: 100%;
        padding-bottom: 0;
    }

    .hero__media img {
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
        object-position: center;
    }

    .compensation-card {
        display: none;
    }
}

.compensation-card {
    position: absolute;
    right: var(--space-3);
    bottom: var(--space-3);
    width: min(78%, 290px);
    padding: var(--space-4) var(--space-5);
    color: var(--text-on-dark);
    border-radius: var(--radius);
    background: var(--navy);
    box-shadow: var(--shadow-md);
}

.compensation-card::after {
    position: absolute;
    top: 33px;
    right: 14px;
    width: 26px;
    height: 45px;
    border-right: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    content: "";
}

.compensation-card p {
    max-width: 205px;
    margin-bottom: 7px;
    font-size: 0.875rem;
    line-height: 1.35;
}

.compensation-card strong,
.compensation-card > span,
.compensation-card small {
    display: block;
}

.compensation-card strong {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.compensation-card > span {
    margin-top: 3px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.compensation-card small {
    margin-top: 6px;
    font-size: 0.75rem;
    opacity: 0.8;
}

.benefits {
    position: relative;
    z-index: 2;
    border-block: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
}

.benefits__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.benefit {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: var(--space-3);
    min-width: 0;
    padding: var(--space-4) var(--space-3);
}

.benefit__icon {
    width: 30px;
    height: 30px;
    color: var(--navy);
}

.benefit p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.35;
}

.benefit strong {
    color: var(--navy);
    font-size: inherit;
}

.meaning {
    background: var(--surface-soft);
}

.card-grid {
    display: grid;
    gap: var(--space-3);
}

.outcome-card {
    padding: var(--space-5) var(--space-4);
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.icon-circle {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto var(--space-3);
    color: var(--navy);
    border-radius: 50%;
    background: var(--surface-blue);
}

.icon-circle .icon {
    width: 32px;
    height: 32px;
}

.outcome-card p {
    margin: 0 auto;
    max-width: 245px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.4;
}

.process {
    background: var(--surface);
}

.steps {
    display: grid;
    gap: var(--space-3);
    margin: 0;
    padding: 0;
    list-style: none;
}

.step {
    position: relative;
    display: grid;
    grid-template-columns: 34px 52px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: var(--space-3);
    min-height: 98px;
    padding: var(--space-4);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.step__number {
    display: grid;
    grid-row: 1 / 3;
    place-items: center;
    align-self: start;
    width: 28px;
    height: 28px;
    color: var(--text-on-dark);
    border-radius: 50%;
    background: var(--icon-accent);
    font-size: 0.76rem;
    font-weight: 800;
}

.step__icon {
    display: grid;
    grid-row: 1 / 3;
    place-items: center;
    width: 52px;
    height: 52px;
    color: var(--navy);
}

.step__icon svg {
    width: 42px;
    height: 42px;
}

.step h3 {
    align-self: end;
    margin: 0 0 3px;
    font-family: var(--body-font);
    font-size: 0.875rem;
}

.step p {
    align-self: start;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.35;
}

.eligibility {
    background: var(--surface-soft);
}

.eligibility__layout {
    display: grid;
    gap: var(--space-5);
}

.eligibility__content > h2,
.lead-card > h2 {
    text-align: left;
}

.eligibility__content > h2 {
    margin-bottom: var(--space-4);
}

.eligibility__lists {
    display: grid;
    gap: 0;
}

.eligibility__lists ul {
    display: grid;
    gap: var(--space-2);
    margin: 0;
    padding: 0;
    list-style: none;
}

.eligibility__lists li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    min-width: 0;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.check-icon {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    color: var(--icon-accent);
}

.warning-note {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-5);
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--border);
    border-left: 4px solid var(--navy);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.warning-note__icon {
    width: 32px;
    height: 32px;
    color: var(--icon-accent);
}

.warning-note p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

.warning-note strong {
    color: var(--navy);
}

.lead-card {
    align-self: start;
    padding: var(--space-5) var(--space-4) var(--space-4);
    color: var(--text-on-dark);
    border-radius: var(--radius);
    background: var(--navy);
    box-shadow: var(--shadow-md);
}

.lead-card > h2 {
    margin-bottom: var(--space-2);
    color: var(--text-on-dark);
    font-size: 1.25rem;
}

.lead-card > p {
    margin-bottom: var(--space-3);
    font-size: 0.875rem;
    opacity: 0.9;
}

.lead-form {
    display: grid;
    gap: var(--space-3);
}

.field {
    min-width: 0;
}

.field label {
    display: block;
    margin: 0 0 var(--space-1);
    color: var(--text-on-dark);
    font-size: 0.875rem;
    font-weight: 700;
}

.field input {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: var(--space-2) var(--space-3);
    color: var(--ink);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: inset 0 1px 2px rgba(0, 69, 26, 0.06);
}

.field input:hover {
    border-color: var(--border-strong);
}

.field input:focus-visible {
    outline-color: var(--focus-on-dark);
    outline-offset: 1px;
}

.lead-card .button:focus-visible {
    outline-color: var(--focus-on-dark);
}

.button--submit {
    width: 100%;
    min-height: 48px;
    margin-top: var(--space-1);
}

.lead-form__privacy {
    margin: 0;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.4;
    opacity: 0.86;
}

.faq {
    padding-bottom: var(--space-6);
    background: var(--surface);
}

.faq__grid {
    display: grid;
    gap: var(--space-2);
}

.faq__item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: 0 2px 8px rgba(0, 98, 37, 0.04);
}

.faq__item h3 {
    margin: 0;
}

.faq__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    width: 100%;
    min-height: 48px;
    padding: var(--space-2) var(--space-4);
    color: var(--ink);
    text-align: left;
    border: 0;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 160ms ease, background-color 160ms ease, box-shadow 100ms ease;
}

.faq__trigger:hover {
    color: var(--navy);
    background: var(--surface-soft);
}

.faq__trigger:active {
    color: var(--navy-deep);
    background: var(--surface-blue);
    box-shadow: inset 0 0 0 2px rgba(0, 98, 37, 0.16);
}

.faq__chevron {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: var(--navy);
    transition: transform 160ms ease;
}

.faq__trigger[aria-expanded="true"] .faq__chevron,
.faq__trigger.is-open .faq__chevron {
    transform: rotate(180deg);
}

.faq__panel {
    padding: 0 var(--space-4) var(--space-3);
}

.faq__panel p {
    margin: 0;
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.45;
}

.legal {
    margin-top: var(--space-7);
    padding: var(--space-5) 0 var(--space-6);
    color: var(--text-muted);
    border-top: 1px solid #edf1f4;
    background: var(--surface-soft);
}

.legal__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
}

.brand--footer {
    justify-content: flex-start;
}

.legal p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.45;
}

@media (min-width: 600px) {
    :root {
        --gutter: var(--space-6);
    }

    .section {
        padding-block: var(--space-8);
    }

    .phone-contact span {
        display: flex;
    }

    .hero__layout {
        padding-top: var(--space-6);
    }

    .benefits__grid,
    .card-grid,
    .steps,
    .faq__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eligibility__lists {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-6);
    }

    .lead-card {
        padding: var(--space-6);
    }

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

    .button--submit,
    .lead-form__privacy {
        grid-column: 1 / -1;
    }
}

@media (min-width: 820px) {
    :root {
        --gutter: var(--space-8);
    }

    .site-header {
        min-height: 82px;
    }

    .brand__mark {
        width: 38px;
        height: 38px;
    }

    .brand__text strong {
        font-size: 0.94rem;
    }

    .brand__text small {
        font-size: 0.61rem;
    }

    .hero__layout {
        grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
        align-items: stretch;
        gap: 0;
        min-height: 430px;
        padding-top: 0;
    }

    .hero__content {
        padding: var(--space-8) var(--space-10) var(--space-14) 0;
    }

    .hero__content::after {
        position: absolute;
        z-index: -1;
        top: -80px;
        right: -105px;
        bottom: -80px;
        width: 200px;
        background: linear-gradient(90deg, #fff 18%, rgba(255, 255, 255, 0));
        content: "";
    }

    .hero__media {
        align-self: stretch;
        margin-right: calc((100vw - min(100vw - 60px, var(--container))) / -2);
        margin-top: -82px;
        padding: 0;
        overflow: hidden;
    }

    .hero__media img {
        position: absolute;
        inset: 0 auto 0 -40%;
        height: 100%;
        width: 140%;
        max-width: none;
        min-height: 430px;
        aspect-ratio: auto;
        object-position: 50% center;
        border-radius: 0;
    }

    .compensation-card {
        right: max(30px, calc((100vw - var(--container)) / 2));
        bottom: 24px;
        width: 270px;
    }

    .benefit {
        position: relative;
        justify-content: center;
        min-height: 104px;
        padding: var(--space-4) var(--space-5);
    }

    .eligibility__layout {
        grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
        align-items: stretch;
        gap: var(--space-7);
    }

    .lead-card {
        align-self: stretch;
    }
}

@media (min-width: 1100px) {
    :root {
        --gutter: var(--space-9);
    }

    body {
        font-size: 0.9375rem;
    }

    .hero {
        position: relative;
        z-index: 3;
        overflow: visible;
    }

    .section {
        padding-block: var(--space-8);
    }

    .site-header {
        min-height: 76px;
    }

    .hero__layout {
        min-height: 498px;
    }

    .hero__content {
        padding: var(--space-14) var(--space-8) var(--space-7) 0;
    }

    .eyebrow {
        display: none;
    }

    h1 {
        font-size: 3.75rem;
        line-height: 0.93;
    }

    h2 {
        margin-bottom: 22px;
        font-size: 1.72rem;
    }

    .hero__lead {
        max-width: 31rem;
        margin-bottom: 30px;
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .hero__content > p:not(.eyebrow):not(.hero__lead) {
        max-width: 33rem;
        margin-bottom: var(--space-6);
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero__media img {
        min-height: 0;
        object-position: center;
        clip-path: inset(0 0 0 28.572%);
    }

    .hero__media {
        overflow: visible;
    }

    .hero__content::after {
        bottom: 0;
    }

    .compensation-card {
        z-index: 4;
        right: 5vw;
        bottom: -96px;
        width: 340px;
        padding: 20px 24px;
    }

    .compensation-card p {
        font-size: 1.05rem;
    }

    .compensation-card strong {
        font-size: 2.85rem;
    }

    .compensation-card > span {
        font-size: 1.15rem;
    }

    .button--primary {
        min-width: 340px;
        min-height: 64px;
        font-size: 1rem;
    }

    .benefit {
        grid-template-columns: 40px minmax(0, 1fr);
        min-height: 130px;
    }

    .benefits__grid {
        padding-right: 360px;
    }

    .benefit__icon {
        width: 38px;
        height: 38px;
    }

    .card-grid,
    .steps,
    .benefits__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .benefit + .benefit::before {
        position: absolute;
        left: 0;
        width: 1px;
        height: 38px;
        background: var(--border);
        content: "";
    }

    .outcome-card {
        min-height: 252px;
        padding: var(--space-5) var(--space-4) var(--space-4);
    }

    .meaning {
        padding-top: 14px;
        padding-bottom: 10px;
    }

    .meaning h2 {
        margin-bottom: 17px;
    }

    .process {
        padding-bottom: var(--space-10);
    }

    .process .container {
        border-radius: var(--radius);
        box-shadow: inset 0 0 0 1px rgba(220, 228, 234, 0.75);
    }

    .steps {
        gap: 0;
    }

    .step {
        display: flex;
        flex-direction: column;
        min-height: 200px;
        padding: var(--space-2) var(--space-6) 0;
        text-align: center;
        border: 0;
        background: transparent;
    }

    .step + .step::before {
        position: absolute;
        top: 57px;
        right: 72%;
        width: 56%;
        height: 1px;
        background: #c4dac9;
        content: "";
    }

    .step__number {
        position: absolute;
        z-index: 2;
        top: 0;
        left: 18px;
        width: 30px;
        height: 30px;
    }

    .step__icon {
        z-index: 1;
        width: 82px;
        height: 82px;
        margin: 14px auto 6px;
        border-radius: 50%;
        background: var(--surface);
    }

    .step__icon svg {
        width: 47px;
        height: 47px;
    }

    .step h3 {
        align-self: center;
        min-height: 1.17em;
        margin-bottom: 5px;
        font-size: 0.875rem;
    }

    .step p {
        align-self: center;
        max-width: 205px;
        margin-inline: auto;
        font-size: 0.875rem;
        font-weight: 400;
    }

    .eligibility__layout {
        gap: var(--space-9);
    }

    .eligibility {
        padding-bottom: 14px;
    }

    .eligibility__lists ul {
        gap: var(--space-3);
    }

    .eligibility__lists li {
        line-height: 1.35;
    }

    .warning-note {
        margin-top: var(--space-7);
    }

    .lead-card {
        padding: var(--space-5) var(--space-6) var(--space-4);
        min-height: 402px;
        margin-bottom: -32px;
        transform: translateY(-32px);
    }

    .lead-card > h2 {
        font-size: 1.35rem;
    }

    .field input {
        min-height: 52px;
    }

    .lead-form {
        gap: var(--space-4);
    }

    .button--submit {
        min-height: 54px;
    }

    .faq__grid {
        column-gap: 14px;
        row-gap: 8px;
    }

    .faq {
        padding-top: var(--space-1);
        padding-bottom: var(--space-1);
    }

    .faq h2 {
        margin-bottom: 14px;
    }

    .legal {
        margin-top: var(--space-6);
        padding: var(--space-4) 0 var(--space-5);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
