.fh2-page {
    --fh-orange: #f26b2b;
    --fh-orange-dark: #9b350f;
    --fh-teal: #183f3f;
    --fh-teal-soft: #e8f0ee;
    --fh-amber: #f5c45e;
    --fh-paper: #fffaf3;
    --fh-band: #f5f3ee;
    --fh-line: #dcd8cf;
    --fh-ink: #171a1d;
    --fh-body: #555c62;
    --fh-muted: #5f666b;
    --fh-index: #85847f;
    --fh-final-dark: #3d1608;
    color: var(--fh-ink);
    background: #ffffff;
    word-break: keep-all;
    overflow-wrap: normal;
    overflow: hidden;
}

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

.fh2-page h1,
.fh2-page h2,
.fh2-page h3,
.fh2-page p,
.fh2-page figure,
.fh2-page ol,
.fh2-page ul {
    margin: 0;
}

.fh2-page ol,
.fh2-page ul {
    padding: 0;
    list-style: none;
}

.fh2-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

.fh2-page a {
    color: inherit;
    text-decoration: none;
}

.fh2-page a:focus-visible,
.fh2-page summary:focus-visible {
    outline: 3px solid #0b6c72;
    outline-offset: 4px;
}

.fh2-shell {
    width: min(1220px, calc(100% - 48px));
    margin-inline: auto;
}

.fh2-section {
    padding: 112px 0;
}

.fh2-hero {
    position: relative;
    padding: 92px 0 86px;
    background: var(--fh-paper);
    border-bottom: 1px solid var(--fh-line);
}

.fh2-hero::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 31%;
    height: 18px;
    background: var(--fh-teal);
    content: "";
}

.fh2-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
    gap: clamp(48px, 6vw, 92px);
    align-items: center;
}

.fh2-kicker,
.fh2-section-no {
    color: var(--fh-orange-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    line-height: 1.5;
    text-transform: uppercase;
}

.fh2-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.fh2-kicker span {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #ffffff;
    background: var(--fh-orange-dark);
    font-size: 0.7rem;
}

.fh2-hero h1 {
    max-width: 690px;
    font-size: clamp(2.65rem, 4.15vw, 3.65rem);
    font-weight: 700;
    letter-spacing: -0.046em;
    line-height: 1.13;
}

.fh2-hero h1 em {
    color: var(--fh-orange-dark);
    font-style: normal;
}

.fh2-hero-lead {
    max-width: 650px;
    margin-top: 28px !important;
    color: var(--fh-body);
    font-size: 1.08rem;
    line-height: 1.82;
}

.fh2-hero-lead strong {
    color: var(--fh-ink);
    font-weight: 700;
}

.fh2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.fh2-btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.fh2-btn:hover {
    transform: translateY(-2px);
}

.fh2-btn-primary {
    color: #ffffff !important;
    background: var(--fh-orange-dark);
    border-color: var(--fh-orange-dark);
    box-shadow: 8px 8px 0 rgba(24, 63, 63, 0.13);
}

.fh2-btn-primary:hover {
    background: #722407;
    border-color: #722407;
}

.fh2-btn-text {
    color: var(--fh-ink) !important;
    background: #ffffff;
    border-color: var(--fh-line);
}

.fh2-btn-text:hover {
    border-color: var(--fh-teal);
}

.fh2-hero-boundaries {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 40px !important;
    padding-top: 20px !important;
    border-top: 1px solid var(--fh-line);
}

.fh2-hero-boundaries li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--fh-body);
    font-size: 0.8rem;
    line-height: 1.5;
}

.fh2-hero-boundaries i {
    margin-top: 1px;
    color: var(--fh-orange-dark);
}

.fh2-hero-screen {
    position: relative;
    min-width: 0;
    padding: 34px 24px 76px;
    background: var(--fh-teal);
    box-shadow: 24px 28px 0 rgba(242, 107, 43, 0.14);
    animation: fh2-screen-in 620ms ease-out both;
}

