:root{
    --orange:#ef5b16;
    --orange-dark:#d94a0b;
    --orange-soft:#fff3ec;

    --graphite:#202226;
    --graphite-2:#2b2e33;

    --text:#1e242b;
    --muted:#6f7884;

    --border:#ece7e3;
    --white:#ffffff;

    --radius:24px;
    --shadow:0 16px 42px rgba(24,31,38,.08);
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    color:var(--text);
    background:#fff;
    -webkit-font-smoothing:antialiased;
}

button,
input,
textarea{
    font:inherit;
}

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

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(1440px,calc(100% - 64px));
    margin:0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header{
    position:sticky;
    top:0;
    z-index:100;

    background:rgba(255,255,255,.96);
    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(0,0,0,.05);
}

.header-inner{
    min-height:86px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.brand{
    display:flex;
    flex-direction:column;
    flex:0 0 auto;
}

.brand-logo{
    display:flex;
    align-items:center;
    gap:8px;

    font-weight:900;
    letter-spacing:-2px;
}

.brand-k{
    position:relative;

    width:46px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;
    font-weight:900;

    color:#202226;
}

.brand-k::after{
    content:"";
    position:absolute;

    width:29px;
    height:7px;

    background:var(--orange);

    transform:rotate(-42deg);

    right:0;
    top:15px;
}

.brand-name{
    font-size:32px;
    color:#25272a;
}

.brand small{
    margin-top:2px;

    font-size:11px;
    color:#676d73;
    letter-spacing:.02em;
}

#mainNav{
    display:flex;
    align-items:center;
    gap:31px;
}

#mainNav a{
    position:relative;

    padding:32px 0 28px;

    color:#22272d;
    font-size:14px;
    font-weight:700;

    transition:.2s ease;
}

#mainNav a:hover{
    color:var(--orange);
}

#mainNav a.active{
    color:var(--orange);
}

#mainNav a.active::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:19px;

    height:2px;

    background:var(--orange);
    border-radius:5px;
}

.language-switch{
    display:flex;
    align-items:center;

    border:1px solid var(--orange);
    border-radius:12px;
    overflow:hidden;

    flex:0 0 auto;
}

.language-switch a,
.language-switch span{
    padding:9px 13px;

    font-size:13px;
    font-weight:700;
}

.language-switch .active{
    color:#fff;
    background:var(--orange);
}

.menu-toggle{
    display:none;

    border:0;
    background:none;

    font-size:28px;
    cursor:pointer;
}


/* =========================================================
   GENERAL
   ========================================================= */

.section{
    padding:78px 0;
}

.section-heading{
    margin-bottom:36px;
}

.section-heading.center{
    text-align:center;
}

.section-heading h2,
.center-title{
    margin:6px 0 0;

    font-size:34px;
    line-height:1.1;

    color:#202327;
}

.eyebrow{
    display:inline-block;

    color:var(--orange);

    font-size:12px;
    font-weight:900;
    letter-spacing:.12em;
}

.eyebrow.orange{
    color:#ff7a30;
}

.primary-btn{
    border:0;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:18px;

    min-height:50px;
    padding:0 24px;

    border-radius:11px;

    background:linear-gradient(135deg,var(--orange),#ff6d21);

    color:#fff;
    font-weight:800;

    cursor:pointer;

    box-shadow:0 12px 26px rgba(239,91,22,.20);

    transition:.2s ease;
}

.primary-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 34px rgba(239,91,22,.28);
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
    padding:38px 0 10px;
}

