/* ==========================================
   RESET
========================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Inter",sans-serif;

    background:#050816;

    color:#fff;

    overflow-x:hidden;

    line-height:1.6;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;

}

button{

    font-family:inherit;
    cursor:pointer;

}

section{

    position:relative;

    padding:120px 0;

}

/* ==========================================
   VARIABLES
========================================== */

:root{

    --primary:#4F7CFF;

    --primary-light:#73A0FF;

    --secondary:#6D5DFF;

    --text:#FFFFFF;

    --muted:#A8B0C3;

    --card:rgba(255,255,255,.05);

    --border:rgba(255,255,255,.08);

    --shadow:0 25px 70px rgba(0,0,0,.45);

    --radius:22px;

    --max-width:1280px;

}

/* ==========================================
   CONTAINER
========================================== */

.container{

    width:min(92%,var(--max-width));

    margin:auto;

}

/* ==========================================
   BACKGROUND
========================================== */

.background-grid{

    position:fixed;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:60px 60px;

    z-index:-3;

}

.background-blur{

    position:fixed;

    width:700px;

    height:700px;

    border-radius:50%;

    filter:blur(140px);

    opacity:.35;

    z-index:-2;

}

.blur-one{

    top:-250px;

    left:-150px;

    background:#355CFF;

}

.blur-two{

    bottom:-300px;

    right:-200px;

    background:#6A42FF;

}

/* ==========================================
   NAVBAR
========================================== */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(18px);

    background:rgba(5,8,22,.55);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.nav-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:82px;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:22px;

    font-weight:700;

}

.logo-icon{

    width:42px;

    height:42px;

    border-radius:12px;

    display:grid;

    place-items:center;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    box-shadow:

    0 15px 40px rgba(79,124,255,.35);

}

nav{

    display:flex;

    gap:42px;

}

nav a{

    color:var(--muted);

    transition:.3s;

    font-weight:500;

}

nav a:hover{

    color:#fff;

}

/* ==========================================
   BUTTONS
========================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:999px;

    transition:.35s;

    font-weight:600;

}

.btn-primary{

    background:

    linear-gradient(135deg,var(--primary),var(--secondary));

    box-shadow:

    0 20px 45px rgba(79,124,255,.35);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:

    0 30px 60px rgba(79,124,255,.45);

}

.btn-secondary{

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.05);

}

.btn-secondary:hover{

    background:rgba(255,255,255,.08);

}

/* ==========================================
   HERO
========================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:140px;

}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:999px;

    margin-bottom:30px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#BFC8DD;

}

.hero h1{

    font-size:76px;

    line-height:1.05;

    font-weight:800;

    letter-spacing:-2px;

}

.hero h1 span{

    display:block;

    background:

    linear-gradient(

    135deg,

    #FFFFFF,

    #89A8FF,

    #5E6BFF

    );

    -webkit-background-clip:text;

    color:transparent;

}

.hero p{

    margin-top:34px;

    color:var(--muted);

    font-size:20px;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.hero-stats{

    display:flex;

    gap:60px;

    margin-top:60px;

}

.hero-stats h3{

    font-size:36px;

}

.hero-stats span{

    color:var(--muted);

}

/* =====================================================
   HERO MOCKUP
===================================================== */

.hero-right{

    display:flex;
    justify-content:center;
    align-items:center;

}

.browser-window{

    width:100%;
    max-width:620px;

    border-radius:28px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(25px);

    box-shadow:
        0 50px 120px rgba(0,0,0,.55),
        0 0 120px rgba(79,124,255,.15);

    animation:float 7s ease-in-out infinite;

}

.browser-top{

    height:56px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 20px;

    border-bottom:1px solid rgba(255,255,255,.06);

    background:rgba(255,255,255,.03);

}

.browser-buttons{

    display:flex;

    gap:8px;

}

.browser-buttons span{

    width:12px;
    height:12px;

    border-radius:50%;

    background:#6d758c;

}

.browser-buttons span:nth-child(1){

    background:#ff5f57;

}

.browser-buttons span:nth-child(2){

    background:#febc2e;

}

.browser-buttons span:nth-child(3){

    background:#28c840;

}

.browser-address{

    color:#98A2B8;

    font-size:14px;

}

.browser-content{

    padding:30px;

}

.vk-post{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.video-preview{

    position:relative;

    width:100%;

    height:280px;

    border-radius:20px;

    overflow:hidden;

    background:
        linear-gradient(145deg,#3148ff,#0f1835);

}

.video-preview::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top,
    rgba(255,255,255,.18),
    transparent 60%);

}

