/* =======================================
   BuhSluzhba.kz
   style.css
======================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@500;700;800&display=swap');

:root{

--blue:#12355B;
--green:#00A878;
--gold:#D4AF37;

--dark:#1E293B;
--gray:#64748B;

--light:#F8FAFC;
--white:#ffffff;

--shadow:0 20px 60px rgba(18,53,91,.08);

--radius:24px;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Inter',sans-serif;

color:var(--dark);

overflow-x:hidden;

background:
linear-gradient(rgba(245,250,255,.90),rgba(245,250,255,.92)),
url("bg-accounting.jpg");

background-size:cover;
background-position:center;
background-repeat:no-repeat;
background-attachment:fixed;

}

.container{

width:92%;
max-width:1300px;

margin:auto;

}

section{

padding:120px 0;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

color:inherit;

}

ul{

list-style:none;

}

h1,h2,h3,h4{

font-family:'Manrope',sans-serif;

font-weight:800;

line-height:1.2;

}

p{

line-height:1.8;

color:var(--gray);

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title span{

display:inline-block;

padding:10px 20px;

border-radius:40px;

background:#EAF8F4;

color:var(--green);

font-weight:700;

margin-bottom:18px;

}

.section-title h2{

font-size:48px;

margin-bottom:20px;

color:var(--blue);

}

.section-mini{

display:inline-block;

padding:10px 20px;

border-radius:40px;

background:#EAF8F4;

color:var(--green);

font-weight:700;

margin-bottom:25px;

}

/* =======================
BUTTONS
======================= */

.btn-green{

display:inline-flex;

justify-content:center;

align-items:center;

padding:18px 34px;

border-radius:60px;

background:var(--green);

color:white;

font-weight:700;

transition:.35s;

}

.btn-green:hover{

background:var(--blue);

transform:translateY(-4px);

}

.btn-light{

display:inline-flex;

justify-content:center;

align-items:center;

padding:18px 34px;

border-radius:60px;

background:white;

border:2px solid #E2E8F0;

font-weight:700;

transition:.35s;

}

.btn-light:hover{

background:var(--blue);

color:white;

}

.full{

width:100%;

}

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

header{

position:fixed;

top:0;

left:0;

width:100%;

height:90px;

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

backdrop-filter:blur(20px);

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

z-index:999;

}

.header{

height:90px;

display:flex;

justify-content:space-between;

align-items:center;

}
.logo{

display:flex;

align-items:center;

gap:16px;

text-decoration:none;

}
.logo img{

width:70px;

height:70px;

object-fit:contain;

transition:.35s;

filter:drop-shadow(0 8px 20px rgba(18,53,91,.18));

}

.logo:hover img{

transform:scale(1.08);

}