.hero-grid{
    min-height:410px;

    display:grid;
    grid-template-columns:1fr 1fr;

    border-radius:30px;

    overflow:hidden;

    background:
        linear-gradient(90deg,#fff9f5 0%,#fffaf7 42%,#fff7f1 100%);

    border:1px solid #f6e7de;

    box-shadow:0 18px 50px rgba(35,27,21,.05);
}

.hero-content{
    padding:56px 0 48px 50px;
    align-self:center;
}

.hero-content h1{
    margin:12px 0 18px;

    max-width:570px;

    font-size:47px;
    line-height:1.05;
    letter-spacing:-1.6px;

    color:#26282b;
}

.hero-content h1 span{
    display:block;
    color:var(--orange);
}

.hero-content > p{
    max-width:530px;

    margin:0 0 28px;

    font-size:17px;
    line-height:1.65;

    color:#454b51;
}

.hero-trust{
    display:flex;
    gap:22px;

    margin-top:28px;

    flex-wrap:wrap;
}

.hero-trust > div{
    display:flex;
    align-items:center;
    gap:9px;
}

.trust-icon{
    width:34px;
    height:34px;

    display:grid;
    place-items:center;

    border-radius:10px;

    background:#fff;
    color:var(--orange);

    box-shadow:0 5px 18px rgba(51,38,28,.08);

    font-weight:900;
}

.hero-trust p{
    margin:0;

    display:flex;
    flex-direction:column;
}

.hero-trust b{
    font-size:12px;
}

.hero-trust small{
    color:#7a8087;
    font-size:10px;
    margin-top:2px;
}


/* HERO ART */

.hero-art{
    position:relative;
    min-height:410px;

    overflow:hidden;
}

.hero-letter{
    position:absolute;

    z-index:5;

    left:50%;
    top:44%;

    transform:translate(-50%,-50%) rotate(-4deg);

    font-size:255px;
    line-height:1;

    font-weight:900;
    font-family:Arial Black,Arial,sans-serif;

    color:var(--orange);

    text-shadow:
        0 5px 0 #d44505,
        0 10px 0 #bf3800,
        0 22px 30px rgba(135,54,10,.24);
}

.hero-pedestal{
    position:absolute;

    left:50%;
    bottom:57px;

    width:280px;
    height:66px;

    transform:translateX(-50%);

    border-radius:50%;

    background:
        linear-gradient(180deg,#fff,#f1e7e1);

    box-shadow:
        0 18px 30px rgba(82,49,28,.15),
        inset 0 -7px 13px rgba(221,197,185,.4);

    border:1px solid #eee0d7;

    z-index:3;
}

.orbit{
    position:absolute;
    left:50%;
    top:48%;

    border:1px solid rgba(239,91,22,.28);
    border-radius:50%;

    transform:translate(-50%,-50%) rotate(-12deg);
}

.orbit-one{
    width:480px;
    height:190px;
}

.orbit-two{
    width:510px;
    height:260px;

    transform:translate(-50%,-50%) rotate(18deg);
}

.orbit-three{
    width:390px;
    height:300px;

    transform:translate(-50%,-50%) rotate(53deg);
}

.orbit-dot{
    position:absolute;

    width:10px;
    height:10px;

    border-radius:50%;

    background:var(--orange);

    z-index:4;

    box-shadow:0 0 0 5px rgba(239,91,22,.08);
}

.dot-one{
    left:13%;
    top:46%;
}

.dot-two{
    right:11%;
    top:29%;
}

.dot-three{
    right:18%;
    bottom:20%;
}


/* =========================================================
   PAYMENT
   ========================================================= */

.payments-section{
    padding-bottom:52px;
}

.payment-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.payment-card{
    position:relative;

    min-height:315px;

    padding:28px 25px 24px;

    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;

    background:#fff;

    border:1px solid #eeeae7;
    border-radius:22px;

    box-shadow:var(--shadow);

    transition:.22s ease;
}

.payment-card:hover{
    transform:translateY(-5px);
    box-shadow:0 22px 50px rgba(30,38,46,.12);
}

.payment-logo{
    min-height:76px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:11px;
}

.payment-logo img{
    max-width:155px;
    max-height:70px;
    object-fit:contain;
}

.kassa24-logo img{
    max-width:180px;
}

.payment-card-icon{
    width:76px;
    height:76px;

    display:grid;
    place-items:center;

    margin-bottom:11px;

    border-radius:18px;

    background:var(--orange-soft);
    color:var(--orange);

    font-size:38px;
}

.payment-card h3{
    margin:0 0 10px;

    font-size:23px;
}

.payment-card p{
    margin:0;

    min-height:72px;

    color:#69737e;
    font-size:14px;
    line-height:1.55;
}

.no-commission{
    display:block;

    margin-top:8px;

    color:var(--orange);

    font-weight:800;
    font-size:13px;
}

.payment-card button{
    width:100%;
    min-height:45px;

    margin-top:auto;

    border:0;
    border-radius:10px;

    background:#22272c;
    color:#fff;

    font-weight:800;

    cursor:pointer;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    transition:.2s ease;
}

.payment-card button:hover{
    background:var(--orange);
}


/* =========================================================
   BENEFITS
   ========================================================= */

.benefits{
    padding:15px 0 72px;
}

.center-title{
    text-align:center;
    margin-bottom:34px;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);

    gap:18px;
}

.benefit-grid article{
    text-align:center;
}

.benefit-grid article > span{
    width:68px;
    height:68px;

    margin:0 auto 15px;

    display:grid;
    place-items:center;

    border-radius:50%;

    background:#fff2e9;
    color:var(--orange);

    font-size:31px;
    font-weight:800;
}

.benefit-grid h3{
    margin:0 0 7px;

    font-size:15px;
    line-height:1.25;
}

.benefit-grid p{
    margin:0;

    color:#727b84;
    font-size:12px;
    line-height:1.4;
}


/* =========================================================
   HOW
   ========================================================= */

.how-section{
    padding-top:50px;
}

.steps{
    position:relative;

    display:grid;
    grid-template-columns:repeat(5,1fr);

    gap:18px;
}

.steps::before{
    content:"";

    position:absolute;

    top:18px;
    left:10%;
    right:10%;

    height:1px;

    border-top:1px dashed #f1a278;
}

.steps article{
    position:relative;
    text-align:center;

    padding:0 12px;
}

.step-number{
    position:relative;
    z-index:2;

    width:36px;
    height:36px;

    display:grid;
    place-items:center;

    margin:0 auto 18px;

    border-radius:50%;

    background:var(--orange);
    color:#fff;

    font-size:13px;
    font-weight:900;
}

.step-icon{
    width:60px;
    height:60px;

    display:grid;
    place-items:center;

    margin:0 auto 13px;

    border-radius:16px;

    background:#fff4ed;
    color:#30353a;

    border:1px solid #fae3d6;

    font-weight:900;
}

.steps h3{
    margin:0 0 6px;

    font-size:15px;
}

.steps p{
    margin:0;

    color:#707981;

    font-size:12px;
    line-height:1.45;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section{
    padding:78px 0;

    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1.05fr 1fr;

    gap:55px;

    padding:52px;

    border-radius:28px;

    background:
        radial-gradient(circle at 10% 10%,rgba(239,91,22,.08),transparent 30%),
        linear-gradient(145deg,#24272b,#17191c);

    color:#fff;
}

.about-content h2{
    margin:10px 0 23px;

    font-size:36px;
    line-height:1.12;
}

.about-content p{
    color:#c7ccd1;

    line-height:1.65;
    font-size:15px;
}

.about-cards{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:16px;
}

.about-cards article{
    padding:22px;

    border-radius:17px;

    background:rgba(255,255,255,.035);

    border:1px solid rgba(255,255,255,.14);
}

.about-cards article > span{
    color:#ff6b1f;

    font-size:27px;
}

.about-cards h3{
    margin:13px 0 8px;

    font-size:16px;
}

.about-cards p{
    margin:0;

    color:#aeb4b9;

    font-size:12px;
    line-height:1.5;
}


/* =========================================================
   DOCUMENTS
   ========================================================= */

.documents-grid{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:30px;
}

.requisites-card,
.document-list{
    border:1px solid #eee9e6;
    border-radius:22px;

    background:#fff;

    box-shadow:var(--shadow);
}

.requisites-card{
    padding:28px;
}

.requisites-card h3{
    margin:0 0 20px;

    font-size:20px;
}

.requisite{
    display:grid;
    grid-template-columns:120px 1fr auto;

    gap:10px;
    align-items:center;

    padding:13px 0;

    border-bottom:1px solid #eee;
}

.requisite:last-child{
    border-bottom:0;
}

.requisite span{
    color:#7a828a;

    font-size:12px;
}

.requisite strong{
    font-size:13px;
}

.requisite button{
    border:0;

    background:#fff5ee;
    color:var(--orange);

    width:30px;
    height:30px;

    border-radius:8px;

    cursor:pointer;
}

.document-list{
    overflow:hidden;
}

.document-item{
    min-height:82px;

    padding:16px 20px;

    display:grid;
    grid-template-columns:44px 1fr auto;

    gap:15px;
    align-items:center;

    border-bottom:1px solid #eee;

    transition:.2s ease;
}

.document-item:last-child{
    border-bottom:0;
}

.document-item:hover{
    background:#fff8f4;
}

.document-icon{
    width:42px;
    height:42px;

    display:grid;
    place-items:center;

    border-radius:12px;

    background:#fff2ea;
    color:var(--orange);
}

.document-item strong{
    display:block;

    font-size:14px;
}

.document-item small{
    display:block;

    margin-top:4px;

    color:#7a828a;

    font-size:11px;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section{
    padding:70px 0;

    background:#fff8f4;
}

.faq-grid{
    display:grid;
    grid-template-columns:320px 1fr;

    gap:55px;
}

.faq-intro h2{
    margin:8px 0 14px;

    font-size:38px;
}

.faq-intro p{
    color:#717982;
    line-height:1.5;
}

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

.faq-item{
    background:#fff;

    border:1px solid #eee7e2;
    border-radius:13px;

    overflow:hidden;
}

.faq-item button{
    width:100%;

    border:0;
    background:#fff;

    padding:17px 18px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;

    text-align:left;

    font-weight:700;

    cursor:pointer;
}

.faq-item button b{
    color:var(--orange);
}

.faq-answer{
    display:none;

    padding:0 18px 18px;

    color:#69727b;

    font-size:14px;
    line-height:1.55;
}

.faq-item.open .faq-answer{
    display:block;
}


/* =========================================================
   WHATSAPP CTA
   ========================================================= */

.whatsapp-cta{
    padding:38px 0 18px;
}

.whatsapp-banner{
    min-height:105px;

    padding:22px 28px;

    display:grid;
    grid-template-columns:70px 1fr auto;

    gap:20px;
    align-items:center;

    border-radius:20px;

    background:
        linear-gradient(135deg,#22262a,#181a1d);

    color:#fff;
}

.whatsapp-big-icon{
    width:58px;
    height:58px;

    display:grid;
    place-items:center;

    border-radius:50%;

    background:#25d366;
    color:#fff;

    font-size:26px;
}

.whatsapp-banner span{
    color:#ff8e52;
    font-size:12px;
    font-weight:800;
}

.whatsapp-banner h2{
    margin:4px 0 3px;

    font-size:23px;
}

.whatsapp-banner p{
    margin:0;

    color:#b9c0c6;
    font-size:13px;
}

.whatsapp-banner > a{
    min-width:130px;
    min-height:46px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:0 18px;

    border-radius:11px;

    background:var(--orange);

    font-weight:800;
}


/* =========================================================
   CONTACTS
   ========================================================= */

.contacts-grid{
    display:grid;
    grid-template-columns:330px 1fr;

    gap:50px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-info article{
    display:flex;
    gap:14px;

    padding:17px;

    border-radius:14px;

    background:#fff8f4;

    border:1px solid #f4e4da;
}

.contact-info article > span{
    color:var(--orange);
    font-size:22px;
}

.contact-info small{
    display:block;

    color:#80878e;

    margin-bottom:3px;
}

.contact-info a,
.contact-info p{
    margin:0;

    font-weight:700;
    font-size:14px;
}

.contact-form{
    padding:28px;

    border:1px solid #eee9e6;
    border-radius:22px;

    box-shadow:var(--shadow);

    background:#fff;
}

.contact-form h3{
    margin:0 0 21px;

    font-size:22px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:16px;
}

.contact-form label{
    display:block;

    margin-bottom:16px;

    font-size:12px;
    font-weight:700;
}

.contact-form input,
.contact-form textarea{
    width:100%;

    margin-top:7px;

    border:1px solid #ddd;
    border-radius:9px;

    padding:13px 14px;

    outline:none;

    transition:.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--orange);
    box-shadow:0 0 0 3px rgba(239,91,22,.08);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer{
    margin-top:20px;

    padding:28px 0;

    background:#1e2124;
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr auto auto;

    gap:40px;
    align-items:center;
}

.footer-brand{
    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:5px;
}

.footer-brand b{
    color:var(--orange);

    font-size:23px;
}

.footer-brand span{
    color:#d5d7d9;

    font-size:12px;
}

.site-footer small{
    color:#9ca2a7;
}

.site-footer nav{
    display:flex;
    align-items:center;
    gap:24px;
}

.site-footer nav a{
    color:#cfd3d6;

    font-size:12px;
}

.site-footer nav a:hover{
    color:#ff7a34;
}

.footer-contacts{
    display:flex;
    gap:10px;
}

.footer-contacts a{
    width:38px;
    height:38px;

    display:grid;
    place-items:center;

    border:1px solid rgba(255,255,255,.22);
    border-radius:50%;
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.floating-whatsapp{
    position:fixed;

    right:30px;
    bottom:30px;

    width:58px;
    height:58px;

    border:0;
    border-radius:50%;

    background:#25d366;
    color:#fff;

    box-shadow:0 12px 30px rgba(0,0,0,.22);

    z-index:90;

    cursor:pointer;

    font-size:24px;
}

.whatsapp-popup{
    position:fixed;

    right:30px;
    bottom:100px;

    width:310px;

    padding:20px;

    border-radius:17px;

    background:#fff;

    box-shadow:0 22px 60px rgba(0,0,0,.23);

    z-index:90;
}

.whatsapp-popup-title{
    font-size:18px;
    font-weight:800;

    margin-bottom:13px;
}

.whatsapp-number{
    display:grid;
    grid-template-columns:44px 1fr auto;

    gap:12px;
    align-items:center;

    padding:11px;

    border-radius:13px;

    background:#f4faf8;
}

.wa-icon{
    width:42px;
    height:42px;

    display:grid;
    place-items:center;

    border-radius:50%;

    background:#dff7ec;
    color:#1bb45a;
}

.whatsapp-number strong,
.whatsapp-number small{
    display:block;
}

.whatsapp-number small{
    margin-top:3px;

    color:#768089;
}


/* =========================================================
   MODAL
   ========================================================= */

.modal{
    position:fixed;
    inset:0;
    z-index:200;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:24px;
}

.modal[hidden]{
    display:none;
}

.modal-backdrop{
    position:absolute;
    inset:0;

    background:rgba(18,20,22,.68);
    backdrop-filter:blur(5px);
}

.modal-card{
    position:relative;
    z-index:2;

    width:min(980px,100%);
    max-height:calc(100dvh - 48px);

    overflow:auto;

    margin:0;
    padding:32px;

    border-radius:24px;

    background:#fff;

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

    scrollbar-width:thin;
}

.modal-close{
    position:sticky;

    top:0;
    float:right;

    z-index:20;

    width:40px;
    height:40px;

    margin:-14px -14px 0 16px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:0;
    border-radius:50%;

    background:#f2f2f2;
    color:#1f252b;

    font-size:24px;
    line-height:1;

    cursor:pointer;

    box-shadow:0 4px 14px rgba(0,0,0,.08);
}

/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:950px){

    .header-inner{
        min-height:72px;
    }

    #mainNav{
        position:absolute;

        left:20px;
        right:20px;
        top:72px;

        display:none;
        flex-direction:column;
        align-items:stretch;

        padding:18px;

        background:#fff;

        border-radius:16px;

        box-shadow:0 18px 45px rgba(0,0,0,.14);
    }

    #mainNav.show{
        display:flex;
    }

    #mainNav a{
        padding:11px 8px;
    }

    #mainNav a.active::after{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .language-switch{
        margin-left:auto;
    }

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

    .hero-content{
        padding:40px 34px 20px;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-art{
        min-height:330px;
    }

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

    .benefit-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .steps{
        grid-template-columns:1fr 1fr;
        gap:30px 18px;
    }

    .steps::before{
        display:none;
    }

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

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

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

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

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-brand,
    .site-footer nav,
    .footer-contacts{
        justify-content:center;
    }
}


@media(max-width:620px){

    .container{
        width:min(100% - 24px,1180px);
    }

    .site-header{
        position:relative;
    }

    .brand-name{
        font-size:27px;
    }

    .brand-k{
        width:39px;
        font-size:28px;
    }

    .language-switch a,
    .language-switch span{
        padding:8px 9px;
    }

    .hero{
        padding-top:14px;
    }

    .hero-grid{
        border-radius:20px;
    }

    .hero-content{
        padding:30px 22px 10px;
    }

    .hero-content h1{
        font-size:34px;
        letter-spacing:-1px;
    }

    .hero-content > p{
        font-size:15px;
    }

    .hero-trust{
        gap:13px;
    }

    .hero-art{
        min-height:270px;
    }

    .hero-letter{
        font-size:185px;
    }

    .hero-pedestal{
        width:215px;
        height:50px;
        bottom:38px;
    }

    .orbit-one{
        width:340px;
    }

    .orbit-two{
        width:365px;
    }

    .orbit-three{
        width:290px;
    }

    .section{
        padding:55px 0;
    }

    .section-heading h2,
    .center-title{
        font-size:28px;
    }

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

    .payment-card{
        min-height:290px;
    }

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

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

    .about-grid{
        padding:28px 22px;
    }

    .about-content h2{
        font-size:29px;
    }

    .about-cards{
        grid-template-columns:1fr;
    }

    .requisite{
        grid-template-columns:90px 1fr auto;
    }

    .faq-section{
        padding:52px 0;
    }

    .faq-intro h2{
        font-size:32px;
    }

    .whatsapp-banner{
        grid-template-columns:55px 1fr;

        padding:19px;
    }

    .whatsapp-banner > a{
        grid-column:1/-1;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .site-footer nav{
        flex-wrap:wrap;
    }

    .floating-whatsapp{
        right:20px;
        bottom:20px;

        width:56px;
        height:56px;
    }

    .whatsapp-popup{
        right:18px;
        bottom:90px;

        width:calc(100% - 36px);
    }
}

/* =========================================================
   PAYMENT MODAL — KPI STYLE
   ========================================================= */

.modal-card{
    width:min(980px,calc(100% - 40px));
    max-height:90vh;
    padding:0;
    border-radius:26px;
    overflow:auto;
    background:#fff;
    box-shadow:0 35px 100px rgba(0,0,0,.35);
}

.modal-close{
    position:absolute;
    right:20px;
    top:18px;
    z-index:5;

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:0;
    border-radius:50%;
    background:#f4f4f4;

    color:#1f252b;
    font-size:24px;
    line-height:1;

    cursor:pointer;
}

#paymentModalContent{
    padding:34px 36px 36px;
}

.payment-modal-head{
    display:flex;
    align-items:center;
    gap:24px;

    padding:0 55px 28px 0;
    margin-bottom:26px;

    border-bottom:1px solid #eee7e2;
}

.payment-modal-logo{
    width:145px;
    max-height:70px;
    object-fit:contain;
    flex:0 0 auto;
}

.payment-modal-head h2{
    margin:5px 0 7px;
    font-size:30px;
    line-height:1.1;
    color:#1d2329;
}

.payment-modal-head p{
    margin:0;
    color:#6f7881;
    font-size:14px;
}

.kaspi-modal-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:24px;
}

.payment-guide-card,
.payment-qr-card{
    border:1px solid #eee7e2;
    border-radius:20px;
    background:#fff;
    padding:24px;
}

.payment-guide-card{
    background:linear-gradient(180deg,#fff,#fffaf7);
}

.payment-guide-card h3,
.payment-qr-card h3{
    margin:0 0 20px;
    font-size:20px;
}

.payment-step{
    display:grid;
    grid-template-columns:38px 1fr;
    gap:12px;
    align-items:start;

    padding:13px 0;
    border-bottom:1px solid #f0ebe7;
}

.payment-step:last-of-type{
    border-bottom:0;
}

.payment-step > span{
    width:34px;
    height:34px;

    display:grid;
    place-items:center;

    border-radius:50%;
    background:#ef5b16;
    color:#fff;

    font-size:13px;
    font-weight:900;
}

.payment-step b{
    display:block;
    margin-bottom:4px;
    font-size:14px;
    color:#22282e;
}

.payment-step small{
    display:block;
    color:#77808a;
    font-size:12px;
    line-height:1.45;
}

.payment-warning{
    margin-top:18px;
    padding:12px 14px;

    border-radius:12px;
    background:#fff3ec;
    border:1px solid #ffd9c3;

    color:#8a4a27;
    font-size:12px;
    line-height:1.45;
}

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

    min-height:48px;
    margin-top:16px;

    border-radius:11px;

    background:linear-gradient(135deg,#ef5b16,#ff6d21);
    color:#fff;

    font-weight:850;
    box-shadow:0 12px 24px rgba(239,91,22,.20);
}

.payment-action-btn:hover{
    transform:translateY(-1px);
}

.payment-qr-card{
    display:flex;
    flex-direction:column;
}

.payment-qr-title{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
}

.payment-qr-title > span{
    width:38px;
    height:38px;

    display:grid;
    place-items:center;

    border-radius:10px;
    background:#fff1e8;
    color:#ef5b16;

    font-size:12px;
    font-weight:900;
}

.payment-qr-title h3{
    margin:0;
    font-size:18px;
}

.payment-qr-title p{
    margin:3px 0 0;
    color:#7b848c;
    font-size:12px;
}

.payment-qr-box{
    flex:1;

    display:flex;
    align-items:center;
    justify-content:center;

    min-height:340px;
    padding:20px;

    border:1px solid #eee7e2;
    border-radius:18px;

    background:#fff;
}

.payment-qr-box img{
    width:min(310px,100%);
    height:auto;
    object-fit:contain;
}

.payment-qr-note{
    margin-top:14px;

    display:flex;
    flex-direction:column;
    gap:3px;

    text-align:center;
}

.payment-qr-note b{
    font-size:15px;
}

.payment-qr-note span{
    color:#7b848c;
    font-size:11px;
}

@media(max-width:800px){

    #paymentModalContent{
        padding:26px 20px 24px;
    }

    .payment-modal-head{
        align-items:flex-start;
        flex-direction:column;
        gap:12px;
    }

    .payment-modal-logo{
        width:120px;
    }

    .payment-modal-head h2{
        font-size:25px;
    }

    .kaspi-modal-grid{
        grid-template-columns:1fr;
    }

    .payment-qr-box{
        min-height:280px;
    }
}

/* =========================================================
   KPI — FINAL VISUAL POLISH
   Уплотнение и визуальное заполнение сайта
   ========================================================= */

/* ---------- ОБЩАЯ ШИРИНА ---------- */

.container{
    width: min(1420px, calc(100% - 64px));
    margin: 0 auto;
}


/* ---------- ОБЩИЙ ФОН ---------- */

body{
    background:
        radial-gradient(
            circle at 10% 18%,
            rgba(255, 91, 18, .035),
            transparent 26%
        ),
        radial-gradient(
            circle at 90% 48%,
            rgba(255, 91, 18, .025),
            transparent 25%
        ),
        #fff;
}


/* ---------- HEADER ---------- */

.site-header{
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #eee9e5;
    box-shadow: 0 3px 18px rgba(25,30,35,.025);
}


/* ---------- HERO ---------- */

.hero{
    padding-top: 34px;
    padding-bottom: 38px;
}

.hero-grid{
    border: 1px solid #f1ddd2;
    box-shadow:
        0 25px 60px rgba(28,32,36,.07),
        0 4px 15px rgba(255,91,18,.025);
}


/* ---------- СЕКЦИИ ---------- */

section{
    position: relative;
}

/*
Создаём более цельный ритм страницы.
Не добавляем новые блоки — меняем только фон существующих.
*/

#payments{
    padding-top: 58px;
    padding-bottom: 66px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,91,18,.055),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffaf7 100%
        );
}


