:root {
    --dl-primary: #5852ff;
    --dl-secondary: #58a1d5;
    --dl-accent: #1dba82;
    --dl-bg: #edf3ff;
    --dl-surface: #ffffff;
    --dl-surface-soft: #f5f9ff;
    --dl-ink: #11204f;
    --dl-muted: #4f6395;
    --dl-border: #d7e3ff;
    --dl-radius-xl: 34px;
    --dl-radius-lg: 24px;
    --dl-shadow-soft: 0 18px 50px rgba(58, 88, 177, 0.12);
    --dl-shadow-strong: 0 24px 64px rgba(53, 84, 170, 0.2);
}

html,
body {
    min-height: 100%;
    background:
        radial-gradient(900px 560px at 88% -6%, rgba(88, 161, 213, 0.28), transparent 62%),
        radial-gradient(840px 540px at -14% 8%, rgba(88, 82, 255, 0.26), transparent 64%),
        linear-gradient(180deg, #f4f8ff 0%, #edf3ff 48%, #eef6ff 100%);
    color: var(--dl-ink);
    font-family: "Manrope", "SF Pro Display", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    scroll-behavior: smooth;
}

html {
    scrollbar-width: thin;
    scrollbar-color: rgba(88, 82, 255, 0.72) rgba(220, 231, 255, 0.72);
}

*::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

*::-webkit-scrollbar-track {
    background: linear-gradient(180deg, rgba(226, 236, 255, 0.84), rgba(236, 244, 255, 0.92));
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(88, 82, 255, 0.84), rgba(88, 161, 213, 0.86));
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 2px 10px rgba(67, 92, 178, 0.3);
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(76, 69, 244, 0.95), rgba(72, 149, 205, 0.92));
}

*::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, rgba(68, 62, 230, 1), rgba(64, 137, 190, 0.96));
}

*::-webkit-scrollbar-corner {
    background: transparent;
}

h1,
h2,
h3,
.section-title,
.hero h1,
.stat-title,
.btn-dl-primary,
.btn-dl-ghost,
.small-link {
    font-family: "Sora", "Rubik", "Manrope", "SF Pro Display", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: -0.01em;
}

html[lang^="ru"] h1,
html[lang^="ru"] h2,
html[lang^="ru"] h3,
html[lang^="ru"] .section-title,
html[lang^="ru"] .hero h1,
html[lang^="ru"] .stat-title,
html[lang^="ru"] .btn-dl-primary,
html[lang^="ru"] .btn-dl-ghost,
html[lang^="ru"] .small-link,
html[lang^="uk"] h1,
html[lang^="uk"] h2,
html[lang^="uk"] h3,
html[lang^="uk"] .section-title,
html[lang^="uk"] .hero h1,
html[lang^="uk"] .stat-title,
html[lang^="uk"] .btn-dl-primary,
html[lang^="uk"] .btn-dl-ghost,
html[lang^="uk"] .small-link {
    font-family: "Rubik", "Manrope", "SF Pro Display", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: -0.005em;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(88, 120, 214, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 120, 214, 0.035) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
    z-index: 0;
}

.magic-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 12000;
    transform: translate3d(-120px, -120px, 0);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(88, 161, 213, 0.95) 46%, rgba(88, 82, 255, 0.9) 100%);
    box-shadow:
        0 0 12px rgba(88, 161, 213, 0.55),
        0 0 24px rgba(88, 82, 255, 0.35);
    opacity: 0;
    transition: opacity .2s ease;
    will-change: transform, opacity;
}

.magic-cursor::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(88, 161, 213, 0.5);
    background: radial-gradient(circle, rgba(88, 82, 255, 0.15), rgba(88, 82, 255, 0));
    animation: magicCursorPulse 1.65s ease-in-out infinite;
}

.magic-cursor.is-active {
    opacity: 1;
}

.magic-cursor.is-hidden {
    opacity: 0;
}

.magic-spark {
    position: fixed;
    left: 0;
    top: 0;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    margin-top: -3px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 11999;
    background: linear-gradient(140deg, rgba(88, 82, 255, 0.96), rgba(88, 161, 213, 0.92), rgba(29, 186, 130, 0.9));
    box-shadow: 0 0 10px rgba(88, 161, 213, 0.55);
    will-change: transform, opacity;
    animation: magicSparkFly .72s cubic-bezier(.2, .75, .2, 1) forwards;
}

@keyframes magicCursorPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.75;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.42;
    }
}

@keyframes magicSparkFly {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.95;
    }
    100% {
        transform: translate3d(var(--dx, 0px), var(--dy, 0px), 0) scale(0);
        opacity: 0;
    }
}

@media (hover: none), (pointer: coarse) {
    .magic-cursor,
    .magic-spark {
        display: none !important;
    }
}

.site-wrap {
    position: relative;
    overflow-x: clip;
    z-index: 1;
}

