:root {
    color-scheme: light;
    --brand: #0f766e;
    --brand-strong: #075e57;
    --brand-deep: #063f3b;
    --mint: #7ee0c5;
    --mint-soft: #ddf5ed;
    --lime: #c8f238;
    --ink: #0b1720;
    --muted: #53615d;
    --canvas: #f5f6f2;
    --surface: #fbfcf9;
    --line: #d8e3df;
    --shadow: 0 24px 64px rgba(11, 23, 32, 0.12);
    --shell: min(1180px, calc(100% - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--canvas);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 5%, rgba(126, 224, 197, 0.2), transparent 24rem),
        radial-gradient(circle at 90% 30%, rgba(15, 118, 110, 0.08), transparent 28rem);
}

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

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid #37bfa8;
    outline-offset: 4px;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 12px;
    color: #fff;
    background: var(--brand-deep);
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(216, 227, 223, 0.82);
    background: rgba(245, 246, 242, 0.88);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    min-height: 76px;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.brand img {
    flex: 0 0 auto;
    border-radius: 13px;
    filter: drop-shadow(0 8px 15px rgba(7, 94, 87, 0.18));
}

.brand span {
    display: flex;
    align-items: baseline;
    gap: 5px;
    letter-spacing: -0.025em;
}

.brand strong {
    font-size: 17px;
    font-weight: 800;
}

.brand small {
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.primary-nav a {
    position: relative;
    color: #34443f;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    content: "";
    background: var(--brand);
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.primary-nav a:hover::after {
    transform: scaleX(1);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--small {
    min-height: 42px;
    padding-inline: 18px;
    color: #fff;
    background: var(--brand);
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.18);
}

.button--large {
    min-height: 58px;
    padding-inline: 26px;
    border-radius: 18px;
    font-size: 15px;
}

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    box-shadow: 0 16px 34px rgba(7, 94, 87, 0.22);
}

.button--primary:hover {
    box-shadow: 0 20px 38px rgba(7, 94, 87, 0.29);
}

.button--secondary {
    border-color: #bfd0cb;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.75);
}

.button--secondary:hover {
    border-color: var(--brand);
    background: #fff;
}

.button--disabled,
.button--disabled:hover {
    cursor: not-allowed;
    color: #72807c;
    background: #e5ebe8;
    box-shadow: none;
    transform: none;
}

.button__icon {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 9px;
    color: var(--brand-deep);
    background: var(--mint);
    font-size: 19px;
    font-weight: 900;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(245, 246, 242, 0.98) 0%, rgba(245, 246, 242, 0.88) 48%, rgba(221, 245, 237, 0.7) 100%),
        url('/images/fast-loan-background.webp') center / cover no-repeat;
}

.hero::after {
    position: absolute;
    z-index: -1;
    top: -140px;
    right: -120px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: 50%;
    content: "";
    box-shadow:
        0 0 0 80px rgba(15, 118, 110, 0.025),
        0 0 0 160px rgba(15, 118, 110, 0.018);
}

.hero__glow {
    position: absolute;
    z-index: -1;
    right: 10%;
    bottom: 4%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(126, 224, 197, 0.38);
    filter: blur(90px);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
    align-items: center;
    min-height: calc(100vh - 76px);
    max-height: 920px;
    padding-block: 74px;
    gap: 72px;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-label {
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px 7px 8px;
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
}

.eyebrow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 5px rgba(126, 224, 197, 0.34);
}

.hero h1 {
    max-width: 720px;
    margin: 25px 0 20px;
    font-size: clamp(48px, 6.2vw, 82px);
    font-weight: 850;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.hero h1 span {
    color: var(--brand);
}

.hero__lead {
    max-width: 610px;
    margin: 0;
    color: #3c4b47;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 32px;
    gap: 12px;
}

.hero__note {
    max-width: 580px;
    margin: 17px 0 0;
    color: #64716d;
    font-size: 12px;
}

.confidence-list {
    display: flex;
    flex-wrap: wrap;
    margin: 32px 0 0;
    padding: 0;
    gap: 10px 22px;
    list-style: none;
}

.confidence-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #43524e;
    font-size: 13px;
    font-weight: 750;
}

