:root{
    --bg:#fff;
    --text:#0f172a;
    --muted:#64748b;
    --primary:#e11d48;
    --line:#e5e7eb;
    --card:#fafafa;
    --container:1120px;
    --radius-xl:18px;
    --radius-lg:14px;
    --card-shadow:0 10px 28px rgba(15,23,42,.06);
    --card-shadow-hover:0 22px 50px rgba(15,23,42,.12);
    --card-border:rgba(15,23,42,.06);
    --card-border-hover:rgba(225,29,72,.14);
}

*{box-sizing:border-box;margin:0;padding:0;}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--text);
    background:#f6f7f9;
    line-height:1.4;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

.container{
    width:min(var(--container),90%);
    margin:auto;
}

a{
    color:inherit;
    text-decoration:none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible{
    outline:3px solid rgba(225,29,72,.22);
    outline-offset:3px;
}

.guide-item,
.value-group,
.video-card{
    padding:28px;
    border:1px solid var(--card-border);
    border-radius:var(--radius-xl);
    background:#fff;
    box-shadow:var(--card-shadow);
    text-decoration: none;
    transition:
            transform .28s cubic-bezier(.2,.8,.2,1),
            box-shadow .28s ease,
            border-color .28s ease,
            background .28s ease;
}

.guide-item:hover,
.value-group:hover,
.video-card:hover{
    transform:translateY(-8px);
    border-color:var(--card-border-hover);
    box-shadow:var(--card-shadow-hover);
    background:#ffffff;
}

.video-card:hover .video-play{
    transform:translate(-50%,-50%) scale(1.08);
}

.video-play{
    transition:transform .25s ease;
}

.reveal{
    opacity:1;
    transform:none;
}

.reveal.visible{
    opacity:1;
    transform:none;
}

/* LOGO */

.brand-zone{
    background: white;
    padding:42px 0 28px;
    text-align:center;
}

.main-logo{
    width:min(430px, 100%);
    height:auto;
}

/* HERO */

.hero{
    text-align:center;
    padding-bottom:48px;
}

h1{
    font-size:clamp(36px,5vw,56px);
    font-weight:800;
    line-height:1;
    text-transform: uppercase;
}

.hero-sub{
    font-size:24px;
    color:#475569;
    margin-top:12px;
    line-height:1.5;
}

.hero-sub-secondary{
    color:#64748b;
}

.hero-divider{
    width:80px;
    height:3px;
    background:var(--primary);
    margin:18px auto;
    border-radius:2px;
}

.hero-features{
    font-size:15px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:#374151;
    font-weight:600;
    margin:20px 0 28px;
}

.hero-features .dot{
    color:var(--primary);
    font-size:16px;
    margin:0 10px;
}

.product-hero{
    margin:0 auto 24px;
    max-width:980px;
}

.product-hero img{
    width:100%;
    height:auto;
    display:block;
    border-radius:20px;
    box-shadow:0 24px 60px rgba(15,23,42,.12);
    border:1px solid rgba(15,23,42,.06);
}

.hero-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:24px;
}

.hero-actions .btn{
    margin-top:0;
}

/* GUIDES */

.guides{
    padding:72px 0;
    border-top:1px solid var(--line);
    background:linear-gradient(180deg, rgba(248,250,252,.78) 0%, rgba(255,255,255,0) 100%);
}

.guides h2{
    text-align:center;
    font-size:32px;
    font-weight:800;
    letter-spacing:-0.03em;
    margin-bottom:50px;
}

.guide-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
}

.guide-item h3{
    font-size:20px;
    margin-bottom:12px;
    font-weight:800;
    line-height:1.15;
    letter-spacing:-0.02em;
}

.guide-item p{
    color:var(--muted);
    margin-bottom:16px;
    font-size:15px;
    line-height:1.6;
}

.guide-item a{
    color:var(--primary);
    text-decoration:none;
    font-weight:800;
}

.guide-item{
    display:flex;
    flex-direction:column;
    height:100%;
    cursor:pointer;
}

.guide-item p{
    flex:1;
}

.guide-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:18px;
}

.reading-time{
    font-size:13px;
    color:#64748b;
    font-weight:600;
}

/* GUIDE CARD BASE */