.play-button{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:82px;
    height:82px;

    display:grid;

    place-items:center;

    border-radius:50%;

    background:white;

    color:#111;

    font-size:28px;

    box-shadow:
        0 20px 60px rgba(255,255,255,.25);

}

.download-panel{

    padding:28px;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

}

.download-panel h4{

    font-size:22px;

    margin-bottom:10px;

}

.download-panel p{

    margin:0 0 20px;

    color:#9FA8BF;

}

.quality-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:22px;

}

.quality-buttons button{

    padding:12px 18px;

    border:none;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    color:white;

    transition:.3s;

}

.quality-buttons button:hover{

    background:var(--primary);

    transform:translateY(-3px);

}

.download-button{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    height:58px;

    border-radius:16px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    font-weight:700;

    transition:.35s;

}

.download-button:hover{

    transform:translateY(-3px);

}

/* =====================================================
   SECTION HEADERS
===================================================== */

.section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 80px;

}

.section-label{

    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    color:#89A8FF;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:22px;

}

.section-header h2{

    font-size:54px;

    margin-bottom:20px;

    letter-spacing:-1px;

}

.section-header p{

    color:#A5AFC3;

    font-size:19px;

}

/* =====================================================
   TRUSTED
===================================================== */

.trusted{

    padding-top:40px;

}

.trusted-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:45px;

}

.trusted-item{

    height:90px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:14px;

    font-size:22px;

    border-radius:20px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.trusted-item:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.05);

}

/* =====================================================
   FEATURES
===================================================== */

.features-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.feature-card{

    padding:38px;

    border-radius:28px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.feature-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at top,
        rgba(79,124,255,.20),
        transparent 65%);

    opacity:0;

    transition:.4s;

}

.feature-card:hover{

    transform:translateY(-12px);

    border-color:rgba(79,124,255,.30);

}

.feature-card:hover::before{

    opacity:1;

}

.feature-icon{

    width:70px;
    height:70px;

    display:grid;

    place-items:center;

    font-size:28px;

    border-radius:18px;

    margin-bottom:28px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    box-shadow:
        0 20px 45px rgba(79,124,255,.25);

}

.feature-card h3{

    font-size:26px;

    margin-bottom:16px;

}

.feature-card p{

    color:#A5AFC3;

}

/* =====================================================
   FLOAT ANIMATION
===================================================== */

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/* =====================================================
   LIVE PREVIEW
===================================================== */

.preview{

    position:relative;

}

.preview-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.preview-left h2{

    font-size:56px;

    margin:20px 0;

    line-height:1.1;

}

.preview-left p{

    color:var(--muted);

    font-size:19px;

    max-width:520px;

    margin-bottom:40px;

}

.preview-list{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:20px;

}

.preview-list li{

    display:flex;

    align-items:center;

    gap:15px;

    font-size:18px;

}

.vk-window{

    position:relative;

    border-radius:28px;

    overflow:hidden;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:var(--shadow);

}