.confidence-list span {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    color: var(--brand-deep);
    background: var(--mint-soft);
    font-size: 11px;
}

.hero__visual {
    position: relative;
    display: grid;
    min-height: 660px;
    place-items: center;
}

.brand-orbit {
    position: absolute;
    z-index: 2;
    top: 0;
    left: -16px;
    display: grid;
    width: 190px;
    height: 190px;
    place-items: center;
}

.brand-orbit img {
    position: relative;
    z-index: 2;
    width: 154px;
    filter: drop-shadow(0 20px 35px rgba(7, 94, 87, 0.28));
    transform: rotate(-5deg);
}

.brand-orbit__ring {
    position: absolute;
    inset: 1px;
    border: 1px dashed rgba(15, 118, 110, 0.3);
    border-radius: 50%;
}

.phone-wrap {
    position: relative;
    width: min(332px, 76vw);
}

.phone-shadow {
    position: absolute;
    right: -22px;
    bottom: -22px;
    left: 16px;
    height: 70%;
    border-radius: 70px;
    background: rgba(7, 94, 87, 0.24);
    filter: blur(34px);
    transform: rotate(5deg);
}

.phone {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 46px;
    background: #071118;
    box-shadow: var(--shadow), inset 0 0 0 2px rgba(255, 255, 255, 0.08);
    transform: rotate(3deg);
}

.phone img {
    width: 100%;
    border-radius: 38px;
}

.phone__speaker {
    position: absolute;
    z-index: 3;
    top: 17px;
    left: 50%;
    width: 76px;
    height: 20px;
    border-radius: 999px;
    background: #071118;
    transform: translateX(-50%);
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    min-width: 218px;
    padding: 13px 15px;
    border: 1px solid rgba(191, 208, 203, 0.78);
    border-radius: 18px;
    gap: 11px;
    background: rgba(251, 252, 249, 0.94);
    box-shadow: 0 18px 42px rgba(11, 23, 32, 0.14);
    backdrop-filter: blur(18px);
}

.floating-card--status {
    top: 31%;
    right: -95px;
}

.floating-card--language {
    bottom: 14%;
    left: -110px;
}

.floating-card__icon {
    display: grid;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    color: var(--brand-deep);
    background: var(--mint);
    font-weight: 900;
}

.floating-card__icon--soft {
    background: var(--mint-soft);
}

.floating-card span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.floating-card small {
    color: #66736f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.floating-card strong {
    margin-top: 3px;
    font-size: 13px;
}

.section {
    padding-block: 112px;
}

.section--soft {
    border-block: 1px solid var(--line);
    background: #edf3ef;
}

.section-heading {
    max-width: 690px;
    margin-bottom: 50px;
}

.section-heading h2,
.process-intro h2,
.clarity-panel h2,
.download-card h2 {
    margin: 13px 0 18px;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 830;
    letter-spacing: -0.055em;
    line-height: 1.04;
}

.section-heading p,
.process-intro > p,
.download-card__content > p {
    max-width: 580px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 345px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(251, 252, 249, 0.96);
    box-shadow: 0 18px 44px rgba(11, 23, 32, 0.06);
}

.feature-card--accent {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(145deg, #0b5f58, #063d3a);
}

.feature-card--accent::after {
    position: absolute;
    right: -75px;
    bottom: -85px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(126, 224, 197, 0.2);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 38px rgba(126, 224, 197, 0.035), 0 0 0 76px rgba(126, 224, 197, 0.025);
}

.feature-card__number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: #aebbb7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.feature-card--accent .feature-card__number {
    color: rgba(255, 255, 255, 0.52);
}

.feature-card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 68px;
    place-items: center;
    border-radius: 17px;
    color: var(--brand);
    background: var(--mint-soft);
    font-size: 24px;
    font-weight: 900;
}

.feature-card--accent .feature-card__icon {
    color: var(--brand-deep);
    background: var(--mint);
}

.feature-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: 23px;
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.feature-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #596762;
    font-size: 15px;
}

.feature-card--accent p {
    color: rgba(255, 255, 255, 0.74);
}

.process-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 86px;
}

.process-intro {
    position: sticky;
    top: 120px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 28px;
    gap: 8px;
    color: var(--brand);
    font-weight: 800;
    text-decoration: none;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.process-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 14px;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: start;
    min-height: 155px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    gap: 20px;
    background: var(--surface);
}