.container,
main,
.footer {
    position: relative;
    z-index: 2;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(42px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
    animation: orbDrift 14s ease-in-out infinite;
}

.orb-1 {
    width: 420px;
    height: 420px;
    background: rgba(88, 82, 255, 0.7);
    top: -160px;
    left: -100px;
}

.orb-2 {
    width: 360px;
    height: 360px;
    background: rgba(29, 186, 130, 0.45);
    top: 300px;
    right: -120px;
    animation-delay: 2.2s;
}

@keyframes orbDrift {
    0%,
    100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(0, -30px) scale(1.05); }
}

.top-nav {
    display: none !important;
}

.hero {
    position: relative;
    z-index: 5;
    margin-top: 28px;
    min-height: calc(100vh - 28px - 30px);
    min-height: calc(100svh - 28px - 30px);
    border-radius: 40px;
    padding: clamp(28px, 3.2vw, 44px);
    background:
        radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 55%),
        linear-gradient(120deg, #5852ff 0%, #506dff 36%, #58a1d5 82%, #52bfd0 100%);
    box-shadow: 0 34px 84px rgba(64, 83, 196, 0.34);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    top: -260px;
    right: -220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 65%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.28);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #f5f8ff;
    font-size: 0.84rem;
    font-weight: 560;
    padding: 7px 14px;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.01;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    font-weight: 820;
    color: #ffffff;
    max-width: 760px;
    text-wrap: balance;
}

.hero p.lead {
    font-size: 1.1rem;
    color: rgba(243, 248, 255, 0.95);
    margin-bottom: 13px;
    max-width: 720px;
    line-height: 1.62;
}

.hero-note {
    color: rgba(218, 232, 255, 0.9);
    font-size: 0.94rem;
    margin-bottom: 24px;
    max-width: 650px;
    line-height: 1.58;
}

.btn-dl-ghost {
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    min-height: 56px;
    padding: 0 24px;
    font-weight: 620;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.btn-dl-ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.store-badge {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    height: 56px;
    transition: transform .25s ease, filter .25s ease;
}

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

.store-badge:hover {
    transform: translateY(-3px) scale(1.015);
    filter: drop-shadow(0 16px 24px rgba(22, 33, 90, 0.34));
}

.mock-wrap {
    position: relative;
    width: min(62%, 260px);
    margin: 0 auto;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    overflow: visible;
    transform-style: preserve-3d;
    animation: mock-bob 7.2s ease-in-out infinite;
    will-change: transform;
}

.hero-mock-actions {
    margin-top: 33px;
    display: flex;
    justify-content: center;
}

.mock-wrap img {
    width: 100%;
    border-radius: 0;
    display: block;
    background: transparent;
    box-shadow: none;
    will-change: transform;
}

@keyframes mock-bob {
    0%, 100% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(15px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mock-wrap {
        animation: none !important;
        transform: none !important;
    }
    .mock-wrap img {
        transform: none;
        opacity: 1;
    }
}

.page-block {
    position: relative;
    z-index: 4;
    padding-top: 34px;
    padding-bottom: 10px;
}

#stats-grid {
    position: relative;
    margin-top: -24px;
    z-index: 6;
}

.stat-card {
    height: 100%;
    border-radius: var(--dl-radius-lg);
    border: 1px solid rgba(140, 169, 240, 0.4);
    background:
        radial-gradient(circle at 100% -10%, rgba(88, 161, 213, 0.11), rgba(88, 161, 213, 0) 46%),
        linear-gradient(158deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.95));
    box-shadow:
        0 18px 42px rgba(57, 92, 190, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    padding: 20px 22px;
    overflow: hidden;
    position: relative;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(88, 82, 255, 0.7), rgba(88, 161, 213, 0.72), rgba(29, 186, 130, 0.65));
}

.stat-card::after {
    content: "";
    position: absolute;
    width: 132px;
    height: 132px;
    right: -52px;
    bottom: -62px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88, 82, 255, 0.08), rgba(88, 82, 255, 0));
    pointer-events: none;
}

.stat-title {
    font-weight: 760;
    font-size: 1.14rem;
    color: #16265c;
    margin-bottom: 8px;
    line-height: 1.35;
    position: relative;
    z-index: 1;
}

.stat-text {
    margin-bottom: 0;
    color: #4f6395;
    line-height: 1.58;
    font-size: 0.97rem;
    position: relative;
    z-index: 1;
}

#stats-grid > div:nth-child(2) .stat-card {
    background:
        radial-gradient(circle at 100% -10%, rgba(29, 186, 130, 0.11), rgba(29, 186, 130, 0) 46%),
        linear-gradient(158deg, rgba(255, 255, 255, 0.96), rgba(246, 252, 250, 0.95));
}

