
:root{--bg:#050816;--card:#0d1224;--border:#20263a;--text:#fff;--muted:#b8bfd3;--grad:linear-gradient(90deg,#4f7cff,#cf5cff);}
*{box-sizing:border-box} 

body{
    background-color:#050608;

    background-image:
        radial-gradient(
            1200px 760px at -10% 50%,
            rgba(30,80,255,.10),
            transparent 60%
        ),
        radial-gradient(
            1200px 760px at 110% 50%,
            rgba(255,45,146,.08),
            transparent 60%
        ),
        linear-gradient(
            180deg,
            #030406 0%,
            #05070c 50%,
            #070910 100%
        );

    color:var(--text); /* ВОТ ЭТО ДОБАВИТЬ */

    margin:0;
    font-family:Inter,sans-serif;

    position:relative;
    background-repeat:no-repeat;
    background-size:cover;
    background-attachment:fixed;
}

body::before{
    content:"";

    position:fixed;
    inset:0;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(79,124,255,.05),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 30%,
            rgba(207,92,255,.04),
            transparent 35%
        );

    pointer-events:none;
    z-index:-1;
}
body::after{
    content:"";

    position:fixed;
    top:50%;
    left:50%;

    width:900px;
    height:900px;

    transform:translate(-50%,-50%);

    background:
        radial-gradient(
            circle,
            rgba(79,124,255,.05),
            transparent 50%
        );

    filter:blur(80px);

    animation:floatGlow 5s ease-in-out infinite;

    pointer-events:none;
    z-index:-1;
}

@keyframes floatGlow{
    0%,100%{
        transform:translate(-50%,-50%);
    }

    50%{
        transform:translate(-45%,-55%);
    }
}
.container{width:min(1180px,92%);margin:auto}
section{padding:50px 0}
.hero{
    min-height:100vh;

    display:flex;
    flex-direction:column;
}

.hero-header{
    flex:1;

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

.hero-content{
    flex:1;
    max-width:700px;
}

.hero-content h1{
    font-size:clamp(48px,5vw,72px);
    line-height:1.05;
    margin:0 0 24px;
    text-align:left;
    letter-spacing:-2px;
}
.hero-content p{
    margin-bottom:10px;
}
.hero-content p{
    max-width:650px;
    font-size:20px;
    line-height:1.7;
    color:var(--muted);

    border-left:3px solid #4f7cff;
    padding-left:24px;
}
.hero-header .btn{
    flex-shrink:0;
}

.hero-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}
.hero-form{
    width:380px;

    background:rgba(13,18,36,.35);

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

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-radius:24px;

    padding:30px;

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

    box-shadow:
        0 8px 32px rgba(0,0,0,.25),
        0 0 40px rgba(79,124,255,.05);
}
.hero-form h3{
    margin:0 0 10px;
    text-align:center;
}

.hero-form input{
    width:100%;

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

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

    border-radius:12px;

    padding:14px 16px;

    color:#fff;

    font-size:16px;

    transition:.3s;
}

.hero-form input:focus{
    outline:none;
    border-color:#4f7cff;
}

.hero-form button{
    border:none;

    padding:15px;

    border-radius:12px;

    background:var(--grad);

    color:#fff;

    font-weight:700;

    cursor:pointer;
}
.gradient-text{
    background: linear-gradient(
        90deg,
        #4f7cff,
        #8b5cf6,
        #cf5cff,
        #4f7cff
    );

    background-size: 300% 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    animation: gradientFlow 6s ease infinite;
}

.hero-nav{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:10px;
}

.nav-card{
    display:flex;
    align-items:center;
    gap:12px;
    width: fit-content;
    padding:16px 28px;
    
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;

    color:#fff;
    text-decoration:none;

    backdrop-filter:blur(10px);

    transition:.3s;
}

.nav-card:hover{
    transform:translateY(-4px);
    border-color:#5f7dff;
    box-shadow:0 10px 30px rgba(95,125,255,.2);
}

