@font-face {
    font-family: 'Material Symbols Rounded';
    src: url('/fonts/material/MaterialSymbolsRounded.woff2') format('woff2');
    font-weight: 100 300;
    font-style: italic;
}
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #f8f9fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}
.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-size: 24px;
}

.marketing-page {
    --brand: #4f6ef7;
    --brand-dark: #3654d8;
    --ink: #132a46;
    --body: #42536a;
    --muted: #6b788b;
    --line: #dfe5ee;
    --surface: #ffffff;
    --soft: #f5f7fb;
    color: var(--body);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
    overflow: clip;
}

    .marketing-page *, .marketing-page *::before, .marketing-page *::after {
        box-sizing: border-box;
    }

    .marketing-page h1, .marketing-page h2, .marketing-page h3, .marketing-page p {
        margin-top: 0;
    }

    .marketing-page h1, .marketing-page h2, .marketing-page h3 {
        color: var(--ink);
        background: none;
        -webkit-text-fill-color: currentColor;
        text-shadow: none;
    }

    .marketing-page h1 {
        max-width: 720px;
        margin-bottom: 1.5rem;
        font-size: clamp(2.6rem, 4vw, 3.75rem);
        font-weight: 600;
        line-height: 1.08;
        letter-spacing: -0.035em;
        color: var(--ink);
    }

    .marketing-page h2 {
        font-size: clamp(2rem, 3.5vw, 3rem);
        line-height: 1.12;
        letter-spacing: -.035em;
    }

    .marketing-page h3 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
/* Для Webkit браузеров */ ::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: rgba(84,118,246,0.6);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(84,118,246,0.9);
    }
.marketing-hero {
    padding: clamp(3.5rem, 5vw, 5rem) 0 4rem;
    background: var(--surface);
}

.marketing-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.marketing-eyebrow {
    margin-bottom: 1rem;
    color: var(--brand-dark);
    font-size: .82rem;
    font-weight: 750;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.marketing-hero__lead {
    max-width: 650px;
    margin-bottom: 2rem;
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    line-height: 1.7;
}

.marketing-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
}

.marketing-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: .75rem 1.2rem;
    font: inherit;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.marketing-button--primary {
    background: var(--brand);
    color: #fff;
}

    .marketing-button--primary:hover {
        background: var(--brand-dark);
        color: #fff;
        transform: translateY(-1px);
    }

.marketing-button--secondary {
    border-color: var(--line);
    background: #fff;
    color: var(--ink);
}

    .marketing-button--secondary:hover {
        border-color: var(--brand);
        color: var(--brand-dark);
    }

.marketing-button--text {
    background: transparent;
    color: var(--brand-dark);
}

    .marketing-button--text:hover {
        background: #eef1ff;
        color: var(--brand-dark);
    }

.marketing-button:focus-visible, .example-tab:focus-visible {
    outline: 3px solid rgba(79,110,247,.28);
    outline-offset: 3px;
}

.hero-product {
    position: relative;
    min-width: 0;
    min-height: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-product::before {
        content: "";
        position: absolute;
        inset: 7% 0 8%;
        z-index: 0;
        border-radius: 50%;
        background: #f0f3ff;
    }

.hero-product__image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 680px;
    height: auto;
    object-fit: contain;
}

.hero-product__note {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    max-width: 290px;
    margin: 0;
    padding: 0.8rem 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.45;
    box-shadow: 0 12px 30px rgba(20, 42, 70, 0.08);
}

    .hero-product__note i {
        margin-right: 0.35rem;
        color: var(--brand);
    }


@media (max-width: 991.98px) {
    .hero-product {
        min-height: 440px;
        max-width: 680px;
        margin-inline: auto;
    }
}

@media (max-width: 767.98px) {
    .hero-product {
        min-height: 360px;
    }

    .hero-product__image {
        width: 110%;
        max-width: none;
    }

    .hero-product__note {
        right: 50%;
        bottom: 0;
        width: min(92%, 320px);
        max-width: none;
        transform: translateX(50%);
    }
}

@media (max-width: 420px) {
    .hero-product {
        min-height: 330px;
    }

    .hero-product__image {
        width: 118%;
    }

    .hero-product__note {
        font-size: 0.82rem;
    }
}

.trust-strip {
    border-block: 1px solid var(--line);
    background: #fbfcfe;
}

.trust-strip__items {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem 3rem;
    color: var(--ink);
    font-size: .94rem;
    font-weight: 650;
}

.trust-strip i {
    margin-right: .45rem;
    color: var(--brand);
}

.marketing-section {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    scroll-margin-top: 90px;
}

.marketing-section--tinted {
    background: var(--soft);
}

.section-heading {
    max-width: 780px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    text-align: center;
}

    .section-heading h2 {
        margin-bottom: 1rem;
    }

    .section-heading > p:last-child {
        font-size: 1.08rem;
        line-height: 1.65;
    }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.step-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.75rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.step-card__number {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-weight: 800;
}

