:root {
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-text: #030303;
    --color-muted: #a9b6d6;
    --color-accent: #12a5dc;
    --color-accent-dark: #0a8fc0;
    --color-border: #d6ddeb;
    --color-pill: #d7deec;
    --color-pill-text: #10234a;
    --shadow-soft: 0 18px 48px rgba(16, 35, 74, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

body.modal-is-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    width: min(100% - 48px, 1560px);
    min-height: 82px;
    position: sticky;
    top: 0;
    z-index: 50;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 0 76px;
    background: var(--color-bg);
    border-bottom: 1px solid rgba(214, 221, 235, 0.75);
    box-shadow: none;
    transform: translateY(0);
    transition:
        background-color 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.site-header.is-hidden {
    pointer-events: none;
    transform: translateY(-110%);
}

.site-header.is-frosted {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 18px 46px rgba(7, 31, 77, 0.1);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    width: 188px;
    flex: 0 0 auto;
}

.site-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    color: var(--color-pill-text);
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus {
    color: var(--color-accent-dark);
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--color-pill-text);
    font-size: 1rem;
    line-height: 1.1;
    white-space: nowrap;
}

.download-button:hover,
.download-button:focus {
    color: var(--color-accent-dark);
}

.download-button__icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(18, 165, 220, 0.12);
    color: var(--color-accent);
}

.download-button__icon svg {
    width: 19px;
    height: 19px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.download-button:hover .download-button__icon,
.download-button:focus .download-button__icon {
    background: rgba(10, 143, 192, 0.16);
    color: var(--color-accent-dark);
}

.language-flag {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
}

.language-flag img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.nav-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: var(--color-surface);
    cursor: pointer;
}

.nav-toggle__bar {
    width: 18px;
    height: 2px;
    background: var(--color-text);
}

main {
    flex: 1;
}

.home-hero {
    width: min(100% - 48px, 1560px);
    min-height: 544px;
    margin: 85px auto 0;
    padding: 0 60px;
    display: flex;
    align-items: center;
    border-radius: 42px;
    background: var(--color-accent);
    color: #ffffff;
    overflow: visible;
}

.home-hero__inner {
    width: 100%;
    min-height: inherit;
    display: grid;
    grid-template-columns: minmax(390px, 0.82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: 42px;
}

.home-hero__content {
    max-width: 620px;
    position: relative;
    z-index: 2;
}

.home-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.75rem, 4vw, 4.25rem);
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 800;
}

.home-hero h1 span {
    white-space: nowrap;
}

.home-hero p {
    max-width: 610px;
    margin: 34px 0 0;
    color: #ffffff;
    font-size: 1.28rem;
    line-height: 1.32;
}

.service-tags {
    max-width: 620px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 38px;
}

.service-tags span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(215, 222, 236, 0.68);
    color: var(--color-pill-text);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(16, 35, 74, 0.08);
}

.service-tags span:last-child {
    background: transparent;
    box-shadow: none;
    color: #726f70;
    padding-right: 0;
}

.store-badges {
    display: inline-flex;
    width: 398px;
    max-width: 100%;
    margin-top: 44px;
}

.store-badges img {
    display: block;
    width: 100%;
    height: auto;
}

.home-hero__media {
    justify-self: end;
    align-self: center;
    width: min(35vw, 520px);
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -54px 5% -46px 0;
}

.home-hero__media img {
    width: 100%;
    min-width: 420px;
    height: auto;
    display: block;
    transform: rotate(14deg);
    filter: drop-shadow(0 24px 24px rgba(7, 31, 77, 0.2));
}

.simplicity-section,
.how-section {
    width: min(100% - 48px, 1380px);
    margin: 0 auto;
}

.simplicity-section {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: 88px;
    padding: 138px 0 78px;
}

.simplicity-section__copy {
    padding-left: 18px;
}

