:root{
    --bg:#f5f7fb;
    --bg-soft:#eef3fb;
    --text:#253247;
    --text-soft:#5f6f86;
    --text-muted:#8b97aa;
    --line:rgba(120, 138, 168, 0.14);
    --white:#ffffff;
    --primary:#4d8df7;
    --primary-hover:#3b7ef0;
    --primary-soft:rgba(77,141,247,.12);
    --shadow-lg:0 28px 70px rgba(34, 48, 74, .12);
    --shadow-md:0 18px 40px rgba(34, 48, 74, .10);
    --shadow-sm:0 10px 24px rgba(34, 48, 74, .08);
    --radius-xl:34px;
    --radius-lg:24px;
    --radius-md:18px;
    --container:1240px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    min-width:320px;
}
html {
    scroll-behavior: smooth;
}
.about-page article[id] {
    scroll-margin-top: 200px;
}
body i{
    font-style: normal;
}




img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
ul{margin:0;padding:0;list-style:none}

.page-bg{
    position:fixed;
    inset:0;
    pointer-events:none;
    background:
            radial-gradient(circle at top left, rgba(123,162,255,.16), transparent 35%),
            radial-gradient(circle at top right, rgba(255,255,255,.8), transparent 32%),
            linear-gradient(180deg, #f7f9fc 0%, #f3f5f9 100%);
    z-index:-1;
}

.container{
    width:min(var(--container), calc(100% - 40px));
    margin:0 auto;
}

.site-header{
    padding:22px 0 0;
}

.header-shell{
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-radius:999px;
    box-shadow:var(--shadow-sm);
    min-height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:12px 18px 12px 22px;
    overflow: hidden;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:200px;
}

.brand{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:200px;
    overflow: hidden;

}

.brand__icon{
    width:48px;
    height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:none;
    font-size:25px;
    color:#fff;
    background:#F43F8E;
    border-radius:50%;
    transition:
            transform .25s ease,
            box-shadow .25s ease,
            border-color .25s ease;
}

.brand__logo{
    display:flex;
    align-items:center;
    height:48px;
    flex:none;
}

.brand__logo i{
    display:block;
    font-size:118px;
    line-height:1;
    color:var(--text);
}
.brand:hover .brand__icon{
    -webkit-box-shadow: 0px 0px 6px 5px rgba(34, 60, 80, 0.36) inset;
    -moz-box-shadow: 0px 0px 6px 5px rgba(34, 60, 80, 0.36) inset;
    box-shadow: 0px 0px 6px 5px rgba(34, 60, 80, 0.36) inset;
    transition:
            transform .25s ease,
            box-shadow .25s ease,
            border-color .25s ease;
}





.main-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;
    flex:1;
}