.logo h2{

font-size:34px;

font-weight:800;

background:linear-gradient(90deg,#12355B,#1E88E5);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}
.logo span{

font-size:14px;

font-weight:600;

letter-spacing:1px;

color:#64748B;

text-transform:uppercase;

}

nav{

display:flex;

gap:35px;

}

nav a{

font-weight:600;

position:relative;

transition:.3s;

}

nav a:hover{

color:var(--green);

}

nav a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:3px;

background:var(--green);

transition:.3s;

border-radius:20px;

}

nav a:hover::after{

width:100%;

}

.header-btn{

padding:15px 28px;

border-radius:50px;

background:var(--green);

color:white;

font-weight:700;

transition:.35s;

}

.header-btn:hover{

background:var(--blue);

}

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

.hero{

padding-top:180px;

background:transparent;

overflow:hidden;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 520px;

gap:80px;

align-items:center;

}

.hero-badge{

display:inline-block;

padding:12px 22px;

border-radius:40px;

background:#EAF8F4;

color:var(--green);

font-weight:700;

margin-bottom:30px;

}

.hero h1{

font-size:70px;

color:var(--blue);

margin-bottom:30px;

}

.hero h1 span{

color:var(--green);

}

.hero p{

font-size:20px;

max-width:620px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:40px;

}

.hero-phone{

padding:30px;

background:white;

border-radius:20px;

box-shadow:var(--shadow);

margin-bottom:40px;

}

.hero-phone div{

font-size:15px;

color:var(--gray);

}

.hero-phone h3{

margin-top:8px;

font-size:34px;

color:var(--blue);

}

.hero-stats{

display:grid;

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

gap:25px;

}

.hero-stats div{

background:white;

padding:25px;

border-radius:20px;

box-shadow:var(--shadow);

text-align:center;

}

.hero-stats h2{

font-size:38px;

color:var(--green);

margin-bottom:8px;

}

.hero-stats span{

font-size:15px;

color:var(--gray);

}

.glass-card{

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

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

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

padding:45px;

border-radius:32px;

box-shadow:0 40px 90px rgba(18,53,91,.1);

}

.card-header{

display:flex;

gap:10px;

margin-bottom:30px;

}

.circle{

width:14px;

height:14px;

border-radius:50%;

}

.green{

background:#00A878;

}

.blue{

background:#12355B;

}

.gold{

background:#D4AF37;

}

.glass-card h3{

font-size:34px;

margin-bottom:30px;

color:var(--blue);

}

.glass-card p{

margin-bottom:18px;

font-size:18px;

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

.about{

background:transparent;

}

.about-grid{

display:grid;

grid-template-columns:1.2fr .8fr;

gap:80px;

align-items:center;

}

.about-left h2{

font-size:48px;

color:#12355B;

margin-bottom:25px;

}

.about-left p{

margin-bottom:25px;

font-size:18px;

}

.about-features{

display:grid;

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

gap:18px;

margin:40px 0;

}

.feature-item{

background:#F8FAFC;

padding:18px;

border-radius:16px;

font-weight:600;

transition:.3s;

}

.feature-item:hover{

background:#12355B;

color:#fff;

transform:translateY(-5px);

}

.about-right{

display:flex;

flex-direction:column;

gap:25px;

}

.about-card{

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

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

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

padding:35px;

border-radius:24px;

box-shadow:0 20px 60px rgba(18,53,91,.08);

transition:.35s;

}

.about-card:hover{

transform:translateY(-8px);

}

.about-number{

font-size:56px;

font-weight:800;

color:#00A878;

margin-bottom:10px;

}

.about-card h3{

margin-bottom:10px;

color:#12355B;

}

.about-card p{

margin:0;

}

@media(max-width:1000px){

.about-grid{

grid-template-columns:1fr;

}

.about-features{

grid-template-columns:1fr;

}

}/* =======================================
WHY US
======================================= */

.why{

background:#F8FAFC;

}

.why-grid{

display:grid;

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

gap:30px;

margin-top:60px;

}

.why-card{

background:#fff;

padding:40px 30px;

border-radius:24px;

box-shadow:0 20px 50px rgba(18,53,91,.08);

transition:.35s;

text-align:center;

border:1px solid transparent;

}

.why-card:hover{

transform:translateY(-12px);

border-color:#00A878;

box-shadow:0 30px 70px rgba(18,53,91,.12);

}

.why-icon{

width:80px;

height:80px;

background:#EAF8F4;

border-radius:22px;

display:flex;

justify-content:center;

align-items:center;

margin:auto;

margin-bottom:25px;

transition:.35s;

}

.why-card:hover .why-icon{

background:#12355B;

}

.why-card:hover svg path,
.why-card:hover svg circle{

stroke:#ffffff;

}

.why-card h3{

font-size:24px;

margin-bottom:18px;

color:#12355B;

}

.why-card p{

font-size:16px;

line-height:1.8;

}

/* =======================================
SERVICES
======================================= */

.services{

background:transparent;

}

.service-grid{

display:grid;

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

gap:35px;

margin-top:70px;

}

.service-card{

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

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

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

padding:40px;

border-radius:28px;

box-shadow:0 20px 60px rgba(18,53,91,.08);

transition:.35s;

position:relative;

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:6px;

height:100%;

background:#00A878;

transition:.35s;

}

.service-card:hover{

transform:translateY(-12px);

}

.service-card:hover::before{

width:100%;

opacity:.05;

}

.service-card h3{

font-size:28px;

margin-bottom:18px;

color:#12355B;

position:relative;

z-index:2;

}

.service-card p{

position:relative;

z-index:2;

font-size:17px;

line-height:1.8;

}

/* =======================================
PRICING
======================================= */

.pricing{

background:transparent;

}

.pricing-grid{

display:grid;

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

gap:35px;

margin-top:70px;

}

.price-card{

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

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

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

padding:45px;

border-radius:28px;

box-shadow:0 20px 60px rgba(18,53,91,.08);

position:relative;

transition:.35s;

}

.price-card:hover{

transform:translateY(-10px);

}

.price-card.active{

background:#12355B;

color:white;

transform:scale(1.05);

}

.price-card.active h3,
.price-card.active li,
.price-card.active .price-big{

color:white;

}

.popular{

position:absolute;

top:-15px;

left:50%;

transform:translateX(-50%);

background:#D4AF37;

padding:10px 24px;

border-radius:50px;

font-weight:700;

font-size:14px;

color:#12355B;

}

.price-card h3{

font-size:28px;

margin-bottom:25px;

color:#12355B;

}

.price-big{

font-size:56px;

font-weight:800;

color:#00A878;

margin-bottom:30px;

}

.price-card ul{

display:flex;

flex-direction:column;

gap:18px;

}

.price-card li{

color:#64748B;

line-height:1.7;

}

/* =======================================
CALCULATOR
======================================= */

.calculator{

background:transparent;

}

.calc{

display:grid;

grid-template-columns:1fr 420px;

gap:50px;

margin-top:60px;

padding:50px;

background:#F8FAFC;

border-radius:30px;

box-shadow:0 20px 60px rgba(18,53,91,.08);

}

.calc label{

display:block;

font-weight:700;

margin-bottom:12px;

margin-top:25px;

color:#12355B;

}

.calc select{

width:100%;

padding:16px;

border:1px solid #DCE3EA;

border-radius:14px;

font-size:16px;

background:white;

}

.calc input[type="range"]{

width:100%;

margin:20px 0;

accent-color:#00A878;

}

.calc-right{

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

background:white;

border-radius:24px;

padding:40px;

box-shadow:0 10px 40px rgba(18,53,91,.08);

}

.result{

font-size:58px;

font-weight:800;

color:#00A878;

margin:30px 0;

text-align:center;

}

/* =======================================
RESPONSIVE
======================================= */

@media(max-width:1100px){

.why-grid{

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

}

.service-grid{

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

}

.pricing-grid{

grid-template-columns:1fr;

}

.calc{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.why-grid,
.service-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:34px;

}

.price-big{

font-size:42px;

}

.result{

font-size:44px;

}

}
/* =======================================
REVIEWS
======================================= */

.reviews{

background:transparent;

}

.review-grid{

display:grid;

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

gap:35px;

margin-top:70px;

}

.review{

background:#fff;

padding:40px;

border-radius:28px;

box-shadow:0 20px 60px rgba(18,53,91,.08);

transition:.35s;

position:relative;

}

.review:hover{

transform:translateY(-10px);

}

.review::before{

content:"★★★★★";

display:block;

color:#D4AF37;

font-size:24px;

margin-bottom:20px;

letter-spacing:3px;

}

.review p{

font-size:17px;

line-height:1.9;

margin-bottom:25px;

}

.review h4{

font-size:22px;

color:#12355B;

margin-bottom:5px;

}

.review span{

font-size:15px;

color:#64748B;

}

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

.faq{

background:transparent;

}

.faq-list{

max-width:950px;

margin:auto;

margin-top:60px;

}

.faq-item{

background:white;

border-radius:22px;

margin-bottom:18px;

box-shadow:0 15px 40px rgba(18,53,91,.08);

overflow:hidden;

}

.faq-question{

display:flex;

justify-content:space-between;

align-items:center;

padding:28px 35px;

cursor:pointer;

font-size:20px;

font-weight:700;

color:#12355B;

transition:.3s;

}

.faq-question:hover{

background:#12355B;

color:white;

}

.faq-question span{

font-size:28px;

font-weight:300;

}

.faq-answer{

display:none;

padding:0 35px 30px;

line-height:1.8;

font-size:17px;

color:#64748B;

}

/* =======================================
CONTACT
======================================= */

.contact{

background:transparent;

}

.contact-grid{

display:grid;

grid-template-columns:420px 1fr;

gap:50px;

margin-top:60px;

}

.contact-info{

background:#12355B;

padding:45px;

border-radius:30px;

color:white;

}

.contact-info h3{

color:white;

font-size:34px;

margin-bottom:30px;

}

.contact-info p{

color:#DCE6F2;

margin-bottom:18px;

font-size:17px;

}

.contact-form{

background:#F8FAFC;

padding:45px;

border-radius:30px;

box-shadow:0 20px 60px rgba(18,53,91,.08);

}

.contact-form form{

display:flex;

flex-direction:column;

gap:20px;

}

.contact-form input,
.contact-form textarea{

padding:18px 22px;

border:1px solid #DCE3EA;

border-radius:16px;

font-size:16px;

font-family:inherit;

outline:none;

transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

border-color:#00A878;

}

.contact-form textarea{

height:180px;

resize:none;

}

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

footer{

background:#12355B;

padding:90px 0 35px;

margin-top:120px;

}

.footer-grid{

display:grid;

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

gap:70px;

}

.footer-logo{

display:flex;

gap:20px;

align-items:center;

margin-bottom:30px;

}

.footer-logo h3{

color:white;

font-size:30px;

}

.footer-logo p{

color:#D9E3EC;

}

footer h4{

color:white;

margin-bottom:25px;

font-size:22px;

}

footer ul{

display:flex;

flex-direction:column;

gap:14px;

}

footer ul li a{

color:#DCE6F2;

transition:.3s;

}

footer ul li a:hover{

color:#00A878;

padding-left:8px;

}

footer p{

color:#DCE6F2;

margin-bottom:12px;

}

.copyright{

margin-top:70px;

padding-top:30px;

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

text-align:center;

color:#C7D4E3;

font-size:15px;

}

/* =======================================
WHATSAPP BUTTON
======================================= */

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:68px;

height:68px;

border-radius:50%;

background:#25D366;

display:flex;

justify-content:center;

align-items:center;

box-shadow:0 15px 40px rgba(37,211,102,.35);

transition:.35s;

z-index:999;

}

.whatsapp:hover{

transform:scale(1.1);

}

/* =======================================
SCROLL TOP
======================================= */

.top-btn{

position:fixed;

left:25px;

bottom:25px;

width:58px;

height:58px;

border-radius:50%;

background:#12355B;

color:white;

display:flex;

justify-content:center;

align-items:center;

cursor:pointer;

opacity:0;

pointer-events:none;

transition:.35s;

box-shadow:0 15px 40px rgba(18,53,91,.25);

}

.top-btn.show{

opacity:1;

pointer-events:auto;

}

/* =======================================
ANIMATIONS
======================================= */

.hidden{

opacity:0;

transform:translateY(60px);

transition:all .8s ease;

}

.show{

opacity:1;

transform:none;

}

.fade{

animation:fade .8s ease forwards;

}

@keyframes fade{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:none;

}

}

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