.guide-item{
    position:relative;
    overflow:hidden;

    background:
            linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

    border:1px solid var(--card-border);
    border-radius:var(--radius-xl);

    box-shadow:0 10px 28px rgba(15,23,42,.06);

    transition:
            transform .28s cubic-bezier(.2,.8,.2,1),
            box-shadow .28s ease,
            border-color .28s ease,
            background .28s ease;
}


/* SOFT GLOW LAYER */

.guide-item::before{
    content:"";
    position:absolute;
    inset:-1px;
    border-radius:inherit;

    background:radial-gradient(
            600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(225,29,72,0.08),
            transparent 40%
    );

    opacity:0;
    transition:opacity .3s ease;

    pointer-events:none;
}


/* HOVER */

.guide-item:hover{
    transform:translateY(-8px);
    border-color:rgba(225,29,72,.18);
    box-shadow:0 22px 50px rgba(15,23,42,.12);
}

.guide-item:hover::before{
    opacity:1;
}


/* IMAGE (как уже сделали) */

.guide-image{
    width:100%;
    height:auto;
    display:block;
    border-radius:12px;
    margin-bottom:18px;

    padding:6px;
    background:#0b0f1a;

    box-shadow:0 14px 30px rgba(0,0,0,.35);

    transition:transform .25s ease, box-shadow .25s ease;
}

.guide-item:hover .guide-image{
    transform:scale(1.02);
    box-shadow:0 20px 40px rgba(0,0,0,.45);
}

.guide-screen-link{
    position:relative;
    display:block;
    color:inherit;
}

.guide-screen-link .guide-image{
    margin-bottom:10px;
}

.guide-image-overlay{
    position:absolute;
    inset:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:rgba(15,23,42,.62);
    color:#fff;
    font-size:12px;
    font-weight:900;
    letter-spacing:.14em;
    text-transform:uppercase;
    opacity:0;
    transform:translateY(4px);
    transition:opacity .22s ease, transform .22s ease;
    pointer-events:none;
}

.guide-screen-link:hover .guide-image-overlay{
    opacity:1;
    transform:translateY(0);
}

.guide-hint{
    display:block;
    margin-bottom:14px;
    color:#64748b;
    font-size:12px;
    font-weight:700;
}

.guide-actions{
    margin-top:auto;
    padding-top:4px;
}

.guide-link{
    display:inline-flex;
    align-items:center;
    color:var(--primary) !important;
    font-size:15px;
    font-weight:900;
}

.guide-link:hover{
    text-decoration:underline;
    text-underline-offset:3px;
}

.section{
    padding:80px 0;
    border-top:1px solid #e5e7eb;
}

.section.white{
    background:#ffffff;
}

.section.light{
    background:#f6f7f9;
}
/* VALUE SECTION */

.value-section{
    padding:72px 0;
    border-top:1px solid var(--line);
}

.section-head{
    text-align:center;
    margin-bottom:42px;
}

.section-head h2{
    font-size:clamp(28px,4vw,42px);
    font-weight:800;
    letter-spacing:-0.035em;
    margin-bottom:12px;
}

.section-head p{
    font-size:16px;
    color:var(--muted);
    margin-top:10px;
}

.section-divider{
    width:60px;
    height:3px;
    background:var(--primary);
    margin:18px auto;
    border-radius:2px;
}

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

.value-group-title{
    font-size:13px;
    font-weight:700;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:24px;
}

.v-item{
    margin-bottom:30px;
}

.v-item:last-child{
    margin-bottom:0;
}

.v-item h3{
    font-size:22px;
    font-weight:800;
    line-height:1.15;
    letter-spacing:-0.02em;
    margin-bottom:10px;
}

.v-item p{
    font-size:15px;
    line-height:1.6;
    color:var(--muted);
    max-width:30ch;
}

/* ASSURANCE */

.assurance{
    padding:72px 0;
    border-top:1px solid var(--line);
}

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

.assurance-card{
    padding:22px;
    border:1px solid rgba(15,23,42,.06);
    border-radius:16px;
    background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
    box-shadow:0 10px 28px rgba(15,23,42,.05);
}

.assurance-card h3{
    font-size:18px;
    line-height:1.15;
    letter-spacing:-0.02em;
    margin-bottom:10px;
}