.vk-toolbar{

    height:60px;

    display:flex;

    align-items:center;

    gap:10px;

    padding:0 22px;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.vk-toolbar div{

    width:12px;
    height:12px;

    border-radius:50%;

    background:#7a8295;

}

.video-frame{

    position:relative;

    height:420px;

    background:
        linear-gradient(
            135deg,
            #223cff,
            #131d3b
        );

}

.floating-download{

    position:absolute;

    right:30px;

    bottom:30px;

    padding:18px 30px;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    font-weight:700;

    box-shadow:

        0 25px 60px rgba(79,124,255,.45);

    animation:pulse 2.8s infinite;

}

/* =====================================================
   STATS
===================================================== */

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-card{

    padding:45px;

    text-align:center;

    border-radius:28px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

    border-color:rgba(79,124,255,.25);

}

.stat-card h2{

    font-size:52px;

    margin-bottom:12px;

    background:

    linear-gradient(
        135deg,
        white,
        #78a0ff
    );

    -webkit-background-clip:text;

    color:transparent;

}

.stat-card p{

    color:var(--muted);

}

/* =====================================================
   HOW IT WORKS
===================================================== */

.steps{

    display:grid;

    grid-template-columns:1fr auto 1fr auto 1fr;

    align-items:center;

    gap:30px;

}

.step{

    padding:45px;

    text-align:center;

    border-radius:28px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.step:hover{

    transform:translateY(-10px);

}

.step-number{

    width:70px;

    height:70px;

    margin:auto auto 25px;

    border-radius:50%;

    display:grid;

    place-items:center;

    font-size:26px;

    font-weight:700;

    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

.step-line{

    height:2px;

    background:

    linear-gradient(
        90deg,
        transparent,
        #4F7CFF,
        transparent
    );

}

/* =====================================================
   COMPARISON
===================================================== */

.comparison-table{

    border-radius:26px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.06);

}

.table-row{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

}

.table-row div{

    padding:26px;

    border-bottom:1px solid rgba(255,255,255,.05);

    text-align:center;

}

.table-row div:first-child{

    text-align:left;

}

.table-head{

    background:rgba(255,255,255,.05);

    font-weight:700;

}

/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    padding:40px;

    border-radius:28px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.stars{

    color:#FFD34D;

    margin-bottom:20px;

    font-size:22px;

}

.testimonial-card p{

    color:var(--muted);

    margin-bottom:25px;

}

.testimonial-card strong{

    font-size:18px;

}

/* =====================================================
   FAQ
===================================================== */

.faq{

    padding-bottom:120px;

}

.faq-list{

    max-width:900px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:20px;

}

.faq-item{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

}

.faq-item:hover{

    border-color:rgba(79,124,255,.25);

}

.faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:none;

    border:none;

    color:white;

    padding:28px;

    font-size:20px;

    font-weight:600;

}

.faq-question span{

    font-size:30px;

    transition:.3s;

}

.faq-item.active .faq-question span{

    transform:rotate(45deg);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 28px 28px;

    color:var(--muted);

    line-height:1.8;

}

/* =====================================================
   CTA
===================================================== */

.cta{

    padding:140px 0;

}

.cta-box{

    position:relative;

    overflow:hidden;

    padding:100px;

    text-align:center;

    border-radius:36px;

    background:

    linear-gradient(
        135deg,
        #3057ff,
        #6748ff
    );

    box-shadow:

    0 50px 120px rgba(48,87,255,.35);

}

.cta-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top,
    rgba(255,255,255,.25),
    transparent 60%);

}

.cta-box h2{

    position:relative;

    font-size:60px;

    margin-bottom:24px;

}

.cta-box p{

    position:relative;

    font-size:20px;

    max-width:650px;

    margin:auto auto 45px;

    opacity:.9;

}

.btn.large{

    position:relative;

    padding:20px 42px;

    font-size:18px;

    background:white;

    color:#111;

}

/* =====================================================
   FOOTER
===================================================== */

footer{

    border-top:1px solid rgba(255,255,255,.05);

    padding:70px 0 30px;

}

.footer-container{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:60px;

}

.footer-container h3{

    font-size:30px;

    margin-bottom:12px;

}

.footer-container p{

    color:var(--muted);

}

.footer-links{

    display:flex;

    gap:35px;

}

.footer-links a{

    color:var(--muted);

    transition:.3s;

}

.footer-links a:hover{

    color:white;

}

.copyright{

    margin-top:55px;

    text-align:center;

    color:#7D879E;

    font-size:14px;

}

/* =====================================================
   REVEAL ANIMATION
===================================================== */

/* Скрываем блоки только если JS действительно работает:
   класс .js ставится инлайном в <head>.
   Иначе при заблокированном скрипте страница остаётся пустой. */