.main-nav a{
    font-size:15px;
    font-weight:500;
    color:var(--text-soft);
    transition:.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active{
    color:var(--primary);
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:none;
    border-radius:999px;
    font-weight:600;
    transition:.2s ease;
    cursor:pointer;
    white-space:nowrap;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
    box-shadow:0 12px 26px rgba(77,141,247,.25);
}

.btn-primary:hover{background:var(--primary-hover)}

.btn-secondary{
    background:rgba(255,255,255,.82);
    color:var(--text);
    border:1px solid rgba(143,156,181,.18);
    box-shadow:var(--shadow-sm);
}

.btn-secondary:hover{background:#fff}

.btn-header{
    height:48px;
    padding:0 24px;
    font-size:15px;
}

.btn-lg{
    height:56px;
    padding:0 26px;
    font-size:16px;
}

.hero{
    padding:34px 0 26px;
}

.hero-shell{
    display:grid;
    grid-template-columns: 520px 1fr;
    align-items:center;
    gap:34px;
    min-height:690px;
}

.hero-copy{
    padding-left:8px;
}

.eyebrow,
.section-badge{
    display:inline-flex;
    align-items:center;
    min-height:38px;
    padding:0 14px;
    border-radius:999px;
    background:var(--primary-soft);
    color:var(--primary);
    font-size:14px;
    font-weight:700;
    margin-bottom:22px;
}

.hero-title{
    margin:0 0 20px;
    font-size:68px;
    line-height:1.02;
    font-weight:800;
    letter-spacing:-0.04em;
    color:var(--text);
}

.hero-text{
    margin:0 0 30px;
    max-width:470px;
    font-size:22px;
    line-height:1.5;
    color:var(--text-soft);
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:28px;
}

.hero-metrics{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.metric-card{
    min-width:170px;
    padding:16px 18px;
    border-radius:20px;
    background:rgba(255,255,255,.82);
    box-shadow:var(--shadow-sm);
}

.metric-card strong{
    display:block;
    font-size:22px;
    line-height:1.1;
    margin-bottom:4px;
}

.metric-card span{
    display:block;
    font-size:14px;
    line-height:1.4;
    color:var(--text-soft);
}

.hero-visual{
    position:relative;
    min-height:640px;
    display:flex;
    align-items:flex-end;
    justify-content:flex-end;
}

.hero-visual__glow{
    position:absolute;
    inset:auto 0 20px auto;
    width:520px;
    height:520px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(104,145,255,.16) 0%, rgba(104,145,255,.06) 38%, rgba(104,145,255,0) 72%);
    filter:blur(8px);
    z-index:0;
}

.hero-image{
    position:relative;
    width:min(840px, 100%);
    border-radius:28px;
    object-fit:cover;
    box-shadow:var(--shadow-lg);
    z-index:1;
}

.contract-card{
    position:absolute;
    top:58px;
    left:70px;
    width:385px;
    padding:24px 24px 18px;
    border-radius:26px;
    background:rgba(255,255,255,.62);
    border:1px solid rgba(255,255,255,.68);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    box-shadow:0 18px 54px rgba(37,50,71,.13);
    z-index:2;
}

.contract-card__title{
    font-size:18px;
    line-height:1.3;
    font-weight:700;
    margin-bottom:16px;
}

.contract-card__label{
    margin-top:14px;
    margin-bottom:6px;
    font-size:13px;
    font-weight:600;
    color:var(--text-muted);
}

.contract-card__value{
    font-size:17px;
    line-height:1.4;
    font-weight:700;
}

.contract-card__text{
    font-size:15px;
    line-height:1.5;
    color:var(--text-soft);
}

.contract-card__line{
    padding:12px 0;
    border-top:1px solid var(--line);
    font-size:15px;
    line-height:1.45;
    color:var(--text);
}

.contract-card__line--between{
    display:flex;
    justify-content:space-between;
    gap:14px;
    align-items:center;
}

.tag{
    display:inline-flex;
    align-items:center;
    min-height:26px;
    padding:0 10px;
    border-radius:10px;
    background:rgba(234,238,246,.92);
    color:var(--text-muted);
    font-size:12px;
    font-weight:700;
    white-space:nowrap;
}

.feature-section{
    padding:30px 0 34px;
}

.feature-panel{
    display:grid;
    grid-template-columns: 470px 1fr;
    align-items:center;
    gap:54px;
    padding:40px 44px;
    border-radius:var(--radius-xl);
    background:linear-gradient(180deg, #eef3fb 0%, #eaf0fa 100%);
    box-shadow:var(--shadow-md);
    margin-bottom:24px;
}

.feature-panel__visual{
    display:flex;
    align-items:center;
    justify-content:center;
}

.transform-card{
    width:100%;
    min-height:320px;
    border-radius:28px;
    position:relative;
    overflow:hidden;
    background:
            radial-gradient(circle at top left, rgba(110,160,255,.22) 0%, rgba(110,160,255,.04) 30%, transparent 56%),
            linear-gradient(180deg, #dce7ff 0%, #cfdcff 100%);
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.45);
}

.transform-card::before{
    content:"";
    position:absolute;
    inset:14px;
    border-radius:22px;
    background:rgba(255,255,255,.42);
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.52);
}

.mini-doc{
    position:absolute;
    top:58px;
    width:176px;
    min-height:198px;
    padding:18px 16px;
    border-radius:18px;
    background:rgba(255,255,255,.78);
    box-shadow:0 16px 34px rgba(56, 76, 120, .12);
    z-index:2;
}

.mini-doc--left{left:32px}
.mini-doc--right{right:32px}

.transform-arrow{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    z-index:2;
    font-size:58px;
    line-height:1;
    color:rgba(77,141,247,.72);
}

.mini-doc__title{
    font-size:15px;
    line-height:1.3;
    font-weight:700;
    margin-bottom:10px;
}
.mini-doc--left .mini-doc__title{
    font-size: 11px;
}

.mini-doc__line{
    font-size:13px;
    line-height:1.45;
    color:var(--text-soft);
    margin-bottom:8px;
}



/* ===== transform-card micro animation ===== */

.transform-card{
    isolation:isolate;
}

.transform-card .mini-doc--left,
.transform-card .mini-doc--right,
.transform-card .transform-arrow{
    will-change:transform, opacity;
}

.transform-card .mini-doc--left{
    z-index:2;
    opacity:0;
    transform:translateY(12px) scale(.96);
}

.transform-card .transform-arrow{
    opacity:0;
    transform:translate(-50%, -50%) scale(.9);
    transition:opacity .35s ease, transform .35s ease;
}

.transform-card .mini-doc--right{
    z-index:3;
    opacity:0;
    transform:translate(22px, 12px) scale(.94);
    transform-origin:center center;
}

.transform-card.is-animated .mini-doc--left{
    animation:transformLeftAppear .55s ease forwards,
    transformLeftFinal 1.1s ease 2.25s forwards;
}

.transform-card.is-animated .transform-arrow{
    animation:transformArrowFlow 2.4s ease forwards;
}

@keyframes transformArrowFlow{
    0%{
        opacity:0;
        transform:translate(-50%, -50%) scale(.9);
    }

    25%{
        opacity:1;
        transform:translate(-50%, -50%) scale(1);
    }

    60%{
        opacity:1;
        transform:translate(-50%, -50%) scale(1);
    }

    100%{
        opacity:0;
        transform:translate(-50%, -50%) scale(.85);
    }
}


.transform-card.is-animated .mini-doc--right{
    animation:transformRightAppear .65s ease .8s forwards,
    transformRightMove .95s cubic-bezier(.22,.8,.22,1) 2.25s forwards;
}

.transform-fill{
    display:inline-block;
    opacity:0;
    transform:translateY(7px);
    filter:blur(2px);
}

.transform-card.is-animated .transform-fill--1{ animation:transformLineIn .35s ease 1.05s forwards; }
.transform-card.is-animated .transform-fill--2{ animation:transformLineIn .35s ease 1.25s forwards; }
.transform-card.is-animated .transform-fill--3{ animation:transformLineIn .35s ease 1.45s forwards; }
.transform-card.is-animated .transform-fill--4{ animation:transformLineIn .35s ease 1.65s forwards; }
.transform-card.is-animated .transform-fill--5{ animation:transformLineIn .35s ease 1.85s forwards; }

@keyframes transformLeftAppear{
    from{
        opacity:0;
        transform:translateY(12px) scale(.96);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

@keyframes transformRightAppear{
    from{
        opacity:0;
        transform:translate(22px, 12px) scale(.94);
    }
    to{
        opacity:1;
        transform:translate(0, 0) scale(1);
    }
}

@keyframes transformLineIn{
    from{
        opacity:0;
        transform:translateY(7px);
        filter:blur(2px);
    }
    to{
        opacity:1;
        transform:translateY(0);
        filter:blur(0);
    }
}

@keyframes transformRightMove{
    from{
        transform:translate(0, 0) scale(1);
    }
    to{
        transform:translate(-96px, 0) scale(1.08);
    }
}

@keyframes transformLeftFinal{
    from{
        transform:translateY(0) scale(1);
        opacity:1;
    }
    to{
        transform:translate(-12px, 0) scale(.92);
        opacity:.82;
    }
}

@media (max-width: 640px){
    @keyframes transformRightMove{
        from{
            transform:translate(0, 0) scale(1);
        }
        to{
            transform:translate(-48px, 0) scale(1.05);
        }
    }

    @keyframes transformLeftFinal{
        from{
            transform:translateY(0) scale(1);
            opacity:1;
        }
        to{
            transform:translate(-6px, 0) scale(.94);
            opacity:.86;
        }
    }
}












.feature-panel__copy h2{
    margin:0 0 18px;
    font-size:42px;
    line-height:1.08;
    letter-spacing:-0.03em;
}

.feature-panel__copy p{
    margin:0 0 24px;
    max-width:560px;
    font-size:19px;
    line-height:1.65;
    color:var(--text-soft);
}

.feature-note,
.info-card__stat{
    display:inline-flex;
    flex-direction:column;
    gap:4px;
    padding:18px 22px;
    border-radius:18px;
    background:#fff;
    box-shadow:var(--shadow-sm);
}

.feature-note strong,
.info-card__stat strong{
    font-size:24px;
    line-height:1.1;
}

.feature-note span,
.info-card__stat span{
    font-size:14px;
    color:var(--text-soft);
}

.feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.info-card{
    background:rgba(255,255,255,.82);
    border-radius:28px;
    box-shadow:var(--shadow-md);
    padding:34px;
}

.info-card__top{
    margin-bottom:18px;
}

.info-card h3{
    margin:0 0 16px;
    font-size:34px;
    line-height:1.12;
    letter-spacing:-0.03em;
}

.info-card p{
    margin:0 0 22px;
    font-size:18px;
    line-height:1.65;
    color:var(--text-soft);
}

.info-list{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:26px;
}

.info-list li{
    position:relative;
    padding-left:24px;
    font-size:16px;
    line-height:1.55;
    color:var(--text-soft);
}

.info-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary);
    box-shadow:0 0 0 5px var(--primary-soft);
}

.cta-section{
    padding:26px 0 70px;
}

.cta-panel{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:36px;
    padding:40px 44px;
    border-radius:32px;
    background:linear-gradient(135deg, #3f87f6 0%, #6fa7ff 100%);
    box-shadow:0 24px 60px rgba(77,141,247,.22);
    color:#fff;
}

.cta-panel .section-badge{
    background:rgba(255,255,255,.16);
    color:#fff;
}

.cta-panel h2{
    margin:0 0 16px;
    font-size:44px;
    line-height:1.08;
    letter-spacing:-0.03em;
}

.cta-panel p{
    margin:0;
    max-width:620px;
    font-size:19px;
    line-height:1.65;
    color:rgba(255,255,255,.88);
}

.cta-panel__actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    justify-content:flex-end;
}

.cta-panel__actions .btn-primary{
    background:#fff;
    color:var(--primary);
    box-shadow:none;
}

.cta-panel__actions .btn-primary:hover{
    background:#f6f8ff;
}

.cta-panel__actions .btn-secondary{
    background:rgba(255,255,255,.14);
    color:#fff;
    border-color:rgba(255,255,255,.24);
    box-shadow:none;
}

.cta-panel__actions .btn-secondary:hover{
    background:rgba(255,255,255,.20);
}

.site-footer{
    padding:0 0 36px;
}

.footer-shell{
    display:grid;
    grid-template-columns: 1.2fr 1fr;
    gap:42px;
    padding:34px 0 24px;
    border-top:1px solid rgba(140,154,178,.18);
}

.brand--footer{
    min-width:auto;
    margin-bottom:16px;
}

.footer-text{
    max-width:440px;
    margin:0;
    font-size:16px;
    line-height:1.7;
    color:var(--text-soft);
}

.footer-cols{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
}

.footer-col{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-title{
    font-size:15px;
    font-weight:700;
    color:var(--text);
    margin-bottom:4px;
}

.footer-col a{
    font-size:15px;
    line-height:1.5;
    color:var(--text-soft);
}

.footer-col a:hover{
    color:var(--primary);
}

.footer-bottom{
    padding-top:18px;
    border-top:1px solid rgba(140,154,178,.12);
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
    font-size:14px;
    color:var(--text-muted);
}

@media (max-width: 1180px){
    .hero-shell{
        grid-template-columns:1fr;
        gap:34px;
        min-height:auto;
    }

    .hero-title{
        font-size:56px;
    }

    .hero-text{
        max-width:680px;
    }

    .hero-visual{
        min-height:560px;
    }

    .contract-card{
        left:38px;
    }

    .feature-panel{
        grid-template-columns:1fr;
        gap:34px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .cta-panel{
        flex-direction:column;
        align-items:flex-start;
    }

    .cta-panel__actions{
        justify-content:flex-start;
    }

    .footer-shell{
        grid-template-columns:1fr;
    }
}

@media (max-width: 900px){
    .header-shell{
        border-radius:28px;
        min-height:auto;
        padding:16px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .main-nav{
        order:3;
        width:100%;
        flex-wrap:wrap;
        gap:18px;
    }

    .hero-title{
        font-size:44px;
    }

    .hero-text{
        font-size:18px;
    }

    .hero-visual{
        min-height:470px;
    }

    .contract-card{
        width:320px;
        left:18px;
        top:18px;
    }

    .feature-panel,
    .info-card,
    .cta-panel{
        padding:28px 22px;
    }

    .feature-panel__copy h2,
    .info-card h3,
    .cta-panel h2{
        font-size:34px;
    }

    .feature-panel__copy p,
    .info-card p,
    .cta-panel p{
        font-size:17px;
    }

    .footer-cols{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width: 640px){
    .container{
        width:calc(100% - 24px);
    }

    .site-header{
        padding-top:12px;
    }

    .hero{
        padding-top:20px;
    }

    .hero-title{
        font-size:36px;
    }

    .hero-actions,
    .cta-panel__actions{
        flex-direction:column;
        align-items:stretch;
    }

    .btn-lg{
        width:100%;
    }

    .hero-visual{
        min-height:360px;
    }

    .contract-card{
        width:270px;
        padding:16px;
    }

    .contract-card__title{
        font-size:16px;
    }

    .contract-card__value{
        font-size:15px;
    }

    .mini-doc{
        width:132px;
        min-height:172px;
        top:58px;
        padding:12px;
    }

    .mini-doc--left{left:18px}
    .mini-doc--right{right:18px}
    .transform-arrow{font-size:38px}
    .mini-doc__title{font-size:12px}
    .mini-doc__line{font-size:11px}

    .footer-cols{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
    }
}







.section-head{
    max-width:780px;
    margin:0 auto 34px;
    text-align:center;
}

.section-head--inner{
    margin-bottom:42px;
}

.section-title{
    margin:0 0 14px;
    font-size:48px;
    line-height:1.08;
    letter-spacing:-0.03em;
}

.section-text{
    margin:0;
    font-size:19px;
    line-height:1.65;
    color:var(--text-soft);
}

.tariffs-section{
    padding:28px 0 34px;
}

.tariffs-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.tariffs-grid--full{
    grid-template-columns:repeat(3, 1fr);
}

.tariff-card{
    position:relative;
    background:rgba(255,255,255,.88);
    border-radius:28px;
    box-shadow:var(--shadow-md);
    padding:34px;
    display:flex;
    flex-direction:column;
    min-height:100%;
}

.tariff-card--popular{
    border:2px solid rgba(77,141,247,.24);
    box-shadow:0 24px 54px rgba(77,141,247,.16);
}

.tariff-badge{
    position:absolute;
    top:18px;
    right:18px;
    min-height:30px;
    padding:0 12px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    background:var(--primary-soft);
    color:var(--primary);
    font-size:13px;
    font-weight:700;
}

.tariff-card h3{
    margin:0 0 10px;
    font-size:30px;
    line-height:1.15;
    letter-spacing:-0.03em;
}

.tariff-price{
    font-size:28px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:22px;
}

.tariff-list{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:26px;
}

.tariff-list li{
    position:relative;
    padding-left:24px;
    font-size:16px;
    line-height:1.55;
    color:var(--text-soft);
}

.tariff-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary);
    box-shadow:0 0 0 5px var(--primary-soft);
}

.tariff-btn{
    margin-top:auto;
    width:100%;
}

.section-bottom-link{
    margin-top:28px;
    text-align:center;
}

.inner-page{
    padding:44px 0 80px;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

@media (max-width: 1180px){
    .tariffs-grid,
    .tariffs-grid--full,
    .about-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width: 900px){
    .section-title{
        font-size:38px;
    }

    .section-text{
        font-size:17px;
    }

    .tariff-card{
        padding:28px 22px;
    }

    .tariff-card h3{
        font-size:28px;
    }
}

@media (max-width: 640px){
    .section-title{
        font-size:32px;
    }
}


.modules-note{
    margin-top:28px;
    padding:28px 30px;
    background:rgba(255,255,255,.82);
    border-radius:24px;
    box-shadow:var(--shadow-sm);
    text-align:center;
}

.modules-note__title{
    font-size:24px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:10px;
    color:var(--text);
}

.modules-note__text{
    max-width:860px;
    margin:0 auto;
    font-size:17px;
    line-height:1.65;
    color:var(--text-soft);
}

@media (max-width: 900px){
    .modules-note{
        padding:22px;
    }

    .modules-note__title{
        font-size:22px;
    }

    .modules-note__text{
        font-size:16px;
    }
}



.modules-section{
    margin-top:40px;
}

.modules-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.module-card{
    background:rgba(255,255,255,.9);
    border-radius:24px;
    box-shadow:var(--shadow-md);
    padding:26px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.module-card__title{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

.module-card__text{
    font-size:15px;
    line-height:1.6;
    color:var(--text-soft);
    margin-bottom:20px;
}

.module-card__bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.module-price{
    font-size:18px;
    font-weight:700;
}

.module-btn{
    height:40px;
    padding:0 14px;
    font-size:14px;
}

@media (max-width: 1180px){
    .modules-grid{
        grid-template-columns:1fr;
    }
}



/* ===== БЛОК: 1 МЕСЯЦ БЕСПЛАТНО ===== */

.trial-panel{
    margin-top:34px;
    padding:40px 42px;
    border-radius:32px;
    background:linear-gradient(135deg, #ffffff 0%, #f3f7ff 100%);
    box-shadow:var(--shadow-md);
    text-align:center;
    position:relative;
    overflow:hidden;
}

/* легкий glow */
.trial-panel::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:radial-gradient(circle, rgba(77,141,247,0.15) 0%, rgba(77,141,247,0) 70%);
    top:-120px;
    right:-120px;
    border-radius:50%;
    pointer-events:none;
}

.trial-panel--home{
    margin: 0px !important;
    margin-bottom: 40px !important;
}

.trial-panel__badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:0 14px;
    border-radius:999px;
    background:var(--primary-soft);
    color:var(--primary);
    font-size:13px;
    font-weight:700;
    margin-bottom:16px;
}

.trial-panel__title{
    margin:0 0 14px;
    font-size:38px;
    line-height:1.15;
    letter-spacing:-0.03em;
    font-weight:800;
    color:var(--text);
}

.trial-panel__text{
    max-width:820px;
    margin:0 auto;
    font-size:18px;
    line-height:1.7;
    color:var(--text-soft);
}

.trial-panel__actions{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:26px;
}

/* усиление кнопки внутри блока */
.trial-panel .btn-primary{
    box-shadow:0 16px 32px rgba(77,141,247,0.28);
}

/* ===== адаптив ===== */

@media (max-width: 900px){

    .trial-panel{
        padding:28px 24px;
    }

    .trial-panel__title{
        font-size:28px;
    }

    .trial-panel__text{
        font-size:16px;
    }
}

@media (max-width: 640px){

    .trial-panel__actions{
        flex-direction:column;
        align-items:stretch;
    }

    .trial-panel__actions .btn-lg{
        width:100%;
    }
}


.trial-panel .btn-primary:hover{
    transform:translateY(-2px);
}






/* =========================================================
   DEMO PAGE
   ========================================================= */

.demo-section{
    padding:34px 0 70px;
}

.demo-shell{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.demo-intro{
 text-align: center;
}

.demo-title{
    margin:0 0 18px;
    font-size:52px;
    line-height:1.06;
    font-weight:800;
    letter-spacing:-0.04em;
    color:var(--text);
}

.demo-text{
    margin:0;
    font-size:19px;
    line-height:1.6;
    color:var(--text-soft);
}

.demo-steps{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:26px;
    justify-content: space-between;
}

.demo-step{
    display:flex;
    align-items:center;
    gap:12px;
    min-height:58px;
    padding:0 18px 0 12px;
    background:rgba(255,255,255,.82);
    border-radius:18px;
    box-shadow:var(--shadow-sm);
    color:var(--text);
    font-size:15px;
    font-weight:600;
}

.demo-step span{
    width:34px;
    height:34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:15px;
    font-weight:700;
    flex:none;
}

.demo-grid{
    display:grid;
    grid-template-columns: 560px 1fr;
    gap:24px;
    align-items:start;
}

.demo-form-card,
.demo-preview-card,
.demo-result-box{
    background:rgba(255,255,255,.82);
    border:1px solid rgba(143,156,181,.12);
    border-radius:30px;
    box-shadow:var(--shadow-lg);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}

.demo-form-card{
    padding:28px;
    position:relative;
    z-index:5;
}

.demo-form-card__title{
    font-size:28px;
    line-height:1.15;
    font-weight:800;
    color:var(--text);
    margin-bottom:10px;
}

.demo-form-card__text{
    font-size:15px;
    line-height:1.6;
    color:var(--text-soft);
    margin-bottom:22px;
}

.demo-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.demo-field{
    position:relative;
}

.demo-field-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.demo-label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:700;
    color:var(--text);
}

.demo-input{
    width:100%;
    height:54px;
    padding:0 18px;
    border-radius:16px;
    border:1px solid rgba(143,156,181,.22);
    background:#fff;
    font-family:inherit;
    font-size:15px;
    color:var(--text);
    outline:none;
    transition:.2s ease;
}

.demo-input:focus{
    border-color:rgba(77,141,247,.6);
    box-shadow:0 0 0 4px rgba(77,141,247,.08);
}

.demo-input::placeholder{
    color:#98a4ba;
}

.demo-field--search{
    position:relative;
}

.demo-field--search:focus-within{
    z-index:50;
}

.demo-suggest{
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    display:none;
    background:#fff;
    border:1px solid rgba(143,156,181,.18);
    border-radius:18px;
    box-shadow:0 18px 42px rgba(30,48,86,.14);
    overflow:hidden;
    z-index:200;
    max-height:320px;
    overflow-y:auto;
}

.demo-suggest__item{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:4px;
    text-align:left;
    border:none;
    background:#fff;
    padding:14px 16px;
    cursor:pointer;
    transition:.2s ease;
}

.demo-suggest__item + .demo-suggest__item{
    border-top:1px solid rgba(143,156,181,.12);
}

.demo-suggest__item:hover{
    background:#f7faff;
}

.demo-suggest__name{
    font-size:14px;
    font-weight:700;
    color:var(--text);
    line-height:1.4;
}

.demo-suggest__meta{
    font-size:13px;
    color:var(--text-soft);
    line-height:1.4;
}

.demo-company-picked{
    padding:16px 18px;
    border-radius:18px;
    background:linear-gradient(180deg, rgba(92,144,255,.08) 0%, rgba(92,144,255,.04) 100%);
    border:1px solid rgba(92,144,255,.16);
}

.demo-company-picked__title{
    font-size:13px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:8px;
}

.demo-company-picked__name{
    font-size:15px;
    font-weight:700;
    color:var(--text);
    margin-bottom:6px;
    line-height:1.45;
}

.demo-company-picked__meta,
.demo-company-picked__addr{
    font-size:13px;
    line-height:1.55;
    color:var(--text-soft);
}

.demo-submit-btn{
    width:100%;
    margin-top:4px;
}

.demo-form-note{
    margin-top:-2px;
    font-size:13px;
    line-height:1.55;
    color:var(--text-soft);
}

.demo-preview-card{
    padding:28px;
}

.demo-preview-card__head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:20px;
}

.demo-preview-card__eyebrow{
    font-size:13px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:8px;
}

.demo-preview-card__title{
    font-size:24px;
    line-height:1.15;
    font-weight:800;
    color:var(--text);
}

.demo-preview-doc{
    padding:22px;
    border-radius:22px;
    background:#fff;
    box-shadow:var(--shadow-sm);
}

.demo-preview-doc__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:18px;
    font-size:16px;
    color:var(--text);
}

.demo-preview-doc__label{
    margin-top:14px;
    margin-bottom:6px;
    font-size:12px;
    font-weight:700;
    letter-spacing:.03em;
    text-transform:uppercase;
    color:#8b97ac;
}

.demo-preview-doc__value{
    font-size:18px;
    line-height:1.45;
    font-weight:700;
    color:var(--text);
}

.demo-preview-doc__text{
    font-size:15px;
    line-height:1.6;
    color:var(--text-soft);
}

.demo-preview-doc__row{
    margin-top:16px;
    padding-top:16px;
    border-top:1px solid rgba(143,156,181,.14);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    font-size:15px;
    color:var(--text-soft);
}

.demo-preview-doc__row strong{
    color:var(--text);
    font-size:16px;
}

.demo-preview-mini-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-top:16px;
}

.demo-mini-doc{
    padding:18px;
    border-radius:20px;
    background:#fff;
    box-shadow:var(--shadow-sm);
}

.demo-mini-doc--full{
    grid-column:1 / -1;
}

.demo-mini-doc__title{
    font-size:15px;
    font-weight:800;
    color:var(--text);
    margin-bottom:14px;
}

.demo-mini-doc__row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    font-size:14px;
    color:var(--text-soft);
}

.demo-mini-doc__row strong{
    color:var(--text);
}

.demo-preview-tip{
    margin-top:9px;
    padding:16px 18px;
    border-radius:18px;
    background:rgba(255,255,255,.66);
    font-size:14px;
    line-height:1.55;
    color:var(--text-soft);
}

.demo-result-wrap{
    min-height:20px;
}

.demo-result-box{
    padding:28px;
}

.demo-result-box__eyebrow{
    display:inline-flex;
    align-items:center;
    min-height:32px;
    padding:0 12px;
    border-radius:999px;
    background:var(--primary-soft);
    color:var(--primary);
    font-size:13px;
    font-weight:700;
    margin-bottom:12px;
}

.demo-result-box__title{
    margin:0 0 10px;
    font-size:30px;
    line-height:1.12;
    font-weight:800;
    color:var(--text);
}

.demo-result-box__text{
    margin:0;
    max-width:760px;
    font-size:15px;
    line-height:1.65;
    color:var(--text-soft);
}

.demo-result-summary{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:14px;
    margin-top:22px;
}

.demo-result-summary__item{
    padding:18px;
    border-radius:20px;
    background:#fff;
    box-shadow:var(--shadow-sm);
}

.demo-result-summary__item span{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:700;
    color:#8b97ac;
    text-transform:uppercase;
    letter-spacing:.03em;
}

.demo-result-summary__item strong{
    display:block;
    font-size:16px;
    line-height:1.5;
    color:var(--text);
}

.demo-doc-list{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
    margin-top:18px;
}

.demo-doc-card{
    padding:20px;
    border-radius:22px;
    background:#fff;
    box-shadow:var(--shadow-sm);
}

.demo-doc-card__top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
    margin-bottom:14px;
}

.demo-doc-card__type{
    font-size:16px;
    font-weight:800;
    color:var(--text);
    margin-bottom:4px;
}

.demo-doc-card__number{
    font-size:14px;
    color:var(--text-soft);
}

.demo-doc-card__sum{
    font-size:15px;
    font-weight:800;
    color:var(--primary);
    white-space:nowrap;
}

.demo-doc-lines{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.demo-doc-lines__row{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
    font-size:14px;
    line-height:1.5;
    color:var(--text-soft);
}

.demo-doc-lines__row strong{
    color:var(--text);
    white-space:nowrap;
}

.demo-result-note{
    margin-top:18px;
    padding:18px 20px;
    border-radius:20px;
    background:linear-gradient(180deg, rgba(92,144,255,.08) 0%, rgba(92,144,255,.04) 100%);
    border:1px solid rgba(92,144,255,.12);
    font-size:15px;
    line-height:1.65;
    color:var(--text);
}

@media (max-width: 1200px){
    .demo-grid{
        grid-template-columns:1fr;
    }

    .demo-title{
        font-size:46px;
    }
}

@media (max-width: 860px){
    .demo-title{
        font-size:38px;
    }

    .demo-field-grid,
    .demo-result-summary,
    .demo-doc-list,
    .demo-preview-mini-grid{
        grid-template-columns:1fr;
    }

    .demo-form-card,
    .demo-preview-card,
    .demo-result-box{
        padding:22px;
        border-radius:24px;
    }

    .demo-preview-doc__top,
    .demo-preview-doc__row,
    .demo-doc-card__top,
    .demo-doc-lines__row{
        flex-direction:column;
        align-items:flex-start;
    }
}


.demo-debug-box{
    padding:18px;
    border-radius:20px;
    background:rgba(255,255,255,.56);
    border:1px dashed rgba(143,156,181,.28);
}

.demo-debug-box + .demo-debug-box{
    margin-top:0;
}

.demo-debug-box__title{
    margin-bottom:14px;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.04em;
    color:var(--primary);
}



.demo-doc-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:12px;
}

.demo-doc-btn{
    min-height:40px;
    padding:0 16px;
    font-size:14px;
}

@media (max-width: 860px){
    .demo-doc-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .demo-doc-btn{
        width:100%;
    }
}


.debug-hidden{
    display:none;
}


.demo-doc-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.demo-doc-btn i{
    font-size:16px;
    display:inline-flex;
}


.demo-final-cta{
    margin-top:26px;
    padding:28px 30px;
    border-radius:26px;
    background:linear-gradient(180deg, rgba(77,141,247,.08) 0%, rgba(77,141,247,.04) 100%);
    border:1px solid rgba(77,141,247,.12);
    text-align:center;
}

.demo-final-cta__title{
    font-size:22px;
    font-weight:800;
    margin-bottom:12px;
    color:var(--text);
}

.demo-final-cta__text{
    font-size:15px;
    line-height:1.6;
    color:var(--text-soft);
    margin-bottom:18px;
}

.demo-final-cta__actions{
    display:flex;
    justify-content:center;
}


.demo-doc-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.demo-doc-btn > i{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    line-height:1;
    position:relative;
}

.demo-doc-btn > i i{
    font-size:18px;
    line-height:1;
}


















/* ========== CLEAN REVEAL (СПОКОЙНАЯ АНИМАЦИЯ) ========== */

.js-reveal{
    opacity: 0;
    transform: translateY(18px);
    transition:
            opacity .55s ease,
            transform .55s ease;
    will-change: opacity, transform;
}

.js-reveal.is-visible{
    opacity: 1;
    transform: translateY(0);
}


/* ========== КАРТОЧКИ (МЯГКИЙ HOVER) ========== */

.metric-card,
.info-card,
.tariff-card,
.feature-panel,
.trial-panel,
.cta-panel{
    transition:
            transform .25s ease,
            box-shadow .25s ease,
            border-color .25s ease;
}

.metric-card:hover,
.info-card:hover,
.tariff-card:hover,
.feature-panel:hover,
.trial-panel:hover,
.cta-panel:hover{
    transform: translateY(-4px);
}

/* чуть глубины только там где нужно */
.info-card:hover,
.tariff-card:hover,
.feature-panel:hover{
    box-shadow: 0 14px 32px rgba(31, 54, 88, .10);
}


/* ========== ВИЗУАЛЫ (ОЧЕНЬ АККУРАТНО) ========== */

.hero-visual,
.contract-card,
.transform-card{
    transition: transform .35s ease;
}

/* лёгкое движение только в hero */
.hero:hover .hero-visual{
    transform: translateY(-3px);
}

.hero:hover .contract-card{
    transform: translateY(-4px);
}

/* картинка — почти незаметно */
.hero-image{
    transition: transform .5s ease;
}

.hero:hover .hero-image{
    transform: scale(1.02);
}

/* feature блок */
.feature-panel:hover .transform-card{
    transform: translateY(-3px);
}


/* ========== КНОПКИ (АККУРАТНО) ========== */

.btn{
    transition:
            transform .2s ease,
            box-shadow .2s ease;
}

.btn:hover{
    transform: translateY(-1px);
}


/* ========== СПИСКИ (ЕДВА ЗАМЕТНО) ========== */


/* ========== MOBILE — ОТКЛЮЧАЕМ ЛИШНЕЕ ========== */

@media (max-width: 900px){

    .metric-card:hover,
    .info-card:hover,
    .tariff-card:hover,
    .feature-panel:hover,
    .trial-panel:hover,
    .cta-panel:hover{
        transform: none;
        box-shadow: none;
    }

    .hero:hover .hero-visual,
    .hero:hover .contract-card,
    .hero:hover .hero-image,
    .feature-panel:hover .transform-card{
        transform: none;
    }
}









.register-page, .legal-page {
    padding: 56px 0 96px;
}

.legal-card {
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(18, 32, 67, 0.08);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(31, 61, 136, 0.08);
    padding: 28px;
}


.register-shell {
    display: grid;
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}

.register-card {
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(18, 32, 67, 0.08);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(31, 61, 136, 0.08);
    padding: 28px;
}

.register-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #11203f;
}