.simplicity-section h2,
.how-section h2 {
    margin: 0;
    color: #0c1d4b;
    font-size: clamp(4.1rem, 5.4vw, 5.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
}

.how-section h2 span {
    white-space: nowrap;
}

.simplicity-section p {
    max-width: 480px;
    margin: 46px 0 0;
    color: var(--color-muted);
    font-size: 1.55rem;
    line-height: 1.34;
}

.simplicity-section__media {
    justify-self: end;
    width: min(100%, 680px);
}

.simplicity-section__media img,
.how-section__search img {
    display: block;
    width: 100%;
    height: auto;
}

.how-section {
    min-height: 470px;
    display: grid;
    grid-template-columns: minmax(360px, 0.8fr) minmax(520px, 1.2fr);
    align-items: center;
    gap: 64px;
    padding: 0 0 88px;
    overflow: hidden;
}

.how-section__copy {
    position: relative;
    z-index: 2;
    padding-left: 18px;
}

.how-section__search {
    width: min(100%, 780px);
    justify-self: end;
    transform: translateX(160px);
    opacity: 0;
    filter: blur(10px);
    transition:
        opacity 700ms ease,
        transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 700ms ease;
}

.how-section__search.is-visible {
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
}

.steps-section {
    width: min(100% - 48px, 1560px);
    min-height: 345px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
}

.step-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 48px;
    padding: 46px 76px;
    background: #eaf7ff;
    color: #13254f;
}

.step-card--middle {
    background: #cbeeff;
    color: #0b1d49;
}

.step-card--dark {
    background: #0b1d49;
    color: #ffffff;
}

.step-card__number {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #51d6f4;
    color: #091f4d;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
}

.step-card--middle .step-card__number {
    background: #0b1d49;
    color: #51d6f4;
}

.step-card h3 {
    margin: 0;
    font-size: 1.75rem;
    line-height: 1.05;
    font-weight: 800;
}

.step-card p {
    max-width: 440px;
    margin: 8px 0 0;
    font-size: 1.45rem;
    line-height: 1.25;
    white-space: normal;
}

.pro-section {
    position: relative;
    min-height: 850px;
    margin-top: 0;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(2, 169, 219, 0.97) 0%, rgba(6, 132, 184, 0.98) 48%, rgba(7, 31, 77, 1) 100%),
        #0789bf;
    color: #ffffff;
}

.pro-section::after {
    content: "";
    position: absolute;
    right: 13%;
    bottom: 56px;
    left: 13%;
    z-index: 1;
    height: 235px;
    background: url("/assets/img/pattern.webp") center bottom / cover no-repeat;
    opacity: 0.38;
}

.pro-section__content {
    position: relative;
    z-index: 4;
    width: min(100% - 48px, 1120px);
    margin: 0 auto;
    padding-top: 34px;
    text-align: center;
}

.pro-section h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(3.9rem, 4.6vw, 4.95rem);
    font-weight: 300;
    line-height: 1.34;
    letter-spacing: 0;
}

.pro-section p {
    margin: 34px auto 0;
    color: #65d6f4;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.3;
}

.pro-section__people {
    position: absolute;
    z-index: 2;
    right: 8%;
    bottom: -42px;
    left: 8%;
    width: 84%;
    height: auto;
    display: block;
}

.final-cta {
    width: min(100% - 48px, 1380px);
    margin: 0 auto;
    padding: 112px 0 72px;
}

.final-cta__panel {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: visible;
    border-radius: 42px;
    background: var(--color-accent);
    color: #ffffff;
}