.fh2-browser-bar {
    display: flex;
    height: 30px;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.7);
}

.fh2-browser-bar span {
    width: 8px;
    height: 8px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
}

.fh2-browser-bar b {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.fh2-hero-screen > img {
    width: 100%;
    aspect-ratio: 2670 / 1441;
    object-fit: cover;
    object-position: top center;
    background: #ffffff;
}

.fh2-hero-screen figcaption {
    position: absolute;
    right: -20px;
    bottom: 20px;
    display: grid;
    width: min(340px, calc(100% - 30px));
    gap: 3px;
    padding: 18px 20px;
    background: #ffffff;
    border-left: 5px solid var(--fh-orange);
    box-shadow: 0 14px 30px rgba(23, 26, 29, 0.14);
}

.fh2-hero-screen figcaption span {
    color: var(--fh-orange-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.fh2-hero-screen figcaption strong {
    font-size: 1rem;
}

.fh2-hero-screen figcaption small {
    color: var(--fh-muted);
    font-size: 0.76rem;
    line-height: 1.45;
}

.fh2-choice-strip {
    color: #ffffff;
    background: var(--fh-teal);
}

.fh2-choice-strip .fh2-shell {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fh2-choice-strip span {
    display: grid;
    min-height: 84px;
    align-content: center;
    gap: 3px;
    padding: 18px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
}

.fh2-choice-strip span:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.fh2-choice-strip b {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
}

.fh2-workbench {
    scroll-margin-top: 82px;
}

.fh2-section-head {
    max-width: 660px;
}

.fh2-section-head-split {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.76fr);
    gap: 72px;
    align-items: end;
}

.fh2-section-head h2 {
    margin-top: 14px;
    font-size: clamp(2.1rem, 3.8vw, 3.15rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.18;
}

.fh2-section-head > p:last-child,
.fh2-section-head-split > p {
    color: var(--fh-body);
    font-size: 1rem;
    line-height: 1.78;
}

.fh2-section-head:not(.fh2-section-head-split) > p:last-child {
    margin-top: 22px;
}

.fh2-tool-rail {
    margin-top: 72px;
    border-bottom: 1px solid var(--fh-line);
}

.fh2-tool {
    display: grid;
    grid-template-columns: 50px minmax(0, 1.1fr) minmax(300px, 0.82fr);
    gap: clamp(26px, 4vw, 58px);
    align-items: center;
    padding: 52px 0;
    border-top: 1px solid var(--fh-line);
}

.fh2-tool-index {
    align-self: stretch;
    color: var(--fh-index);
    font-family: Inter, sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1;
    writing-mode: vertical-rl;
}

.fh2-tool-media {
    min-width: 0;
    padding: 14px;
    background: var(--fh-band);
    border: 1px solid var(--fh-line);
}

.fh2-tool-media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top center;
    background: #ffffff;
    border: 1px solid #cfcbc3;
}

.fh2-tool-media figcaption {
    padding: 12px 2px 0;
    color: var(--fh-muted);
    font-size: 0.72rem;
    letter-spacing: 0.03em;
}

.fh2-tool-copy {
    min-width: 0;
}

.fh2-tool:nth-child(even) .fh2-tool-media {
    grid-column: 3;
    grid-row: 1;
}

.fh2-tool:nth-child(even) .fh2-tool-copy {
    grid-column: 2;
    grid-row: 1;
}

.fh2-situation {
    color: var(--fh-orange-dark);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.5;
}

.fh2-tool-copy h3 {
    margin-top: 11px;
    font-size: clamp(1.65rem, 2.4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.036em;
    line-height: 1.25;
}

.fh2-tool-copy > p:not(.fh2-situation) {
    margin-top: 18px;
    color: var(--fh-body);
    font-size: 0.96rem;
    line-height: 1.75;
}

.fh2-output-list {
    margin-top: 24px !important;
    border-top: 1px solid var(--fh-line);
}

.fh2-output-list li {
    position: relative;
    padding: 10px 8px 10px 20px;
    border-bottom: 1px solid var(--fh-line);
    color: #3d4448;
    font-size: 0.83rem;
}

.fh2-output-list li::before {
    position: absolute;
    top: 16px;
    left: 2px;
    width: 6px;
    height: 6px;
    background: var(--fh-teal);
    content: "";
}

.fh2-tool-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    border-bottom: 2px solid var(--fh-orange);
    color: var(--fh-ink) !important;
    font-size: 0.92rem;
    font-weight: 700;
}

.fh2-tool-link i {
    color: var(--fh-orange-dark);
    transition: transform 160ms ease;
}

.fh2-tool-link:hover i {
    transform: translate(3px, -3px);
}

.fh2-workflow {
    color: #ffffff;
    background: var(--fh-teal);
}

.fh2-section-head-light {
    max-width: 760px;
}

.fh2-section-head-light .fh2-section-no {
    color: var(--fh-amber);
}

.fh2-section-head-light > p:last-child {
    color: rgba(255, 255, 255, 0.7);
}

.fh2-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 62px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.fh2-flow-grid li {
    position: relative;
    min-height: 300px;
    padding: 28px 26px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.fh2-flow-grid li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.fh2-flow-grid li > span {
    color: var(--fh-amber);
    font-family: Inter, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.fh2-flow-grid li > i {
    display: block;
    margin-top: 42px;
    color: #ffffff;
    font-size: 2rem;
}

.fh2-flow-grid h3 {
    margin-top: 24px;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.45;
}

.fh2-flow-grid p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
    line-height: 1.7;
}

.fh2-boundary {
    background: var(--fh-band);
}

.fh2-ledger {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 66px;
    border: 1px solid var(--fh-line);
    box-shadow: 14px 14px 0 rgba(24, 63, 63, 0.08);
}

.fh2-ledger-side {
    padding: clamp(34px, 5vw, 60px);
}

.fh2-ledger-free {
    background: #ffffff;
}

.fh2-ledger-paid {
    background: #fff4df;
    border-left: 1px solid var(--fh-line);
}

.fh2-ledger-label {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--fh-orange-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.fh2-ledger-side h3 {
    margin-top: 18px;
    font-size: clamp(1.55rem, 2.4vw, 2.05rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.3;
}

.fh2-ledger-side ul {
    margin-top: 36px !important;
    border-top: 1px solid var(--fh-line);
}

.fh2-ledger-side li {
    display: grid;
    gap: 7px;
    padding: 22px 0;
    border-bottom: 1px solid var(--fh-line);
}

.fh2-ledger-side strong {
    font-size: 0.98rem;
    line-height: 1.5;
}

.fh2-ledger-side span {
    color: var(--fh-body);
    font-size: 0.84rem;
    line-height: 1.7;
}

.fh2-ledger-side a {
    color: #0e6266;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.fh2-use-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(54px, 8vw, 112px);
    align-items: start;
}

.fh2-use-list {
    border-top: 2px solid var(--fh-ink);
}

.fh2-use-list li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 22px;
    padding: 27px 0;
    border-bottom: 1px solid var(--fh-line);
}

.fh2-use-list > li > span {
    color: var(--fh-orange-dark);
    font-family: Inter, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.fh2-use-list h3 {
    font-size: 1.16rem;
    font-weight: 700;
    line-height: 1.4;
}

.fh2-use-list p {
    margin-top: 7px;
    color: var(--fh-body);
    font-size: 0.9rem;
    line-height: 1.65;
}

.fh2-next {
    background: var(--fh-teal-soft);
}

.fh2-next-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 60px;
    border-top: 1px solid #adc4c0;
    border-bottom: 1px solid #adc4c0;
}

.fh2-next-rail a {
    position: relative;
    display: grid;
    min-height: 210px;
    align-content: start;
    padding: 28px 58px 28px 26px;
    border-right: 1px solid #adc4c0;
    transition: background-color 170ms ease;
}

.fh2-next-rail a:first-child {
    border-left: 1px solid #adc4c0;
}

.fh2-next-rail a:hover {
    background: #ffffff;
}

.fh2-next-rail span {
    color: var(--fh-orange-dark);
    font-family: Inter, sans-serif;
    font-size: 0.72rem;
}

.fh2-next-rail b {
    margin-top: 32px;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.5;
}

.fh2-next-rail small {
    margin-top: 9px;
    color: var(--fh-body);
    font-size: 0.8rem;
}

.fh2-next-rail i {
    position: absolute;
    right: 24px;
    bottom: 27px;
    color: var(--fh-orange-dark);
    font-size: 1.15rem;
}

.fh2-faq {
    background: var(--fh-paper);
}

.fh2-faq-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(54px, 8vw, 112px);
    align-items: start;
}

.fh2-faq-list {
    border-top: 2px solid var(--fh-ink);
}

.fh2-faq-item {
    border-bottom: 1px solid var(--fh-line);
}

.fh2-faq-item summary {
    display: grid;
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 24px;
    align-items: center;
    padding: 18px 4px;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.55;
    list-style: none;
}

.fh2-faq-item summary::-webkit-details-marker {
    display: none;
}

.fh2-faq-item summary i {
    color: var(--fh-orange-dark);
    transition: transform 170ms ease;
}

.fh2-faq-item[open] summary i {
    transform: rotate(45deg);
}

.fh2-faq-item > div {
    padding: 0 44px 24px 4px;
}

.fh2-faq-item > div p {
    color: var(--fh-body);
    font-size: 0.9rem;
    line-height: 1.78;
}

.fh2-final {
    padding: 84px 0;
    background: var(--fh-orange);
}

.fh2-final-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 72px;
    align-items: center;
}

.fh2-final .fh2-section-no {
    color: var(--fh-final-dark);
}

.fh2-final h2 {
    margin-top: 13px;
    color: #1f130d;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.18;
}

.fh2-final-action p {
    color: var(--fh-final-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

.fh2-btn-dark {
    width: 100%;
    margin-top: 22px;
    color: #ffffff !important;
    background: var(--fh-teal);
    border-color: var(--fh-teal);
}

.fh2-btn-dark:hover {
    background: #102e2f;
}

.fh2-final-sub {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    margin-top: 10px;
    color: var(--fh-final-dark) !important;
    font-size: 0.83rem;
    font-weight: 700;
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

@keyframes fh2-screen-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
    .fh2-hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
        gap: 42px;
    }

    .fh2-hero h1 {
        font-size: clamp(2.35rem, 4.6vw, 3.2rem);
    }

    .fh2-hero-boundaries {
        grid-template-columns: 1fr;
    }

    .fh2-tool {
        grid-template-columns: 40px minmax(0, 1fr) minmax(280px, 0.8fr);
        gap: 26px;
    }

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

    .fh2-flow-grid li:nth-child(3) {
        border-left: 1px solid rgba(255, 255, 255, 0.24);
    }

    .fh2-flow-grid li:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    }
}

@media (max-width: 760px) {
    .fh2-shell {
        width: min(100% - 32px, 560px);
    }

    .fh2-section {
        padding: 74px 0;
    }

    .fh2-hero {
        padding: 64px 0 62px;
    }

    .fh2-hero::before {
        width: 46%;
        height: 10px;
    }

    .fh2-hero-grid,
    .fh2-section-head-split,
    .fh2-use-grid,
    .fh2-faq-grid,
    .fh2-final-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fh2-hero-grid {
        gap: 48px;
    }

    .fh2-kicker {
        margin-bottom: 18px;
    }

    .fh2-hero h1 {
        font-size: clamp(2.25rem, 10.8vw, 3rem);
        line-height: 1.18;
    }

    .fh2-hero-lead {
        margin-top: 22px !important;
        font-size: 1rem;
        line-height: 1.72;
    }

    .fh2-actions {
        display: grid;
        margin-top: 28px;
    }

    .fh2-btn {
        width: 100%;
        min-height: 52px;
        padding-inline: 16px;
    }

    .fh2-hero-boundaries {
        margin-top: 30px !important;
    }

    .fh2-hero-screen {
        padding: 22px 12px 66px;
        box-shadow: 12px 14px 0 rgba(242, 107, 43, 0.16);
    }

    .fh2-browser-bar b {
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .fh2-hero-screen figcaption {
        right: -8px;
        bottom: 14px;
        padding: 14px 16px;
    }

    .fh2-choice-strip .fh2-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fh2-choice-strip span {
        min-height: 76px;
        padding: 14px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        font-size: 0.7rem;
    }

    .fh2-choice-strip span:nth-child(3) {
        border-left: 1px solid rgba(255, 255, 255, 0.16);
    }

    .fh2-section-head-split,
    .fh2-final-grid {
        gap: 26px;
    }

    .fh2-section-head h2 {
        font-size: clamp(1.9rem, 8.5vw, 2.55rem);
    }

    .fh2-tool-rail {
        margin-top: 46px;
    }

    .fh2-tool,
    .fh2-tool:nth-child(even) {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 18px;
        padding: 38px 0;
    }

    .fh2-tool-index,
    .fh2-tool:nth-child(even) .fh2-tool-index {
        grid-column: 1;
        grid-row: 1 / span 2;
        font-size: 1.55rem;
    }

    .fh2-tool-media,
    .fh2-tool:nth-child(even) .fh2-tool-media {
        grid-column: 2;
        grid-row: 1;
        padding: 8px;
    }

    .fh2-tool-copy,
    .fh2-tool:nth-child(even) .fh2-tool-copy {
        grid-column: 2;
        grid-row: 2;
    }

    .fh2-tool-copy h3 {
        font-size: 1.55rem;
    }

    .fh2-tool-link {
        min-height: 48px;
    }

    .fh2-flow-grid {
        grid-template-columns: minmax(0, 1fr);
        margin-top: 42px !important;
    }

    .fh2-flow-grid li,
    .fh2-flow-grid li:nth-child(3) {
        min-height: auto;
        padding: 24px 20px;
        border-left: 1px solid rgba(255, 255, 255, 0.24);
        border-right: 1px solid rgba(255, 255, 255, 0.24);
        border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    }

    .fh2-flow-grid li:last-child {
        border-bottom: 0;
    }

    .fh2-flow-grid li > i {
        margin-top: 24px;
    }

    .fh2-ledger {
        grid-template-columns: minmax(0, 1fr);
        margin-top: 44px;
        box-shadow: 9px 9px 0 rgba(24, 63, 63, 0.08);
    }

    .fh2-ledger-side {
        padding: 30px 22px;
    }

    .fh2-ledger-paid {
        border-top: 1px solid var(--fh-line);
        border-left: 0;
    }

    .fh2-use-grid,
    .fh2-faq-grid {
        gap: 42px;
    }

    .fh2-use-list li {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 14px;
    }

    .fh2-next-rail {
        grid-template-columns: minmax(0, 1fr);
        margin-top: 42px;
    }

    .fh2-next-rail a {
        min-height: 160px;
        border-right: 1px solid #adc4c0;
        border-bottom: 1px solid #adc4c0;
        border-left: 1px solid #adc4c0;
    }

    .fh2-next-rail a:last-child {
        border-bottom: 0;
    }

    .fh2-next-rail b {
        margin-top: 20px;
    }

    .fh2-faq-item summary {
        min-height: 68px;
        gap: 16px;
        font-size: 0.94rem;
    }

    .fh2-faq-item > div {
        padding-right: 30px;
    }

    .fh2-final {
        padding: 68px 0;
    }

    .fh2-final h2 {
        font-size: clamp(1.9rem, 8.6vw, 2.5rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fh2-page *,
    .fh2-page *::before,
    .fh2-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