.register-card--success {
    border-color: rgba(37, 154, 93, 0.18);
}

.register-note {
    color: #5a6784;
    margin-bottom: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start; /* ВОТ ЭТО */
}

.form-group {
    display: grid;
    gap: 8px;
    position: relative;
    align-items:flex-start;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #31405f;
}
.centr_align{
    text-align: center;
}

.form-input {
    width: 100%;
    height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(18, 32, 67, 0.12);
    background: #fff;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    transition: 0.2s ease;
}

.form-input:focus {
    border-color: rgba(56, 114, 255, 0.42);
    box-shadow: 0 0 0 4px rgba(56, 114, 255, 0.08);
}

.register-actions {
    margin-top: 18px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .register-card {
        padding: 20px;
        border-radius: 22px;
    }
}















/* ========== ABOUT PAGE ========== */

.about-page{
    padding: 36px 0 96px;
}

.about-page .container{
    max-width: 1320px;
}

.about-animate{
    opacity: 0;
    transform: translateY(34px);
    transition:
            opacity .8s ease,
            transform .8s ease,
            box-shadow .3s ease,
            border-color .3s ease;
    will-change: opacity, transform;
}

.about-animate.is-visible{
    opacity: 1;
    transform: translateY(0);
}

.about-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.10);
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
}