#stats-grid > div:nth-child(3) .stat-card {
    background:
        radial-gradient(circle at 100% -10%, rgba(88, 82, 255, 0.12), rgba(88, 82, 255, 0) 46%),
        linear-gradient(158deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 255, 0.95));
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(112, 163, 232, 0.62);
    box-shadow:
        0 24px 56px rgba(57, 92, 190, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.section-title {
    font-size: clamp(1.75rem, 3.1vw, 2.6rem);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    font-weight: 800;
    color: #122561;
    text-wrap: balance;
}

.section-subtitle {
    color: var(--dl-muted);
    font-size: 1.02rem;
    margin-bottom: 26px;
    max-width: 760px;
    line-height: 1.6;
    text-wrap: pretty;
}

#features-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

#features-grid > div {
    grid-column: span 4;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#features-grid > div:nth-child(1) { grid-column: span 7; }
#features-grid > div:nth-child(2) { grid-column: span 5; }
#features-grid > div:nth-child(3) { grid-column: span 5; }
#features-grid > div:nth-child(4) { grid-column: span 7; }
#features-grid > div:nth-child(5) { grid-column: span 6; }
#features-grid > div:nth-child(6) { grid-column: span 6; }

.feature-card {
    position: relative;
    height: 100%;
    border-radius: 28px;
    border: 1px solid rgba(143, 172, 242, 0.36);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.96));
    padding: 22px;
    box-shadow: var(--dl-shadow-soft);
    transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -90px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88, 161, 213, 0.22), rgba(88, 161, 213, 0));
    pointer-events: none;
}

#features-grid > div:nth-child(odd) .feature-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 255, 0.97));
}

#features-grid > div:nth-child(3n) .feature-card {
    background: linear-gradient(165deg, rgba(245, 255, 253, 0.98), rgba(236, 248, 255, 0.98));
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.006);
    border-color: rgba(109, 163, 232, 0.62);
    box-shadow: var(--dl-shadow-strong);
}

.feature-icon {
    position: absolute;
    left: -16px;
    bottom: -28px;
    width: 176px;
    height: 176px;
    color: rgba(46, 67, 156, 0.085);
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin: 0;
    font-size: 8.4rem;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.feature-icon i {
    transform: rotate(-9deg);
}

.feature-card h3,
.step-card h3,
.legal-item h3 {
    margin-bottom: 9px;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 760;
    color: #142a69;
    position: relative;
    z-index: 2;
}

.feature-card p,
.step-card p,
.info-card p,
.cta-card p,
.legal-card p,
.contact-card p,
.legal-item p {
    margin-bottom: 0;
    color: #4f6395;
    line-height: 1.62;
    position: relative;
    z-index: 2;
}

#steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    position: relative;
}

#steps-grid::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(88, 82, 255, 0.4), rgba(88, 161, 213, 0.45), rgba(29, 186, 130, 0.4));
    z-index: 0;
}

#steps-grid > div {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    z-index: 1;
}

.step-card {
    position: relative;
    height: 100%;
    border-radius: 26px;
    border: 1px solid rgba(143, 172, 242, 0.36);
    background: #ffffff;
    box-shadow: var(--dl-shadow-soft);
    padding: 20px;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(107, 158, 230, 0.6);
    box-shadow: var(--dl-shadow-strong);
}

.step-index {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 760;
    font-size: 0.9rem;
    background: linear-gradient(140deg, #5852ff, #58a1d5);
    box-shadow: 0 10px 20px rgba(86, 112, 208, 0.25);
}

.info-card,
.cta-card,
.legal-card,
.contact-card {
    position: relative;
    border-radius: var(--dl-radius-xl);
    border: 1px solid rgba(145, 172, 240, 0.36);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.96));
    box-shadow: var(--dl-shadow-soft);
    padding: 26px;
    overflow: hidden;
}

.info-card::before,
.cta-card::before,
.legal-card::before,
.contact-card::before,
.legal-item::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88, 161, 213, 0.16), rgba(88, 161, 213, 0));
    pointer-events: none;
}

.cta-card {
    border-color: rgba(121, 168, 241, 0.42);
    background: linear-gradient(125deg, rgba(88, 82, 255, 0.13), rgba(88, 161, 213, 0.1), rgba(255, 255, 255, 0.95));
}

.legal-list {
    display: grid;
    gap: 16px;
}

.legal-item {
    position: relative;
    border-radius: var(--dl-radius-lg);
    border: 1px solid rgba(145, 172, 240, 0.34);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.95));
    padding: 18px;
    box-shadow: 0 14px 36px rgba(57, 92, 190, 0.1);
    overflow: hidden;
}

.footer {
    margin-top: 62px;
    border-top: 1px solid rgba(145, 172, 240, 0.3);
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.88), rgba(236, 243, 255, 0.95));
    backdrop-filter: blur(8px);
}