@media(max-width:991px){

.contact-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

gap:50px;

}

.review-grid{

grid-template-columns:1fr;

}

nav{

display:none;

}

.hero-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:48px;

}

.hero-buttons{

flex-direction:column;

}

.hero-stats{

grid-template-columns:1fr;

}

}

@media(max-width:600px){

section{

padding:80px 0;

}

.hero{

padding-top:140px;

}

.hero h1{

font-size:38px;

}

.section-title h2{

font-size:30px;

}

.contact-form,
.contact-info{

padding:30px;

}

.footer-logo{

flex-direction:column;

align-items:flex-start;

}

}
/* ===========================
   QUIZ
=========================== */

.quiz{
    max-width:900px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(18,53,91,.08);
}

.progress{
    width:100%;
    height:10px;
    background:#e8eef5;
    border-radius:50px;
    overflow:hidden;
    margin-bottom:50px;
}

.progress-bar{
    width:25%;
    height:100%;
    background:linear-gradient(90deg,#00A878,#12355B);
    transition:.4s;
}

.step{
    display:none;
    animation:fade .35s ease;
}

.step.active{
    display:block;
}

.step h3{
    font-size:34px;
    color:#12355B;
    text-align:center;
    margin-bottom:35px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.card-option{
    padding:35px;
    border:2px solid #e7edf5;
    border-radius:22px;
    cursor:pointer;
    transition:.3s;
    text-align:center;
}

.card-option:hover{
    transform:translateY(-6px);
    border-color:#00A878;
}

.card-option.active{
    background:#12355B;
    color:white;
    border-color:#12355B;
}

.card-option h4{
    font-size:30px;
    margin-bottom:15px;
}

.card-option p{
    color:inherit;
}

.step input[type=range]{
    width:100%;
    appearance:none;
    height:12px;
    border-radius:20px;
    outline:none;
    background:linear-gradient(90deg,#00A878,#12355B);
}

.step input[type=range]::-webkit-slider-thumb{
    appearance:none;
    width:28px;
    height:28px;
    border-radius:50%;
    background:white;
    border:5px solid #00A878;
    cursor:pointer;
}

.range-value{
    margin-top:20px;
    text-align:center;
    font-size:24px;
    font-weight:700;
    color:#12355B;
}

.price-preview{
    margin-top:45px;
    background:#F8FAFC;
    border-radius:20px;
    padding:35px;
    text-align:center;
}

.price-preview h2{
    font-size:52px;
    color:#00A878;
    margin-top:15px;
}

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

.services-grid label{
    display:flex;
    align-items:center;
    gap:12px;
    padding:18px;
    border:2px solid #E5ECF5;
    border-radius:16px;
    cursor:pointer;
    transition:.25s;
}

.services-grid label:hover{
    border-color:#00A878;
}

.services-grid input{
    width:20px;
    height:20px;
}

.quiz-buttons{
    display:flex;
    justify-content:space-between;
    margin-top:50px;
}

.quiz-buttons button{
    min-width:180px;
}

@media(max-width:768px){

.quiz{
    padding:30px;
}

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

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

.step h3{
    font-size:28px;
}

.price-preview h2{
    font-size:36px;
}

.quiz-buttons{
    flex-direction:column;
    gap:15px;
}

.quiz-buttons button{
    width:100%;
}

}
/* ===========================
   REVIEWS NEW
=========================== */

.review-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:30px;
    margin-top:60px;

}

.review{

    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 15px 40px rgba(18,53,91,.08);
    transition:.35s;
    border:1px solid #EEF2F7;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:340px;

}

.review:hover{

    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(18,53,91,.15);

}

.review::before{

    content:"★★★★★";
    color:#FFC107;
    font-size:22px;
    letter-spacing:4px;
    margin-bottom:20px;

}

.review p{

    color:#555;
    line-height:1.8;
    font-size:16px;
    flex:1;

}

.review h4{

    margin-top:25px;
    color:#12355B;
    font-size:24px;

}

.review span{

    color:#00A878;
    font-weight:700;
    margin-top:8px;
    display:block;

}

@media(max-width:768px){

    .review{

        min-height:auto;
        padding:25px;

    }

}
/* =======================================
   REVIEWS SLIDER
======================================= */

.reviews-slider{
    position:relative;
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:60px;
}

.slider-window{
    overflow:hidden;
    width:100%;
}

.slider-track{
    display:flex;
    transition:transform .6s ease;
}

.review-slide{

    min-width:100%;
    background:#fff;
    border-radius:28px;
    padding:45px;
    box-shadow:0 20px 60px rgba(18,53,91,.08);

}

.review-slide .stars{

    font-size:24px;
    color:#FFC107;
    letter-spacing:4px;
    margin-bottom:20px;

}

.review-slide h3{

    color:#12355B;
    margin-bottom:20px;
    font-size:30px;

}

.review-slide p{

    font-size:18px;
    line-height:1.9;
    color:#5A6778;
    margin-bottom:30px;

}

.review-slide span{

    display:inline-block;
    padding:10px 20px;
    border-radius:40px;
    background:#EAF8F4;
    color:#00A878;
    font-weight:700;

}

.slider-btn{

    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:#12355B;
    color:#fff;
    font-size:24px;
    cursor:pointer;
    transition:.3s;

}

.slider-btn:hover{

    background:#00A878;
    transform:scale(1.1);

}

.slider-dots{

    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:35px;

}

.dot{

    width:12px;
    height:12px;
    border-radius:50%;
    background:#D9E3EC;
    cursor:pointer;
    transition:.3s;

}

.dot.active{

    background:#00A878;
    transform:scale(1.3);

}

@media(max-width:768px){

.review-slide{

padding:30px;

}

.review-slide h3{

font-size:24px;

}

.review-slide p{

font-size:16px;

}

.slider-btn{

width:45px;
height:45px;

}

}

/* ===== Background Overlay ===== */

body::before{

content:"";

position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:
radial-gradient(circle at top left, rgba(0,168,120,.15), transparent 40%),
radial-gradient(circle at top right, rgba(18,53,91,.15), transparent 45%),
radial-gradient(circle at bottom right, rgba(0,168,120,.10), transparent 45%);

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

}