.final-cta__content {
    width: min(52%, 620px);
    padding: 78px 0 78px 56px;
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    margin: 0;
    font-size: clamp(2.45rem, 3vw, 3.45rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0;
}

.final-cta p {
    max-width: 520px;
    margin: 32px 0 0;
    font-size: 1.18rem;
    line-height: 1.3;
}

.final-cta__badges {
    width: 405px;
    max-width: 100%;
    display: inline-flex;
    margin-top: 56px;
}

.final-cta__badges img {
    width: 100%;
    height: auto;
    display: block;
}

.final-cta__phone {
    position: absolute;
    right: 4%;
    bottom: -42px;
    width: min(31vw, 430px);
    height: auto;
    display: block;
    transform: rotate(14deg);
    filter: drop-shadow(0 24px 24px rgba(7, 31, 77, 0.2));
}

.site-footer {
    padding: 44px 0 34px;
    background: #ffffff;
    color: var(--color-muted);
}

.site-footer__inner {
    width: min(100% - 48px, 1560px);
    margin: 0 auto;
}

.site-footer__logo {
    width: 225px;
    display: inline-flex;
    align-items: center;
    margin: 0 0 38px 72px;
}

.site-footer__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.site-footer__rule {
    height: 1px;
    background: var(--color-border);
}

.site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 28px;
    padding: 34px 72px 0;
    font-size: 1.25rem;
    line-height: 1.2;
}

.site-footer p {
    margin: 0;
}

.site-footer__bottom p:first-child {
    justify-self: start;
}

.site-footer__bottom p:nth-child(2) {
    justify-self: end;
    text-align: right;
}

.site-footer strong {
    color: #f2771e;
}

.download-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.download-modal.is-open {
    display: flex;
}

.download-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 26, 67, 0.78);
}

.download-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 635px);
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    padding: 58px 42px 34px;
    border-radius: 20px;
    background: #ffffff;
    color: #050505;
    box-shadow: 0 28px 80px rgba(5, 16, 42, 0.28);
    text-align: center;
}

.download-modal__close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f1f3f7;
    color: #7f8aa5;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.download-modal h2 {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 4.1rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
}

.download-modal h2 span {
    color: var(--color-accent);
}

.download-modal__intro {
    max-width: 430px;
    margin: 18px auto 34px;
    color: var(--color-muted);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
}

.download-form {
    text-align: left;
}

.download-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.download-form label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.download-form input[type="text"],
.download-form input[type="tel"] {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 7px;
    padding: 0 28px;
    background: #f1f1f1;
    color: #13254f;
    font: inherit;
    font-weight: 400;
    outline: 2px solid transparent;
}

.download-form__phone-input {
    display: flex;
    min-height: 50px;
    overflow: visible;
    border-radius: 7px;
    background: #f1f1f1;
    outline: 2px solid transparent;
}

.download-form__phone-input:focus-within {
    outline-color: var(--color-accent);
}

.country-picker {
    position: relative;
    flex: 0 0 auto;
}

.country-picker__button {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 10px;
    border: 0;
    border-right: 1px solid #d7deec;
    border-radius: 7px 0 0 7px;
    background: transparent;
    color: #13254f;
    font: inherit;
    font-size: 0.89rem;
    font-weight: 700;
    cursor: pointer;
}

.download-form__country-flag {
    width: 30px;
    height: 21px;
    object-fit: cover;
    border-radius: 3px;
}

.country-picker__arrow {
    width: 0;
    height: 0;
    margin-left: 1px;
    border-top: 5px solid #516486;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.country-picker__options {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    z-index: 2;
    width: 224px;
    margin: 0;
    padding: 7px;
    list-style: none;
    border: 1px solid #d7deec;
    border-radius: 9px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(16, 35, 74, 0.16);
}

.country-picker__options[hidden] {
    display: none;
}

.country-picker__options button {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 9px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #13254f;
    font: inherit;
    font-size: 0.9rem;
    cursor: pointer;
}

.country-picker__options button:hover,
.country-picker__options button:focus,
.country-picker__options button[aria-selected="true"] {
    background: #edf8fd;
}

.country-picker__options img {
    width: 30px;
    height: 21px;
    object-fit: cover;
    border-radius: 3px;
}

.country-picker__options strong {
    margin-left: auto;
    color: #516486;
}