.assurance-card p{
    font-size:14px;
    line-height:1.6;
    color:var(--muted);
}

@media (max-width:1024px){
    .assurance-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:640px){
    .assurance-grid{
        grid-template-columns:1fr;
        gap:14px;
    }
}

/* VIDEOS */

.videos{
    padding:72px 0;
    border-top:1px solid var(--line);
    background:
            linear-gradient(180deg, rgba(248,250,252,.85) 0%, rgba(255,255,255,0) 100%);
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
    align-items:stretch;
}

.video-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-height:100%;
    color:var(--text);
    isolation:isolate;
    overflow:hidden;
}

.video-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg,#e11d48,#fb7185);
    opacity:.92;
    z-index:0;
}

.video-card > *{
    position:relative;
    z-index:1;
}

.video-card:hover{
    border-color:rgba(225,29,72,.16);
}

.video-thumb{
    position:relative;
    aspect-ratio:16 / 9;
    border-radius:12px;
    background:#05070c;
    margin-bottom:18px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.video-thumb::before{
    content:"";
    position:absolute;
    inset:auto -12% -38% auto;
    width:170px;
    height:170px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(225,29,72,.38) 0%, rgba(225,29,72,0) 68%);
    filter:blur(6px);
}

.video-thumb::after{
    content:"";
    position:absolute;
    inset:0;
    background:
            linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size:28px 28px;
    opacity:.38;
}

.video-thumb-label,
.video-thumb-time{
    position:absolute;
    z-index:2;
    display:inline-flex;
    align-items:center;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(15,23,42,.72);
    color:#fff !important;
    backdrop-filter:blur(8px);
}

.video-thumb-label{
    left:14px;
    top:14px;
    padding:7px 10px;
    border-radius:999px;
    font-size:11px;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.video-thumb-time{
    right:14px;
    bottom:14px;
    padding:6px 9px;
    border-radius:10px;
    font-size:12px;
    font-weight:700;
}

.video-play{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index:2;
    width:48px;
    height:48px;
    border-radius:50%;
    background:linear-gradient(135deg,#e11d48,#be123c);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:800;
    box-shadow:0 10px 24px rgba(225,29,72,.24);
}

.video-meta{
    display:inline-flex;
    align-self:flex-start;
    padding:7px 10px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid rgba(15,23,42,.06);
    font-size:11px;
    font-weight:800;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:14px;
}

.video-card h3{
    font-size:24px;
    font-weight:800;
    line-height:1.12;
    letter-spacing:-0.03em;
    margin-bottom:12px;
    color:var(--text);
    transition:color .22s ease;
}

.video-card:hover h3{
    color:#111827;
}

.video-card p{
    font-size:15px;
    line-height:1.7;
    color:var(--muted);
    margin-bottom:20px;
    flex:1;
}

.video-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--primary);
    font-weight:800;
    letter-spacing:-0.01em;
}

.video-link::after{
    content:"→";
    transition:transform .22s ease;
}

.video-card:hover .video-link::after{
    transform:translateX(3px);
}
@media (max-width:1024px){
    .video-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:900px){
    .video-grid{
        grid-template-columns:1fr;
    }
}

/* BROCHURE */

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
    margin-top:40px;
}

.product-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:16px;
    padding:0;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    border:1px solid rgba(0,0,0,.05);
    transition:all .25s ease;
}

.product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    border-color:rgba(225,29,72,.15);
}

.product-card h3{
    font-size:20px;
    line-height:1.15;
    letter-spacing:-0.02em;
    margin-bottom:10px;
}

.product-card p{
    font-size:15px;
    line-height:1.6;
    color:#5b6b7f;
    margin-bottom:14px;
}

.product-card span{
    font-size:13px;
    font-weight:600;
    color:var(--primary);
}

.product-image{
    display:block;
    width:100%;
    height:auto;
    aspect-ratio:16 / 9;
    object-fit:contain;
    background:#f7f8fa;
    border-bottom:1px solid rgba(15,23,42,.06);
}

.product-card-content{
    display:flex;
    flex:1;
    flex-direction:column;
    padding:22px 20px;
}

.product-card p{
    flex:1;
}

.product-card span{
    margin-top:auto;
}

@media (max-width:900px){
    .product-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:18px;
    }
}