.footer .small-link {
    color: #203372;
    text-decoration: none;
    font-weight: 560;
}

.footer .small-link:hover {
    color: #2f4ccd;
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    position: relative;
}

.footer-lang-picker {
    position: relative;
}

.footer-lang-trigger {
    border: 0;
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #203372;
    font-weight: 560;
}

.footer-lang-trigger i {
    font-size: 0.72rem;
    opacity: 0.78;
    transition: transform .2s ease;
}

.footer-lang-picker.is-open .footer-lang-trigger i {
    transform: rotate(180deg);
}

.footer-lang-menu {
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    min-width: 196px;
    max-height: 260px;
    overflow-y: auto;
    border-radius: 16px;
    border: 1px solid rgba(145, 172, 240, 0.46);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 40px rgba(34, 56, 122, 0.16);
    padding: 6px;
    display: none;
    z-index: 25;
}

.footer-lang-picker.is-open .footer-lang-menu {
    display: block;
}

.footer-lang-option {
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #1d2d66;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.3;
    padding: 8px 10px;
    transition: background .18s ease, color .18s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.footer-lang-option:hover {
    background: rgba(88, 82, 255, 0.08);
    color: #2f4ccd;
}

.footer-lang-option i {
    opacity: 0;
    color: #2f4ccd;
    font-size: 0.78rem;
    margin-left: 12px;
}

.footer-lang-option.is-active {
    background: rgba(88, 82, 255, 0.1);
    color: #1f3581;
    font-weight: 600;
}

.footer-lang-option.is-active i {
    opacity: 1;
}

.page-view.d-none {
    display: none !important;
}

.typewriter-target {
    position: relative;
}

.typewriter-target.is-typing::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 0.95em;
    background: currentColor;
    margin-left: 4px;
    vertical-align: -0.08em;
    animation: typeCaretBlink .9s steps(1) infinite;
    opacity: 0.72;
}

@keyframes typeCaretBlink {
    0%,
    49% {
        opacity: 0.72;
    }
    50%,
    100% {
        opacity: 0;
    }
}

#page-terms .page-block,
#page-privacy .page-block,
#page-contact .page-block,
#page-not-found .page-block {
    margin-top: 30px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px) scale(.985);
    transition:
        opacity .58s cubic-bezier(.2, .65, .2, 1),
        transform .72s cubic-bezier(.2, .65, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 1199px) {
    .hero {
        padding: 30px;
    }
    .hero h1 {
        font-size: clamp(2rem, 5vw, 3.4rem);
    }
    .store-badge {
        height: 54px;
    }
    .btn-dl-ghost {
        min-height: 54px;
    }
    .mock-wrap {
        width: min(66%, 250px);
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 28px;
        margin-top: 22px;
        min-height: calc(100vh - 22px - 30px);
        min-height: calc(100svh - 22px - 30px);
    }
    #stats-grid {
        margin-top: 2px;
    }
    #features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    #features-grid > div,
    #features-grid > div:nth-child(1),
    #features-grid > div:nth-child(2),
    #features-grid > div:nth-child(3),
    #features-grid > div:nth-child(4),
    #features-grid > div:nth-child(5),
    #features-grid > div:nth-child(6) {
        grid-column: span 1;
    }
    #steps-grid {
        grid-template-columns: 1fr;
    }
    #steps-grid::before {
        display: none;
    }
    .mock-wrap {
        width: min(62%, 230px);
        margin-top: 8px;
    }
    .hero-mock-actions {
        margin-top: 29px;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero {
        padding: 22px;
        border-radius: 30px;
        min-height: calc(100vh - 22px - 30px);
        min-height: calc(100svh - 22px - 30px);
    }
    .hero h1 {
        font-size: clamp(1.82rem, 9vw, 2.5rem);
        line-height: 1.08;
    }
    .hero p.lead {
        font-size: 1rem;
    }
    .store-badge {
        height: 50px;
    }
    .btn-dl-ghost {
        min-height: 50px;
        padding: 0 20px;
        font-size: 0.95rem;
    }
    .section-title {
        font-size: clamp(1.45rem, 7vw, 1.95rem);
    }
    #page-terms .page-block,
    #page-privacy .page-block,
    #page-contact .page-block,
    #page-not-found .page-block {
        margin-top: 22px;
    }
    #features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card,
    .step-card,
    .info-card,
    .cta-card,
    .legal-card,
    .contact-card,
    .stat-card {
        border-radius: 22px;
    }
    .footer-links {
        width: 100%;
        gap: 12px;
    }
    .mock-wrap {
        width: min(58%, 210px);
    }
    .hero-mock-actions {
        margin-top: 27px;
    }
    .feature-icon {
        width: 142px;
        height: 142px;
        left: -12px;
        bottom: -24px;
        font-size: 6.7rem;
    }
}

    