.about-badge--light{
    background: rgba(59, 130, 246, 0.08);
}

.about-mini-badge{
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.10);
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
}

.about-section-head{
    max-width: 860px;
    margin: 0 auto 30px;
    text-align: center;
}

.about-section-head h2{
    margin: 14px 0 12px;
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.about-section-head p{
    margin: 0;
    font-size: 17px;
    line-height: 1.72;
    color: #64748b;
}

.about-hero{
    margin-bottom: 34px;
}

.about-hero__inner{
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: 34px;
    align-items: center;
    padding: 34px;
    border-radius: 34px;
    background:
            radial-gradient(circle at left top, rgba(96, 165, 250, .10), transparent 26%),
            radial-gradient(circle at right bottom, rgba(129, 140, 248, .10), transparent 24%),
            rgba(255,255,255,.82);
    border: 1px solid rgba(196, 210, 232, .65);
    box-shadow: 0 20px 56px rgba(31, 54, 88, .08);
    backdrop-filter: blur(12px);
}

.about-title{
    margin: 18px 0 16px;
    font-size: 56px;
    line-height: 1.03;
    letter-spacing: -0.045em;
    color: #0f172a;
}

.about-subtitle{
    margin: 0;
    font-size: 18px;
    line-height: 1.78;
    color: #64748b;
}

.about-subtitle strong{
    color: #0f172a;
    font-weight: 700;
}

.about-hero__actions{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.about-hero__trust{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.about-trust-item{
    padding: 18px 16px;
    border-radius: 22px;
    background: rgba(246, 249, 255, .95);
    border: 1px solid rgba(214, 225, 243, .8);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.about-trust-item__value{
    display: block;
    margin-bottom: 6px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
}

.about-trust-item__label{
    display: block;
    font-size: 14px;
    line-height: 1.45;
    color: #64748b;
}

.about-hero__visual{
    min-width: 0;
}

.about-hero-shot{
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(203, 214, 233, .8);
    box-shadow: 0 24px 64px rgba(31, 54, 88, .12);
    transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
    transform-origin: center;
    transition: transform .45s ease, box-shadow .45s ease;
}

.about-hero:hover .about-hero-shot{
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(-4px);
    box-shadow: 0 30px 76px rgba(31, 54, 88, .16);
}

.about-hero-shot img{
    display: block;
    width: 100%;
    height: auto;
}

.about-problems{
    margin-bottom: 34px;
    padding: 30px;
    border-radius: 32px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(196, 210, 232, .56);
    box-shadow: 0 18px 48px rgba(31, 54, 88, .07);
}

.about-problems__grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.about-problem-card{
    padding: 24px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(248, 250, 255, .96) 0%, rgba(241, 246, 255, .96) 100%);
    border: 1px solid rgba(214, 225, 243, .9);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.about-problem-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(31, 54, 88, .10);
    border-color: rgba(156, 180, 224, .85);
}

.about-problem-card__icon{
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #3b82f6 0%, #7c93ff 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(59, 130, 246, .22);
}

.about-problem-card h3{
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.22;
    color: #0f172a;
}

.about-problem-card p{
    margin: 0;
    font-size: 15px;
    line-height: 1.68;
    color: #64748b;
}

.about-features{
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-feature{
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 34px;
    align-items: center;
    padding: 30px;
    border-radius: 32px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(196, 210, 232, .56);
    box-shadow: 0 18px 48px rgba(31, 54, 88, .07);
}

.about-feature:hover{
    box-shadow: 0 24px 58px rgba(31, 54, 88, .10);
    border-color: rgba(178, 197, 228, .9);
}

.about-feature--reverse{
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.about-feature--reverse .about-feature__content{
    order: 2;
}

.about-feature--reverse .about-feature__visual{
    order: 1;
}

.about-feature__content h2{
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.about-feature__content p{
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.74;
    color: #64748b;
}

.about-feature__list{
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-feature__list li{
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.65;
    color: #64748b;
}

.about-feature__list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 0 5px rgba(59, 130, 246, .12);
}

.about-feature__visual{
    min-width: 0;
}

.about-feature__visual--double{
    display: grid;
    gap: 18px;
}

.about-shot{
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(203, 214, 233, .82);
    box-shadow: 0 18px 48px rgba(31, 54, 88, .10);
    transition: transform .35s ease, box-shadow .35s ease;
}

.about-feature:hover .about-shot{
    box-shadow: 0 24px 58px rgba(31, 54, 88, .14);
}

.about-shot img{
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1.01);
}

.about-shot--tilt{
    transform: perspective(1200px) rotateY(-4deg) rotateX(1.5deg);
}

.about-feature:hover .about-shot--tilt{
    transform: perspective(1200px) rotateY(-1deg) rotateX(.5deg) translateY(-4px);
}

.about-shot--float{
    transform: translateY(0);
}

.about-feature:hover .about-shot--float{
    transform: translateY(-6px);
}

.about-shot--small{
    max-width: 100%;
}

.about-shot--offset{
    transform: translateX(38px);
}

.about-feature:hover .about-shot--offset{
    transform: translateX(28px) translateY(-6px);
}

.about-steps{
    margin-top: 34px;
    padding: 30px;
    border-radius: 32px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(196, 210, 232, .56);
    box-shadow: 0 18px 48px rgba(31, 54, 88, .07);
}

.about-steps__grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-step-card{
    position: relative;
    padding: 26px 22px 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(248, 250, 255, .96) 0%, rgba(241, 246, 255, .96) 100%);
    border: 1px solid rgba(214, 225, 243, .9);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.about-step-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(31, 54, 88, .10);
    border-color: rgba(156, 180, 224, .85);
}

.about-step-card__num{
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #7c93ff 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(59, 130, 246, .22);
}

.about-step-card h3{
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.2;
    color: #0f172a;
}

.about-step-card p{
    margin: 0;
    font-size: 15px;
    line-height: 1.68;
    color: #64748b;
}

.about-final{
    margin-top: 34px;
}

.about-final__inner{
    position: relative;
    overflow: hidden;
    padding: 44px 34px;
    border-radius: 34px;
    text-align: center;
    background:
            radial-gradient(circle at top left, rgba(96, 165, 250, .14), transparent 25%),
            radial-gradient(circle at bottom right, rgba(129, 140, 248, .14), transparent 22%),
            rgba(255,255,255,.82);
    border: 1px solid rgba(196, 210, 232, .65);
    box-shadow: 0 20px 56px rgba(31, 54, 88, .08);
}

.about-final__inner h2{
    margin: 18px 0 14px;
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.about-final__inner p{
    max-width: 860px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.76;
    color: #64748b;
}

.about-final__actions{
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* responsive */

@media (max-width: 1240px){
    .about-title{
        font-size: 48px;
    }

    .about-feature__content h2,
    .about-section-head h2,
    .about-final__inner h2{
        font-size: 38px;
    }

    .about-problems__grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px){
    .about-hero__inner,
    .about-feature,
    .about-feature--reverse{
        grid-template-columns: 1fr;
    }

    .about-feature--reverse .about-feature__content,
    .about-feature--reverse .about-feature__visual{
        order: initial;
    }

    .about-hero__trust{
        grid-template-columns: 1fr;
    }

    .about-steps__grid{
        grid-template-columns: 1fr;
    }

    .about-shot--offset{
        transform: none;
    }

    .about-feature:hover .about-shot--offset{
        transform: translateY(-6px);
    }
}

@media (max-width: 900px){
    .about-page{
        padding: 28px 0 72px;
    }

    .about-hero__inner,
    .about-problems,
    .about-feature,
    .about-steps,
    .about-final__inner{
        padding: 22px;
        border-radius: 26px;
    }

    .about-title{
        font-size: 38px;
    }

    .about-feature__content h2,
    .about-section-head h2,
    .about-final__inner h2{
        font-size: 30px;
    }

    .about-subtitle,
    .about-feature__content p,
    .about-section-head p,
    .about-final__inner p{
        font-size: 16px;
        line-height: 1.68;
    }

    .about-problems__grid{
        grid-template-columns: 1fr;
    }

    .about-hero-shot{
        transform: none;
    }

    .about-hero:hover .about-hero-shot{
        transform: translateY(-4px);
    }
}

@media (max-width: 640px){
    .about-page{
        padding: 20px 0 58px;
    }

    .about-title{
        font-size: 32px;
    }

    .about-feature__content h2,
    .about-section-head h2,
    .about-final__inner h2{
        font-size: 26px;
    }

    .about-hero__actions,
    .about-final__actions{
        flex-direction: column;
    }

    .about-hero__actions .btn,
    .about-final__actions .btn{
        width: 100%;
    }

    .about-feature__visual--double{
        gap: 14px;
    }

    .about-shot{
        border-radius: 18px;
    }
}












.form-group--full{
    grid-column:1 / -1;
}

.form-error{
    display:none;
    font-size:13px;
    line-height:1.45;
    color:#d13b45;
    margin-top:2px;
    text-align: center;
}

.form-input--error{
    border-color:rgba(209,59,69,.48)!important;
    box-shadow:0 0 0 4px rgba(209,59,69,.08)!important;
}

.register-info-box{
    margin-bottom:18px;
    padding:16px 18px;
    border-radius:18px;
    background:linear-gradient(180deg, rgba(92,144,255,.08) 0%, rgba(92,144,255,.04) 100%);
    border:1px solid rgba(92,144,255,.16);
    color:#31405f;
    line-height:1.55;
}

.register-actions--stack{
    display:grid;
    gap:16px;
}

.register-subactions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-direction: column;
}

.register-timer{
    font-size:14px;
    color:#5a6784;
}

.register-back-link{
    border:none;
    background:none;
    padding:0;
    text-align:left;
    color:var(--primary);
    font-size:14px;
    font-weight:600;
    cursor:pointer;
}

.register-back-link:hover{
    text-decoration:underline;
}

.register-shell--narrow{
    max-width:760px;
}

.register-success-text{
    color:#31405f;
    line-height:1.7;
}

.demo-picked{
    margin-top:16px;
    padding:16px 18px;
    border-radius:18px;
    background:linear-gradient(180deg, rgba(92,144,255,.08) 0%, rgba(92,144,255,.04) 100%);
    border:1px solid rgba(92,144,255,.16);
}

.demo-picked__title{
    font-size:15px;
    font-weight:700;
    color:#11203f;
    line-height:1.45;
    margin-bottom:8px;
}

.demo-picked__meta{
    font-size:13px;
    color:#5a6784;
    line-height:1.45;
    margin-bottom:6px;
}

.demo-picked__address{
    font-size:14px;
    color:#31405f;
    line-height:1.5;
}

@media (max-width:768px){
    .register-subactions{
        flex-direction:column;
        align-items:flex-start;
    }
}

.register-page .btn{
    padding: 15px;

}



.sms-code{
    display:grid;
    grid-template-columns:repeat(4, 72px);
    gap:14px;
    align-items:center;
    margin-top:2px;
    justify-content:center;
}

.sms-code__input{
    width:72px;
    height:72px;
    border-radius:20px;
    border:1px solid rgba(146, 164, 196, .32);
    background:#fff;
    text-align:center;
    font-size:28px;
    font-weight:700;
    line-height:1;
    color:#11203f;
    outline:none;
    box-shadow:0 10px 30px rgba(17, 32, 63, .05);
    transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sms-code__input:hover{
    border-color:rgba(92, 144, 255, .35);
}

.sms-code__input:focus{
    border-color:rgba(92, 144, 255, .55);
    box-shadow:0 0 0 4px rgba(92, 144, 255, .10), 0 12px 32px rgba(17, 32, 63, .08);
    transform:translateY(-1px);
}

.sms-code--error .sms-code__input{
    border-color:rgba(209, 59, 69, .48);
    box-shadow:0 0 0 4px rgba(209, 59, 69, .08);
}

@media (max-width: 640px){
    .sms-code{
        grid-template-columns:repeat(4, minmax(54px, 1fr));
        gap:10px;
    }

    .sms-code__input{
        width:100%;
        height:60px;
        font-size:24px;
        border-radius:16px;
    }
}


.offer_blok{
    font-size: 15px;
    display: flex;
    color: var(--text-soft);
    flex-direction: column;
    align-items:flex-start;
}
.offer_blok a{
    padding: 4px;

}




.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-banner.is-hidden {
    display: none;
}

.cookie-banner__text {
    flex: 1 1 auto;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.cookie-banner__text a {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner__btn {
    flex: 0 0 auto;
    border: 0;
    border-radius: 14px;
    padding: 12px 18px;
    background: #1C75F3;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .18s ease, opacity .18s ease;
}

.cookie-banner__btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}
@media (max-width: 767px) {

    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
        border-radius: 18px;
    }

    .cookie-banner__btn {
        width: 100%;
    }
}

.legal-page p, .legal-page a, .legal-page ul, .legal-page li{
    font-size: 16px;
    font-weight: 400;
    margin: 0px;
    line-height: 28px;
}
.legal-page ul{
    margin-left: 30px;
    list-style: disc;
}


.header-burger{
    display: none;
}


@media (max-width: 650px){
    .header-shell{
        position: relative;
        justify-content: flex-start;
    }

    .header-burger{
        width: 46px;
        height: 46px;
        border: 0;
        border-radius: 50%;
        background: #f3f6fb;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        flex: none;
        transition: .2s ease;
    }

    .header-burger span{
        width: 18px;
        height: 2px;
        border-radius: 10px;
        background: var(--text);
        display: block;
        transition: .2s ease;
    }

    .header-burger:hover{
        background: #eaf0fb;
    }

    .header-shell.is-menu-open .header-burger span:nth-child(1){
        transform: translateY(7px) rotate(45deg);
    }

    .header-shell.is-menu-open .header-burger span:nth-child(2){
        opacity: 0;
    }

    .header-shell.is-menu-open .header-burger span:nth-child(3){
        transform: translateY(-7px) rotate(-45deg);
    }

    .header-shell .brand{
        min-width: 0;
        margin-right: auto;
    }

    .header-shell .btn-header{
        margin-left: auto;
        flex: none;
    }

    .main-nav{
        position: absolute;
        left: 18px;
        top: calc(100% + 10px);
        width: 260px;
        padding: 12px;
        border-radius: 22px;
        background: rgba(255,255,255,.96);
        box-shadow: 0 18px 50px rgba(28, 41, 69, .16);
        border: 1px solid rgba(143,156,181,.16);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        z-index: 50;
    }

    .header-shell.is-menu-open .main-nav{
        display: flex;
    }

    .main-nav a{
        padding: 12px 14px;
        border-radius: 14px;
    }

    .main-nav a:hover,
    .main-nav a.is-active{
        background: #f3f7ff;
    }








    .brand{
        gap:5px;
    }
    .brand__logo{
        height:40px;
    }
    .brand__logo i{
        font-size:78px;
    }
    .brand__icon{
        height: 30px;
        width: 30px;
        font-size:20px;
    }
    .header-shell{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .header-shell .btn{
        padding: 0 10px;
        height: 30px;
        font-size: 12px;
    }


    .header-shell{
        padding: 10px 12px;
        gap: 8px;
        flex-wrap: nowrap;
        border-radius: 999px;
    }

    .header-burger{
        width: 34px;
        height: 34px;
        gap: 4px;
    }

    .header-burger span{
        width: 15px;
    }
    .site-main{
        padding-top: 60px;
    }
    .hero-copy{
        padding-top: 20px;
    }

    .site-header{
        position: fixed;
        top: 2px;
        left: 0;
        right: 0;
        z-index: 100000;
        overflow: visible;
        pointer-events: none;
    }

    .site-header .container{
        overflow: visible;
        pointer-events: none;
    }

    .header-shell{
        position: relative;
        z-index: 100001;
        overflow: visible;
        pointer-events: auto;
    }

    .main-nav{
        z-index: 100002;
    }

    .main-nav{
        position: fixed;
        left: 24px;
        top: 86px;
        width: 260px;
        padding: 12px;
        border-radius: 22px;
        background: rgba(255,255,255,.96);
        box-shadow: 0 18px 50px rgba(28, 41, 69, .16);
        border: 1px solid rgba(143,156,181,.16);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        z-index: 9999;
    }

    .main-nav{
        left: 16px;
        right: 16px;
        top: 76px;
        width: auto;
        border-radius: 22px;
    }

    .header-shell{
        overflow: unset;
    }
    .header-shell .brand{
        margin-right: 0;
        flex: 1;
    }

    .header-shell .btn-header{
        margin-left: auto;
    }
    .header-shell.is-menu-open .main-nav{
        display: flex;
    }
}


.register-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.45;
    color: #5a6784;
}

.register-agreement input {
    width: 17px;
    height: 17px;
    min-width: 17px;
    margin-top: 2px;
    cursor: pointer;
}

.register-agreement a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.register-agreement a:hover {
    text-decoration: underline;
}

#registerSendSmsBtn:disabled {
    opacity: .55;
    cursor: not-allowed;
}



/* ===== Home SEO links ===== */

.home-seo-links {
    padding: 34px 0 70px;
}

.home-seo-links__head {
    max-width: 760px;
    margin-bottom: 26px;
}

.home-seo-links__head h2 {
    margin: 0 0 14px;
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
}

.home-seo-links__head p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-soft);
}

.home-seo-links__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-seo-link {
    display: block;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,.84);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: transform .18s ease,
    box-shadow .18s ease;
}

.home-seo-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.home-seo-link strong {
    display: block;
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.3;
    color: var(--text);
}

.home-seo-link span {
    display: block;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-soft);
}

@media (max-width: 980px) {
    .home-seo-links__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {

    .home-seo-links__head h2 {
        font-size: 34px;
    }

    .home-seo-links__grid {
        grid-template-columns: 1fr;
    }
}


/* ===== SEO breadcrumbs ===== */

.seo-breadcrumbs {
    padding: 22px 0 0;
}

.seo-breadcrumbs__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-soft);
}

.seo-breadcrumbs__nav a {
    color: var(--text-soft);
    text-decoration: none;
    transition: color .18s ease;
}

.seo-breadcrumbs__nav a:hover {
    color: var(--primary);
}

.seo-breadcrumbs__nav span:last-child {
    color: var(--text);
}