.process-list__number {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    color: var(--brand-deep);
    background: var(--mint-soft);
    font-size: 15px;
    font-weight: 900;
}

.process-list h3 {
    margin: 1px 0 7px;
    font-size: 20px;
    letter-spacing: -0.025em;
}

.process-list p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.section--dark {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #071d1b;
}

.section--dark::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 10%, rgba(126, 224, 197, 0.15), transparent 30rem),
        radial-gradient(circle at 90% 80%, rgba(200, 242, 56, 0.08), transparent 28rem);
}

.clarity-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 86px;
}

.section-label--mint {
    color: var(--mint);
}

.clarity-panel h2 {
    max-width: 650px;
}

.clarity-panel__content {
    padding: 32px;
    border: 1px solid rgba(126, 224, 197, 0.15);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.045);
}

.clarity-panel__content > p {
    margin: 0 0 24px;
    color: #b9cbc6;
    font-size: 17px;
}

.clarity-panel__content ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 13px;
    list-style: none;
}

.clarity-panel__content li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
    font-weight: 750;
}

.clarity-panel__content li span {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    color: var(--brand-deep);
    background: var(--mint);
    font-size: 11px;
}

.download-card {
    position: relative;
    display: grid;
    grid-template-columns: 0.78fr 1.18fr 1.04fr;
    align-items: center;
    overflow: hidden;
    padding: 58px;
    border: 1px solid var(--line);
    border-radius: 38px;
    gap: 46px;
    background:
        linear-gradient(135deg, rgba(251, 252, 249, 0.98), rgba(221, 245, 237, 0.92)),
        url('/images/fast-loan-background.webp') center / cover;
    box-shadow: var(--shadow);
}

.download-card__brand {
    position: relative;
    display: grid;
    min-height: 240px;
    place-items: center;
}

.download-card__brand img {
    position: relative;
    z-index: 2;
    width: 205px;
    filter: drop-shadow(0 24px 34px rgba(7, 94, 87, 0.28));
}

.download-card__halo {
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(126, 224, 197, 0.58);
    filter: blur(36px);
}

.download-card h2 {
    margin-bottom: 12px;
    font-size: clamp(36px, 4vw, 52px);
}

.release-meta {
    display: flex;
    flex-wrap: wrap;
    margin: 24px 0;
    gap: 10px;
}

.release-meta > span {
    display: flex;
    min-width: 88px;
    padding: 10px 13px;
    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: 13px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.64);
    line-height: 1.25;
}

.release-meta small {
    color: #697672;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.release-meta strong {
    margin-top: 3px;
    font-size: 13px;
}

.download-card__safety {
    margin: 15px 0 0;
    color: #65726e;
    font-size: 11px;
    line-height: 1.5;
}

.install-steps {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 11px;
    list-style: none;
}

.install-steps li {
    display: grid;
    grid-template-columns: 35px 1fr;
    align-items: start;
    padding: 16px;
    border: 1px solid rgba(15, 118, 110, 0.12);
    border-radius: 17px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.62);
}

.install-steps > li > span {
    display: grid;
    width: 33px;
    height: 33px;
    place-items: center;
    border-radius: 10px;
    color: var(--brand-deep);
    background: var(--mint);
    font-size: 12px;
    font-weight: 900;
}

.install-steps p {
    display: flex;
    margin: 0;
    color: #5a6864;
    flex-direction: column;
    font-size: 11px;
    line-height: 1.45;
}

.install-steps strong {
    margin-bottom: 2px;
    color: var(--ink);
    font-size: 13px;
}

.checksum {
    grid-column: 2 / -1;
    border-top: 1px solid rgba(15, 118, 110, 0.14);
    padding-top: 20px;
}

.checksum summary {
    width: fit-content;
    color: var(--brand);
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
}

.checksum div {
    display: grid;
    margin-top: 12px;
    gap: 5px;
}

.checksum div span {
    color: #687571;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.checksum code {
    overflow-wrap: anywhere;
    color: #30413c;
    font-size: 11px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #edf1ed;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: auto minmax(240px, 1fr) auto;
    align-items: center;
    min-height: 118px;
    gap: 40px;
}

