/* HERO */
.page-hero{background:linear-gradient(135deg,var(--dark) 0%,var(--dark-secondary) 50%,#0d1b2a 100%);padding:50px 0 60px;position:relative;overflow:hidden}
.page-hero::before{content:'';position:absolute;top:-200px;right:-100px;width:600px;height:600px;border-radius:50%;background:rgba(76,175,80,.06)}
.hero-bc{margin-bottom:20px;position:relative;z-index:2}
.breadcrumb-list{display:flex;align-items:center;gap:8px;font-size:12px;color:rgba(255,255,255,.5);flex-wrap:wrap}.breadcrumb-list a{color:rgba(255,255,255,.5);transition:color var(--tr)}.breadcrumb-list a:hover{color:var(--green-light)}.breadcrumb-list .sep{font-size:9px}.breadcrumb-list .current{color:rgba(255,255,255,.8);font-weight:600}
.hero-inner{display:flex;align-items:center;justify-content:space-between;gap:40px;position:relative;z-index:2}
.hero-text{max-width:600px}.hero-text h1{font-size:38px;font-weight:800;color:var(--white);line-height:1.2;margin-bottom:14px}.hero-text h1 em{font-style:normal;color:var(--green)}.hero-text p{font-size:15px;color:rgba(255,255,255,.6);line-height:1.7}
.hero-features{display:flex;gap:20px;margin-top:24px}.hero-feature{display:flex;align-items:center;gap:10px;padding:12px 20px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius-sm);font-size:13px;font-weight:600;color:var(--white)}.hero-feature i{color:var(--green);font-size:18px}

/* SECTIONS */
.section{padding:80px 0}
.section-header{text-align:center;margin-bottom:50px}
.section-label{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:700;color:var(--green);text-transform:uppercase;letter-spacing:2px;margin-bottom:12px}.section-label i{font-size:10px}
.section-title{font-size:32px;font-weight:800;color:var(--dark);margin-bottom:14px}
.section-subtitle{font-size:15px;color:var(--text-light);max-width:560px;margin:0 auto}

/* SERVICE CARDS */
.services-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:30px}
.srv-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:all var(--tr);display:grid;grid-template-columns:1fr 1fr}
.srv-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:transparent}
.srv-card-img{min-height:280px;background-size:cover;background-position:center;position:relative}
.srv-card-img::after{content:'';position:absolute;inset:0;background:linear-gradient(to right,transparent 50%,rgba(255,255,255,.05) 100%)}
.srv-card-body{padding:32px;display:flex;flex-direction:column;justify-content:center}
.srv-card-icon{width:50px;height:50px;border-radius:var(--radius-sm);background:var(--green-pale);color:var(--green);display:flex;align-items:center;justify-content:center;font-size:22px;margin-bottom:16px;transition:all var(--tr)}
.srv-card:hover .srv-card-icon{background:var(--green);color:var(--white)}
.srv-card-body h3{font-size:20px;font-weight:800;margin-bottom:10px}
.srv-card-body p{font-size:13px;color:var(--text-light);line-height:1.7;margin-bottom:18px}
.srv-card-body .srv-price{font-size:14px;color:var(--green);font-weight:700;margin-bottom:16px;display:flex;align-items:center;gap:6px}
.srv-card-link{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:700;color:var(--green);transition:gap var(--tr)}.srv-card-link:hover{gap:12px}

/* FULL-WIDTH SERVICE CARDS for 3rd row */
.srv-card-full{grid-column:1/-1;grid-template-columns:1fr 1fr}

/* PROCESS STEPS */
.process{background:var(--dark);position:relative;overflow:hidden}
.process::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234CAF50' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
.process .section-title{color:var(--white)}.process .section-subtitle{color:rgba(255,255,255,.6)}
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;position:relative;z-index:1}
.step{text-align:center;position:relative}
.step-num{width:56px;height:56px;border-radius:50%;background:var(--green);color:var(--white);font-size:22px;font-weight:900;display:flex;align-items:center;justify-content:center;margin:0 auto 16px;position:relative;z-index:2}
.step-connector{position:absolute;top:28px;left:calc(50% + 28px);right:calc(-50% + 28px);height:2px;background:rgba(76,175,80,.3);z-index:1}
.step:last-child .step-connector{display:none}
.step h4{font-size:15px;font-weight:700;color:var(--white);margin-bottom:8px}
.step p{font-size:13px;color:rgba(255,255,255,.5);line-height:1.6}