/* ---------- КАРТОЧКИ ОПЛАТЫ ---------- */

.payment-card{
    background: #fff;

    border: 1px solid #eee6e1;

    box-shadow:
        0 18px 45px rgba(25,30,35,.065);

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

.payment-card:hover{
    transform: translateY(-5px);

    border-color: rgba(255,91,18,.30);

    box-shadow:
        0 24px 55px rgba(25,30,35,.10);
}


/* ---------- КНОПКИ ОПЛАТЫ ---------- */

.payment-card .primary-btn,
.payment-card button,
.payment-card .payment-btn{
    box-shadow:
        0 8px 18px rgba(20,25,30,.12);

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

.payment-card .primary-btn:hover,
.payment-card button:hover,
.payment-card .payment-btn:hover{
    transform: translateY(-2px);

    box-shadow:
        0 12px 24px rgba(20,25,30,.18);
}


/* ---------- ТЕКСТ ПРО КОМИССИЮ ---------- */

.payment-card .commission,
.payment-card .fee-note{
    color: #8a7064;
    font-size: 12px;
    line-height: 1.35;
}


/* ---------- ПОЧЕМУ KPI ---------- */

/*
Даём этой существующей части страницы
отдельную визуальную поверхность.
*/

.why,
#why{
    padding-top: 64px;
    padding-bottom: 72px;

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


/* Иконки преимуществ */

.why-icon,
.feature-icon{
    box-shadow:
        0 10px 30px rgba(255,91,18,.09);

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

.why-item:hover .why-icon,
.feature-item:hover .feature-icon{
    transform: translateY(-4px) scale(1.03);

    box-shadow:
        0 15px 34px rgba(255,91,18,.14);
}


/* ---------- КАК ОПЛАТИТЬ ---------- */

.how,
#how{
    padding-top: 68px;
    padding-bottom: 76px;

    background:
        linear-gradient(
            135deg,
            #1e2327 0%,
            #161a1d 100%
        );

    color: #fff;
}


/* Заголовки внутри тёмного блока */

.how h2,
#how h2{
    color: #fff;
}

.how .eyebrow,
#how .eyebrow{
    color: #ff6a24;
}


/* Шаги */

.how-step{
    position: relative;
}

.how-step h3,
.how-step strong{
    color: #fff;
}

.how-step p{
    color: rgba(255,255,255,.64);
}


/* ---------- О КОМПАНИИ ---------- */

.about,
#about{
    margin-top: 0;

    padding-top: 72px;
    padding-bottom: 72px;
}


/* Тёмная карточка */

.about-card,
.about-panel{
    box-shadow:
        0 25px 65px rgba(18,22,25,.13);
}


/* ---------- ДОКУМЕНТЫ ---------- */

.documents,
#documents{
    padding-top: 72px;
    padding-bottom: 78px;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(255,91,18,.05),
            transparent 28%
        ),
        #fffaf7;
}


/* Карточки документов */

.document-card,
.doc-card{
    background: #fff;

    border: 1px solid #eee5df;

    box-shadow:
        0 12px 32px rgba(20,25,30,.055);

    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.document-card:hover,
.doc-card:hover{
    transform: translateY(-3px);

    border-color: rgba(255,91,18,.30);

    box-shadow:
        0 18px 38px rgba(20,25,30,.09);
}


/* ---------- FAQ ---------- */

.faq,
#faq{
    padding-top: 72px;
    padding-bottom: 78px;

    background:
        linear-gradient(
            180deg,
            #fff 0%,
            #fff8f4 100%
        );
}


/* FAQ карточки */

.faq-item{
    background: #fff;

    border: 1px solid #eee4de;

    box-shadow:
        0 7px 20px rgba(20,25,30,.035);

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.faq-item:hover{
    border-color: rgba(255,91,18,.28);

    box-shadow:
        0 10px 26px rgba(20,25,30,.06);
}


/* ---------- WHATSAPP CTA ---------- */

.whatsapp-cta{
    box-shadow:
        0 22px 50px rgba(18,22,25,.13);
}


/* ---------- КОНТАКТЫ ---------- */

.contacts,
#contacts{
    padding-top: 74px;
    padding-bottom: 82px;
}


/* Карточки контактов */

.contact-card{
    border: 1px solid #eee4de;

    box-shadow:
        0 12px 35px rgba(20,25,30,.055);
}


/* ---------- ЗАГОЛОВКИ СЕКЦИЙ ---------- */

.section-title,
section h2{
    letter-spacing: -.025em;
}


/* ---------- EYEBROW ---------- */

.eyebrow{
    letter-spacing: .14em;
}


/* ---------- ОБЩИЕ КАРТОЧКИ ---------- */

.payment-card,
.document-card,
.doc-card,
.contact-card,
.faq-item{
    backdrop-filter: blur(4px);
}


/* ---------- МОБИЛЬНАЯ ВЕРСИЯ ---------- */

@media (max-width: 900px){

    .container{
        width: min(100% - 32px, 1420px);
    }

    .hero{
        padding-top: 20px;
        padding-bottom: 28px;
    }

    #payments,
    .why,
    #why,
    .how,
    #how,
    .about,
    #about,
    .documents,
    #documents,
    .faq,
    #faq,
    .contacts,
    #contacts{
        padding-top: 50px;
        padding-bottom: 55px;
    }
}


@media (max-width: 560px){

    .container{
        width: calc(100% - 24px);
    }

    #payments,
    .why,
    #why,
    .how,
    #how,
    .about,
    #about,
    .documents,
    #documents,
    .faq,
    #faq,
    .contacts,
    #contacts{
        padding-top: 42px;
        padding-bottom: 46px;
    }
}

/* =========================================================
   WHY KPI — карточки преимуществ
   ========================================================= */

.why,
#why{
    padding-top: 58px;
    padding-bottom: 64px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(255, 91, 18, .08),
            transparent 38%
        ),
        #fff8f4;
}


/* Контейнер преимуществ */

.why-grid,
.features-grid{
    gap: 18px;
}


/* Каждое преимущество */