.site-footer p {
    max-width: 620px;
    margin: 0 auto;
    color: #5d6b67;
    font-size: 12px;
    text-align: center;
}

.site-footer__inner > span {
    color: #64716d;
    font-size: 12px;
}

@media (max-width: 1080px) {
    .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
        gap: 26px;
    }

    .floating-card--status {
        right: -35px;
    }

    .floating-card--language {
        left: -45px;
    }

    .brand-orbit {
        left: -5px;
        width: 150px;
        height: 150px;
    }

    .brand-orbit img {
        width: 122px;
    }

    .download-card {
        grid-template-columns: 0.72fr 1.28fr;
    }

    .install-steps {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, 1fr);
    }

    .checksum {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    :root {
        --shell: min(100% - 32px, 680px);
    }

    .primary-nav {
        display: none;
    }

    .site-header__inner > .button {
        margin-left: auto;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        max-height: none;
        padding-block: 64px 80px;
        gap: 48px;
    }

    .hero__content {
        text-align: center;
    }

    .hero__lead,
    .hero__note {
        margin-inline: auto;
    }

    .hero__actions,
    .confidence-list {
        justify-content: center;
    }

    .hero__visual {
        min-height: 650px;
    }

    .feature-grid,
    .process-layout,
    .clarity-panel {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 295px;
    }

    .feature-card__icon {
        margin-bottom: 46px;
    }

    .process-layout,
    .clarity-panel {
        gap: 40px;
    }

    .process-intro {
        position: static;
    }

    .download-card {
        grid-template-columns: 1fr;
        padding: 42px;
        text-align: center;
    }

    .download-card__brand {
        min-height: 180px;
    }

    .release-meta {
        justify-content: center;
    }

    .install-steps {
        grid-column: auto;
        grid-template-columns: 1fr;
        text-align: left;
    }

    .checksum {
        grid-column: auto;
        text-align: left;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        padding-block: 34px;
        gap: 18px;
        text-align: center;
    }

    .brand--footer {
        margin-inline: auto;
    }
}

@media (max-width: 560px) {
    :root {
        --shell: calc(100% - 24px);
    }

    .site-header__inner {
        min-height: 68px;
    }

    .brand img {
        width: 39px;
        height: 39px;
    }

    .brand strong {
        font-size: 15px;
    }

    .site-header__inner > .button {
        min-height: 40px;
        padding-inline: 14px;
        border-radius: 13px;
        font-size: 12px;
    }

    .hero__grid {
        min-height: auto;
        padding-top: 50px;
    }

    .hero h1 {
        font-size: clamp(43px, 14vw, 64px);
    }

    .hero__lead {
        font-size: 17px;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button--large {
        width: 100%;
    }

    .confidence-list {
        display: grid;
        justify-content: start;
        max-width: 270px;
        margin-inline: auto;
        text-align: left;
    }

    .hero__visual {
        min-height: 580px;
    }

    .phone-wrap {
        width: min(290px, 78vw);
    }

    .brand-orbit {
        top: -15px;
        left: -8px;
        width: 118px;
        height: 118px;
    }

    .brand-orbit img {
        width: 96px;
    }

    .floating-card {
        min-width: 183px;
        padding: 10px 12px;
    }

    .floating-card--status {
        top: 34%;
        right: -19px;
    }

    .floating-card--language {
        bottom: 13%;
        left: -20px;
    }

    .floating-card__icon {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .floating-card strong {
        font-size: 11px;
    }

    .section {
        padding-block: 78px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2,
    .process-intro h2,
    .clarity-panel h2,
    .download-card h2 {
        font-size: 38px;
    }

    .feature-card {
        min-height: 280px;
        padding: 27px;
        border-radius: 23px;
    }

    .process-list li {
        grid-template-columns: 46px 1fr;
        padding: 22px;
        gap: 14px;
    }

    .process-list__number {
        width: 42px;
        height: 42px;
    }

    .clarity-panel__content {
        padding: 25px;
    }

    .download-card {
        padding: 32px 22px;
        border-radius: 28px;
        gap: 32px;
    }

    .download-card__brand img {
        width: 170px;
    }
}

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

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