.step-card__copy {
    min-height: 125px;
}

.step-card h3 {
    margin-bottom: 0.75rem;
}

.step-card p {
    margin-bottom: 0;
    line-height: 1.6;
}

.step-card .step-image {
    display: block;
    width: 88%;
    max-width: 360px;
    height: 265px;
    margin: 1rem auto 0;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991.98px) {
    .step-card__copy {
        min-height: 0;
    }

    .step-card .step-image {
        width: 100%;
        max-width: 250px;
        height: 170px;
        margin: 1rem auto 0;
    }
}

@media (max-width: 575.98px) {
    .step-card {
        padding: 1.4rem;
    }

    .step-card__number {
        margin-bottom: 1.25rem;
    }

    .step-card .step-image {
        width: 90%;
        max-width: 320px;
        height: 220px;
        margin: 1.25rem auto 0;
    }
}
.example-tabs {
    display: flex;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: .35rem;
    overflow-x: auto;
    gap: .35rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    scrollbar-width: thin;
}

.example-tab {
    min-height: 46px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 10px;
    padding: .6rem 1rem;
    background: transparent;
    color: var(--body);
    font: inherit;
    font-weight: 650;
    white-space: nowrap;
    cursor: pointer;
}

    .example-tab:hover {
        background: #f4f6fb;
    }

    .example-tab.is-active {
        background: #e9edff;
        color: var(--brand-dark);
    }

    .example-tab i {
        margin-right: .4rem;
    }
.example-tabs {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-inline: contain;
    cursor: grab;
    user-select: none;
}

    .example-tabs::-webkit-scrollbar {
        display: none;
    }

    .example-tabs.is-dragging {
        cursor: grabbing;
    }
.example-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: center;
    max-width: 1080px;
    margin: auto;
}

.example-panel h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.example-panel > p {
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 575.98px)  {
    .example-layout .marketing-button {
        display: flex;
        width: fit-content;
        margin-inline: auto;
        justify-content: center;
        margin-top: 20px;
    }
}

    .check-list li {
        position: relative;
        padding-left: 1.6rem;
        line-height: 1.5;
    }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--brand);
            font-weight: 850;
        }

.example-device {
    min-height: 510px;
    display: grid;
    place-items: center;
}

    .example-device img {
        width: 100%;
        max-height: 510px;
        object-fit: contain;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem 3rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    align-items: start;
}

    .feature-item > i {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 10px;
        background: #e9edff;
        color: var(--brand);
        font-size: 1.25rem;
    }

    .feature-item h3 {
        margin-bottom: .45rem;
    }

    .feature-item p {
        margin: 0;
        line-height: 1.6;
    }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 380px));
    justify-content: center;
    gap: 1.25rem;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 430px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 2rem;
    background: #fff;
}

.plan-card--featured {
    border: 2px solid var(--brand);
}

.plan-card__badge {
    position: absolute;
    top: 0;
    right: 1.25rem;
    transform: translateY(-50%);
    border-radius: 999px;
    padding: .35rem .75rem;
    background: var(--brand);
    color: #fff;
    font-size: .75rem;
    font-weight: 750;
}

.plan-card__name {
    margin-bottom: .5rem;
    color: var(--ink);
    font-weight: 750;
}

.plan-card h3 {
    display: inline;
    margin-right: .3rem;
    font-size: 2.4rem;
}

.plan-card__period {
    display: inline;
    color: var(--muted);
}

.plan-card > p {
    margin-top: 1.5rem;
}

.plan-card .marketing-button {
    width: 100%;
    margin-top: auto;
}

.pricing-note {
    margin: 1.5rem auto 0;
    color: var(--muted);
    font-size: .88rem;
    text-align: center;
}


.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }

@media (max-width: 991.98px) {
    .marketing-hero__grid {
        grid-template-columns: 1fr;
    }

    .marketing-hero__content {
        text-align: center;
    }

    .marketing-hero h1, .marketing-hero__lead {
        margin-inline: auto;
    }

    .marketing-actions {
        justify-content: center;
    }

    .hero-product {
        min-height: 430px;
        grid-template-columns: 130px 42px minmax(190px, 250px);
    }

    .hero-product__phone img {
        max-height: 410px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: auto;
    }

    .step-card {
        display: grid;
        grid-template-columns: 48px 1fr 180px;
        align-items: center;
        gap: 1rem;
    }

    .step-card__number {
        margin: 0;
    }

    .step-card__copy {
        min-height: 0;
    }

    .step-card img {
        height: 130px;
        margin: 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .example-layout {
        gap: 3rem;
    }
}

@media (max-width: 767.98px) {
    .marketing-hero {
        padding-top: 3.5rem;
    }

    .marketing-hero__grid {
        gap: 2rem;
    }

    .marketing-page h1 {
        font-size: clamp(2.2rem, 11vw, 3.3rem);
    }

    .hero-product {
        min-height: 390px;
        grid-template-columns: 105px 30px minmax(155px, 210px);
    }

    .hero-product__qr-card {
        padding: .7rem;
    }

    .hero-product__qr i {
        border-width: 5px;
    }

    .hero-product__note {
        right: 50%;
        bottom: 0;
        width: min(92%, 310px);
        max-width: none;
        transform: translateX(50%);
    }

    .trust-strip__items {
        padding-block: 1rem;
        justify-content: flex-start;
        gap: .8rem;
    }

        .trust-strip__items span {
            width: 100%;
        }

    .section-heading {
        text-align: left;
    }

    .example-tabs {
        margin-inline: calc(var(--bs-gutter-x, 1.5rem) * -.5);
        border-inline: 0;
        border-radius: 0;
        padding-inline: calc(var(--bs-gutter-x, 1.5rem) * .5);
    }

    .example-layout {
        grid-template-columns: 1fr;
    }

    .example-device {
        order: -1;
        min-height: 360px;
    }

        .example-device img {
            max-height: 360px;
        }

    .features-grid, .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card {
        min-height: 0;
    }

        .plan-card .marketing-button {
            margin-top: 1.5rem;
        }

    .final-cta__content {
        align-items: flex-start;
        flex-direction: column;
    }

    .marketing-button--light {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .marketing-actions {
        align-items: stretch;
        flex-direction: column;
    }

        .marketing-actions .marketing-button {
            width: 100%;
        }

    .step-card {
        display: flex;
        align-items: flex-start;
    }

        .step-card img {
            width: 100%;
            height: 165px;
            margin-top: .5rem;
        }

    .feature-item {
        grid-template-columns: 40px 1fr;
    }

        .feature-item > i {
            width: 40px;
            height: 40px;
        }
}

@media (prefers-reduced-motion: reduce) {
    .marketing-page *, .marketing-page *::before, .marketing-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


.site-footer {
    background: #0f2139;
    color: #dfe7f3;
}

.site-footer__title {
    max-width: 520px;
    margin: 0 0 1rem;
    color: #fff;
    background: none;
    -webkit-text-fill-color: currentColor;
    font-size: clamp(1.6rem, 2.4vw, 2.25rem);
    line-height: 1.25;
    letter-spacing: -.025em;
    text-shadow: none;
}

.site-footer__text {
    max-width: 520px;
    margin: 0 0 1.5rem;
    color: #cbd6e6;
    line-height: 1.65;
}

.site-footer__button {
    min-height: 48px;
    border: 1px solid #4f6ef7;
    border-radius: 10px;
    padding: .75rem 1.2rem;
    background: #4f6ef7;
    color: #fff;
    font: inherit;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease;
}

    .site-footer__button:hover {
        border-color: #3654d8;
        background: #3654d8;
    }

    .site-footer__button:focus-visible,
    .site-footer a:focus-visible {
        outline: 3px solid rgba(137, 159, 255, .55);
        outline-offset: 3px;
    }

.site-footer__brand {
    margin: 0 0 1.25rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.site-footer__links {
    display: grid;
    gap: .75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a {
    color: #cbd6e6;
    text-decoration: none;
}

    .site-footer a:hover {
        color: #fff;
        text-decoration: underline;
        text-underline-offset: .2em;
    }

.site-footer__trademark {
    max-width: 390px;
    margin: 0;
    color: #aebcd0;
    font-size: .82rem;
    line-height: 1.6;
}

.site-footer__divider {
    margin: 2.5rem 0 1.5rem;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    opacity: 1;
}

.site-footer__bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 1.5rem;
    color: #cbd6e6;
}

    .site-footer__bottom p {
        margin: 0;
    }

.site-footer__made {
    text-align: right;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .site-footer__socials a {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border-radius: 8px;
        font-size: 1.3rem;
    }

        .site-footer__socials a:hover {
            background: rgba(255, 255, 255, .08);
            text-decoration: none;
        }

@media (max-width: 767.98px) {
    .site-footer .list-unstyled-first {
        margin-top: 3rem !important;
    }

    .site-footer__bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        margin-top: 3rem !important;
    }

    .site-footer__made {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .site-footer__button {
        width: 100%;
    }
}
@media (max-width: 767.98px) {
    .marketing-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    body {
        padding-bottom: 0 !important;
    }
}
.trial-info {
    max-width: 780px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    margin: 0 auto 2.5rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid #cfd8ff;
    border-radius: 14px;
    background: #fff;
}

.trial-info__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #e9edff;
    color: var(--brand);
    font-size: 1.35rem;
}

.trial-info h3 {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
}

.trial-info__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .trial-info__list li {
        position: relative;
        width: calc(50% - 0.75rem);
        padding-left: 1.3rem;
        line-height: 1.5;
    }

        .trial-info__list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--brand);
            font-weight: 800;
        }

@media (max-width: 575.98px) {
    .trial-info {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .trial-info__list {
        display: grid;
        gap: 0.65rem;
    }

        .trial-info__list li {
            width: 100%;
        }
}