.why-item,
.feature-item{
    background: rgba(255,255,255,.82);

    border: 1px solid #f0dfd5;

    border-radius: 22px;

    padding: 28px 18px 25px;

    min-height: 175px;

    box-shadow:
        0 12px 35px rgba(30,35,40,.055);

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


.why-item:hover,
.feature-item:hover{
    transform: translateY(-5px);

    border-color: rgba(255,91,18,.28);

    box-shadow:
        0 18px 42px rgba(30,35,40,.09);
}


/* Значок */

.why-icon,
.feature-icon{
    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    background: #fff1e8;

    border: 1px solid #ffe0cf;

    box-shadow:
        0 8px 22px rgba(255,91,18,.09);
}


/* Заголовок преимущества */

.why-item h3,
.feature-item h3{
    margin-top: 0;
    margin-bottom: 8px;

    font-size: 16px;
    font-weight: 700;

    color: #1d2328;
}


/* Описание */

.why-item p,
.feature-item p{
    margin: 0 auto;

    max-width: 220px;

    font-size: 13px;
    line-height: 1.5;

    color: #737b82;
}


/* Переход к тёмному блоку */

.how,
#how{
    margin-top: 0;

    border-radius: 0;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04);
}


/* MOBILE */

@media (max-width: 900px){

    .why-item,
    .feature-item{
        min-height: auto;
        padding: 24px 16px;
    }
}

/* =========================================================
   WHY KPI — карточки преимуществ
   ========================================================= */

.benefits{
    padding:58px 0 68px;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(255,91,18,.07),
            transparent 34%
        ),
        #fff8f4;
}

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

.benefit-grid article{
    min-height:190px;

    padding:26px 18px 22px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    text-align:center;

    background:#fff;

    border:1px solid #f0dfd5;
    border-radius:22px;

    box-shadow:
        0 12px 32px rgba(30,35,40,.055);

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

.benefit-grid article:hover{
    transform:translateY(-5px);

    border-color:rgba(255,91,18,.30);

    box-shadow:
        0 18px 42px rgba(30,35,40,.09);
}

.benefit-grid article > span{
    width:60px;
    height:60px;

    margin:0 auto 16px;

    display:grid;
    place-items:center;

    border-radius:50%;

    background:#fff1e8;

    border:1px solid #ffe0cf;

    color:#ef5b16;

    font-size:29px;
    font-weight:800;

    box-shadow:
        0 9px 24px rgba(255,91,18,.09);
}

.benefit-grid h3{
    margin:0 0 8px;

    font-size:16px;
    line-height:1.25;

    color:#1d2328;
}

.benefit-grid p{
    margin:0;

    max-width:220px;

    color:#737b82;

    font-size:12px;
    line-height:1.5;
}

@media(max-width:1050px){

    .benefit-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:650px){

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

    .benefit-grid article{
        min-height:auto;
    }
}

.no-commission{
    display:block;
    margin:0 10px 8px;

    font-size:11px;
    line-height:1.3;
    font-weight:400;

    color:#8a8f94;

    text-align:center;
}

/* =========================================================
   HOW TO PAY — KPI
   ========================================================= */

.how-section{
    padding:72px 0 78px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(239,91,22,.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #202428 0%,
            #171a1d 100%
        );

    color:#fff;
}

.how-section .section-heading{
    margin-bottom:42px;
}

.how-section .section-heading h2{
    color:#fff;
    font-size:36px;
}

.how-section .eyebrow{
    color:#ff702d;
}


/* линия между этапами */

.steps{
    position:relative;

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}

.steps::before{
    content:"";

    position:absolute;

    left:10%;
    right:10%;
    top:18px;

    border-top:1px dashed rgba(255,111,45,.65);
}


/* каждый шаг */

.steps article{
    position:relative;
    z-index:2;

    min-width:0;

    text-align:center;

    padding:0 12px;
}


/* номер */

.step-number{
    position:relative;
    z-index:3;

    width:36px;
    height:36px;

    display:grid;
    place-items:center;

    margin:0 auto 18px;

    border-radius:50%;

    background:#ef5b16;
    color:#fff;

    font-size:13px;
    font-weight:800;

    box-shadow:
        0 7px 18px rgba(239,91,22,.25);
}


/* иконка */

.step-icon{
    width:62px;
    height:62px;

    display:grid;
    place-items:center;

    margin:0 auto 16px;

    border-radius:16px;

    background:#fff7f2;

    border:1px solid rgba(255,255,255,.15);

    color:#24282c;

    font-size:18px;
    font-weight:800;

    box-shadow:
        0 12px 28px rgba(0,0,0,.14);

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

.steps article:hover .step-icon{
    transform:translateY(-4px);

    box-shadow:
        0 18px 36px rgba(0,0,0,.22);
}


/* заголовок */

.steps h3{
    margin:0 0 8px;

    color:#fff;

    font-size:16px;
    line-height:1.25;
}


/* описание */

.steps p{
    margin:0 auto;

    max-width:210px;

    color:rgba(255,255,255,.58);

    font-size:12px;
    line-height:1.5;
}


/* MOBILE */

@media(max-width:900px){

    .steps{
        grid-template-columns:1fr 1fr;
        gap:34px 20px;
    }

    .steps::before{
        display:none;
    }
}

@media(max-width:560px){

    .how-section{
        padding:52px 0 58px;
    }

    .how-section .section-heading h2{
        font-size:29px;
    }

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

    .steps article{
        padding:0 18px;
    }

    .steps p{
        max-width:270px;
    }
}

/* =========================================================
   ABOUT — LIGHT KPI STYLE
   ========================================================= */

.about-section{
    padding:76px 0 82px;

    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(239,91,22,.07),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #fff 0%,
            #fff8f4 100%
        );
}

.about-grid{
    display:grid;
    grid-template-columns:1.05fr 1fr;
    gap:48px;

    padding:46px 48px;

    border-radius:28px;

    background:#ffffff;

    border:1px solid #eee2db;

    box-shadow:
        0 22px 55px rgba(28,32,36,.08);

    color:#1f252a;
}


/* ---------- левая часть ---------- */

.about-content h2{
    margin:10px 0 22px;

    font-size:36px;
    line-height:1.12;
    letter-spacing:-.8px;

    color:#202429;
}

.about-content p{
    margin:0 0 16px;

    color:#6f777f;

    font-size:15px;
    line-height:1.65;
}


/* ---------- карточки справа ---------- */

.about-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.about-cards article{
    min-height:160px;

    padding:22px;

    border-radius:18px;

    background:
        linear-gradient(
            180deg,
            #262a2e 0%,
            #1c2023 100%
        );

    border:1px solid rgba(255,255,255,.06);

    box-shadow:
        0 12px 28px rgba(20,24,28,.12);

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

.about-cards article:hover{
    transform:translateY(-4px);

    box-shadow:
        0 18px 36px rgba(20,24,28,.18);
}


/* иконка */

.about-cards article > span{
    width:42px;
    height:42px;

    display:grid;
    place-items:center;

    border-radius:12px;

    background:rgba(239,91,22,.12);

    color:#ff6a24;

    font-size:22px;
}


/* заголовок */

.about-cards h3{
    margin:14px 0 8px;

    color:#fff;

    font-size:16px;
    line-height:1.3;
}


/* описание */

.about-cards p{
    margin:0;

    color:rgba(255,255,255,.62);

    font-size:12px;
    line-height:1.5;
}


/* ---------- mobile ---------- */

@media(max-width:900px){

    .about-grid{
        grid-template-columns:1fr;
        padding:34px 28px;
    }
}

@media(max-width:600px){

    .about-section{
        padding:54px 0 60px;
    }

    .about-grid{
        padding:26px 20px;
        border-radius:22px;
    }

    .about-content h2{
        font-size:29px;
    }

    .about-cards{
        grid-template-columns:1fr;
    }

    .about-cards article{
        min-height:auto;
    }
}

/* =========================================================
   DOCUMENTS — KPI STYLE
   ========================================================= */

.documents-section{
    padding:58px 0 72px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(239,91,22,.045),
            transparent 28%
        ),
        #ffffff;
}

.documents-section .section-heading{
    margin-bottom:32px;
}

.documents-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:26px;
}


/* ---------- БАНКОВСКИЕ РЕКВИЗИТЫ ---------- */

.requisites-card{
    position:relative;

    padding:30px;

    overflow:hidden;

    background:#fff;

    border:1px solid #eadfd9;
    border-radius:22px;

    box-shadow:
        0 16px 40px rgba(28,32,36,.065);
}


/* оранжевая линия сверху */

.requisites-card::before{
    content:"";

    position:absolute;
    top:0;
    left:0;
    right:0;

    height:4px;

    background:
        linear-gradient(
            90deg,
            #ef5b16,
            #ff9b62
        );
}


.requisites-card h3{
    margin:0 0 20px;

    font-size:21px;
    color:#20252a;
}


/* отдельная строка */

.requisite{
    display:grid;
    grid-template-columns:125px 1fr auto;
    gap:14px;
    align-items:center;

    min-height:49px;

    padding:11px 0;

    border-bottom:1px solid #eee9e6;
}

.requisite:last-child{
    border-bottom:0;
}


.requisite > span{
    color:#8a9096;

    font-size:12px;
}


.requisite strong{
    color:#24292e;

    font-size:13px;
    font-weight:700;

    word-break:break-word;
}


/* кнопка копирования */

.requisite button{
    width:32px;
    height:32px;

    display:grid;
    place-items:center;

    padding:0;

    border:1px solid #f1d7c8;
    border-radius:9px;

    background:#fff5ef;

    color:#ef5b16;

    cursor:pointer;

    transition:.2s ease;
}

.requisite button:hover{
    background:#ef5b16;
    color:#fff;

    border-color:#ef5b16;
}


/* =========================================================
   СПИСОК ДОКУМЕНТОВ
   ========================================================= */

.document-list{
    overflow:hidden;

    background:#22272b;

    border:1px solid #2e3438;
    border-radius:22px;

    box-shadow:
        0 16px 42px rgba(20,24,28,.12);
}


.document-item{
    min-height:84px;

    padding:16px 20px;

    display:grid;
    grid-template-columns:46px 1fr auto;
    gap:15px;
    align-items:center;

    border-bottom:1px solid rgba(255,255,255,.08);

    color:#fff;

    transition:
        background .22s ease,
        padding-left .22s ease;
}

.document-item:last-child{
    border-bottom:0;
}


.document-item:hover{
    padding-left:24px;

    background:
        linear-gradient(
            90deg,
            rgba(239,91,22,.13),
            rgba(239,91,22,.035)
        );
}


.document-icon{
    width:42px;
    height:42px;

    display:grid;
    place-items:center;

    border-radius:12px;

    background:rgba(239,91,22,.13);

    color:#ff6b23;

    font-size:19px;
}


.document-item strong{
    display:block;

    color:#fff;

    font-size:14px;
}


.document-item small{
    display:block;

    margin-top:4px;

    color:rgba(255,255,255,.48);

    font-size:11px;
}


.document-item > span:last-child{
    color:#ff6b23;

    font-size:21px;
}


/* =========================================================
   FAQ — KPI STYLE
   ========================================================= */

.faq-section{
    padding:66px 0 72px;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(239,91,22,.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fff8f4 0%,
            #fff5ef 100%
        );

    border-top:1px solid #f3e4dc;
}


.faq-grid{
    display:grid;
    grid-template-columns:310px 1fr;
    gap:48px;
    align-items:start;
}


.faq-intro{
    position:sticky;
    top:115px;
}


.faq-intro h2{
    margin:8px 0 14px;

    font-size:38px;
    line-height:1.05;

    color:#20252a;
}


.faq-intro p{
    margin:0;

    max-width:255px;

    color:#7b8289;

    font-size:14px;
    line-height:1.55;
}


/* ---------- вопросы ---------- */