.hero-nav .nav-card:nth-child(1),
.hero-nav .nav-card:nth-child(2){
    animation: navFloat 3s ease-in-out infinite;

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

.hero-nav .nav-card:nth-child(2){
    animation-delay:1.5s;
}

.hero-nav .nav-card:nth-child(1):hover,
.hero-nav .nav-card:nth-child(2):hover{
    animation-play-state: paused;

    transform:translateY(-20px) scale(1.15);

    border-color:#4f7cff;

    box-shadow:
        0 30px 60px rgba(79,124,255,.25),
        0 0 50px rgba(207,92,255,.2);
}

@keyframes navFloat{
    0%,100%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-6px);
    }
}
.faq-title{
    margin-top:40px;
}

@keyframes gradientFlow{
    0%{
        background-position: 0% 50%;
    }

    50%{
        background-position: 100% 50%;
    }

    100%{
        background-position: 0% 50%;
    }
}
html{
    scroll-behavior:smooth;
}


.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:30px;
}
@media (max-width:768px){
    .hero-buttons{
        flex-direction:column;
    }
}

@media(max-width:900px){

    .hero-header{
        flex-direction:column;
        text-align:center;
    }

    .hero-content h1,
    .hero-content p{
        text-align:center;
    }

}
@media (max-width: 768px){

    .proposal-extra{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .proposal-btn,
    .proposal-extra .btn,
    .proposal-extra .nav-card{
        width:240px;
        height:56px;

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

        text-align:center;
        box-sizing:border-box;
    }
}

.hero-stats{
    width:100%;
    max-width:1200px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;

}
.hero-stats{
    margin-top:60px;
    margin-bottom:30px;
}

.problem-solution{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:120px;

    max-width:1100px;
    margin:0 auto;

    padding-top:0;
}
h1{font-size:clamp(42px,7vw,72px)} h2{margin:0 0 24px}
p{color:var(--muted)}
.btn{display:inline-block;padding:16px 28px;border-radius:14px;background:var(--grad);color:#fff;text-decoration:none;font-weight:700}
.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:-20px;
}
.stat,.card,.box,.case,.timeline div,.faq details{background:var(--card);border:1px solid var(--border);border-radius:22px}
.stat{padding:28px;text-align:center}
.problem-solution{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:120px;

    max-width:1100px;
    margin:-40px auto 0;

    padding-top:0;
    padding-bottom:30px;
}
.box{padding:40px}
.box ul{margin:0;padding-left:20px;display:flex;flex-direction:column;gap:12px}
.grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.card{padding:30px;min-height:140px}
.timeline{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.timeline div,.case{padding:30px}
.placeholder{height:240px;border:2px dashed #3a4363;border-radius:16px;display:flex;align-items:center;justify-content:center}
.faq details{padding:20px;margin-bottom:12px}
.cta{text-align:center}

.comparison{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:40px 0;
}

.comparison > h2{
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
}
.comparison-row{
    display:grid;
    grid-template-columns:1fr 80px 1fr;
    align-items:center;

    padding:12px 20px;

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

.left{
    text-align:right;
    padding-right:40px;
    color:#b8bfd3;
    font-size:18px;
}

.arrow{
    text-align:center;
    font-size:32px;
    color:#4f7cff;
    font-weight:700;
}

.right{
    text-align:left;
    padding-left:40px;
    font-size:18px;
    font-weight:600;
}

.comparison-row:hover{
    transform:translateX(5px);
    transition:.3s;
}
@media(max-width:900px){.stats,.timeline,.grid,.problem-solution{grid-template-columns:1fr}}


/* Centered content update */
.box,
.card,
.stat,
.timeline div,
.case{
    text-align:center;
}

.box ul{
    list-style-position: inside;
    padding-left:0;
}

.box li{
    text-align:center;
}

.card h3,
.case h3,
.stat strong,
.stat span{
    text-align:center;
    display:block;
}

/* твои текущие стили */

@media(max-width:900px){
    .stats,
    .timeline,
    .grid,
    .problem-solution{
        grid-template-columns:1fr;
    }
}

/* ===== БЛОК УСЛУГ 2 КАРТОЧКИ ===== */
#services{
    min-height:100vh;
    scroll-margin-top:1px;
    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:100px 0;
}
.services-big{
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.service-link{
    flex: 1;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-big{
    background: rgba(13,18,36,.35);
    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 24px;
    padding: 40px;
    text-align: center;

    cursor: pointer;
    position: relative;
    overflow: hidden;

    height: 100%;

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

.service-big:hover{
    transform: translateY(-10px) scale(1.02);

    border-color: #4f7cff;

    box-shadow:
        0 25px 50px rgba(79,124,255,.15),
        0 0 40px rgba(207,92,255,.15);
}

.service-big::before{
    content: "";

    position: absolute;
    top: 0;
    left: -100%;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        #4f7cff,
        #cf5cff
    );

    transition: .5s;
}

.service-big:hover::before{
    left: 0;
}

.service-big h3{
    font-size: 28px;
    margin-bottom: 20px;
}

.service-big p{
    margin-bottom: 25px;
}

.service-big ul{
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-big li{
    color: var(--muted);
}

.service-more{
    margin-top: 28px;
    font-size: 16px;
    font-weight: 700;
    color: #4f7cff;

    display: block;

    transition:
        transform .25s ease,
        color .25s ease;
}

.service-big:hover .service-more{
    transform: translateX(8px);
    color: #cf5cff;
}

@media (max-width: 768px){
    .services-big{
        flex-direction: column;
    }
}

.service-link{
    text-decoration: none;
    color: inherit;
    display: block;
}

.hero{
    padding:40px 0 !important;
}

.hero h1{
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
    margin:0 0 20px;
}

.hero p{
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
    max-width:700px;
    margin:0 auto 30px;
}

.stats{
    margin-top:0 !important;
}
.scroll-down{
    display:block;
    width:fit-content;

    margin:25px auto 0;

    text-decoration:none;

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

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

    opacity:1;

    transition:
        color .3s ease,
        transform .3s ease,
        text-shadow .3s ease,
        opacity .4s ease;   

    animation:floatArrow 2.5s ease-in-out infinite;
}

.scroll-down:hover{
    color:#4f7cff;
    transform:translateY(3px);

    text-shadow:
        0 0 15px rgba(79,124,255,.5),
        0 0 30px rgba(207,92,255,.3);
}
.scroll-down{
    transition:
        color .3s ease,
        transform .3s ease,
        text-shadow .3s ease,
        opacity .4s ease;
}

@keyframes floatArrow{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(6px);
    }
}
.process-screen{
    min-height:100vh;

    width:min(1700px,95%);
    margin:0 auto;

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

    padding:80px 0;
}


.timeline-title{
    text-align:center;
    margin:0;
    
}

.timeline{
    margin-top:20px;

    display:flex;
    gap:20px;
    flex-wrap:wrap;
    align-items:flex-start;    
}

.step{
    flex:1;

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

    padding:18px;

    cursor:pointer;

    min-height:390px;

    transition:.3s;
}

.step h3{
    margin:0 0 20px;
    color:#fff;
}

.step p{
    opacity:1;
    color:var(--muted);
    line-height:1.7;
    margin:0;
}


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

    border-color:#4f7cff;

    box-shadow:
        0 15px 40px rgba(79,124,255,.15),
        0 0 30px rgba(207,92,255,.1);
}

.step:hover p{
    max-height:500px;
    opacity:1;
}



@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
    }
}
@media(max-width:900px){
    .services-big{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .comparison-row{
        grid-template-columns:1fr;
        gap:12px;
        text-align:center;
        padding:10px 0;
    }

    .left,
    .right{
        text-align:center;
        padding:0;
    }

    .arrow{
        transform:rotate(90deg);
        font-size:28px;
    }
}

@media(max-width:768px){

    .hero-stats{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .stat{
        min-height:120px;

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

        padding:20px;
    }

    .stat strong{
        font-size:28px;
    }

    .stat span{
        font-size:14px;
        text-align:center;
    }
}
@media (max-width: 900px){

    .hero{
        min-height:auto;
        padding:40px 0 60px;
    }

    .hero-header{
        flex-direction:column;
        align-items:center;
        gap:30px;
    }

    .hero-content{
        max-width:100%;
        text-align:center;
    }

    .hero-content h1{
        font-size:clamp(42px,9vw,60px);
        text-align:center;
        margin-bottom:20px;
    }

    .hero-content p{
        max-width:100%;
        text-align:center;
        border-left:none;
        border-top:3px solid #4f7cff;
        padding-left:0;
        padding-top:20px;
        margin:0 auto;
    }

    .hero-form{
        width:100%;
        max-width:500px;
    }

    .hero-stats{
        grid-template-columns:repeat(2,1fr);
        gap:15px;

        margin-top:30px;
        margin-bottom:30px;
    }

    .stat{
        min-height:110px;
        padding:20px 10px;

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

    .stat strong{
        font-size:28px;
    }

    .stat span{
        font-size:15px;
        text-align:center;
    }

    .hero-nav{
        flex-direction:column;
        align-items:center;
        gap:15px;
        margin-top:10px;
    }

    .nav-card{
        width:100%;
        max-width:320px;
        justify-content:center;
    }

    .comparison-row{
        grid-template-columns:1fr;
        gap:15px;
        text-align:center;
    }

    .left,
    .right{
        text-align:center;
        padding:0;
    }

    .arrow{
        transform:rotate(90deg);
    }

    .timeline{
        flex-direction:column;
    }

    .step{
        width:100%;
    }

    .services-big{
        grid-template-columns:1fr;
    }
}

.stat,
.card,
.box,
.case,
.timeline div,
.faq details{
    background:rgba(13,18,36,.35);

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

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-radius:22px;

    box-shadow:
        0 8px 32px rgba(0,0,0,.25);
}
@media (max-width: 768px){

    .step{
        min-height:auto;
        padding:24px 20px;
    }

    .step p{
        max-width:none;
        width:100%;
        text-align:center;
    }

    .step h3{
        width:100%;
    }

}

.main-legal-footer{
    margin-top:50px;

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

    width:100%;
}

.main-legal-footer{
    margin-top:90px;
    position:relative;
}

.main-legal-footer::before{
    content:"";

    position:absolute;
    top:-35px;
    left:50%;

    transform:translateX(-50%);

    width:180px;
    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(79,124,255,.8),
        transparent
    );
}




.offer-divider{
    width:120px;
    height:1px;

    margin:50px auto 40px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
}

.offer-grid-title{
    text-align:center;
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;

    color:#4f7cff;

    margin-bottom:40px;
}



.offer-price{
    margin-bottom:18px;
}

.offer-price strong{
    display:block;
    font-size:34px;
    line-height:1;
    margin-bottom:8px;
    color:#fff;
}

.offer-price span{
    color:var(--muted);
    font-size:14px;
}

.service-big ul{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.service-big li{
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.service-big li:last-child{
    border-bottom:none;
}


.process-section{
    margin-top:100px;
}

.process-section h2{
    text-align:center;
    margin-bottom:50px;
}

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

.process-card{
    background:rgba(13,18,36,.35);
    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-radius:24px;
    padding:30px;
    text-align:center;
}

.process-number{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;

    background:linear-gradient(90deg,#4f7cff,#cf5cff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.budget-info{
    max-width:900px;
    margin:60px auto 0;
}

.budget-info h3{
    text-align:center;
    font-size:32px;
    margin-bottom:40px;
}

.budget-list{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.budget-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
}

.budget-icon{
    min-width:50px;
    height:50px;

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

    font-size:22px;

    border-radius:50%;

    background:rgba(79,124,255,.15);

    color:#4f7cff;
}

.budget-text{
    color:rgba(255,255,255,.85);
    font-size:17px;

    line-height:1.9;

    padding-top:4px;
}

.budget-text strong{
    color:#fff;
}
.budget-info h3{
    text-align:center;
    font-size:32px;
    margin-bottom:40px;

    line-height:1.3;
}

.budget-text{
    color:rgba(255,255,255,.85);
    font-size:17px;

    line-height:1.8 !important;
}

@media(max-width:900px){

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


.form-wrapper{
    display:flex;
    justify-content:center;
    margin-top:80px;
}

.form-wrapper .hero-form{
    width:100%;
    max-width:700px;
}

.form-wrapper .hero-form{
    width:min(700px,100%);
}

.section-subtitle{
    text-align:center;
    font-size:36px;
    margin:60px 0 15px;
}

.section-description{
    text-align:center;
    max-width:800px;
    margin:0 auto 50px;
    color:var(--muted);
}


.bulk-prices{
    margin-top:80px;
}

.bulk-prices h2{
    text-align:center;
    margin-bottom:40px;
}

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

.bulk-card{
    background:rgba(13,18,36,.35);

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

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-radius:24px;

    padding:30px;

    text-align:center;

    transition:.3s;
}

.bulk-card:hover{
    transform:translateY(-6px);

    border-color:#4f7cff;

    box-shadow:0 15px 40px rgba(79,124,255,.15);
}

.bulk-card span{
    display:block;

    color:var(--muted);

    margin-bottom:12px;
}

.bulk-card strong{
    font-size:34px;

    display:block;

    background:linear-gradient(90deg,#4f7cff,#cf5cff);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.featured{
    border-color:#4f7cff;

    box-shadow:
        0 0 25px rgba(79,124,255,.15);
}

@media(max-width:900px){

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

}

.success-popup{
    position:fixed;

    top:30px;
    right:30px;

    max-width:400px;

    padding:18px 24px;

    background:rgba(13,18,36,.95);

    border:1px solid #4f7cff;

    border-radius:16px;

    color:#fff;

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    box-shadow:
        0 10px 30px rgba(79,124,255,.2);

    opacity:0;
    visibility:hidden;

    transform:translateY(-20px);

    transition:.3s;

    z-index:9999;
}

.success-popup.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
@media (max-width: 768px) {

    .hero-buttons{
        display:flex;
        flex-direction:column;
        gap:15px;
        align-items:center;
    }

    .hero-buttons .btn,
    .hero-buttons .nav-card{
        width:240px;
        height:56px;

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

        font-size:16px;
        box-sizing:border-box;
    }
}


/* стили otzivi*/


.offer-grid {
    display: flex;
    justify-content: center;
    text-align: center;
}

.offer-link{
    display:block;
    width:fit-content;
    text-decoration:none;
    color:inherit;
}

.offer-card{
    background:rgba(13,18,36,.35);
    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    padding:24px 20px;

    border-radius:20px;

    min-height:220px;

    display:flex;
    flex-direction:column;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}
@media (max-width:900px){
    .offer-grid{
        grid-template-columns:1fr;
    }
}
.offer-card:hover{
    transform:translateY(-8px);

    border-color:#4f7cff;

    box-shadow:
        0 25px 50px rgba(79,124,255,.15),
        0 0 40px rgba(207,92,255,.15);
}

.offer-card h3{
    font-size:22px;
    margin-bottom:16px;
    line-height:1.3;
}

.offer-card ul{
    list-style:none;
    padding:0;
    margin-top:18px;
}

.offer-card li{
    font-size:14px;
    margin-bottom:8px;
    color:var(--muted);
    line-height:1.5;
}

.gradient-text{
    margin: 0;
}

.section-subtitle{
    margin: 6px 0 12px;
}

.section-description{
    margin: 0 auto 40px;
}


.wholesale-section{
    margin:100px auto;
    text-align:center;
}

.wholesale-title{
    font-size:38px;
    margin-bottom:50px;
}

.wholesale-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:25px;

    max-width:1400px;
    margin:0 auto;
}

.wholesale-card{
    background:rgba(13,18,36,.45);
    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:35px 25px;

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

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

.wholesale-card:hover{
    transform:translateY(-10px) scale(1.04);

    border-color:#4f7cff;

    box-shadow:
        0 20px 50px rgba(79,124,255,.18),
        0 0 35px rgba(207,92,255,.18);
}

.wholesale-count{
    display:block;

    font-size:16px;
    color:var(--muted);

    margin-bottom:18px;
}

.wholesale-price{
    display:block;

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

    background:linear-gradient(
        90deg,
        #4f7cff,
        #cf5cff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

@media (max-width:1000px){
    .wholesale-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

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

.workflow-section{
    margin:120px auto;
    text-align:center;
}

.workflow-title{
    font-size:42px;
    margin-bottom:60px;
}

.workflow-grid{
    display:flex;
    flex-direction:column;
    gap:25px;

    max-width:1000px;
    margin:0 auto;
}

.workflow-card{
    padding:35px 40px;

    background:rgba(13,18,36,.35);
    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    text-align:left;

    transition:.3s;
}

.workflow-card:hover{
    transform:translateY(-8px);

    border-color:#4f7cff;

    box-shadow:
        0 20px 50px rgba(79,124,255,.15),
        0 0 35px rgba(207,92,255,.15);
}

.workflow-number{
    display:block;

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

    line-height:1;

    margin-bottom:20px;

    background:linear-gradient(
        90deg,
        #4f7cff,
        #cf5cff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    letter-spacing:2px;
}

.workflow-card h3{
    margin:0 0 12px;

    font-size:24px;
}

.workflow-card p{
    margin:0;

    color:var(--muted);

    line-height:1.7;
}

@media(max-width:1000px){
    .workflow-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

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

.budget-info{
    max-width:1100px;
    margin:60px auto 0;

    background:rgba(13,18,36,.35);
    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;
    padding:40px;

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.budget-header{
    text-align:center;

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

    color:#fff;

    margin-bottom:35px;
}

.budget-items{
    display:grid;

    grid-template-columns:repeat(2,minmax(0,450px));

    justify-content:center;

    gap:20px;
}

.budget-item{
    display:flex;
    align-items:center;

    gap:15px;

    padding:20px;

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

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

    border-radius:18px;

    color:#fff;

    transition:.3s;
}

.budget-item:hover{
    transform:translateY(-5px);

    border-color:rgba(255,255,255,.12);

    box-shadow:
        0 10px 30px rgba(255,255,255,.05);
}

.budget-item span{
    font-size:24px;
    flex-shrink:0;
}
@media(max-width:900px){
    .budget-items{
        grid-template-columns:1fr;
    }
}

.proposal-nav{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

    margin:50px auto 30px;
}

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

    padding:18px 24px;

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

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

    border-radius:14px;

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

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.proposal-btn:hover{
    transform: translateY(-3px);

    box-shadow:
        0 0 20px rgba(79,124,255,.5),
        0 0 40px rgba(207,92,255,.3);
}

.proposal-nav-title{
    text-align:center;

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

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

    margin-top:50px;
    margin-bottom:25px;

    letter-spacing:2px;
    text-transform:uppercase;
}
.proposal-extra{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

@media(max-width:900px){
    .proposal-nav{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){

    .proposal-nav{
        grid-template-columns:1fr;
    }

    .proposal-extra{
        flex-direction:column;
    }
}




#rhps{
    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
}
#main{
    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
}
#budget{
    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
}
#work{
    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

#form{
    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
}


/* =========================
   LEGAL PAGE
========================= */

.legal-page{
    max-width:1000px;
    margin:0 auto;
    padding:120px 20px 80px;
}

.legal-header{
    text-align:center;
    margin-bottom:70px;
}

.legal-label{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(79,124,255,.12);
    border:1px solid rgba(79,124,255,.18);

    color:#4f7cff;

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.legal-title{
    margin-top:25px;
    margin-bottom:20px;

    font-size:56px;
}

.legal-subtitle{
    max-width:700px;
    margin:0 auto 25px;

    font-size:20px;
    color:var(--muted);

    line-height:1.7;
}

.legal-meta{
    display:flex;
    justify-content:center;
    gap:30px;

    color:rgba(255,255,255,.45);
}

.legal-section{
    margin-bottom:55px;
}

.legal-section h2{
    margin-bottom:25px;

    font-size:30px;

    padding-bottom:15px;

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

.legal-section p{
    line-height:1.9;
    color:rgba(255,255,255,.82);

    margin-bottom:18px;
}

.legal-section ul{
    padding-left:20px;
}

.legal-section li{
    margin-bottom:12px;
    line-height:1.8;
    color:rgba(255,255,255,.82);
}

.legal-bank{
    margin-top:30px;

    background:rgba(13,18,36,.35);
    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-radius:24px;
    padding:35px;
}

.legal-bank h3{
    margin-bottom:25px;
}

.legal-bank p{
    margin-bottom:10px;
}

.legal-nda{
    background:
        linear-gradient(
            135deg,
            rgba(79,124,255,.08),
            rgba(207,92,255,.08)
        );

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

    border-radius:28px;

    padding:40px;
}

.legal-footer{
    margin-top:70px;

    text-align:center;

    padding:35px;

    border-radius:24px;

    background:rgba(79,124,255,.08);
    border:1px solid rgba(79,124,255,.15);

    font-weight:600;
    line-height:1.8;

    color:rgba(255,255,255,.9);
}

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

@media(max-width:768px){

    .legal-page{
        padding:90px 20px 60px;
    }

    .legal-title{
        font-size:38px;
    }

    .legal-subtitle{
        font-size:17px;
    }

    .legal-meta{
        flex-direction:column;
        gap:8px;
    }

    .legal-section h2{
        font-size:22px;
    }

    .legal-bank,
    .legal-nda,
    .legal-footer{
        padding:25px;
    }

}