@media (max-width:760px){
    .product{
        padding:64px 0;
    }

    .product-grid{
        grid-template-columns:1fr;
        gap:14px;
        margin-top:28px;
    }

    .product-card{
        border-radius:14px;
    }

    .product-card-content{
        padding:18px;
    }

    .product-card h3{
        font-size:18px;
        margin-bottom:8px;
    }

    .product-card p{
        margin-bottom:8px;
    }

    .product-card span{
        margin-top:0;
    }
}

/* INCLUDED */

.included{
    padding:64px 0;
    border-top:1px solid var(--line);
}

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

.included-card{
    padding:24px;
    border:1px solid rgba(15,23,42,.06);
    border-radius:16px;
    background:#fff;
    box-shadow:0 10px 28px rgba(15,23,42,.05);
}

.included-label{
    display:inline-flex;
    margin-bottom:14px;
    padding:7px 10px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid rgba(15,23,42,.06);
    color:#6b7280;
    font-size:11px;
    font-weight:800;
    letter-spacing:.16em;
    text-transform:uppercase;
}

.included-card h3{
    font-size:20px;
    line-height:1.15;
    letter-spacing:-0.02em;
    margin-bottom:10px;
}

.included-card p{
    font-size:15px;
    line-height:1.6;
    color:var(--muted);
}

@media (max-width:900px){
    .included-grid{
        grid-template-columns:1fr;
    }
}

/* FAQ */

.faq{
    padding:72px 0;
    border-top:1px solid var(--line);
}