.faq-list{
    display:flex;
    flex-direction:column;
    gap:11px;
}


.faq-item{
    overflow:hidden;

    background:#fff;

    border:1px solid #eadfd9;
    border-radius:14px;

    box-shadow:
        0 8px 24px rgba(28,32,36,.04);

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.faq-item:hover{
    border-color:rgba(239,91,22,.28);

    box-shadow:
        0 11px 28px rgba(28,32,36,.065);
}


.faq-item.open{
    border-color:rgba(239,91,22,.35);
}


/* кнопка вопроса */

.faq-item > button{
    width:100%;

    min-height:58px;

    padding:15px 18px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    border:0;
    background:transparent;

    color:#252a2f;

    text-align:left;

    font-size:14px;
    font-weight:700;

    cursor:pointer;
}


.faq-item > button b{
    flex:0 0 30px;

    width:30px;
    height:30px;

    display:grid;
    place-items:center;

    border-radius:50%;

    background:#fff2ea;
    color:#ef5b16;

    font-size:17px;

    transition:
        transform .22s ease,
        background .22s ease,
        color .22s ease;
}


.faq-item.open > button b{
    transform:rotate(180deg);

    background:#ef5b16;
    color:#fff;
}


/* ответ */

.faq-answer{
    display:none;

    padding:0 18px 17px;

    color:#707880;

    font-size:13px;
    line-height:1.55;
}


.faq-item.open .faq-answer{
    display:block;
}


.faq-answer p{
    margin:0;

    padding-top:13px;

    border-top:1px solid #eee7e3;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:900px){

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

    .faq-grid{
        grid-template-columns:1fr;
        gap:28px;
    }

    .faq-intro{
        position:static;
    }

    .faq-intro p{
        max-width:none;
    }
}


@media(max-width:600px){

    .documents-section{
        padding:50px 0 56px;
    }

    .requisites-card{
        padding:22px 18px;
    }

    .requisite{
        grid-template-columns:90px 1fr auto;
        gap:8px;
    }

    .faq-section{
        padding:50px 0 56px;
    }

    .faq-intro h2{
        font-size:31px;
    }

    .faq-item > button{
        font-size:13px;
    }
}

/* =========================================
   FAQ — финальная корректировка отступов
========================================= */

.faq-section{
    padding: 70px 0 75px;
}

.documents-section{
    padding-bottom: 70px;
}

.faq-grid{
    align-items: start;
}

.faq-intro{
    padding-top: 4px;
}

.faq-list{
    gap: 12px;
}

.faq-answer a{
    color:#f45a16;
    font-weight:600;
    text-decoration:none;
}

.faq-answer a:hover{
    text-decoration:underline;
}

/* =========================================
   WHATSAPP CTA
========================================= */

.whatsapp-banner{
    display:flex;
    align-items:center;
    gap:20px;
}

.whatsapp-big-icon{
    width:58px;
    height:58px;
    flex:0 0 58px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#25D366;
    border-radius:50%;
}

.whatsapp-big-icon img{
    width:34px;
    height:34px;
    object-fit:contain;
    display:block;
}

.whatsapp-banner-content{
    flex:1;
}

.whatsapp-banner-content > span{
    display:block;
    color:#ff5a16;
    font-size:12px;
    font-weight:700;
    margin-bottom:3px;
}

.whatsapp-banner-content h2{
    margin:0;
}

.whatsapp-banner-content p{
    margin:3px 0 0;
}

.whatsapp-banner-btn{
    flex-shrink:0;
}

/* =========================================
   CONTACTS — KPI STYLE
========================================= */

.contacts-section{
    padding:68px 0 78px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(239,91,22,.045),
            transparent 30%
        ),
        #ffffff;
}

.contacts-grid{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:34px;
    align-items:stretch;
}


/* ---------- ЛЕВАЯ КОЛОНКА ---------- */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.contact-info article{
    min-height:92px;

    display:flex;
    align-items:center;
    gap:16px;

    padding:18px 20px;

    background:#fff8f4;

    border:1px solid #efdcd1;
    border-radius:16px;

    box-shadow:
        0 10px 26px rgba(28,32,36,.045);

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.contact-info article:hover{
    transform:translateY(-3px);

    border-color:rgba(239,91,22,.30);

    box-shadow:
        0 15px 32px rgba(28,32,36,.07);
}

.contact-info article > span{
    width:42px;
    height:42px;

    flex:0 0 42px;

    display:grid;
    place-items:center;

    border-radius:12px;

    background:#fff0e7;
    color:#ef5b16;

    font-size:20px;
}

.contact-info small{
    display:block;

    margin-bottom:4px;

    color:#8a9096;

    font-size:11px;
}

.contact-info a,
.contact-info p{
    margin:0;

    color:#24292e;

    font-size:14px;
    font-weight:700;
    line-height:1.45;
}


/* ---------- ФОРМА ---------- */

.contact-form{
    padding:30px;

    background:#fff;

    border:1px solid #eadfd9;
    border-radius:22px;

    box-shadow:
        0 16px 40px rgba(28,32,36,.065);
}

.contact-form h3{
    margin:0 0 22px;

    font-size:22px;
    color:#20252a;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.contact-form label{
    display:block;

    margin-bottom:16px;

    color:#2c3136;

    font-size:12px;
    font-weight:700;
}

.contact-form input,
.contact-form textarea{
    width:100%;

    margin-top:7px;

    padding:13px 14px;

    border:1px solid #ddd7d3;
    border-radius:10px;

    background:#fff;

    color:#20252a;

    outline:none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#ef5b16;

    box-shadow:
        0 0 0 3px rgba(239,91,22,.08);
}

.contact-form textarea{
    min-height:130px;
    resize:vertical;
}


/* кнопка */

.contact-form .primary-btn{
    min-width:210px;
}


/* ---------- MOBILE ---------- */

@media(max-width:900px){

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

    .contact-info{
        display:grid;
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:620px){

    .contacts-section{
        padding:52px 0 58px;
    }

    .contact-info{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form{
        padding:22px 18px;
    }

    .contact-form .primary-btn{
        width:100%;
    }
}

/* =========================================================
   FOOTER — KPI FINAL
   ========================================================= */

.site-footer{
    margin-top:0;
    padding:34px 0;

    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(239,91,22,.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #202428 0%,
            #171a1d 100%
        );

    color:#fff;

    border-top:1px solid rgba(255,255,255,.06);
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr auto auto;
    gap:45px;
    align-items:center;
}

.footer-brand{
    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:6px;
}

.footer-brand b{
    color:#ff641f;
    font-size:25px;
    letter-spacing:-.5px;
}

.footer-brand span{
    color:#d4d8db;
    font-size:12px;
}

.site-footer small{
    color:#858d94;
    font-size:11px;
}

.footer-nav{
    display:flex;
    align-items:center;
    gap:24px;
}

.footer-nav a{
    color:#c9ced2;

    font-size:12px;
    font-weight:600;

    transition:.2s ease;
}

.footer-nav a:hover{
    color:#ff681f;
}

.footer-contacts{
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-contacts a{
    width:40px;
    height:40px;

    display:grid;
    place-items:center;

    border:1px solid rgba(255,255,255,.18);
    border-radius:50%;

    color:#fff;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.footer-contacts a:hover{
    transform:translateY(-2px);

    background:#ef5b16;
    border-color:#ef5b16;
}


/* =========================================================
   FLOATING WHATSAPP — KPI
   ========================================================= */

.floating-whatsapp{
    position:fixed;

    right:32px;
    bottom:28px;

    width:60px;
    height:60px;

    padding:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border:0;
    border-radius:50%;

    background:transparent;

    box-shadow:
        0 12px 30px rgba(0,0,0,.20);

    cursor:pointer;

    z-index:110;

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

.floating-whatsapp:hover{
    transform:translateY(-3px) scale(1.03);

    box-shadow:
        0 16px 34px rgba(0,0,0,.25);
}

.floating-whatsapp img{
    width:60px;
    height:60px;

    display:block;

    object-fit:contain;
}


/* =========================================================
   WHATSAPP POPUP
   ========================================================= */

.whatsapp-popup{
    position:fixed;

    right:30px;
    bottom:100px;

    width:350px;

    padding:22px;

    background:#fff;

    border:1px solid #e8e4e1;
    border-radius:20px;

    box-shadow:
        0 25px 65px rgba(20,25,30,.22);

    z-index:109;
}

.whatsapp-popup::after{
    content:"";

    position:absolute;

    right:24px;
    bottom:-9px;

    width:18px;
    height:18px;

    background:#fff;

    transform:rotate(45deg);

    border-right:1px solid #e8e4e1;
    border-bottom:1px solid #e8e4e1;
}

.whatsapp-popup-title{
    color:#20252a;

    font-size:20px;
    font-weight:800;
}

.whatsapp-popup-line{
    width:38px;
    height:3px;

    margin:10px 0 16px;

    border-radius:10px;

    background:#ef5b16;
}

.whatsapp-number{
    display:grid;
    grid-template-columns:48px 1fr auto;

    gap:13px;
    align-items:center;

    padding:11px 13px;

    border:1px solid #dcebe5;
    border-radius:14px;

    background:#f5fbf8;

    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.whatsapp-number:hover{
    transform:translateY(-2px);

    border-color:rgba(37,211,102,.38);

    background:#f0faf5;
}

.wa-icon{
    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#e1f8eb;
}

.wa-icon img{
    width:31px;
    height:31px;

    object-fit:contain;
}

.wa-info{
    min-width:0;
}

.wa-info strong{
    display:block;

    color:#20252a;

    font-size:15px;
}

.wa-info small{
    display:block;

    margin-top:3px;

    color:#7a838a;

    font-size:11px;
}

.whatsapp-number > b{
    color:#343b41;

    font-size:21px;
    font-weight:400;
}


/* MOBILE */

@media(max-width:850px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:22px;

        text-align:center;
    }

    .footer-brand,
    .footer-nav,
    .footer-contacts{
        justify-content:center;
    }

    .footer-nav{
        flex-wrap:wrap;
    }
}

@media(max-width:560px){

    .floating-whatsapp{
        right:18px;
        bottom:18px;

        width:56px;
        height:56px;
    }

    .floating-whatsapp img{
        width:56px;
        height:56px;
    }

    .whatsapp-popup{
        right:16px;
        bottom:86px;

        width:calc(100% - 32px);
    }
}

/* =========================================
   CONTACTS — COMPACT
========================================= */

.contacts-section{
    padding-top:48px;
    padding-bottom:52px;
}

.contacts-section .section-heading{
    margin-bottom:30px;
}

.contact-info article{
    min-height:82px;
}

.contact-form{
    padding:26px;
}

.contact-form textarea{
    min-height:105px;
}

/* =========================================
   FIX ANCHOR SCROLL WITH FIXED HEADER
========================================= */

html{
    scroll-padding-top: 100px;
}

section[id]{
    scroll-margin-top: 100px;
}

/* =========================================
   CONTACT FORM STATUS
========================================= */

.contact-form-status{
    display:none;

    margin-top:16px;
    padding:13px 15px;

    border-radius:10px;

    font-size:13px;
    line-height:1.45;
}

.contact-form-status.success{
    display:block;

    background:#eefaf2;
    border:1px solid #bde7ca;

    color:#287744;
}

.contact-form-status.error{
    display:block;

    background:#fff2ef;
    border:1px solid #f2c5bb;

    color:#a34230;
}

.contact-form button:disabled{
    opacity:.65;
    cursor:not-allowed;
}

/* =========================================
   KPI LOGO
========================================= */

.brand{
    display:flex;
    align-items:center;
    flex:0 0 auto;
}

.site-logo{
    display:block;

    width:185px;
    height:auto;

    object-fit:contain;
}

@media(max-width:700px){

    .site-logo{
        width:150px;
    }
}

/* =====================================================
   HALYK PAYMENT — KPI STYLE
===================================================== */

.payment-halyk {
    width: 100%;
}

.payment-modal-header {
    display: flex;
    align-items: center;
    gap: 22px;
}

.payment-provider-logo {
    width: 125px;
    max-height: 70px;
    object-fit: contain;
}

.payment-modal-header h2 {
    margin: 3px 0 5px;
    font-size: 28px;
    font-weight: 700;
    color: #20252a;
}

.payment-modal-header p {
    margin: 0;
    color: #7b838c;
    font-size: 14px;
}

.payment-label {
    display: block;
    color: #f45116;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.payment-divider {
    height: 1px;
    background: #eee4df;
    margin: 24px 0;
}


/* Две колонки */

.halyk-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 22px;
}

.halyk-instruction,
.halyk-requisites {
    border: 1px solid #eee1da;
    border-radius: 20px;
    padding: 24px;
    background: #fff;
}

.halyk-instruction {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fffaf7 100%
    );
}

.halyk-instruction > h3,
.halyk-requisites h3 {
    margin: 0 0 20px;
    color: #20252a;
    font-size: 18px;
    font-weight: 650;
}


/* Шаги */

.payment-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid #eee6e2;
}

.payment-step:last-of-type {
    border-bottom: 0;
}

.payment-step > span {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #f45116;
    color: #fff;

    font-size: 13px;
    font-weight: 700;
}

.payment-step strong {
    display: block;
    margin-bottom: 3px;
    color: #252a2f;
    font-size: 14px;
    font-weight: 650;
}

.payment-step p {
    margin: 0;
    color: #7b838c;
    font-size: 12px;
    line-height: 1.45;
}


/* Комиссия */

.payment-notice {
    margin-top: 18px;
    padding: 11px 14px;

    border: 1px solid #ffd1bf;
    border-radius: 11px;

    background: #fff4ee;
    color: #a84b29;

    font-size: 12px;
}


/* Заголовок реквизитов */

.halyk-requisites-title {
    display: flex;
    align-items: center;
    gap: 12px;

    padding-bottom: 17px;
    margin-bottom: 5px;

    border-bottom: 1px solid #eee6e2;
}

.halyk-small-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #fff0e8;
    color: #f45116;

    font-size: 20px;
    font-weight: 700;
}

.halyk-requisites-title h3 {
    margin: 0 0 3px;
}

.halyk-requisites-title p {
    margin: 0;
    color: #7b838c;
    font-size: 12px;
}


/* Реквизиты */

.halyk-requisite {
    padding: 12px 0;
    border-bottom: 1px solid #eee6e2;
}

.halyk-requisite > span {
    display: block;
    margin-bottom: 4px;

    color: #969ca3;
    font-size: 11px;
}

.halyk-requisite strong {
    color: #20252a;
    font-size: 13px;
    font-weight: 600;
}

.halyk-copy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.halyk-copy-row button {
    width: 32px;
    height: 32px;

    border: 1px solid #ffd1bf;
    border-radius: 9px;

    background: #fff7f3;
    color: #f45116;

    cursor: pointer;
    transition: .2s ease;
}

.halyk-copy-row button:hover {
    background: #f45116;
    color: #fff;
}

.halyk-requisite.small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.halyk-requisite.small span {
    display: block;
    margin-bottom: 3px;

    color: #969ca3;
    font-size: 11px;
}


/* Важно */

.halyk-important {
    display: flex;
    gap: 11px;

    margin-top: 18px;
    padding: 13px;

    border-radius: 12px;
    background: #20252a;

    color: #fff;
}

.halyk-important > span {
    width: 25px;
    height: 25px;
    min-width: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f45116;
    font-weight: 700;
}

.halyk-important p {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
    color: #cdd1d4;
}

.halyk-important strong {
    color: #fff;
}


/* Мобильная версия */

@media (max-width: 800px) {

    .halyk-layout {
        grid-template-columns: 1fr;
    }

    .payment-modal-header {
        align-items: flex-start;
    }

    .payment-provider-logo {
        width: 90px;
    }

    .payment-modal-header h2 {
        font-size: 22px;
    }

    .halyk-instruction,
    .halyk-requisites {
        padding: 18px;
    }
}

/* =========================================
   KASSA24 PAYMENT MODAL
========================================= */

.payment-kassa24 {
    width: 100%;
}

.kassa24-layout {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 22px;
    margin-top: 26px;
}


/* ОБЩИЕ КАРТОЧКИ */

.kassa24-instruction,
.kassa24-info {
    border: 1px solid #f0d8cf;
    border-radius: 20px;
    padding: 24px;
    background: #fff;
}

.kassa24-instruction h3,
.kassa24-info h3 {
    margin: 0;
    color: #20252b;
}


/* ЛЕВАЯ ЧАСТЬ */

.kassa24-instruction > h3 {
    font-size: 19px;
    margin-bottom: 16px;
}

.kassa24-step {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 13px 0;
    border-bottom: 1px solid #eee3de;
}

.kassa24-step-number {
    width: 34px;
    height: 34px;
    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff4f12;
    color: #fff;

    font-size: 14px;
    font-weight: 700;
}

.kassa24-step strong {
    display: block;
    margin-bottom: 3px;

    color: #20252b;
    font-size: 14px;
}

.kassa24-step p {
    margin: 0;
    color: #78818c;
    font-size: 12px;
    line-height: 1.45;
}


/* ВАЖНО */

.kassa24-important {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 18px;
    padding: 13px 14px;

    border: 1px solid #ffc5ae;
    border-radius: 12px;

    background: #fff5f0;
}

.kassa24-important > span {
    width: 27px;
    height: 27px;
    min-width: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff4f12;
    color: #fff;
    font-weight: 700;
}

.kassa24-important p {
    margin: 0;
    color: #7c4937;
    font-size: 12px;
    line-height: 1.4;
}

.kassa24-important strong {
    color: #20252b;
}


/* КНОПКА KASSA24 */

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

    margin-top: 14px;
    min-height: 46px;

    border-radius: 11px;

    background: #ff4f12;
    color: #fff;

    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition: 0.2s ease;
}