/* ADVANTAGES */
.advantages{background:var(--bg)}
.adv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.adv-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:30px 24px;text-align:center;transition:all var(--tr)}
.adv-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.adv-card-icon{width:56px;height:56px;border-radius:50%;background:var(--green-pale);color:var(--green);display:flex;align-items:center;justify-content:center;font-size:22px;margin:0 auto 14px;transition:all var(--tr)}
.adv-card:hover .adv-card-icon{background:var(--green);color:var(--white)}
.adv-card h4{font-size:15px;font-weight:700;margin-bottom:8px}
.adv-card p{font-size:13px;color:var(--text-light);line-height:1.6}

/* CTA */
.cta-section{background:linear-gradient(135deg,var(--green) 0%,var(--green-dark) 100%);padding:70px 0;position:relative;overflow:hidden}.cta-section::before{content:'';position:absolute;top:-50%;right:-10%;width:500px;height:500px;border-radius:50%;background:rgba(255,255,255,.08)}.cta-content{text-align:center;position:relative;z-index:1}.cta-content h2{font-size:34px;font-weight:800;color:var(--white);margin-bottom:14px}.cta-content p{font-size:16px;color:rgba(255,255,255,.85);margin-bottom:30px;max-width:520px;margin-left:auto;margin-right:auto}.cta-buttons{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.btn-white{background:var(--white);color:var(--green-dark);padding:16px 32px;border-radius:var(--radius-sm);font-family:'Montserrat',sans-serif;font-weight:700;font-size:15px;border:none;cursor:pointer;display:inline-flex;align-items:center;gap:8px;transition:all var(--tr)}.btn-white:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.2)}
.btn-ghost{background:transparent;color:var(--white);padding:16px 32px;border-radius:var(--radius-sm);font-family:'Montserrat',sans-serif;font-weight:700;font-size:15px;border:2px solid rgba(255,255,255,.4);cursor:pointer;display:inline-flex;align-items:center;gap:8px;transition:all var(--tr)}.btn-ghost:hover{border-color:var(--white);background:rgba(255,255,255,.1)}

/* ===================== RESPONSIVE ===================== */
@media(max-width:1024px){
    .hero-inner{flex-direction:column;gap:24px}
    /* Services grid: 1 колонка с картинкой */
    .services-grid{grid-template-columns:1fr;gap:20px}
    .srv-card{grid-template-columns:1fr;display:flex;flex-direction:column}
    .srv-card-full{grid-column:auto}
    .srv-card-img{min-height:200px}
    /* Steps */
    .steps-grid{grid-template-columns:repeat(2,1fr);gap:20px}
    .step-connector{display:none}
    /* Adv */
    .adv-grid{grid-template-columns:repeat(2,1fr);gap:16px}
}

@media(max-width:768px){
    html,body{overflow-x:hidden}
    .page-hero{padding:28px 0 36px}
    .hero-text h1{font-size:24px}
    .hero-text p{font-size:14px}
    .hero-features{flex-direction:column;gap:8px;margin-top:16px}
    .hero-feature{padding:10px 16px;font-size:13px}
    /* Services */
    .services-grid{grid-template-columns:1fr}
    .srv-card{grid-template-columns:1fr;display:block}
    .srv-card-img{min-height:180px}
    .srv-card-body{padding:24px 20px}
    .srv-card-body h3{font-size:17px}
    /* Process */
    .steps-grid{grid-template-columns:1fr 1fr;gap:16px}
    /* Adv */
    .adv-grid{grid-template-columns:1fr 1fr;gap:12px}
    /* CTA */
    .cta-content h2{font-size:22px}
    .cta-buttons{flex-direction:column;gap:10px;align-items:center}
    .btn-white,.btn-ghost{width:100%;max-width:320px;justify-content:center;box-sizing:border-box}
    .section{padding:44px 0}
    .section-title{font-size:24px}
}

@media(max-width:576px){
    .hero-text h1{font-size:20px}
    .steps-grid{grid-template-columns:1fr}
    .adv-grid{grid-template-columns:1fr}
    .section-title{font-size:20px}
}