.faq-list{
    max-width:820px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.faq-item{
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff;
    transition:all .22s ease;
    overflow:hidden;
}

.faq-item:hover{
    border-color:#d8dee6;
    background:var(--card);
}

.faq-item summary{
    list-style:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:22px 24px;
    font-size:20px;
    font-weight:800;
    line-height:1.2;
    letter-spacing:-0.02em;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-icon{
    position:relative;
    flex:0 0 auto;
    width:18px;
    height:18px;
}

.faq-icon::before,
.faq-icon::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    background:var(--primary);
    border-radius:2px;
    transform:translate(-50%,-50%);
    transition:transform .2s ease, opacity .2s ease;
}

.faq-icon::before{
    width:18px;
    height:2px;
}

.faq-icon::after{
    width:2px;
    height:18px;
}

.faq-item[open] .faq-icon::after{
    opacity:0;
    transform:translate(-50%,-50%) scaleY(0);
}

.faq-answer{
    padding:0 24px 24px;
}

.faq-answer p{
    font-size:15px;
    line-height:1.7;
    color:var(--muted);
    margin-bottom:12px;
    max-width:68ch;
}

.faq-answer p:last-child{
    margin-bottom:0;
}

@media (max-width:768px){
    .faq-item summary{
        font-size:18px;
        padding:20px;
    }

    .faq-answer{
        padding:0 20px 20px;
    }
}

/* PILOT */

.pilot{
    padding:72px 0;
    border-top:1px solid var(--line);
}

.pilot-box{
    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    gap:40px;
    align-items:center;
    padding:36px;
    border:1px solid rgba(225,29,72,.12);
    border-radius:18px;
    background:#fff;
    box-shadow:0 18px 48px rgba(15,23,42,.08);
}

.pilot-kicker{
    margin-bottom:14px;
    color:#6b7280;
    font-size:12px;
    font-weight:800;
    letter-spacing:.16em;
    text-transform:uppercase;
}

.pilot h2{
    font-size:clamp(28px,4vw,40px);
    line-height:1.05;
    letter-spacing:-0.035em;
    margin-bottom:14px;
}

.pilot p{
    max-width:62ch;
    color:var(--muted);
    font-size:16px;
    line-height:1.7;
}

.fit-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.fit-list span{
    display:flex;
    align-items:center;
    min-height:44px;
    padding:12px 14px;
    border:1px solid rgba(15,23,42,.06);
    border-radius:12px;
    background:#f8fafc;
    color:#334155;
    font-size:14px;
    font-weight:700;
}

@media (max-width:820px){
    .pilot-box{
        grid-template-columns:1fr;
        gap:24px;
        padding:26px;
    }
}

@media (max-width:640px){
    .pilot-box{
        padding:22px;
        border-radius:16px;
    }
}

/* CTA */
.cta{
    background:#000;
    color:#fff;
    text-align:center;
    padding:80px 0;
}

.cta h2{
    font-size:38px;
    font-weight:800;
    letter-spacing:-0.03em;
    margin-bottom:20px;
}

.cta p{
    color:#d1d5db;
    font-size:18px;
    max-width:680px;
    margin:0 auto;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#e11d48,#be123c);

    padding:18px 40px;

    border-radius:10px;

    text-decoration:none;

    color:#fff;

    font-weight:800;

    margin-top:24px;

    box-shadow:0 10px 30px rgba(225,29,72,.35);

    transition:
            transform .18s ease,
            box-shadow .18s ease,
            opacity .18s ease;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 40px rgba(225,29,72,.45);
}

.btn.btn-secondary{
    background:#ffffff;
    color:#0f172a;
    border:1px solid rgba(15,23,42,.12);
    box-shadow:0 10px 24px rgba(15,23,42,.08);
}

.btn.btn-secondary:hover{
    box-shadow:0 14px 32px rgba(15,23,42,.12);
}

.regions{
    margin-top:40px;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#666;
}

footer{
    padding:40px;
    text-align:center;
    font-size:12px;
    color:#9ca3af;
    background:#000;
}

@media (max-width:900px){
    .value-groups{
        grid-template-columns:1fr;
    }

    .guide-grid{
        grid-template-columns:1fr;
    }

    .v-item p{
        max-width:none;
    }
}

@media (max-width:768px){
    .main-logo{
        width:min(320px, 100%);
    }

    .hero-features{
        line-height:1.8;
    }

    .hero-features .dot{
        margin:0 8px;
    }
}

@media (hover:none){
    .guide-item:hover,
    .value-group:hover,
    .video-card:hover,
    .product-card:hover{
        transform:none;
    }
}

/* CONTACT POPUP */

.contact-overlay{
    position:fixed;
    inset:0;
    background:rgba(15,23,42,.5);
    backdrop-filter:blur(6px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    z-index:1000;

    opacity:0;
    pointer-events:none;
    transition:opacity .22s ease;
}

.contact-overlay.active{
    opacity:1;
    pointer-events:auto;
}

.contact-modal{
    position:relative;
    width:min(560px, 100%);
    max-height:calc(100dvh - 48px);
    overflow:auto;
    overscroll-behavior:contain;
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    padding:36px 36px 32px;
    box-shadow:0 30px 80px rgba(15,23,42,.18);
    transform:translateY(10px) scale(.98);
    transition:transform .22s ease;
}

.contact-overlay.active .contact-modal{
    transform:translateY(0) scale(1);
}

.contact-close{
    position:absolute;
    top:14px;
    right:14px;
    width:36px;
    height:36px;
    border:none;
    border-radius:999px;
    background:#f8fafc;
    color:#475569;
    font-size:18px;
    line-height:1;
    cursor:pointer;
    transition:background .18s ease, color .18s ease, transform .18s ease;
}

.contact-close:hover{
    background:#eef2f7;
    color:#0f172a;
    transform:translateY(-1px);
}

.contact-kicker{
    font-size:12px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:14px;
}

.contact-modal h2{
    font-size:32px;
    font-weight:800;
    letter-spacing:-0.03em;
    line-height:1.05;
    margin-bottom:12px;
}

.contact-intro{
    font-size:16px;
    line-height:1.65;
    color:var(--muted);
    margin-bottom:18px;
    max-width:46ch;
}

.contact-list{
    padding-left:18px;
    margin-bottom:26px;
}

.contact-list li{
    margin-bottom:8px;
    color:#334155;
    line-height:1.55;
}

.contact-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:150px;
    padding:14px 20px;
    border-radius:10px;
    text-decoration:none;
    font-weight:800;
    transition:transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}

.contact-btn:hover{
    transform:translateY(-1px);
    opacity:.97;
}

.email-btn{
    background:var(--primary);
    color:#fff;
    box-shadow:0 8px 20px rgba(225,29,72,.18);
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
    box-shadow:0 8px 20px rgba(37,211,102,.18);
}

.contact-note{
    margin-top:16px;
    font-size:14px;
    color:#6b7280;
}

@media (max-width:640px){
    .contact-overlay{
        align-items:flex-start;
        padding:12px;
        padding-top:max(12px, env(safe-area-inset-top));
        padding-bottom:max(12px, env(safe-area-inset-bottom));
    }

    .contact-modal{
        width:100%;
        max-height:calc(100dvh - 24px);
        padding:24px 18px 20px;
        border-radius:18px;
    }

    .contact-close{
        top:10px;
        right:10px;
        width:34px;
        height:34px;
    }

    .contact-kicker{
        margin-bottom:10px;
        padding-right:42px;
    }

    .contact-modal h2{
        font-size:clamp(24px, 8vw, 28px);
        padding-right:38px;
    }

    .contact-intro{
        font-size:15px;
        line-height:1.55;
        margin-bottom:14px;
    }

    .contact-list{
        margin-bottom:20px;
    }

    .contact-list li{
        margin-bottom:6px;
        line-height:1.45;
    }

    .contact-buttons{
        flex-direction:column;
        gap:10px;
    }

    .contact-btn{
        width:100%;
        min-width:0;
        padding:13px 16px;
    }

    .contact-note{
        margin-top:12px;
        font-size:13px;
    }
}

.hero-impact{
    max-width:720px;
    margin:40px auto 0;
    padding:32px 36px;

    background:#ffffff;
    border:1px solid rgba(225,29,72,.12); /* лёгкий акцент */
    border-radius:18px;

    box-shadow:0 20px 50px rgba(15,23,42,.10); /* глубже */
}

.hero-impact h3{
    font-size:20px;
    font-weight:800;
    margin-bottom:16px;
    letter-spacing:-0.01em;
}

.impact-list{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:16px;
}

.impact-list li{
    font-size:17px;
    font-weight:600;
    color:#0f172a;
}

.impact-note{
    font-size:14px;
    color:var(--muted);
}

.hero-description{
    margin:32px auto 0;
    max-width:720px;
    font-size:18px; /* было ~16 */
    line-height:1.7;
    color:#334155; /* темнее */
}

.hero-impact{
    margin-top:36px;
}

.hero{
    background:
            radial-gradient(circle at 50% -20%, rgba(225,29,72,.06), transparent 60%),
            #f6f7f9;
}

.hero-cta{
    margin-top:24px;
}

.video-cta{
    text-align:center;
    margin-top:48px;
}

.video-cta-text{
    font-size:16px;
    color:var(--muted);
    margin-bottom:16px;
}

.video-cta-note{
    margin-top:12px;
    font-size:14px;
    color:#64748b;
}

.video-cta .btn{
    padding:18px 42px;
    font-size:16px;
}

.video-thumb video {
    width: 100%;
    height: 100%;
    display:block;
    object-fit:contain;
    background:#05070c;
}

/* затемнение для читаемости текста */
.video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* ROULETTE DISPLAY PAGE */

.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-bottom:24px;
    color:#64748b;
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.breadcrumb a{
    color:#334155;
}

.roulette-page-hero{
    padding-top:72px;
}

.roulette-hero-grid{
    display:grid;
    grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
    gap:38px;
    align-items:center;
    margin-top:32px;
    text-align:left;
}

.roulette-hero-copy h2{
    font-size:clamp(28px,4vw,44px);
    line-height:1.05;
    letter-spacing:-.04em;
    margin-bottom:18px;
}

.roulette-hero-copy p,
.seo-intro p{
    color:#475569;
    font-size:17px;
    line-height:1.75;
}

.roulette-actions{
    justify-content:flex-start;
}

.roulette-hero-shot{
    display:block;
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:0 24px 60px rgba(15,23,42,.16);
}

.roulette-hero-shot img{
    display:block;
    width:100%;
    max-height:620px;
    height:auto;
    object-fit:contain;
    object-position:center;
}

.container.narrow{
    max-width:860px;
}

.seo-intro{
    border-top:1px solid var(--line);
}

.trust{
    padding:46px 0;
}

.trust p{
    color:#334155;
    font-size:19px;
    font-weight:700;
    line-height:1.65;
    text-align:center;
}

.seo-intro h2{
    font-size:clamp(28px,4vw,40px);
    line-height:1.1;
    letter-spacing:-.035em;
    margin-bottom:16px;
}

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

.roulette-benefit-card,
.how-step{
    padding:24px;
    border:1px solid rgba(15,23,42,.06);
    border-radius:16px;
    background:#fff;
    box-shadow:0 10px 28px rgba(15,23,42,.05);
}

.roulette-benefit-card h3,
.how-step h3{
    font-size:19px;
    line-height:1.15;
    letter-spacing:-.02em;
    margin-bottom:10px;
}

.roulette-benefit-card p,
.how-step p{
    color:var(--muted);
    font-size:14px;
    line-height:1.65;
}

.roulette-screen-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
    align-items:stretch;
}