.kassa24-site-btn:hover {
    background: #e8440b;
    transform: translateY(-1px);
}


/* ПРАВАЯ ЧАСТЬ */

.kassa24-info-title {
    display: flex;
    align-items: center;
    gap: 13px;

    padding-bottom: 16px;
    border-bottom: 1px solid #eee3de;
}

.kassa24-small-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #fff0e9;
    color: #ff4f12;

    font-size: 20px;
    font-weight: 700;
}

.kassa24-info-title h3 {
    font-size: 18px;
    margin-bottom: 3px;
}

.kassa24-info-title p {
    margin: 0;
    color: #78818c;
    font-size: 12px;
}


/* ЛОГОТИП */

.kassa24-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 170px;
    margin: 18px 0;

    border: 1px solid #eee3de;
    border-radius: 16px;

    background: #fff;
}

.kassa24-logo-box img {
    max-width: 230px;
    max-height: 100px;
    object-fit: contain;
}


/* 01 / 02 / 03 */

.kassa24-point {
    display: flex;
    align-items: center;
    gap: 13px;

    margin: 12px 0;
}

.kassa24-point > span {
    width: 34px;
    height: 34px;
    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #fff0e9;
    color: #ff4f12;

    font-size: 11px;
    font-weight: 700;
}

.kassa24-point strong {
    display: block;
    margin-bottom: 2px;

    color: #20252b;
    font-size: 13px;
}

.kassa24-point p {
    margin: 0;
    color: #78818c;
    font-size: 12px;
}


/* ПОДТВЕРЖДЕНИЕ */

.kassa24-confirm {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-top: 18px;
    padding: 14px;

    border: 1px solid #ffbf72;
    border-radius: 12px;

    background: #fff9ef;
}

.kassa24-confirm > span {
    color: #ff4f12;
    font-size: 22px;
}

.kassa24-confirm strong {
    display: block;
    margin-bottom: 3px;

    color: #20252b;
    font-size: 13px;
}

.kassa24-confirm p {
    margin: 0;
    color: #78818c;
    font-size: 11px;
    line-height: 1.4;
}


/* АДАПТАЦИЯ */

@media (max-width: 850px) {

    .kassa24-layout {
        grid-template-columns: 1fr;
    }

    .kassa24-instruction,
    .kassa24-info {
        padding: 18px;
    }

    .kassa24-logo-box {
        height: 140px;
    }
}

/* =========================================
   ONLINE ACQUIRING / HALYK EPAY
========================================= */

.payment-card-modal {
    width: 100%;
}

.payment-cards-logo {
    max-width: 145px;
    object-fit: contain;
}


/* ДВЕ КОЛОНКИ */

.acquiring-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 22px;
    margin-top: 26px;
}


/* КАРТОЧКИ */

.acquiring-form-card,
.acquiring-info-card {
    background: #ffffff;
    border: 1px solid #f0d8cf;
    border-radius: 20px;
    padding: 24px;
}

.acquiring-form-card h3,
.acquiring-info-card h3 {
    margin: 0;
    color: #20252b;
}


/* =========================
   ФОРМА
========================= */

.acquiring-form-card > h3 {
    font-size: 19px;
    margin-bottom: 20px;
}

.acquiring-field {
    margin-bottom: 16px;
}

.acquiring-field label {
    display: block;
    margin-bottom: 7px;

    color: #20252b;
    font-size: 12px;
    font-weight: 600;
}

.acquiring-field input {
    width: 100%;
    height: 46px;

    padding: 0 14px;

    border: 1px solid #ded7d3;
    border-radius: 10px;

    background: #fff;

    color: #20252b;
    font: inherit;
    font-size: 13px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.acquiring-field input::placeholder {
    color: #a1a6ac;
}

.acquiring-field input:focus {
    border-color: #ff6a32;
    box-shadow: 0 0 0 3px rgba(255, 79, 18, 0.08);
}


/* ТЕЛЕФОН + ИИН */

.acquiring-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}


/* СУММА */

.acquiring-amount {
    position: relative;
}

.acquiring-amount input {
    padding-right: 48px;
}

.acquiring-amount > span {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);

    color: #20252b;
    font-size: 15px;
    font-weight: 600;

    pointer-events: none;
}


/* КОМИССИЯ */

.acquiring-warning {
    margin: 4px 0 14px;
    padding: 11px 13px;

    border: 1px solid #ffc6ae;
    border-radius: 10px;

    background: #fff5f0;

    color: #a04d2e;
    font-size: 11px;
    line-height: 1.4;
}


/* КНОПКА */

.acquiring-submit {
    width: 100%;
    min-height: 48px;

    border: 0;
    border-radius: 11px;

    background: #ff4f12;
    color: #fff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}

.acquiring-submit:hover {
    background: #e8440b;
    transform: translateY(-1px);
}

.acquiring-submit:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}


/* СТАТУС ОПЛАТЫ */

.epay-status {
    margin-top: 10px;

    min-height: 18px;

    font-size: 12px;
    line-height: 1.4;
}

.epay-status.error {
    color: #c23f25;
}

.epay-status.success {
    color: #218a55;
}


/* =========================
   ПРАВАЯ ЧАСТЬ
========================= */