.js .reveal{

    opacity:0;

    transform:translateY(60px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.js .reveal.show{

    opacity:1;

    transform:none;

}

/* =====================================================
   PULSE
===================================================== */

@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.06);

    }

    100%{

        transform:scale(1);

    }

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1200px){

.hero h1{

font-size:60px;

}

.preview-container,
.hero-container{

grid-template-columns:1fr;

}

.hero-right{

margin-top:60px;

}

.features-grid{

grid-template-columns:repeat(2,1fr);

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

.testimonial-grid{

grid-template-columns:1fr;

}

.steps{

grid-template-columns:1fr;

}

.step-line{

display:none;

}

}

@media(max-width:768px){

nav{

display:none;

}

.hero{

padding-top:130px;

}

.hero h1{

font-size:46px;

}

.section-header h2{

font-size:38px;

}

.preview-left h2{

font-size:40px;

}

.features-grid{

grid-template-columns:1fr;

}

.trusted-grid{

grid-template-columns:repeat(2,1fr);

}

.stats-grid{

grid-template-columns:1fr;

}

.footer-container{

flex-direction:column;

}

.cta-box{

padding:60px 30px;

}

.cta-box h2{

font-size:42px;

}

.hero-buttons{

flex-direction:column;

}

.hero-stats{

justify-content:space-between;

gap:20px;

}

}

@media(max-width:480px){

.hero h1{

font-size:38px;

}

.hero p{

font-size:17px;

}

/* На всю ширину растягиваем только основные кнопки в блоках.
   Кнопку в шапке и закреплённую панель это правило
   раньше тоже задевало — строка не помещалась в экран. */

.hero-buttons .btn,
.section-cta .btn,
.cta-box .btn{

width:100%;

}

.browser-window{

border-radius:18px;

}

.video-preview{

height:180px;

}

.section-header{

margin-bottom:50px;

}

}


/* =====================================================
   RU-АДАПТАЦИЯ И БЛОКИ ДЛЯ КОНВЕРСИИ
===================================================== */

/* Шрифт: подстраховка на случай, если Inter не загрузился —
   в кириллице системный стек выглядит корректно */

body{

    font-family:"Inter","Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;

}

/* -----------------------------------------------------
   Уведомление о браузере
----------------------------------------------------- */

.browser-notice{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1100;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    font-size:15px;

    padding:12px 0;

}

.browser-notice-inner{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    text-align:center;

}

.notice-copy{

    border:1px solid rgba(255,255,255,.45);

    background:rgba(255,255,255,.12);

    color:#fff;

    padding:8px 18px;

    border-radius:999px;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.notice-copy:hover{

    background:rgba(255,255,255,.22);

}

/* Высоту полосы считает скрипт: на узких экранах
   текст переносится и занимает две строки */

body.has-notice .navbar{

    top:var(--notice-h,56px);

}

body.has-notice .hero{

    padding-top:calc(140px + var(--notice-h,56px));

}

/* -----------------------------------------------------
   Подпись под кнопкой и метки доверия
----------------------------------------------------- */

.hero-microcopy{

    margin-top:16px;

    font-size:15px;

    color:var(--muted);

}

.hero-trust{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:22px;

}

.trust-chip{

    display:inline-flex;

    align-items:center;

    padding:7px 16px;

    border-radius:999px;

    font-size:14px;

    color:#C9D2E4;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

}

/* -----------------------------------------------------
   Плитки доверия
----------------------------------------------------- */

.trusted-item{

    flex-direction:column;

    gap:8px;

    height:110px;

    padding:0 14px;

    font-size:15px;

    font-weight:500;

    text-align:center;

    line-height:1.35;

}

.trusted-item span{

    font-size:26px;

}

/* -----------------------------------------------------
   Кнопка после блока «Как это работает»
----------------------------------------------------- */

.section-cta{

    margin-top:70px;

    text-align:center;

}

.section-cta .hero-microcopy{

    margin-top:14px;

}

/* -----------------------------------------------------
   Источник отзыва
----------------------------------------------------- */

.review-source{

    display:block;

    margin-top:6px;

    font-size:13px;

    color:var(--muted);

}

/* -----------------------------------------------------
   Закреплённая кнопка на мобильных
----------------------------------------------------- */

.sticky-cta{

    position:fixed;

    left:0;

    bottom:0;

    width:100%;

    z-index:1050;

    display:none;

    align-items:center;

    justify-content:space-between;

    gap:16px;

    padding:12px 18px calc(12px + env(safe-area-inset-bottom));

    background:rgba(5,8,22,.92);

    backdrop-filter:blur(18px);

    border-top:1px solid rgba(255,255,255,.08);

    transform:translateY(110%);

    transition:transform .35s ease;

}

.sticky-cta.show{

    transform:translateY(0);

}

.sticky-cta .btn{

    padding:14px 26px;

    white-space:nowrap;

}

.sticky-cta-text{

    display:flex;

    flex-direction:column;

    line-height:1.25;

}

.sticky-cta-text strong{

    font-size:16px;

}

.sticky-cta-text span{

    font-size:13px;

    color:var(--muted);

}

@media(max-width:900px){

.sticky-cta{

display:flex;

}

footer{

padding-bottom:90px;

}

}

/* -----------------------------------------------------
   Доступность
----------------------------------------------------- */

:focus-visible{

    outline:2px solid var(--primary-light);

    outline-offset:3px;

}

@media(prefers-reduced-motion:reduce){

html{

scroll-behavior:auto;

}

*,
*::before,
*::after{

animation-duration:.01ms !important;

animation-iteration-count:1 !important;

transition-duration:.01ms !important;

}

.js .reveal{

opacity:1;

transform:none;

}

}

/* -----------------------------------------------------
   Планшеты и телефоны
   Русский текст длиннее английского, поэтому кнопка
   в шапке на узких экранах сокращается — иначе
   строка не помещается и появляется горизонтальный скролл.
----------------------------------------------------- */

@media(max-width:768px){

.navbar .btn-primary{

padding:12px 20px;

font-size:14px;

}

.nav-cta-long{

display:none;

}

.hero-microcopy{

font-size:14px;

}

/* Русские названия ссылок длиннее английских —
   переносим их в несколько строк */

.footer-links{

flex-wrap:wrap;

gap:16px 24px;

}

/* Таблица сравнения: с русскими подписями
   колонки в 26px паддинга не помещались в экран */

.table-row{

grid-template-columns:1.6fr .7fr .7fr;

}

.table-row div{

padding:16px 10px;

font-size:14px;

}

}

/* Логотип и кнопка в шапке не должны сжимать друг друга */

.nav-container{

    gap:14px;

}

.logo,
.navbar .btn-primary{

    flex-shrink:0;

}

/* -----------------------------------------------------
   Мелкие экраны
----------------------------------------------------- */

@media(max-width:480px){

.navbar .btn-primary{

padding:11px 16px;

font-size:13px;

}

.logo{

font-size:20px;

}

.badge{

font-size:13px;

}

.trusted-item{

font-size:14px;

}

.browser-notice{

font-size:14px;

}

}

/* =====================================================
   ДЕМО-ВИДЕО
===================================================== */

/* Высота больше не фиксированная: кадр 1280x654,
   пропорция держится сама */

.video-frame{

    height:auto;

    aspect-ratio:1280/654;

    background:#0B1220;

}

.demo-video{

    display:block;

    width:100%;

    height:100%;

    object-fit:cover;

    cursor:pointer;

}

.video-expand{

    position:absolute;

    right:18px;

    bottom:18px;

    padding:10px 18px;

    border:1px solid rgba(255,255,255,.16);

    border-radius:999px;

    background:rgba(5,8,22,.72);

    backdrop-filter:blur(12px);

    color:#fff;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.video-expand:hover{

    background:rgba(5,8,22,.9);

    transform:translateY(-2px);

}

/* -----------------------------------------------------
   Просмотр во весь экран
----------------------------------------------------- */

.lightbox{

    position:fixed;

    inset:0;

    z-index:1200;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:40px;

    background:rgba(3,5,14,.92);

    backdrop-filter:blur(10px);

}

.lightbox[hidden]{

    display:none;

}

.lightbox-video{

    width:min(100%,1280px);

    max-height:100%;

    border-radius:16px;

    box-shadow:var(--shadow);

}

.lightbox-close{

    position:absolute;

    top:24px;

    right:28px;

    width:46px;

    height:46px;

    border:1px solid rgba(255,255,255,.14);

    border-radius:50%;

    background:rgba(255,255,255,.06);

    color:#fff;

    font-size:28px;

    line-height:1;

    transition:.3s;

}

.lightbox-close:hover{

    background:rgba(255,255,255,.14);

}

@media(max-width:768px){

.lightbox{

padding:16px;

}

.lightbox-close{

top:12px;

right:14px;

}

.video-expand{

right:12px;

bottom:12px;

padding:8px 14px;

font-size:13px;

}

}

/* -----------------------------------------------------
   Блок «Живой пример» под запись экрана
   Раньше это была колонка в 565 px — мелкий текст
   на записи рабочего стола там не читался.
   Теперь текст сверху, видео на всю ширину.
----------------------------------------------------- */

.preview-container{

    display:block;

}

.preview-left{

    max-width:820px;

    margin-bottom:55px;

}

.preview-left p{

    max-width:720px;

    margin-bottom:30px;

}

.preview-list{

    display:flex;

    flex-wrap:wrap;

    gap:14px 34px;

}

.preview-right .vk-window{

    max-width:1080px;

    margin:0 auto;

}

@media(max-width:768px){

.preview-left{

margin-bottom:38px;

}

.preview-list{

flex-direction:column;

gap:12px;

}

}

/* Мобильная версия ролика обрезана по карточке —
   у неё другая пропорция */

@media(max-width:768px){

.video-frame{

aspect-ratio:928/628;

}

.demo-video{

cursor:default;

}

.video-expand[hidden]{

display:none;

}

}

.thanks-wrapper {
	height: calc(100vh - 205px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 50px;
}

.thanks-text {
	display: flex;
	flex-direction: column;
	row-gap: 15px;
	align-items: flex-start;
	max-width: 800px;
}

.thanks-text h2 {
	font-size: 32px;
	font-weight: 700;
}

.thanks-text p {
	font-size: 18px;
}