.roulette-screen-card{
    display:flex;
    min-height:100%;
    flex-direction:column;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.06);
    border-radius:16px;
    background:#fff;
    box-shadow:0 10px 28px rgba(15,23,42,.06);
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.roulette-screen-card:hover{
    transform:translateY(-4px);
    border-color:rgba(225,29,72,.16);
    box-shadow:0 18px 40px rgba(15,23,42,.10);
}

.roulette-screen-card img{
    display:block;
    width:100%;
    height:auto;
    max-height:420px;
    object-fit:contain;
    object-position:center;
    padding:0;
    background:#f8fafc;
    border-bottom:1px solid rgba(15,23,42,.06);
}

.roulette-video-card{
    width:min(560px,100%);
    margin:0 auto;
}

.roulette-video-card .video-thumb{
    min-height:auto;
}

.roulette-video-card .video-thumb video{
    display:block;
    width:100%;
    height:auto;
    aspect-ratio:16/9;
    object-fit:contain;
    background:#05070d;
}

.roulette-screen-card span{
    display:block;
    padding:16px 18px;
    color:#0f172a;
    font-size:14px;
    font-weight:800;
}

.mode-switch-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    padding:34px 36px;
    border:1px solid rgba(15,23,42,.06);
    border-radius:18px;
    background:#fff;
    box-shadow:0 16px 42px rgba(15,23,42,.07);
}