.acquiring-info-head {
    display: flex;
    align-items: center;
    gap: 13px;

    padding-bottom: 18px;
    margin-bottom: 18px;

    border-bottom: 1px solid #eee3de;
}

.acquiring-shield {
    width: 43px;
    height: 43px;
    min-width: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #fff0e9;
    color: #ff4f12;

    font-size: 19px;
    font-weight: 700;
}

.acquiring-info-head h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.acquiring-info-head p {
    margin: 0;

    color: #78818c;
    font-size: 12px;
    line-height: 1.45;
}


/* ПУНКТЫ 01 / 02 / 03 */

.acquiring-feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 14px 0;

    border-bottom: 1px solid #eee3de;
}

.acquiring-feature > span {
    width: 34px;
    height: 34px;
    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #fff0e9;
    color: #ff4f12;

    font-size: 11px;
    font-weight: 700;
}

.acquiring-feature strong {
    display: block;

    margin-bottom: 3px;

    color: #20252b;
    font-size: 13px;
}

.acquiring-feature p {
    margin: 0;

    color: #78818c;
    font-size: 11px;
    line-height: 1.45;
}


/* БЕЗОПАСНОСТЬ */

.acquiring-secure-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-top: 20px;
    padding: 15px;

    border-radius: 12px;

    background: #20252b;
}

.acquiring-secure-note > span {
    font-size: 18px;
}

.acquiring-secure-note p {
    margin: 0;

    color: #d7dce0;
    font-size: 11px;
    line-height: 1.5;
}


/* =========================
   АДАПТАЦИЯ
========================= */

@media (max-width: 850px) {

    .acquiring-layout {
        grid-template-columns: 1fr;
    }

    .acquiring-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .acquiring-form-card,
    .acquiring-info-card {
        padding: 18px;
    }
}

/* Иконка эквайринга */

.acquiring-card-icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: #ff4f12;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: #ff4f12;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================
   ИКОНКИ ШАГОВ "КАК ОПЛАТИТЬ"
========================================= */

.step-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: #ff4f12;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.about-card-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.document-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.document-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* =========================================
   РЕКВИЗИТЫ — АККУРАТНЫЕ РАЗДЕЛИТЕЛИ
========================================= */

.requisites-card .requisite {
    border-bottom: 1px solid #eee4df;
}

.requisites-card .requisite:last-child {
    border-bottom: none;
}

/* Публичная оферта — выбор языка */

.document-language-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.document-language-links a {
    min-width: 44px;
    height: 32px;
    padding: 0 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #ff5a1f;
    border-radius: 8px;

    color: #ff5a1f;
    background: transparent;

    font-size: 11px;
    font-weight: 700;
    text-decoration: none;

    transition: 0.2s ease;
}

.document-language-links a:hover {
    background: #ff5a1f;
    color: #fff;
}

/* FAQ → Контакты */

.faq-section {
    padding-bottom: 40px !important;
}

.contacts-section {
    padding-top: 40px !important;
}

/* =========================================================
   ЕДИНЫЙ ВЕРТИКАЛЬНЫЙ РИТМ САЙТА
   25px + 25px = около 50px между блоками
   ========================================================= */

#payments,
.benefits,
#how,
#about,
#documents,
#faq,
#contacts {
    padding-top: 25px !important;
    padding-bottom: 25px !important;

    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Visa + Mastercard в карточке эквайринга */