.download-form__phone-input input[type="tel"] {
    min-width: 0;
    border-radius: 0 7px 7px 0;
    padding: 0 16px;
    outline: 0;
}

.download-form input::placeholder {
    color: #a3aec7;
    font-weight: 400;
    opacity: 1;
}

.download-form input[type="text"]:focus {
    outline-color: var(--color-accent);
}

.download-form__choice {
    margin: 30px 0 0;
    padding: 0;
    border: 0;
}

.download-form__choice legend {
    margin: 0 0 10px;
    color: #050505;
    font-size: 0.98rem;
}

.download-form__choice {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.download-form__choice legend {
    grid-column: 1 / -1;
}

.download-form__choice label {
    position: relative;
}

.download-form__choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.download-form__choice label span {
    position: static;
    width: auto;
    height: auto;
    clip: auto;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border: 3px solid transparent;
    border-radius: 7px;
    background: #f1f1f1;
    color: #a3aec7;
    font-weight: 400;
    cursor: pointer;
}

.download-form__choice input:checked + span {
    border-color: var(--color-accent);
    background: #f5fbff;
    color: var(--color-accent);
    font-weight: 800;
}

.download-form__message {
    min-height: 22px;
    margin: 18px 0 0;
    text-align: center;
    font-weight: 700;
}

.download-form__message.is-error {
    color: #d43b3b;
}

.download-form__message.is-success {
    color: #159a65;
}

.download-form__submit {
    width: 100%;
    min-height: 54px;
    margin-top: 12px;
    border: 0;
    border-radius: 7px;
    background: var(--color-accent);
    color: #ffffff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.download-form__submit:disabled {
    cursor: wait;
    opacity: 0.75;
}

.download-modal__promise {
    margin: 18px 0 0;
    color: #9faac2;
    font-size: 0.88rem;
    font-weight: 400;
    text-align: center;
}

@media (max-width: 640px) {
    .site-header {
        width: 100%;
        min-height: 72px;
        margin: 0;
        gap: 12px;
        padding: 0 clamp(16px, 5vw, 24px);
    }

    .site-logo {
        width: clamp(118px, 34vw, 152px);
        min-width: 0;
    }

    .nav-toggle {
        display: none;
    }

    .site-nav {
        display: flex;
        flex: 0 1 auto;
        justify-content: flex-end;
        min-width: 0;
        gap: 0;
    }

    .download-button {
        max-width: 52vw;
        gap: 8px;
        font-size: clamp(0.78rem, 3.3vw, 0.94rem);
        white-space: normal;
    }

    .download-button__icon {
        width: 32px;
        height: 32px;
    }

    .language-flag {
        display: none;
    }

    @media (max-width: 374px) {
        .site-header {
            padding: 0 14px;
        }

        .site-logo {
            width: 108px;
        }

        .download-button {
            max-width: 52vw;
            font-size: 0.72rem;
        }

    }

    .home-hero {
        width: min(100% - 32px, 1560px);
        min-height: auto;
        margin-top: 85px;
        padding: 42px 28px 0;
        border-radius: 28px;
        overflow: hidden;
    }

    .home-hero__inner {
        display: flex;
        flex-direction: column;
        gap: 22px;
        min-height: auto;
    }

    .home-hero__content {
        width: 100%;
        min-width: 0;
        padding-top: 0;
        text-align: left;
    }

    .home-hero h1 {
        max-width: 100%;
        font-size: clamp(1.95rem, 8vw, 2.35rem);
        line-height: 1.12;
    }

    .home-hero h1 span {
        display: inline-block;
        max-width: 100%;
    }

    .home-hero p {
        margin-top: 28px;
        max-width: 100%;
        font-size: 1rem;
    }

    @media (max-width: 374px) {
        .home-hero {
            padding-right: 22px;
            padding-left: 22px;
        }

        .home-hero h1 {
            font-size: clamp(1.75rem, 8.4vw, 2rem);
        }
    }

    .service-tags {
        max-width: 100%;
        gap: 10px;
        margin-top: 26px;
    }

    .service-tags span {
        min-height: 34px;
        padding: 7px 13px;
        font-size: 0.9rem;
    }

    .store-badges {
        margin-top: 28px;
        width: 340px;
    }

    .home-hero__media {
        width: min(96%, 360px);
        min-height: 0;
        margin: 0 auto -38px;
    }

    .home-hero__media img {
        min-width: 0;
        width: 100%;
        transform: rotate(10deg);
    }

    .simplicity-section,
    .how-section {
        width: min(100% - 32px, 1380px);
    }

    .simplicity-section {
        display: flex;
        flex-direction: column;
        gap: 38px;
        padding: 72px 0 52px;
    }

    .simplicity-section__copy,
    .how-section__copy {
        width: 100%;
        padding-left: 0;
    }

    .simplicity-section h2,
    .how-section h2 {
        font-size: clamp(3.2rem, 15vw, 4.6rem);
    }

    .simplicity-section p {
        max-width: 100%;
        margin-top: 28px;
        font-size: 1.25rem;
    }

    .simplicity-section__media {
        width: 100%;
    }

    .how-section {
        min-height: 420px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
        padding: 20px 0 62px;
    }

    .how-section__search {
        width: 125%;
        margin-left: -12%;
        transform: translateY(70px);
    }

    .how-section__search.is-visible {
        transform: translateY(0);
    }

    .steps-section {
        width: min(100% - 32px, 1560px);
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .step-card {
        min-height: 260px;
        gap: 34px;
        padding: 36px 28px;
    }

    .step-card p {
        white-space: normal;
        font-size: 1.2rem;
    }

    .pro-section {
        width: 100%;
        min-height: 620px;
        margin: 0;
    }

    .pro-section__content {
        width: min(100% - 32px, 1120px);
        padding-top: 28px;
    }

    .pro-section h2 {
        font-size: clamp(2.45rem, 10vw, 3.6rem);
        line-height: 1.22;
    }

    .pro-section p {
        margin-top: 28px;
        font-size: 1.15rem;
    }

    .pro-section__people {
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: none;
        transform: none;
    }

    .pro-section::after {
        right: -12%;
        left: -12%;
        bottom: 18px;
        height: 135px;
    }

    .final-cta {
        width: min(100% - 32px, 1380px);
        padding: 64px 0 48px;
    }

    .final-cta__panel {
        min-height: 640px;
        align-items: flex-start;
        border-radius: 26px;
    }

    .final-cta__content {
        width: 100%;
        padding: 42px 28px;
    }

    .final-cta p {
        font-size: 1.05rem;
    }

    .final-cta__badges {
        width: 320px;
        margin-top: 38px;
    }

    .final-cta__phone {
        right: -8%;
        bottom: -34px;
        width: 72vw;
    }

    .site-footer {
        padding-top: 30px;
        padding-bottom: 28px;
    }

    .site-footer__inner {
        width: min(100% - 32px, 1560px);
    }

    .site-footer__logo {
        width: 170px;
        margin: 0 0 26px;
    }

    .site-footer__bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 24px 0 0;
        font-size: 1rem;
        text-align: center;
    }

    .site-footer__bottom p:first-child,
    .site-footer__bottom p:nth-child(2) {
        justify-self: auto;
        text-align: center;
    }

    .download-modal {
        padding: 16px;
    }

    .download-modal__dialog {
        padding: 52px 20px 28px;
    }

    .download-form__row,
    .download-form__choice {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 641px) and (max-width: 1180px) {
    .site-header {
        padding: 0 28px;
    }

    .home-hero {
        min-height: 460px;
        padding-right: 28px;
        padding-left: 28px;
    }

    .home-hero__inner {
        grid-template-columns: minmax(340px, 0.95fr) minmax(340px, 1.05fr);
        gap: 18px;
    }

    .home-hero h1 {
        font-size: clamp(2.55rem, 5.4vw, 3.55rem);
    }

    .home-hero__media {
        width: min(38vw, 420px);
        min-height: 0;
        margin: -22px 0 -30px;
    }

    .home-hero__media img {
        min-width: 330px;
    }

    .service-tags {
        max-width: 560px;
        gap: 10px;
    }

    .simplicity-section {
        grid-template-columns: minmax(320px, 0.85fr) minmax(390px, 1.15fr);
        gap: 36px;
        padding-top: 92px;
    }

    .simplicity-section__copy,
    .how-section__copy {
        padding-left: 0;
    }

    .simplicity-section h2,
    .how-section h2 {
        font-size: clamp(3.6rem, 6.4vw, 5rem);
    }

    .simplicity-section p {
        font-size: 1.3rem;
    }

    .how-section {
        grid-template-columns: minmax(310px, 0.8fr) minmax(390px, 1.2fr);
        gap: 30px;
    }

    .steps-section {
        width: min(100% - 48px, 1560px);
        height: auto;
    }

    .step-card {
        min-height: 300px;
        padding: 36px 34px;
    }

    .step-card p {
        white-space: normal;
        font-size: 1.2rem;
    }

    .pro-section {
        min-height: 760px;
    }

    .pro-section h2 {
        font-size: clamp(3.2rem, 5.8vw, 4.5rem);
        line-height: 1.24;
    }

    .pro-section__people {
        right: -8%;
        left: -8%;
        width: 116%;
    }

    .final-cta {
        width: min(100% - 48px, 1380px);
    }

    .final-cta__content {
        width: 56%;
        padding-left: 42px;
    }

    .final-cta__phone {
        right: -2%;
        width: min(38vw, 390px);
    }

    .site-footer__logo {
        margin-left: 28px;
    }

    .site-footer__bottom {
        padding-right: 28px;
        padding-left: 28px;
        font-size: 1.05rem;
    }
}

@media (min-width: 1181px) and (max-width: 1440px) {
    .site-header {
        padding: 0 48px;
    }

    .home-hero {
        padding-right: 42px;
        padding-left: 42px;
    }

    .home-hero__inner {
        grid-template-columns: minmax(440px, 0.95fr) minmax(450px, 1.05fr);
        gap: 30px;
    }

    .home-hero h1 {
        font-size: clamp(3.1rem, 4vw, 3.85rem);
    }

    .home-hero p {
        margin-top: 30px;
    }

    .store-badges {
        margin-top: 38px;
    }

    .home-hero__media {
        width: min(34vw, 470px);
        min-height: 0;
        margin: -38px 2% -40px 0;
    }

    .home-hero__media img {
        min-width: 380px;
    }

    .service-tags {
        max-width: 560px;
        gap: 10px;
    }

    .simplicity-section {
        gap: 58px;
        padding-top: 108px;
    }

    .simplicity-section h2,
    .how-section h2 {
        font-size: clamp(4rem, 5vw, 5rem);
    }

    .how-section {
        gap: 42px;
    }

    .steps-section {
        width: min(100% - 48px, 1420px);
    }

    .step-card {
        padding: 42px 48px;
    }

    .step-card p {
        font-size: 1.25rem;
    }

    .pro-section__content {
        padding-top: 42px;
    }

    .pro-section h2 {
        font-size: clamp(3.5rem, 4.2vw, 4.35rem);
        line-height: 1.28;
    }

    .pro-section__people {
        right: 2%;
        left: 2%;
        width: 96%;
    }

    .final-cta__content {
        width: min(54%, 610px);
    }

    .final-cta__phone {
        right: 1%;
        width: min(33vw, 400px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .how-section__search {
        transition: none;
        transform: none;
        opacity: 1;
        filter: none;
    }
}