.mode-switch-box h2{
    max-width:720px;
    font-size:clamp(28px,4vw,40px);
    line-height:1.08;
    letter-spacing:-.035em;
    margin-bottom:14px;
}

.mode-switch-box p{
    max-width:760px;
    color:var(--muted);
    font-size:16px;
    line-height:1.7;
}

.mode-switch-box .mode-links{
    margin-top:12px;
    color:#334155;
    font-weight:700;
}

.mode-switch-box .mode-links a{
    color:var(--primary);
    text-decoration:underline;
    text-underline-offset:3px;
}

.mode-switch-box .btn{
    flex:0 0 auto;
    margin-top:0;
}

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

.feature-check-grid span{
    position:relative;
    display:flex;
    align-items:center;
    min-height:52px;
    padding:14px 16px 14px 42px;
    border:1px solid rgba(15,23,42,.06);
    border-radius:12px;
    background:#fff;
    color:#334155;
    font-size:14px;
    font-weight:700;
    box-shadow:0 8px 22px rgba(15,23,42,.04);
}

.feature-check-grid span::before{
    content:"";
    position:absolute;
    left:16px;
    top:50%;
    width:10px;
    height:10px;
    border-radius:999px;
    background:var(--primary);
    transform:translateY(-50%);
}

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

.step-number{
    display:flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    margin-bottom:16px;
    border-radius:999px;
    background:linear-gradient(135deg,#e11d48,#be123c);
    color:#fff;
    font-size:14px;
    font-weight:900;
}

@media (max-width:1024px){
    .roulette-hero-grid,
    .roulette-benefit-grid,
    .feature-check-grid,
    .how-steps{
        grid-template-columns:1fr;
    }

    .roulette-screen-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:760px){
    .breadcrumb{
        justify-content:flex-start;
    }

    .roulette-page-hero{
        padding-top:56px;
    }

    .roulette-hero-grid{
        text-align:center;
    }

    .roulette-actions{
        justify-content:center;
    }

    .roulette-screen-grid{
        grid-template-columns:1fr;
    }

    .roulette-screen-card img{
        max-height:460px;
    }

    .mode-switch-box{
        align-items:flex-start;
        flex-direction:column;
        padding:26px;
    }
}