.acquiring-logo{
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acquiring-logo img{
    width: 180px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.copy-toast {
    position: fixed;
    left: 50%;
    bottom: 35px;

    transform: translate(-50%, 20px);

    padding: 10px 18px;

    background: #202226;
    color: #fff;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 10px 30px rgba(0,0,0,.18);

    opacity: 0;
    visibility: hidden;

    transition: .25s ease;

    z-index: 9999;
}

.copy-toast.show {
    opacity: 1;
    visibility: visible;

    transform: translate(-50%, 0);
}

/* =========================================================
   KPI — MOBILE HEADER + MENU
   ========================================================= */

@media (max-width: 768px){

    /* ---------- ШАПКА ---------- */

    .site-header{
        position:sticky;
        top:0;
        z-index:1000;
        background:rgba(255,255,255,.97);
        backdrop-filter:blur(14px);
        -webkit-backdrop-filter:blur(14px);
    }

    .site-header .container,
    .header-inner{
        width:100%;
        max-width:none;

        min-height:76px;

        padding-left:18px;
        padding-right:12px;

        display:flex;
        align-items:center;

        gap:9px;
    }


    /* ---------- ЛОГОТИП ---------- */

    .brand{
        order:1;

        margin-right:auto;

        flex:0 1 auto;
    }

    .brand-logo{
        transform:scale(.88);
        transform-origin:left center;
    }


    /* ---------- ПЕРЕКЛЮЧАТЕЛЬ ЯЗЫКА ---------- */

    .language-switch{
        order:2;

        flex:0 0 auto;

        margin:0 !important;

        display:flex;
        align-items:center;

        border:1px solid #ef5b16;
        border-radius:12px;

        overflow:hidden;

        background:#fff;
    }

    .language-switch a,
    .language-switch button,
    .language-switch span{
        min-width:42px;

        padding:9px 10px;

        display:flex;
        align-items:center;
        justify-content:center;

        font-size:13px;
        font-weight:700;
        line-height:1;

        border:0;
    }


    /* ---------- БУРГЕР — КРАЙНИЙ СПРАВА ---------- */

    .menu-toggle{
        order:3;

        flex:0 0 44px;

        width:44px;
        height:44px;

        margin:0 !important;

        display:flex !important;
        align-items:center;
        justify-content:center;

        padding:0;

        border:0;
        border-radius:12px;

        background:#202428;
        color:#fff;

        font-size:0;

        cursor:pointer;

        position:relative;
    }


    /* Рисуем аккуратный бургер */

    .menu-toggle::before,
    .menu-toggle::after{
        content:"";

        position:absolute;
        left:11px;

        width:22px;
        height:2px;

        border-radius:10px;

        background:#ff641e;

        transition:
            transform .2s ease,
            top .2s ease;
    }

    .menu-toggle::before{
        top:15px;
        box-shadow:0 6px 0 #ff641e;
    }

    .menu-toggle::after{
        top:27px;
    }


    /* ---------- ВЫПАДАЮЩЕЕ МЕНЮ ---------- */

    #mainNav,
    .main-nav{
        position:absolute;

        top:calc(100% + 8px);

        left:14px;
        right:14px;

        width:auto;

        display:none;
        flex-direction:column;

        gap:4px;

        margin:0;
        padding:10px;

        background:
            linear-gradient(
                145deg,
                #24282c 0%,
                #191c1f 100%
            );

        border:1px solid rgba(255,255,255,.08);
        border-radius:18px;

        box-shadow:
            0 24px 60px rgba(17,20,23,.28),
            0 5px 18px rgba(239,91,22,.10);

        overflow:hidden;

        z-index:1001;
    }


    /* Класс открытия меню */

    #mainNav.show,
    .main-nav.show,
    #mainNav.open,
    .main-nav.open{
        display:flex;
    }


    /* ---------- ПУНКТЫ ---------- */

    #mainNav a,
    .main-nav a{
        position:relative;

        display:flex;
        align-items:center;

        width:100%;

        min-height:46px;

        margin:0 !important;
        padding:0 16px !important;

        border:0;
        border-radius:11px;

        background:transparent;

        color:#f5f5f5;

        font-size:15px;
        font-weight:650;
        line-height:1.2;

        text-decoration:none;

        transition:
            background .18s ease,
            color .18s ease,
            transform .18s ease;
    }


    /* Тонкое разделение */

    #mainNav a:not(:last-child)::before,
    .main-nav a:not(:last-child)::before{
        content:"";

        position:absolute;

        left:16px;
        right:16px;
        bottom:-2px;

        height:1px;

        background:rgba(255,255,255,.055);
    }


    /* Убираем старые подчёркивания */

    #mainNav a::after,
    .main-nav a::after{
        display:none !important;
    }


    /* Активный пункт */

    #mainNav a.active,
    .main-nav a.active{
        color:#ff641e;

        background:
            linear-gradient(
                90deg,
                rgba(255,100,30,.16),
                rgba(255,100,30,.04)
            );
    }


    /* Оранжевая полоска активного пункта */

    #mainNav a.active::before,
    .main-nav a.active::before{
        content:"";

        position:absolute;

        left:0;
        top:11px;
        bottom:11px;

        width:3px;
        height:auto;

        border-radius:10px;

        background:#ff641e;
    }


    #mainNav a:hover,
    .main-nav a:hover{
        color:#fff;
        background:rgba(255,255,255,.06);
    }


    /* Чтобы старые стили не растягивали меню */

    #mainNav,
    .main-nav,
    #mainNav ul,
    .main-nav ul{
        height:auto !important;
        min-height:0 !important;
        max-height:none !important;
    }

    #mainNav li,
    .main-nav li{
        height:auto !important;
        min-height:0 !important;

        margin:0 !important;
        padding:0 !important;
    }

}

/* =========================================
   MOBILE PAYMENT MODALS — ALL METHODS
   ========================================= */

@media (max-width: 768px) {

    .modal{
        padding:10px;
    }

    .modal-card{
        width:100%;
        max-width:none;
        max-height:calc(100vh - 20px);

        margin:10px auto;
        padding:0;

        border-radius:20px;

        overflow-y:auto;
        overflow-x:hidden;
    }

    .modal-close{
        position:sticky;
        top:10px;
        margin-left:auto;
        margin-right:12px;

        width:40px;
        height:40px;

        z-index:20;

        display:flex;
        align-items:center;
        justify-content:center;

        background:#f2f3f3;
        border-radius:50%;

        font-size:22px;
        line-height:1;
    }

    #paymentModalContent{
        padding:6px 16px 22px;
    }


    /* Шапка любого способа оплаты */

    .payment-modal-head{
        display:flex;
        flex-direction:column;
        align-items:flex-start;

        gap:10px;

        padding:0 0 20px;
        margin-bottom:18px;
    }

    .payment-modal-logo{
        width:auto;
        max-width:145px;
        max-height:58px;
    }

    .payment-modal-head h2{
        margin:4px 0 5px;

        font-size:27px;
        line-height:1.08;
    }

    .payment-modal-head p{
        margin:0;

        font-size:14px;
        line-height:1.45;
    }


    /* Все двухколоночные payment-блоки становятся одной колонкой */

    .kaspi-modal-grid,
    .kassa-pretty-grid,
    .payment-modal-grid,
    .card-payment-grid,
    .halyk-payment-grid{
        display:grid !important;
        grid-template-columns:1fr !important;

        gap:16px !important;
    }


    /* Внутренние карточки */

    .payment-guide-card,
    .payment-qr-card,
    .pretty-card,
    .card-form-card,
    .payment-info-card{
        width:100%;

        padding:18px !important;

        border-radius:16px !important;
    }


    /* Шаги */

    .payment-step{
        grid-template-columns:34px 1fr;

        gap:10px;

        padding:11px 0;
    }

    .payment-step > span{
        width:32px;
        height:32px;
    }

    .payment-step b{
        font-size:14px;
    }

    .payment-step small{
        font-size:12px;
        line-height:1.4;
    }


    /* QR */

    .payment-qr-box{
        min-height:0;

        padding:14px;

        border-radius:15px;
    }

    .payment-qr-box img{
        width:min(240px,100%);
        margin:auto;
    }


    /* Поля эквайринга и других форм */

    .modal-card input,
    .modal-card select,
    .modal-card textarea{
        width:100%;

        min-height:54px;

        padding:12px 14px;

        border-radius:12px;

        font-size:16px;
    }

    .modal-card textarea{
        min-height:100px;
    }

    .modal-card label{
        margin-bottom:12px;
    }

    .modal-card .form-row{
        display:grid !important;
        grid-template-columns:1fr !important;

        gap:0 !important;
    }


    /* Комиссия */

    .payment-warning{
        margin-top:14px;

        padding:11px 12px;

        font-size:12px;
        line-height:1.4;

        border-radius:11px;
    }


    /* Кнопки */

    .payment-action-btn,
    .modal-card .primary-btn,
    .modal-card button[type="submit"]{
        width:100%;

        min-height:50px;

        margin-top:14px;

        border-radius:11px;
    }


    /* Убираем огромные внутренние отступы */

    .modal-card section{
        margin-top:0;
        margin-bottom:0;
    }

}

/* =========================================================
   KPI — FINAL RECOVERY OVERRIDES
   ========================================================= */

/* Hero image used instead of CSS letter/orbits */
.hero-art{
    position:relative;
    min-height:410px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-k-image{
    display:block;
    width:min(620px,96%);
    max-width:100%;
    height:auto;
    object-fit:contain;
}

/* Footer logo */
.footer-brand{
    display:flex;
    align-items:center;
    margin-bottom:8px;
}

.footer-logo{
    display:block;
    width:110px;
    height:auto;
    object-fit:contain;
}

@media(max-width:620px){
    .footer-logo{
        width:100px;
    }
}

/* =========================================================
   KPI — FINAL MOBILE PAYMENT FIX
   MUST STAY AT THE VERY END
   ========================================================= */

@media (max-width: 768px) {

    .modal {
        position: fixed !important;
        inset: 0 !important;
        z-index: 99999 !important;
        display: flex;
        align-items: flex-start !important;
        justify-content: center !important;
        padding: 10px !important;
        overflow: hidden !important;
    }

    .modal[hidden] {
        display: none !important;
    }

    .modal-backdrop {
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
        background: rgba(18,20,22,.72) !important;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .modal-card {
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
        max-width: 620px !important;
        height: auto !important;
        max-height: calc(100dvh - 20px) !important;
        margin: 0 auto !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        border-radius: 20px !important;
        background: #fff !important;
        box-shadow: 0 25px 80px rgba(0,0,0,.35) !important;
        -webkit-overflow-scrolling: touch;
    }

    .modal-close {
        position: sticky !important;
        top: 10px !important;
        right: auto !important;
        float: right !important;
        z-index: 100 !important;
        width: 40px !important;
        height: 40px !important;
        margin: 10px 10px -50px 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 0 !important;
        border-radius: 50% !important;
        background: #f1f3f4 !important;
        color: #20252b !important;
        box-shadow: 0 5px 18px rgba(0,0,0,.10) !important;
        font-size: 24px !important;
        line-height: 1 !important;
        cursor: pointer !important;
    }

    #paymentModalContent {
        width: 100% !important;
        padding: 20px 16px 22px !important;
    }

    .payment-modal-head {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        padding: 0 48px 16px 0 !important;
        margin: 0 0 16px !important;
    }

    .payment-modal-logo,
    .payment-cards-logo {
        width: auto !important;
        max-width: 135px !important;
        max-height: 48px !important;
        margin: 0 !important;
        object-fit: contain !important;
    }

    .payment-modal-head .eyebrow {
        margin-top: 2px !important;
        font-size: 11px !important;
    }

    .payment-modal-head h2 {
        margin: 2px 0 4px !important;
        font-size: 25px !important;
        line-height: 1.08 !important;
    }

    .payment-modal-head p {
        margin: 0 !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .payment-card-modal {
        width: 100% !important;
    }

    .acquiring-layout {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 14px !important;
    }

    .acquiring-form-card,
    .acquiring-info-card {
        width: 100% !important;
        padding: 16px !important;
        border-radius: 16px !important;
        box-shadow: none !important;
    }

    .acquiring-form-card > h3 {
        margin: 0 0 15px !important;
        font-size: 20px !important;
        line-height: 1.15 !important;
    }

    .acquiring-field {
        margin-bottom: 11px !important;
    }

    .acquiring-field label {
        display: block !important;
        margin: 0 0 5px !important;
        font-size: 12px !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
    }

    .acquiring-field input {
        width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
        margin: 0 !important;
        padding: 0 13px !important;
        border-radius: 11px !important;
        font-size: 15px !important;
        line-height: 48px !important;
    }

    .acquiring-field input::placeholder {
        font-size: 15px !important;
    }

    .acquiring-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .acquiring-amount input {
        padding-right: 43px !important;
    }

    .acquiring-amount > span {
        right: 14px !important;
        font-size: 15px !important;
    }

    .acquiring-warning {
        margin: 4px 0 12px !important;
        padding: 10px 12px !important;
        border-radius: 10px !important;
        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    .acquiring-submit {
        width: 100% !important;
        min-height: 48px !important;
        margin: 0 !important;
        border-radius: 11px !important;
        font-size: 14px !important;
    }

    .acquiring-info-card {
        margin-top: 0 !important;
    }

    .acquiring-info-head {
        padding-bottom: 12px !important;
        margin-bottom: 8px !important;
    }

    .acquiring-feature {
        padding: 10px 0 !important;
    }

    .acquiring-secure-note {
        margin-top: 12px !important;
        padding: 12px !important;
    }

    .kaspi-modal-grid,
    .kassa-pretty-grid,
    .payment-modal-grid,
    .card-payment-grid,
    .halyk-payment-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .payment-guide-card,
    .payment-qr-card,
    .pretty-card,
    .card-form-card,
    .payment-info-card {
        width: 100% !important;
        padding: 16px !important;
        border-radius: 16px !important;
    }

    .payment-qr-box {
        min-height: 0 !important;
        padding: 12px !important;
    }

    .payment-qr-box img {
        width: min(220px, 100%) !important;
        margin: auto !important;
    }

    .modal-card input,
    .modal-card select,
    .modal-card textarea {
        box-sizing: border-box !important;
    }

    .hero-art{
        min-height:270px;
    }

    .hero-k-image{
        width:min(430px,100%);
    }
}

/* Казахский логотип — размер как у русского */
.site-logo.logo-kz {
    transform: scale(0.90);
    transform-origin: left center;
}

/* =========================================================
   COLLECTIVE SETTLEMENT POPUP
   ========================================================= */

.collective-popup{
    position:fixed;
    inset:0;
    z-index:9999;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:30px;
}

.collective-popup__backdrop{
    position:absolute;
    inset:0;

    background:rgba(15,18,21,.68);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
}


/* ОСНОВНАЯ КАРТОЧКА */

.collective-popup__card{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:280px minmax(0,1fr);

    width:min(1180px,96vw);
    max-height:92vh;

    overflow:hidden;

    background:#fff;

    border-radius:26px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.28),
        0 8px 25px rgba(0,0,0,.12);
}


/* КНОПКА ЗАКРЫТИЯ */

.collective-popup__close{
    position:absolute;
    z-index:20;

    top:18px;
    right:20px;

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:0;
    border-radius:50%;

    background:#f3f4f5;

    color:#20252a;

    font-size:27px;
    line-height:1;

    cursor:pointer;

    transition:.2s ease;
}

.collective-popup__close:hover{
    background:#ff5a16;
    color:#fff;
}


/* ЛЕВАЯ ФИРМЕННАЯ ЧАСТЬ */

.collective-popup__brand{
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:45px 35px;

    background:
        linear-gradient(
            145deg,
            #27313b 0%,
            #1d252d 55%,
            #151b20 100%
        );

    overflow:hidden;
}


/* ОРАНЖЕВАЯ ДИАГОНАЛЬ */

.collective-popup__brand::after{
    content:"";

    position:absolute;

    top:-15%;
    right:-25px;

    width:18px;
    height:130%;

    background:#ff5a16;

    transform:rotate(18deg);

    box-shadow:
        -13px 0 0 rgba(255,90,22,.28);
}


/* ОФИЦИАЛЬНЫЙ ЛОГОТИП */

.collective-popup__logo{
    position:relative;
    z-index:2;

    display:block;

    width:190px;
    max-width:100%;

    height:auto;

    object-fit:contain;
}


/* КОНТЕНТ */

.collective-popup__content{
    min-width:0;

    padding:34px 46px 0;

    overflow-y:auto;

    color:#20252a;
}


/* ЗАГОЛОВКИ */

.collective-popup__title{
    margin:0 0 3px;

    color:#f45116;

    font-size:26px;
    font-weight:800;
    line-height:1.1;
}

.collective-popup__subtitle{
    margin-bottom:12px;

    color:#171b1f;

    font-size:20px;
    font-weight:750;
}


/* ТЕКСТ */

.collective-popup__language p{
    margin:0 0 12px;

    font-size:15px;
    line-height:1.55;

    color:#343a40;
}

.collective-popup__language strong{
    color:#181c20;
    font-weight:700;
}


/* РАЗДЕЛИТЕЛЬ */

.collective-popup__divider{
    height:1px;

    margin:22px 0;

    background:
        linear-gradient(
            90deg,
            #ff5a16 0%,
            #ff5a16 35%,
            #e8e8e8 35%,
            #e8e8e8 100%
        );
}


/* НИЖНЯЯ ПАНЕЛЬ */

.collective-popup__footer{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:25px;

    margin:
        26px -46px 0;

    padding:18px 30px;

    background:#f7f7f7;

    border-top:1px solid #ececec;
}

.collective-popup__footer-text{
    display:flex;
    align-items:center;

    gap:10px;

    font-size:13px;
    font-weight:600;

    color:#41474c;
}


/* КНОПКА */

.collective-popup__button{
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:20px;

    min-width:245px;

    padding:14px 24px;

    border-radius:10px;

    background:
        linear-gradient(
            135deg,
            #ff681f,
            #ff4b0b
        );

    color:#fff;

    text-decoration:none;

    font-size:15px;
    font-weight:750;

    box-shadow:
        0 8px 22px rgba(255,82,15,.22);

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

.collective-popup__button:hover{
    transform:translateY(-2px);

    box-shadow:
        0 12px 28px rgba(255,82,15,.32);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:800px){

    .collective-popup{
        padding:14px;
        align-items:center;
    }

    .collective-popup__card{
        display:block;

        width:100%;
        max-height:94vh;

        overflow-y:auto;

        border-radius:20px;
    }

    .collective-popup__brand{
        min-height:105px;

        padding:18px 25px;

        justify-content:flex-start;
    }

    .collective-popup__brand::after{
        right:25%;
    }

    .collective-popup__logo{
        width:125px;
    }

    .collective-popup__content{
        padding:24px 22px 0;
        overflow:visible;
    }

    .collective-popup__title{
        font-size:22px;
    }

    .collective-popup__subtitle{
        font-size:18px;
    }

    .collective-popup__language p{
        font-size:14px;
        line-height:1.5;
    }

    .collective-popup__divider{
        margin:18px 0;
    }

    .collective-popup__footer{
        display:block;

        margin:
            22px -22px 0;

        padding:18px 22px;
    }

    .collective-popup__footer-text{
        margin-bottom:14px;

        line-height:1.4;
    }

    .collective-popup__button{
        width:100%;
        min-width:0;
    }

    .collective-popup__close{
        top:12px;
        right:12px;
    }
}