@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/Inter_18pt-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/Inter_18pt-Bold.woff2") format("woff2");
}

@font-face {
    font-family: "Corvinus Skyline ICG";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src:
        url("../fonts/Corvinus Skyline ICG.woff2") format("woff2"),
        url("../fonts/Corvinus-Skyline-ICG.woff") format("woff");
}

:root {
    --page-bg: #1c1812;
    --text: #c4bfa4;
    --accent: #fd8d1d;
    --display-font: "Corvinus Skyline ICG", Impact, "Times New Roman", serif;
    --display-scale-main: 1;
    --display-scale-accent: 1;
    --direct-badge-scale: var(--display-scale-accent);
    --body-font: "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-height: 100%;
    margin: 0;
    background: var(--page-bg);
    color: var(--text);
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
[type="button"],
[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
}

button,
a,
input,
textarea {
    -webkit-tap-highlight-color: rgba(253, 141, 29, 0.18);
}

img {
    max-width: 100%;
    height: auto;
}

.page {
    min-height: 100%;
    background: var(--page-bg);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 42.4375rem) minmax(0, 44.0205rem);
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    min-height: 47.1875rem;
    overflow: hidden;
    padding: 4rem 2rem;
    background-color: var(--page-bg);
    background-image:
        radial-gradient(ellipse 50% 50% at 50% 50%,
            rgba(102, 102, 102, 0.2) 0%,
            rgba(102, 102, 102, 0.2) 64.72%,
            rgba(77, 77, 77, 0.2) 73.54%,
            rgba(51, 51, 51, 0.2) 82.36%,
            rgba(26, 26, 26, 0.2) 91.18%,
            rgba(13, 13, 13, 0.2) 95.59%,
            rgba(6, 6, 6, 0.2) 97.795%,
            rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(90deg, var(--page-bg) 0%, var(--page-bg) 100%);
}

.hero__art {
    grid-column: 2;
    grid-row: 1;
    z-index: 0;
    display: flex;
    width: 44.0205rem;
    height: 32.64988rem;
    align-items: center;
    justify-content: center;
    justify-self: start;
    pointer-events: none;
}

.hero__art-mask {
    width: 40.6265rem;
    height: 27.25575rem;
    transform: rotate(-8.01deg) skewX(-0.01deg);
    -webkit-mask-image: linear-gradient(90deg,
            transparent 0%,
            #000 20%,
            #000 80%,
            transparent 100%);
    mask-image: linear-gradient(90deg,
            transparent 0%,
            #000 20%,
            #000 80%,
            transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: -0.52656rem -0.341rem;
    mask-position: -0.52656rem -0.341rem;
    -webkit-mask-size: 44.76281rem 33.59219rem;
    mask-size: 44.76281rem 33.59219rem;
}

.hero__art-mask img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero__content {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 1;
    display: flex;
    width: 42.4375rem;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
}

.hero__intro {
    display: flex;
    width: 38.125rem;
    max-width: 100%;
    flex-direction: column;
    gap: 1.25rem;
}

.hero__title {
    margin: 0;
    color: var(--text);
    font-family: var(--display-font);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero__title span {
    display: block;
    transform-origin: left top;
    white-space: nowrap;
}

.hero__title span:first-child {
    width: calc(100% / var(--display-scale-main));
    transform: scaleX(var(--display-scale-main));
    font-size: 6.25rem;
}

.hero__title span:last-child {
    width: calc(100% / var(--display-scale-accent));
    transform: scaleX(var(--display-scale-accent));
    color: var(--accent);
    font-size: 3.875rem;
}

.hero__text,
.hero__proof,
.hero__note,
.hero__terms {
    margin: 0;
    color: var(--text);
    line-height: 1.6;
}

.hero__text {
    width: 38.125rem;
    max-width: 100%;
    font-size: 1.125rem;
    font-weight: 400;
}

.hero__proof {
    width: 100%;
    font-size: 1.25rem;
    font-weight: 700;
}

.hero__proof span,
.hero__cta .button span,
.hero__terms span {
    display: inline;
}

.hero__proof span+span::before {
    content: " ";
}

.hero__terms span+span::before {
    content: " | ";
}

.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.button {
    display: inline-flex;
    min-height: 4.09938rem;
    align-items: center;
    justify-content: center;
    gap: 0.25em;
    border: 0;
    padding: 0.75rem 2.5rem;
    background: var(--accent);
    box-shadow:
        0 0.125rem 0.3125rem rgba(0, 0, 0, 0.4),
        inset 0 -0.1875rem 0.25rem rgba(0, 0, 0, 0.3);
    color: var(--page-bg);
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
    transition:
        background-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
    white-space: nowrap;
}

.button:hover {
    background: #ff9a34;
    box-shadow:
        0 0.25rem 0.625rem rgba(0, 0, 0, 0.34),
        inset 0 -0.125rem 0.25rem rgba(0, 0, 0, 0.22);
    transform: translateY(-0.0625rem);
}

.button:active {
    transform: translateY(0);
}

.button:focus-visible {
    outline: 0.1875rem solid rgba(253, 141, 29, 0.45);
    outline-offset: 0.25rem;
}

.hero__note {
    width: 100%;
    font-size: 1.125rem;
    font-weight: 400;
    text-align: center;
}

.hero__note span {
    display: block;
}

.hero__terms {
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    white-space: normal;
}

@media (max-width: 73.75rem) {
    .hero {
        min-height: 45rem;
        grid-template-columns: minmax(0, 36.875rem) minmax(0, 35rem);
        gap: 1rem;
    }

    .hero__content {
        width: 36.875rem;
        max-width: 36.875rem;
    }

    .hero__art {
        width: 37.86763rem;
        height: 28.07888rem;
        transform: none;
        transform-origin: top right;
    }

    .hero__art-mask {
        width: 34.93881rem;
        height: 23.44394rem;
        -webkit-mask-position: -0.45288rem -0.29325rem;
        mask-position: -0.45288rem -0.29325rem;
        -webkit-mask-size: 38.496rem 28.88925rem;
        mask-size: 38.496rem 28.88925rem;
    }
}

@media (max-width: 64rem) {
    .hero {
        grid-template-columns: minmax(0, 42.5rem);
        min-height: 65rem;
        align-content: center;
        gap: 2rem;
        padding: 3.75rem 2rem;
    }

    .hero__content {
        grid-column: 1;
        grid-row: 2;
        width: 42.5rem;
        max-width: 100%;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }

    .hero__intro {
        width: 38.125rem;
        gap: 0.9375rem;
        align-items: center;
    }

    .hero__title span {
        display: inline-block;
        width: auto;
        transform-origin: center top;
    }

    .hero__art {
        grid-column: 1;
        grid-row: 1;
        width: 34.68288rem;
        height: 25.72419rem;
        opacity: 1;
        justify-self: center;
        transform: none;
        transform-origin: center;
    }

    .hero__art-mask {
        width: 32.00881rem;
        height: 21.47425rem;
        -webkit-mask-position: -0.41488rem -0.26869rem;
        mask-position: -0.41488rem -0.26869rem;
        -webkit-mask-size: 35.26763rem 26.46656rem;
        mask-size: 35.26763rem 26.46656rem;
    }

    .hero__title span:first-child {
        font-size: 5rem;
    }

    .hero__title span:last-child {
        font-size: 3rem;
    }

    .hero__title span:first-child,
    .hero__title span:last-child {
        width: auto;
    }

    .hero__text {
        width: 38.125rem;
        font-size: 1.125rem;
        line-height: 1.6;
        text-align: center;
    }

    .hero__proof {
        font-size: 1.25rem;
        text-align: center;
    }

    .hero__cta {
        width: 100%;
        align-items: center;
    }

    .hero__cta .button {
        width: auto;
        min-height: auto;
        padding: 0.75rem 3.75rem;
        font-size: 1.5rem;
        line-height: 1.6;
        white-space: nowrap;
    }

    .hero__note {
        font-size: 1.125rem;
        line-height: 1.6;
    }

    .hero__terms {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
        white-space: nowrap;
    }
}

@media (max-width: 38.75rem) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        min-height: 51.25rem;
        gap: 1.25rem;
        padding: 0.875rem 0.6875rem 2rem;
    }

    .hero__content,
    .hero__intro,
    .hero__text {
        min-width: 0;
        width: calc(100vw - 1.375rem);
        max-width: 100%;
    }

    .hero__content {
        gap: 1.25rem;
    }

    .hero__intro {
        gap: 1rem;
    }

    .hero__title span:first-child {
        font-size: 3.75rem;
    }

    .hero__title span:last-child {
        font-size: 2.25rem;
    }

    .hero__text {
        width: 100%;
        max-width: 22.5rem;
        font-size: 1rem;
        line-height: 1.5;
        overflow-wrap: break-word;
    }

    .hero__proof {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .hero__proof span {
        display: block;
    }

    .hero__proof span+span::before {
        content: none;
    }

    .hero__cta .button {
        padding: 0.5rem 1.25rem;
        font-size: 1.125rem;
        line-height: 1.3;
        white-space: normal;
        overflow-wrap: break-word;
        flex-direction: column;
        gap: 0;
    }

    .hero__cta .button span {
        display: block;
    }

    .hero__cta .button span+span::before {
        content: none;
    }

    .hero__note {
        width: 20.6875rem;
        max-width: 100%;
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .hero__note span {
        display: inline;
    }

    .hero__terms {
        font-size: 0.875rem;
        line-height: 1.5;
        text-align: center;
        white-space: normal;
    }

    .hero__terms span {
        display: block;
    }

    .hero__terms span+span::before {
        content: none;
    }

    .hero__art {
        width: 15.65175rem;
        height: 11.60888rem;
        opacity: 1;
    }

    .hero__art-mask {
        width: 14.445rem;
        height: 9.69094rem;
        -webkit-mask-position: -0.18719rem -0.12125rem;
        mask-position: -0.18719rem -0.12125rem;
        -webkit-mask-size: 15.91569rem 11.94388rem;
        mask-size: 15.91569rem 11.94388rem;
    }
}

.direct {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 67rem;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    overflow: hidden;
    padding: 5rem 0;
    background: #373022;
    color: var(--text);
}

.direct__header {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.direct__title {
    display: inline-block;
    margin: 0 0 -1.25rem;
    color: var(--text);
    font-family: var(--display-font);
    font-size: 3.75rem;
    font-weight: 400;
    line-height: 0.9;
    text-align: center;
    transform: scaleX(var(--display-scale-main));
    transform-origin: center top;
    text-transform: uppercase;
    white-space: nowrap;
}

.direct__badge {
    margin: 0;
    padding: 0.5rem 1.25rem;
    transform: rotate(-3deg) scaleX(var(--direct-badge-scale));
    border: 0.0625rem solid var(--accent);
    color: var(--accent);
    font-family: var(--display-font);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.direct__note {
    position: relative;
    max-width: 48.375rem;
    width: 100%;
    padding: 1.25rem 2.5rem;
    overflow: visible;
    background: transparent;
    color: #000;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    z-index: 2;
}

.direct__decor {
    position: absolute;
    z-index: -1;
    top: -1.5rem;
    left: -7.5rem;
    width: 11rem;
    height: 11.8125rem;
    background: url("../img/direct-decor.png") no-repeat;
    pointer-events: none;
    mix-blend-mode: color-dodge;
}

.direct__decor-secondary {
    position: absolute;
    z-index: -1;
    bottom: -7.8125rem;
    right: -6.4375rem;
    width: 11.625rem;
    height: 11.8125rem;
    background: url("../img/direct-decor-2.png") no-repeat;
    pointer-events: none;
}

.direct__note::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: -0.8125rem;
    width: 49.8125rem;
    height: 9.75rem;
    transform: rotate(-2deg);
    background: #191611;
    pointer-events: none;
}

.direct__note::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: var(--text);
    pointer-events: none;
}

.direct__note p {
    position: relative;
    z-index: 3;
    margin: 0;
}

.direct__comparison {
    position: relative;
    z-index: 2;
    display: grid;
    max-width: 73.75rem;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 0.0625rem solid #000;
    background: #373022;
}

.direct__column {
    min-width: 0;
    border-right: 0.0625rem solid #000;
}

.direct__column:last-child {
    border-right: 0;
}



.direct__column-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.5rem 1.25rem;
    border-bottom: 0.0625rem solid #000;
    background: #000;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.direct__column-title>span {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 0.25em;
    white-space: nowrap;
}

.direct__column-icon {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 1.25rem;
    object-fit: contain;
}

.direct__title-line {
    display: inline;
}

.direct__title-line+.direct__title-line::before {
    content: " ";
}

.direct__list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}

.direct__list li {
    display: flex;
    min-height: 3.0625rem;
    align-items: center;
    gap: 0.625rem;
    border-bottom: 0.0625rem solid #000;
    color: var(--text);
    font-size: 1.25rem;
    line-height: 1.6;
    padding-left: 5.625rem;
    width: 100%;
}

.direct__list li:nth-child(1) {
    background: #191611;
}

.direct__list li:nth-child(2) {
    background: rgba(25, 22, 17, 0.6);
}

.direct__list li:nth-child(3) {
    background: rgba(25, 22, 17, 0.3);
}

.direct__list li:nth-child(4) {
    background: rgba(25, 22, 17, 0.1);
}

.direct__list li:nth-child(5) {
    border-bottom: 0;
    background-color: #373022;
}


.direct__list img {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    object-fit: contain;
}

.direct__list span {
    min-width: 0;
    white-space: nowrap;
}

.direct__statement {
    position: relative;
    z-index: 2;
    width: calc(100% - 3rem);
    max-width: 73.75rem;
    width: min(73.75rem, calc(100% - 3rem));
    margin: 0;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.direct__cta {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.direct__note-small {
    margin: 0;
    color: var(--text);
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
    white-space: nowrap;
}

.direct__note-small span {
    display: inline;
}

.direct__note-small span+span::before {
    content: " ";
}

.direct__terms {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.direct__terms span {
    display: inline;
}

.direct__terms span+span::before {
    content: " | ";
}

@media (max-width: 73.75rem) {
    .direct {
        min-height: auto;
        padding: 3.75rem 2rem;
    }

    .direct__title {
        margin-bottom: -1rem;
        font-size: 3.25rem;
    }

    .direct__badge {
        font-size: 2rem;
    }

    .direct__note {
        padding: 1.25rem 2rem;
    }

    .direct__note::before {
        top: -0.6875rem;
        left: 50%;
        width: 39.4375rem;
        height: 100%;
        transform: translateX(-50%) rotate(-2deg);
    }

    .direct__list {
        align-items: flex-start;
    }


    .direct__column-title {
        font-size: 1rem;
    }

    .direct__list li {
        min-height: 2.625rem;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.125rem 0.5rem;
        font-size: 1rem;
    }

    .direct__list span {
        white-space: normal;
    }

    .direct__statement {
        font-size: 1.25rem;
    }

    .direct__cta .button {
        padding: 0.75rem 3.75rem;
        font-size: 1.25rem;
    }

    .direct__note-small {
        width: 35rem;
        max-width: 100%;
        white-space: normal;
    }

    .direct__note-small span {
        display: block;
    }

    .direct__note-small span+span::before {
        content: none;
    }
}

@media (max-width: 38.75rem) {
    .direct {
        width: 100vw;
        max-width: 100vw;
        gap: 1.25rem;
        padding: 2rem 0.75rem;
    }

    .direct__title {
        margin-bottom: -0.75rem;
        font-size: 2.25rem;
    }

    .direct__badge {
        padding: 0.25rem 0.75rem;
        font-size: 1.5rem;
        text-transform: uppercase;
    }

    .direct__note {

        max-width: none;
        padding: 1rem 0.5rem;
        font-size: 1.125rem;
        line-height: 1.5;
        text-align: left;
    }

    .direct__column-title {
        min-height: 4.625rem;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.375rem;
        padding: 1rem 0.5rem 0.25rem;
        font-size: 1.125rem;
        line-height: 1.15;
        text-align: left;
    }

    .direct__column-title>span {
        display: block;
        gap: 0;
        white-space: normal;
    }

    .direct__column-icon {
        width: 1.125rem;
        height: 1.125rem;
        flex-basis: 1.125rem;
    }

    .direct__column-title--direct .direct__column-icon {
        margin-top: 0.0625rem;
    }

    .direct__column-title--direct>span {
        display: block;
    }

    .direct__column-title .direct__title-line {
        display: block;
    }

    .direct__column-title .direct__title-line+.direct__title-line::before {
        content: none;
    }

    .direct__list li {
        min-height: 5.3125rem;
        align-items: center;
        padding: 0.125rem 0.5rem;
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .direct__list img {
        width: 0.75rem;
        height: 0.75rem;
        margin-top: 0;
    }

    .direct__list span {
        flex: 1 1 auto;
    }

    .direct__statement {
        width: 20rem;
        max-width: 100%;
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .direct__cta .button {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 1.25rem;
        font-size: 1.125rem;
        line-height: 1.3;
        white-space: normal;
    }

    .direct__cta .button span {
        display: block;
    }

    .direct__note-small {
        width: 20.625rem;
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .direct__note-small span {
        display: inline;
    }

    .direct__note-small span+span::before {
        content: " ";
    }

    .direct__terms {
        width: 20.625rem;
        max-width: 100%;
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .direct__terms span {
        display: block;
    }

    .direct__terms span+span::before {
        content: none;
    }

    .direct__decor,
    .direct__decor-secondary {
        display: none;
    }

}

.case-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.75rem;
    overflow: hidden;
    padding: 5rem 8.125rem;
    color: var(--text);
}

.case-section--dark {
    background: #191611;
}

.case-section--alt {
    background: #231e15;
}

.case-section__title {
    width: 73.75rem;
    max-width: 100%;
    margin: 0;
    color: var(--text);
    font-family: var(--display-font);
    font-size: 3.75rem;
    font-weight: 400;
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
}

.case-section__title span {
    display: inline;
}

.case-section__title span:last-child {
    color: var(--accent);
}

.case-section__content {
    display: flex;
    max-width: 73.75rem;
    width: 100%;
    flex-direction: column;
    gap: 1.25rem;
}

.case-card {
    display: grid;
    grid-template-columns: 22.5rem minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    border: 0.0625rem solid #373022;
}

.case-card__pain {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 1.25rem 0;
}

.case-card__intro {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.case-card__pill {
    margin: 0;
    border: 0.0625rem solid var(--accent);
    border-radius: 6.875rem;
    padding: 0.25rem 0.75rem;
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 0;
    line-height: 1.6;
    text-transform: uppercase;
}

.case-card__title {
    margin: 0;
    color: var(--text);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.case-card__title span {
    display: block;
}

.case-visual {
    position: relative;
    width: 22.5rem;
    height: 22.5rem;
    flex: 0 0 auto;
    overflow: hidden;
}

.case-section--dark .case-card__pain,
.case-section--dark .case-visual {
    background: #191611;
}

.case-section--alt .case-card__pain,
.case-section--alt .case-visual {
    background: #231e15;
}

.case-visual__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.case-panel {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 2rem 1.25rem 1.25rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.case-panel--problem {
    background: #373022;
    color: var(--text);
}

.case-panel--solution {
    background: var(--text);
    color: #191611;
    padding: 1.25rem;
}

.case-panel__label {
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
}

.case-panel p {
    margin: 0;
}

.case-panel strong {
    font-weight: 700;
}

.case-quotes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    color: var(--text);
}

.case-quote {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    padding: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.case-quote blockquote {
    margin: 0;
    font-style: italic;
}

.case-quote figcaption {
    font-weight: 700;
}

.case-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.case-cta .button {
    padding: 0.75rem 2.5rem;
    font-size: 1.5rem;
}

.case-cta .button span {
    display: inline;
}

.case-cta .button span+span::before {
    content: " ";
}

.case-cta p,
.case-terms {
    margin: 0;
    color: var(--text);
    text-align: center;
}

.case-cta p {
    font-size: 1.125rem;
    line-height: 1.6;
    white-space: nowrap;
}

.case-terms {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
}

@media (max-width: 73.75rem) {
    .case-section {
        gap: 3rem;
        padding: 4.5rem 2rem;
    }

    .case-section__title {
        font-size: 3.25rem;
    }

    .case-card {
        grid-template-columns: 20rem minmax(0, 1fr) minmax(0, 1fr);
    }

    .case-card__title {
        font-size: 1.5rem;
    }

    .case-visual {
        width: 20rem;
        height: 20rem;
        transform: scale(0.89);
        transform-origin: top center;
    }

    .case-panel {
        padding: 1.5rem 1.5rem 1.5rem 1.25rem;
        font-size: 1.125rem;
    }

    .case-cta p {
        max-width: 38.75rem;
        white-space: normal;
    }
}

@media (max-width: 56.25rem) {
    .case-section {
        gap: 2.5rem;
        padding: 3.75rem 2rem;
    }

    .case-section__content {
        gap: 0.75rem;
    }

    .case-card {
        grid-template-columns: 1fr 1fr;
    }

    .case-card__pain {
        position: relative;
        grid-row: 1 / span 2;
        align-items: flex-start;
        min-height: 29.375rem;
        padding: 1.25rem;
    }

    .case-card__intro {
        width: 15rem;
    }

    .case-visual {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 17.5rem;
        transform: none;
    }

    .case-panel {
        gap: 0.5rem;
        padding: 1rem;
        font-size: 1.125rem;
        line-height: 1.45;
    }

    .case-panel--problem {
        grid-column: 2;
        grid-row: 1;
    }

    .case-panel--solution {
        grid-column: 2;
        grid-row: 2;
    }

    .case-panel__label {
        line-height: 1.45;
    }

    .case-cta .button {
        width: 31.8125rem;
        min-height: 3.5rem;
        padding: 0.75rem 3.75rem;
        font-size: 1.25rem;
    }
}

@media (max-width: 38.75rem) {
    .case-section {
        gap: 1.25rem;
        padding: 2rem 0;
    }

    .case-section__title {
        font-size: 2.25rem;
        width: 100%;
        padding: 0 1rem;
    }

    .case-section__title span {
        display: block;
    }

    .case-section__content {
        width: 100%;
        gap: 0.75rem;
    }

    .case-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        border: 0;
    }

    .case-card__pain {
        position: relative;
        grid-row: auto;
        min-height: 17.5rem;
        padding: 0;
    }

    .case-card__intro {
        position: absolute;
        left: 1.25rem;
        bottom: 1.0625rem;
        z-index: 2;
        width: 17.5rem;
    }

    .case-card__title {
        font-size: 1.375rem;
        line-height: 1.3;
    }

    .case-visual {
        position: absolute;
        top: -0.9375rem;
        bottom: auto;
        left: 50%;
        height: 15rem;
        transform: translateX(-50%);
    }

    .case-panel {
        gap: 0.25rem;
        padding: 1rem;
        line-height: 1.5;
    }

    .case-panel--problem,
    .case-panel--solution {
        grid-column: 1;
        grid-row: auto;
    }

    .case-panel__label {
        line-height: 1.6;
    }

    .case-quote {
        padding: 0.5rem 1rem;
        line-height: 1.5;
    }

    .case-quotes {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .case-cta {
        width: 20.625rem;
        max-width: calc(100% - 2rem);
        margin: 0 auto;
    }

    .case-cta .button {
        width: 16.5625rem;
        min-height: 3.875rem;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 1.25rem;
        font-size: 1.125rem;
        line-height: 1.3;
        white-space: normal;
    }

    .case-cta .button span {
        display: block;
    }

    .case-cta .button span+span::before {
        content: none;
    }

    .case-cta p,
    .case-terms {
        max-width: 100%;
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .case-terms {
        width: 100%;
        padding: 0 1rem;
    }
}

.flow {
    position: relative;
    display: flex;
    min-height: 63.6875rem;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    overflow: hidden;
    padding: 5rem 8.125rem;
    background: #373022;
    color: var(--text);
}

.flow__header {
    position: relative;
    z-index: 3;
    display: flex;
    width: 56.25rem;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.625rem;
    gap: 0.625rem;
}

.flow__title {
    margin: 0 0 -1rem;
    color: var(--text);
    font-family: var(--display-font);
    font-size: 3.75rem;
    font-weight: 400;
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.flow__badge {
    margin: 0;
    border: 0.0625rem solid var(--accent);
    padding: 0.5rem 1.25rem;
    color: var(--accent);
    font-family: var(--display-font);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-3deg);
    white-space: nowrap;
}

.flow-decor-box {
    position: relative;
    max-width: 73.75rem;
    width: 100%;
    margin: 0 auto;
}

.flow__steps {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0;
    padding: 7.3125rem 0 0;
    list-style: none;
}

.flow__step {
    position: relative;
    display: flex;
    min-width: 0;
}

.flow__step::after {
    content: "";
    position: absolute;
    z-index: 3;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.flow__step:nth-child(1)::after {
    top: -4.5rem;
    left: 8.0625rem;
    width: 11.875rem;
    height: 2.9375rem;
    background-image: url("../img/flow-arrow-1.svg");
}

.flow__step:nth-child(2)::after {
    top: -4.375rem;
    left: 9.9375rem;
    width: 10.1875rem;
    height: 2.625rem;
    background-image: url("../img/flow-arrow-2.svg");
}

.flow__step:nth-child(3)::after {
    top: -4.0625rem;
    left: 9rem;
    width: 11.625rem;
    height: 1.875rem;
    background-image: url("../img/flow-arrow-3.svg");
}

.flow__step:nth-child(4)::after {
    top: -4.0625rem;
    left: 10.25rem;
    width: 10.1875rem;
    height: 2.625rem;
    background-image: url("../img/flow-arrow-4.svg");
}

.flow__number {
    position: absolute;
    z-index: 1;
    top: -7.3125rem;
    left: 0;
    width: 100%;
    color: var(--text);
    font-family: var(--display-font);
    font-size: 11.25rem;
    font-weight: 400;
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
}

.flow__card {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    min-height: 19.4375rem;
    flex-direction: column;
    gap: 0.75rem;
    border: 0.125rem solid var(--text);
    padding: 1rem;
    color: var(--text);
}

.flow__step+.flow__step .flow__card {
    margin-left: -0.125rem;
    width: calc(100% + 0.125rem);
}

.flow__step:nth-child(1) .flow__card {
    background: #231e15;
}

.flow__step:nth-child(2) .flow__card {
    background: #2b251a;
}

.flow__step:nth-child(3) .flow__card {
    background: #373022;
}

.flow__step:nth-child(4) .flow__card {
    background: #5f5946;
}

.flow__step:nth-child(5) .flow__card {
    background: var(--text);
    color: #231e15;
}

.flow__card h3,
.flow__card p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.6;
}

.flow__card h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.flow__card strong {
    font-weight: 700;
}

.flow__statement {
    position: relative;
    z-index: 2;
    width: 73.75rem;
    max-width: 100%;
    margin: 0;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.flow__statement span {
    display: inline;
}

.flow__statement span+span::before {
    content: " ";
}

.flow__cta {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.flow__cta .button {
    width: 34.1875rem;
    min-height: 3.875rem;
    font-size: 1.5rem;
}

.flow__cta .button span {
    display: inline;
}

.flow__cta .button span+span::before {
    content: " ";
}

.flow__cta p,
.flow__terms {
    margin: 0;
    color: var(--text);
    text-align: center;
}

.flow__cta p {
    font-size: 1.125rem;
    line-height: 1.6;
    white-space: nowrap;
}

.flow__cta p span {
    display: inline;
}

.flow__cta p span+span::before {
    content: " ";
}

.flow__terms {
    width: 73.75rem;
    max-width: 100%;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
}

.flow__terms span {
    display: inline;
}

.flow__terms span+span::before {
    content: " | ";
}

.flow__decor {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.flow__decor img {
    display: block;
    width: 100%;
    height: auto;
}

.flow__decor--left {
    top: 5.75rem;
    width: 5.2905rem;
    height: 5.33856rem;
    left: -3.75rem;
}

.flow__leaf--left {
    top: 7.4375rem;
    width: 11rem;
    height: 11.8125rem;
    left: -6.3125rem;
    z-index: 2;
}

.flow__decor--right {
    top: 90%;
    width: 5.84669rem;
    height: 5.89981rem;
    right: -2.125rem;
}

.flow__leaf--right {
    top: 88%;
    width: 11rem;
    height: 11.8125rem;
    right: -2.375rem;
    z-index: 2;
}

@media (max-width: 73.75rem) {
    .flow {
        min-height: 64rem;
        gap: 2.5rem;
        padding: 3.75rem 2rem;
    }

    .flow__title {
        font-size: 3.25rem;
    }

    .flow__steps {
        display: flex;
        flex-direction: column;
        padding: 0 0 1.3125rem;
    }

    .flow__step {
        display: block;
        padding-left: 3.0625rem;
    }

    .flow__step::after {
        content: none;
    }

    .flow__number {
        top: -0.875rem;
        left: 0.3125rem;
        width: 5rem;
        font-size: 11.25rem;
        line-height: 0.9;
        text-align: left;
    }

    .flow__card,
    .flow__step+.flow__step .flow__card {
        width: 100%;
        min-height: auto;
        height: 100%;
        margin-left: 0;
        gap: 0.25rem;
        padding: 1.25rem;
    }

    .flow__step:nth-child(1),
    .flow__step:nth-child(5) {
        height: 8.375rem;
    }

    .flow__step:nth-child(2),
    .flow__step:nth-child(3),
    .flow__step:nth-child(4) {
        height: 10.1875rem;
    }

    .flow__card h3 {
        font-size: 1.25rem;
        line-height: 1.6;
    }

    .flow__card p {
        font-size: 1.125rem;
        line-height: 1.6;
    }

    .flow__statement {
        width: auto;
        font-size: 1.25rem;
        white-space: nowrap;
    }

    .flow__cta .button {
        width: 31.8125rem;
        min-height: 3.5rem;
        padding: 0.75rem 3.75rem;
        font-size: 1.25rem;
    }

    .flow__cta p {
        white-space: normal;
    }

    .flow__cta p span {
        display: block;
    }

    .flow__cta p span+span::before {
        content: none;
    }

    .flow__terms {
        width: auto;
        white-space: nowrap;
    }

    .flow__decor--left {
        top: 4.625rem;
        width: 3.75rem;
        height: 3.78406rem;
        left: 0;
    }

    .flow__leaf--left {
        top: 5.9375rem;
        width: 5rem;
        height: 5.375rem;
        left: -1.875rem;
    }

    .flow__decor--right {
        top: 90%;
        width: 4.30594rem;
        height: 4.34506rem;
        right: -2.125rem;
    }

    .flow__leaf--right {
        top: 94%;
        width: 5rem;
        height: 5.36931rem;
        right: -2.5rem;
    }

}

@media (max-width: 38.75rem) {
    .flow {
        gap: 1.25rem;
        padding: 2rem 0.5rem;
    }

    .flow__header {
        margin-bottom: 0.25rem;
    }

    .flow__title {
        margin-bottom: -0.75rem;
        font-size: 2.25rem;
    }

    .flow__badge {
        padding: 0.25rem 0.75rem;
        font-size: 2rem;
    }

    .flow__step {
        padding-left: 1.6875rem;
    }

    .flow__number {
        top: -0.375rem;
        left: -0.375rem;
        width: 3rem;
        font-size: 9.375rem;
    }

    .flow__card,
    .flow__step+.flow__step .flow__card {
        padding: 1rem;
    }

    .flow__step:nth-child(1) {
        height: 12.75rem;
    }

    .flow__step:nth-child(2) {
        height: 12.5625rem;
    }

    .flow__step:nth-child(3),
    .flow__step:nth-child(4),
    .flow__step:nth-child(5) {
        height: 10.875rem;
    }

    .flow__card h3 {
        font-size: 1.25rem;
        line-height: 1.5;
    }

    .flow__card p {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .flow__statement {
        width: 100%;
        font-size: 1.125rem;
        line-height: 1.5;
        white-space: normal;
    }

    .flow__statement span {
        display: block;
    }

    .flow__statement span+span::before {
        content: none;
    }

    .flow__cta .button {
        width: 16.5625rem;
        min-height: 3.875rem;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 1.25rem;
        font-size: 1.125rem;
        line-height: 1.3;
        white-space: normal;
    }

    .flow__cta .button span {
        display: block;
    }

    .flow__cta .button span+span::before {
        content: none;
    }

    .flow__cta p {
        width: 20.625rem;
        max-width: calc(100vw - 1rem);
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .flow__cta p span {
        display: inline;
    }

    .flow__cta p span+span::before {
        content: " ";
    }

    .flow__terms {
        width: 100%;
        font-size: 0.875rem;
        line-height: 1.5;
        white-space: normal;
    }

    .flow__terms span {
        display: block;
    }

    .flow__terms span+span::before {
        content: none;
    }


    .flow__decor--left {
        top: 5rem;
        width: 2.5rem;
        height: 2.52275rem;
        left: 0;
    }

    .flow__leaf--left {
        top: 5.9375rem;
        width: 3.125rem;
        height: 3.375rem;
        left: -0.75rem;
    }

    .flow__decor--right {
        top: 96%;
        width: 2.69119rem;
        height: 2.71569rem;
        right: -0.625rem;
    }

    .flow__leaf--right {
        top: 97%;
        width: 3.75rem;
        height: 4.027rem;
        right: -1rem;
    }

}

.questions {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    overflow: hidden;
    padding: 5rem 8.125rem;
    background: #191611;
    color: var(--text);
    z-index: 2;
    position: relative;
}

.questions__decor {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    transform-origin: center;
}

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

.questions__title,
.questions__list,
.questions__statement,
.questions__cta,
.questions__terms {
    position: relative;
    z-index: 1;
}



.questions__title {
    width: 56.25rem;
    max-width: 100%;
    margin: 0;
    color: var(--text);
    font-family: var(--display-font);
    font-size: 3.75rem;
    font-weight: 400;
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.questions__title span {
    display: inline;
}

.questions__title span+span::before {
    content: " ";
}

.questions__list {
    display: flex;
    max-width: 73.75rem;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    position: relative;
}

.questions__item {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0;
}

.questions__question {
    margin: 0;
}

.questions__trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    border: 0;
    padding: 0.75rem 2.5rem 0.75rem 1.25rem;
    background: #373022;
    color: var(--text);
    cursor: pointer;
    font-family: var(--body-font);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: left;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease;
}

.questions__trigger::after {
    content: "";
    position: absolute;
    right: 0.9375rem;
    display: block;
    flex: 0 0 auto;
    width: 0.75rem;
    height: 0.75rem;
    border: solid currentColor;
    border-width: 0 0.1875rem 0.1875rem 0;
    transform: rotate(45deg);
    transition: transform 220ms ease;
}

.questions__trigger[aria-expanded="true"]::after {
    transform: rotate(-135deg);
}

.questions__item.is-open .questions__trigger {
    background: var(--text);
    color: #373022;
}

.questions__trigger:hover,
.questions__trigger:focus-visible {
    background: #4a402e;
}

.questions__item.is-open .questions__trigger:hover,
.questions__item.is-open .questions__trigger:focus-visible {
    background: #d2ccb1;
}

.questions__trigger:focus-visible {
    outline: 0.1875rem solid rgba(253, 141, 29, 0.45);
    outline-offset: 0.1875rem;
}

.questions__answer {
    --questions-answer-padding-y: 1.25rem;
    --questions-answer-padding-x: 2.5rem;

    display: flex;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: 0.125rem solid transparent;
    outline-offset: -0.125rem;
    overflow: hidden;
    padding: 0 var(--questions-answer-padding-x);
    background: #191611;
    opacity: 0;
    transform: translateY(-0.25rem);
    transition:
        max-height 360ms cubic-bezier(0.22, 0.61, 0.36, 1),
        margin-top 360ms cubic-bezier(0.22, 0.61, 0.36, 1),
        padding-top 360ms cubic-bezier(0.22, 0.61, 0.36, 1),
        padding-bottom 360ms cubic-bezier(0.22, 0.61, 0.36, 1),
        opacity 240ms ease,
        transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1),
        outline-color 180ms ease;
    will-change: max-height, margin-top, padding-top, padding-bottom, opacity, transform;
}

.questions__item.is-open .questions__answer {
    margin-top: 0.5rem;
    padding-top: var(--questions-answer-padding-y);
    padding-bottom: var(--questions-answer-padding-y);
    outline-color: var(--text);
    opacity: 1;
    transform: translateY(0);
}

.questions__answer[hidden] {
    display: none;
}

.questions__answer p {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    padding: 0;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
}

.questions__answer strong {
    font-weight: 700;
}

.questions__statement {
    width: 100%;
    margin: 0;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.questions__statement span {
    display: block;
}

.questions__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.questions__cta .button {
    width: 34.1875rem;
    min-height: 3.875rem;
    padding: 0.75rem 2.5rem;
    font-size: 1.5rem;
}

.questions__cta .button span {
    display: inline;
}

.questions__cta .button span+span::before {
    content: " ";
}

.questions__cta p,
.questions__terms {
    margin: 0;
    color: var(--text);
    text-align: center;
}

.questions__cta p {
    font-size: 1.1875rem;
    line-height: 1.6;
    white-space: nowrap;
}

.questions__cta p span {
    display: inline;
}

.questions__cta p span+span::before {
    content: " ";
}

.questions__terms {
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
}

.questions__terms span {
    display: inline;
}

.questions__terms span+span::before {
    content: " | ";
}

.questions__mark {
    position: absolute;
    top: -3.125rem;
    left: 0.1875rem;
    z-index: 1;
    color: var(--text);
    font-family: var(--display-font);
    font-size: 11.25rem;
    font-weight: 400;
    line-height: 0.9;
    pointer-events: none;
    text-transform: uppercase;
    transform: translateX(-50%) rotate(4deg);
    transform-origin: center;
}

@media (max-width: 73.75rem) {
    .questions {
        padding: 3.75rem 2rem;
    }

    .questions__title {
        width: 100%;
        font-size: 3.25rem;
        transform: scaleX(0.98);
        transform-origin: center top;
        white-space: nowrap;
    }

    .questions__item {
        gap: 0;
    }

    .questions__trigger {
        padding: 0.5rem 2rem 0.5rem 1rem;
        font-size: 1.125rem;
        white-space: normal;
    }

    .questions__answer {
        --questions-answer-padding-y: 1rem;
        --questions-answer-padding-x: 1.25rem;
    }

    .questions__answer p {
        font-size: 1.125rem;
        line-height: 1.6;
    }

    .questions__statement {
        font-size: 1.25rem;
        white-space: nowrap;
    }

    .questions__cta .button {
        width: 31.8125rem;
        min-height: 3.5rem;
        padding: 0.75rem 3.75rem;
        font-size: 1.25rem;
    }

    .questions__cta p {
        font-size: 1.125rem;
        white-space: normal;
    }

    .questions__cta p span {
        display: block;
    }

    .questions__cta p span+span::before {
        content: none;
    }

    .questions__terms {
        white-space: nowrap;
    }

    .questions__mark {
        font-size: 7.5rem;
    }
}

@media (max-width: 38.75rem) {
    .questions {
        gap: 1.25rem;
        padding: 2rem 1rem;
    }

    .questions__title {
        font-size: 2.25rem;
        line-height: 0.9;
        transform: none;
        white-space: normal;
    }

    .questions__title span {
        display: block;
    }

    .questions__title span+span::before {
        content: none;
    }

    .questions__list {
        gap: 1rem;
    }

    .questions__trigger {
        background: var(--text);
        color: #373022;
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .questions__answer {
        --questions-answer-padding-y: 0.5rem;
        --questions-answer-padding-x: 0.75rem;
    }

    .questions__answer p {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .questions__statement {
        font-size: 1.125rem;
        line-height: 1.5;
        white-space: normal;
    }

    .questions__statement span {
        display: inline;
    }

    .questions__statement span+span::before {
        content: " ";
    }

    .questions__cta .button {
        width: 16.5625rem;
        min-height: 3.875rem;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 1.25rem;
        font-size: 1.125rem;
        line-height: 1.3;
        white-space: normal;
    }

    .questions__cta .button span {
        display: block;
    }

    .questions__cta .button span+span::before {
        content: none;
    }

    .questions__cta p {
        width: 20.625rem;
        max-width: 100%;
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .questions__cta p span {
        display: inline;
    }

    .questions__cta p span+span::before {
        content: " ";
    }

    .questions__terms {
        font-size: 0.875rem;
        line-height: 1.5;
        white-space: normal;
    }

    .questions__terms span {
        display: block;
    }

    .questions__terms span+span::before {
        content: none;
    }

    .questions__mark {
        color: #373022;
        font-size: 7.5rem;
    }
}

.closing {
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 3.75rem 2rem 4.5rem;
    background: #373022;
    color: var(--text);
}

.closing__inner {
    display: grid;
    width: 100%;
    max-width: 90rem;
    grid-template-columns: 36.5625rem minmax(0, 48.625rem);
    align-items: center;
    justify-content: center;
}

.closing__art {
    display: block;
    width: 38.75rem;
    height: 26.375rem;
    justify-self: start;
    object-fit: contain;
    pointer-events: none;
}

.closing__content {
    display: flex;
    width: 48.625rem;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
}

.closing__copy {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 1.25rem;
}

.closing__title {
    width: max-content;
    max-width: 100%;
    margin: 0;
    color: var(--text);
    font-family: var(--display-font);
    font-size: 3.75rem;
    font-weight: 400;
    line-height: 0.9;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.closing__text {
    width: 100%;
    color: var(--text);
    font-size: 1.125rem;
    line-height: 1.6;
}

.closing__text p {
    margin: 0;
}

.closing__text p+p {
    margin-top: 1.25rem;
}

.closing__text strong {
    font-weight: 700;
}

.closing__lead {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 0.0625rem;
    text-underline-offset: 0.3125rem;
}

.closing__statement {
    width: 36.625rem;
    max-width: 100%;
    margin: 0;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
}

.closing__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.closing__cta .button {
    width: 36.625rem;
    min-height: 4.09938rem;
    padding: 0.75rem 2.5rem;
    font-size: 1.625rem;
}

.closing__cta .button span {
    display: inline;
}

.closing__cta .button span+span::before {
    content: " ";
}

.closing__cta p,
.closing__terms {
    margin: 0;
    color: var(--text);
}

.closing__cta p {
    width: 36.625rem;
    max-width: 100%;
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
}

.closing__cta p span {
    display: inline;
}

.closing__cta p span+span::before {
    content: " ";
}

.closing__terms {
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: left;
}

.closing__terms span {
    display: inline;
}

.closing__terms span+span::before {
    content: " | ";
}

@media (max-width: 73.75rem) {
    .closing {
        padding: 3.75rem 2rem;
    }

    .closing__inner {
        display: flex;
        width: 100%;
        min-height: auto;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .closing__art {
        flex: 0 0 auto;
        width: 35rem;
        height: 23.0625rem;
    }

    .closing__content {
        display: flex;
        width: 100%;
        max-width: none;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .closing__copy {
        gap: 1.25rem;
        padding-top: 1.25rem;
    }

    .closing__title {
        font-size: 3.25rem;
        text-align: left;
    }

    .closing__text {
        font-size: 1.125rem;
        line-height: 1.6;
    }

    .closing__text p+p {
        margin-top: 1rem;
    }

    .closing__statement {
        width: 100%;
        font-size: 1.25rem;
        line-height: 1.6;
        text-align: center;
    }

    .closing__statement::first-line {
        line-height: 1.6;
    }

    .closing__cta {
        width: 100%;
        align-items: center;
    }

    .closing__cta .button {
        width: 31.8125rem;
        min-height: 3.5rem;
        padding: 0.75rem 3.75rem;
        font-size: 1.25rem;
    }

    .closing__cta p {
        width: 100%;
        font-size: 1.125rem;
        line-height: 1.6;
    }

    .closing__cta p span {
        display: block;
    }

    .closing__cta p span+span::before {
        content: none;
    }

    .closing__terms {
        text-align: center;
        white-space: nowrap;
    }
}

@media (max-width: 38.75rem) {
    .closing {
        padding: 2rem 1rem;
    }

    .closing__inner,
    .closing__content {
        gap: 1.5rem;
    }

    .closing__art {
        max-width: 21.25rem;
        width: 100%;
        height: 14rem;
    }

    .closing__copy {
        gap: 1.25rem;
        padding-top: 1.25rem;
    }

    .closing__title {
        font-size: 2.5rem;
        font-size: clamp(2.125rem, 10.667vw, 2.5rem);
        line-height: 0.9;
    }

    .closing__text {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .closing__text p+p {
        margin-top: 0.75rem;
    }

    .closing__lead {
        text-underline-offset: 0.1875rem;
    }

    .closing__statement {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .closing__cta .button {
        width: 16.5625rem;
        min-height: 3.875rem;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 1.25rem;
        font-size: 1.125rem;
        line-height: 1.3;
        white-space: normal;
    }

    .closing__cta .button span {
        display: block;
    }

    .closing__cta .button span+span::before {
        content: none;
    }

    .closing__cta p {
        width: 20.625rem;
        max-width: 100%;
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .closing__cta p span {
        display: inline;
    }

    .closing__cta p span+span::before {
        content: " ";
    }

    .closing__terms {
        font-size: 0.875rem;
        line-height: 1.5;
        white-space: normal;
    }

    .closing__terms span {
        display: block;
    }

    .closing__terms span+span::before {
        content: none;
    }
}

.site-footer {
    display: flex;
    min-height: 4rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1.5rem;
    padding: 1rem 2.5rem;
    padding: 1rem clamp(1rem, 3vw, 2.5rem);
    background: #191611;
    color: var(--text);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
}

.site-footer__copy,
.site-footer__contact {
    min-width: 0;
    margin: 0;
    padding: 0;
}

.site-footer__copy {
    flex: 0 1 auto;
}

.site-footer__contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0 0.25rem;
    text-align: right;
    white-space: normal;
}

.site-footer__contact span {
    display: inline;
}

.site-footer__contact span:first-child::after {
    content: " ";
}

.site-footer__contact span+span::before {
    content: none;
}

.site-footer__contact a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-skip-ink: none;
    word-break: break-word;
    overflow-wrap: anywhere;
}

@media (max-width: 80rem) {
    .site-footer {
        min-height: 7.125rem;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 1rem;
        padding: 1.25rem 2rem;
        line-height: 1;
    }

    .site-footer__contact {
        display: block;
        width: 41.5rem;
        max-width: 100%;
        line-height: 1.3;
        text-align: left;
        white-space: normal;
    }

    .site-footer__contact span {
        display: inline;
    }

    .site-footer__contact span:first-child {
        display: block;
    }

    .site-footer__contact a {
        margin-left: 0.25rem;
    }
}

@media (max-width: 38.75rem) {
    .site-footer {
        min-height: 7.75rem;
        padding: 1.25rem 1rem;
        font-size: 0.875rem;
    }

    .site-footer__contact {
        width: 19.625rem;
        line-height: 1.3;
    }

    .site-footer__contact span:first-child {
        display: inline;
    }

    .site-footer__contact span:nth-child(2) {
        display: inline;
    }

    .site-footer__contact span:nth-child(2)::before {
        content: none;
    }

    .site-footer__contact a {
        margin-left: 0;
    }
}

@media (max-width: 38.75rem) {
    .hero__title,
    .hero__title span,
    .direct__title,
    .direct__badge,
    .flow__title,
    .flow__badge,
    .questions__title,
    .closing__title {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: normal;
    }

    .hero__title span,
    .direct__title {
        transform: none;
    }

    .direct__title,
    .flow__title,
    .questions__title,
    .closing__title {
        text-align: center;
    }
}

body.modal-open {
    overflow: hidden;
}

.lead-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.lead-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lead-modal__backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    background: rgba(22, 19, 14, 0.5);
    -webkit-backdrop-filter: blur(0.4375rem);
    backdrop-filter: blur(0.4375rem);
}

.lead-modal__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    width: 45rem;
    max-width: calc(100vw - 4rem);
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--text);
    color: var(--page-bg);
    text-align: center;
}

.lead-modal__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    width: 2rem;
    height: 2rem;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(25, 22, 17, 0.12);
    color: var(--page-bg);
    cursor: pointer;
    font: 700 1.75rem/1 var(--body-font);
    transition: background-color 160ms ease, transform 160ms ease;
}

.lead-modal__close:hover,
.lead-modal__close:focus-visible {
    background: rgba(25, 22, 17, 0.2);
    transform: translateY(-0.0625rem);
}

.lead-modal__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.lead-modal__title {
    width: 35.125rem;
    max-width: 100%;
    margin: 0;
    color: var(--page-bg);
    font-family: var(--display-font);
    font-size: 3.75rem;
    font-weight: 400;
    line-height: 0.9;
    text-transform: uppercase;
}

.lead-modal__desc {
    max-width: 40rem;
    margin: 0;
    color: var(--page-bg);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
}

.lead-modal__form {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.lead-modal__fields {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
    padding-bottom: 1.25rem;
}

.lead-modal__field {
    position: relative;
    display: flex;
    width: 12.5rem;
    flex-direction: column;
}

.lead-modal__label,
.lead-modal__status {
    position: absolute;
    width: 0.0625rem;
    height: 0.0625rem;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.lead-modal__field input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    border: 0;
    border-bottom: 0.0625rem solid #373022;
    border-radius: 0;
    padding: 0.25rem 0.75rem;
    background: transparent;
    color: var(--page-bg);
    font: 400 1.25rem/1.6 var(--body-font);
    outline: none;
}

.lead-modal__field input::placeholder {
    color: var(--page-bg);
    opacity: 0.5;
}

.lead-modal__field input:focus {
    border-bottom-color: var(--accent);
}

.lead-modal__field.is-invalid input {
    border-bottom-color: #a62010;
}

.lead-modal__error {
    display: none;
    margin-top: 0.375rem;
    color: #a62010;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

.lead-modal__field.is-invalid .lead-modal__error {
    display: block;
}

.lead-modal__submit {
    min-width: 11.4375rem;
    font-size: 1.625rem;
}

@supports not selector(:focus-visible) {

    .button:focus,
    .questions__trigger:focus,
    .lead-modal__close:focus {
        outline: 0.1875rem solid rgba(253, 141, 29, 0.45);
        outline-offset: 0.25rem;
    }
}

@media (max-width: 73.75rem) {

    .lead-modal__close {
        top: 0.5rem;
        right: 0.5rem;
    }

    .lead-modal__title {
        font-size: 3.25rem;
    }

    .lead-modal__fields {
        max-width: 100%;
        flex-direction: column;
        gap: 2.5rem;
    }

    .lead-modal__field {
        width: 100%;
    }

    .lead-modal__submit {
        font-size: 1.5rem;
    }
}

@media (max-width: 38.75rem) {
    .lead-modal {
        padding: 0.625rem;
    }

    .lead-modal__dialog {
        padding: 2rem 1rem;
    }

    .lead-modal__header {
        gap: 1.5rem;
    }

    .lead-modal__title {
        width: 14.875rem;
        font-size: 2.25rem;
    }

    .lead-modal__fields {
        width: 100%;
        gap: 1.25rem;
    }

    .lead-modal__field input {
        font-size: 1.125rem;
    }

    .lead-modal__submit {
        width: 100%;
        min-height: 2.875rem;
        padding: 0.5rem 2.5rem;
        font-size: 1.125rem;
    }
}

@media (max-width: 22.5rem) {
    .direct__list li {
        font-size: 1rem;
    }
}
