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

html{
scroll-behavior:smooth;
}

body{

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

background:#090909;

color:#fff;

overflow-x:hidden;

}

a{

text-decoration:none;

color:white;

}

.container{

width:90%;

max-width:1300px;

margin:auto;

}

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

header{

position:fixed;

width:100%;

top:0;

left:0;

z-index:1000;

background:rgba(10,10,10,.55);

backdrop-filter:blur(12px);

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

}

header .container{

display:flex;

justify-content:space-between;

align-items:center;

height:80px;

}

.logo{

font-size:30px;

font-weight:800;

letter-spacing:2px;

color:#ff2b2b;

}

nav{

display:flex;

gap:40px;

}

nav a{

transition:.3s;

font-weight:500;

}

nav a:hover{

color:#ff2b2b;

}

.phone{

padding:14px 26px;

background:#ff2b2b;

border-radius:40px;

font-weight:700;

transition:.3s;

}

.phone:hover{

transform:translateY(-3px);

box-shadow:0 0 20px #ff2b2b;

}

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

.hero{

height:100vh;

position:relative;

display:flex;

justify-content:center;

align-items:center;

background:url("../img/hero.jpg") center center/cover;

}

.overlay{

position:absolute;

width:100%;

height:100%;

background:linear-gradient(90deg,#050505 20%,rgba(0,0,0,.65));

}

.hero-content{

position:relative;

z-index:2;

width:90%;

max-width:1300px;

}

.subtitle{

display:inline-block;

padding:10px 18px;

background:#202020;

border-radius:40px;

margin-bottom:25px;

font-size:14px;

}

.hero h1{

font-size:72px;

font-weight:800;

max-width:900px;

line-height:1.1;

margin-bottom:30px;

}

.hero p{

font-size:22px;

max-width:700px;

line-height:1.8;

color:#cfcfcf;

margin-bottom:50px;

}

.buttons{

display:flex;

gap:25px;

}

.btn-red{

padding:20px 45px;

background:#ff2b2b;

border-radius:60px;

font-weight:700;

font-size:18px;

transition:.3s;

}

.btn-red:hover{

transform:translateY(-5px);

box-shadow:0 0 35px #ff2b2b;

}

.btn-dark{

padding:20px 45px;

border:2px solid white;

border-radius:60px;

font-size:18px;

transition:.3s;

}

.btn-dark:hover{

background:white;

color:black;

}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1000px) {

    nav {
        display: none;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero p {
        font-size: 18px;
    }

    /* Статистика — 2 в ряд */

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

    /* Преимущества — 2 в ряд */

    .features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

}


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

@media (max-width: 700px) {

    .phone {
        display: none;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6;
    }

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

    .btn-red,
    .btn-dark {
        text-align: center;
    }


    /* Секция преимуществ */

    .advantages {
        padding: 70px 0;
    }

    .section-title {
        font-size: 34px;
        line-height: 1.2;
    }

    .section-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 40px;
    }


    /* Статистика — 2 карточки в ряд */

    .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-bottom: 45px;
    }

    .stat-card {
        padding: 22px 12px;
        border-radius: 14px;
    }

    .number {
        font-size: 34px;
        margin-bottom: 8px;
    }

    .text {
        font-size: 13px;
        line-height: 1.4;
    }


    /* Преимущества — 2 карточки в ряд */

    .features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .feature {
        padding: 20px 14px;
        border-radius: 14px;
    }

    .icon {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .feature h3 {
        font-size: 17px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .feature p {
        font-size: 13px;
        line-height: 1.5;
    }

}


/* =========================
   SMALL PHONES
   ========================= */

@media (max-width: 400px) {

    .stats,
    .features {
        gap: 8px;
    }

    .stat-card {
        padding: 18px 10px;
    }

    .number {
        font-size: 30px;
    }

    .text {
        font-size: 12px;
    }

    .feature {
        padding: 17px 11px;
    }

    .feature h3 {
        font-size: 15px;
    }

    .feature p {
        font-size: 12px;
    }

}

/* ========================= */

.advantages{

padding:120px 0;

background:#111;

}

.section-title{

text-align:center;

font-size:48px;

font-weight:800;

margin-bottom:25px;

}

.section-description{

max-width:850px;

margin:auto;

text-align:center;

color:#bbbbbb;

font-size:19px;

line-height:1.8;

margin-bottom:70px;

}

.stats{

display:grid;

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

gap:25px;

margin-bottom:80px;

}

.stat-card{

background:#181818;

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

padding:40px;

border-radius:18px;

text-align:center;

transition:.35s;

}

.stat-card:hover{

transform:translateY(-10px);

box-shadow:0 0 35px rgba(255,43,43,.35);

}

.number{

font-size:54px;

font-weight:800;

color:#ff2b2b;

margin-bottom:15px;

}

.text{

font-size:18px;

color:#ccc;

}

.features{

display:grid;

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

gap:30px;

}

.feature{

background:#181818;

padding:40px;

border-radius:18px;

transition:.35s;

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

}

.feature:hover{

transform:translateY(-10px);

border-color:#ff2b2b;

}

.icon{

font-size:46px;

color:#ff2b2b;

margin-bottom:25px;

}

.feature h3{

font-size:26px;

margin-bottom:18px;

}

.feature p{

color:#bdbdbd;

line-height:1.8;

font-size:17px;

}

.reveal{

opacity:0;

transform:translateY(60px);

transition:1s;

}

.reveal.active{

opacity:1;

transform:none;

}

@media(max-width:1100px){

.stats{

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

}

.features{

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

}

}

@media(max-width:700px){

    .stats{

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

        gap:10px;

        margin-bottom:45px;

    }

    .stat-card{

        padding:18px 10px;

        border-radius:12px;

    }

    .number{

        font-size:30px;

        margin-bottom:6px;

    }

    .text{

        font-size:12px;

        line-height:1.35;

    }


    .features{

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

        gap:10px;

    }

    .feature{

        padding:16px 12px;

        border-radius:12px;

    }

    .icon{

        font-size:28px;

        margin-bottom:10px;

    }

    .feature h3{

        font-size:14px;

        line-height:1.25;

        margin-bottom:7px;

    }

    .feature p{

        font-size:11px;

        line-height:1.4;

    }


    .section-title{

        font-size:34px;

        line-height:1.2;

    }

}

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

.services{

padding:130px 0;

background:#0b0b0b;

}

.services-grid{

display:grid;

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

gap:35px;

margin-top:70px;

}

.service-card{

overflow:hidden;

border-radius:20px;

background:#151515;

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

transition:.45s;

cursor:pointer;

}

.service-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(255,40,40,.35);

}

.service-card img{

width:100%;

height:250px;

object-fit:cover;

transition:.5s;

}

.service-card:hover img{

transform:scale(1.08);

}

.service-content{

padding:35px;

}

.service-icon{

width:46px;

height:46px;

color:#ff2b2b;

margin-bottom:25px;

}

.service-content h3{

font-size:28px;

margin-bottom:18px;

}

.service-content p{

color:#bdbdbd;

line-height:1.8;

font-size:17px;

}

@media (max-width: 700px) {

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 40px;
    }

    .service-card {
        border-radius: 12px;
    }

    .service-card img {
        height: 120px;
    }

    .service-content {
        padding: 14px;
    }

    .service-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 8px;
    }

    .service-content h3 {
        font-size: 14px;
        line-height: 1.25;
        margin-bottom: 7px;
    }

    .service-content p {
        font-size: 11px;
        line-height: 1.4;
    }

}
/*================ EQUIPMENT =================*/

.equipment{

padding:140px 0;

background:#101010;

}

.equipment-header{

text-align:center;

margin-bottom:70px;

}

.equipment-header span{

display:inline-block;

padding:10px 22px;

background:#1c1c1c;

border-radius:40px;

color:#ff2b2b;

margin-bottom:20px;

font-weight:600;

}

.equipment-header h2{

font-size:48px;

margin-bottom:25px;

}

.equipment-header p{

max-width:850px;

margin:auto;

line-height:1.8;

color:#bdbdbd;

font-size:18px;

}

.equipment-grid{

display:grid;

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

grid-auto-rows:270px;

gap:25px;

}

.large{

grid-row:span 2;

}

.equipment-card{

position:relative;

overflow:hidden;

border-radius:20px;

cursor:pointer;

}

.equipment-card img{

width:100%;

height:100%;

object-fit:cover;

transition:.7s;

}

.equipment-card:hover img{

transform:scale(1.12);

}

.equipment-card::after{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:linear-gradient(to top,#000,transparent);

}

.equipment-info{

position:absolute;

left:30px;

bottom:25px;

z-index:5;

}

.equipment-info h3{

font-size:28px;

margin-bottom:10px;

}

.equipment-info p{

max-width:420px;

line-height:1.6;

color:#ddd;

}

@media(max-width:1000px){

    .equipment-grid{

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

        grid-auto-rows:220px;

        gap:10px;

    }

    .large{

        grid-row:span 2;

    }

}

/*=========== LIGHTBOX ===========*/

.lightbox{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.95);

display:flex;

justify-content:center;

align-items:center;

opacity:0;

visibility:hidden;

transition:.35s;

z-index:9999;

}

.lightbox.active{

opacity:1;

visibility:visible;

}

.lightbox img{

max-width:90%;

max-height:90%;

border-radius:12px;

}

.close-lightbox{

position:absolute;

right:40px;

top:25px;

font-size:55px;

cursor:pointer;

color:white;

}


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

.contacts{

padding:140px 0;

background:#0d0d0d;

}

.contacts-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.contact-tag{

display:inline-block;

padding:10px 20px;

background:#1d1d1d;

border-radius:30px;

color:#ff2b2b;

margin-bottom:20px;

font-weight:600;

}

.contact-info h2{

font-size:46px;

margin-bottom:25px;

}

.contact-info>p{

color:#bdbdbd;

line-height:1.8;

margin-bottom:40px;

font-size:18px;

}

.contact-item{

margin-bottom:30px;

}

.contact-item h3{

margin-bottom:10px;

font-size:22px;

}

.contact-item a{

font-size:20px;

font-weight:600;

color:white;

transition:.3s;

}

.contact-item a:hover{

color:#ff2b2b;

}

.contact-item p{

color:#bdbdbd;

line-height:1.7;

}

.map{

overflow:hidden;

border-radius:22px;

height:600px;

border:2px solid #222;

}

.map iframe{

width:100%;

height:100%;

}

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

footer{

background:#050505;

padding:40px 0;

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

}

.footer-content{

display:flex;

justify-content:space-between;

align-items:center;

gap:30px;

}

.footer-content h3{

font-size:28px;

margin-bottom:10px;

color:#ff2b2b;

}

.footer-content p{

color:#999;

}

@media (max-width: 900px) {

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

    .map {
        height: 400px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

}


/* Компактный текст контактов на телефоне */

@media (max-width: 700px) {

    .contacts {
        padding: 70px 0;
    }

    .contacts h2 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .contacts p {
        font-size: 13px;
        line-height: 1.5;
    }

    .contacts-grid {
        gap: 15px;
    }

    .map {
        height: 300px;
    }

}


/* Очень маленькие телефоны */

@media (max-width: 400px) {

    .contacts h2 {
        font-size: 27px;
    }

    .contacts p {
        font-size: 12px;
    }

    .map {
        height: 280px;
    }

}
/*================ MOBILE MENU =================*/

.burger{

display:none;

width:38px;

cursor:pointer;

}

.burger span{

display:block;

height:4px;

background:white;

margin:7px 0;

border-radius:4px;

transition:.35s;

}

.mobile-menu{

position:fixed;

top:80px;

left:-100%;

width:100%;

background:#111;

display:flex;

flex-direction:column;

padding:40px;

gap:25px;

transition:.35s;

z-index:999;

}

.mobile-menu.active{

left:0;

}

.mobile-menu a{

font-size:22px;

font-weight:600;

}

.mobile-phone{

padding:18px;

background:#ff2b2b;

border-radius:40px;

text-align:center;

margin-top:20px;

}

@media(max-width:1000px){

nav{

display:none;

}

.burger{

display:block;

}

}

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

.reviews {

    padding: 140px 0;

    background: #101010;

    overflow: hidden;

}


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

.reviews-header {

    text-align: center;

    max-width: 850px;

    margin: 0 auto 70px;

}

.reviews-tag {

    display: inline-block;

    padding: 10px 22px;

    margin-bottom: 20px;

    border-radius: 40px;

    background: #1c1c1c;

    color: #ff2b2b;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.reviews-header h2 {

    margin-bottom: 22px;

    font-size: 48px;

    line-height: 1.15;

}

.reviews-header p {

    color: #999;

    font-size: 18px;

    line-height: 1.7;

}


/* Слайдер */

.reviews-slider {

    display: flex;

    align-items: center;

    gap: 25px;

    position: relative;

}


.reviews-window {

    width: 100%;

    overflow: hidden;

}


.reviews-track {

    display: flex;

    transition: transform .55s cubic-bezier(.4, 0, .2, 1);

}


.review-card {

    flex: 0 0 calc(33.333333% - 17px);

    margin-right: 25px;

    min-height: 330px;

    padding: 35px;

    background: #181818;

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

    border-radius: 20px;

    display: flex;

    flex-direction: column;

    transition: .35s;

}


.review-card:hover {

    transform: translateY(-7px);

    border-color: rgba(255,43,43,.35);

    box-shadow: 0 20px 50px rgba(0,0,0,.35);

}


/* Верхняя часть */

.review-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

}


.review-stars {

    color: #ffb000;

    font-size: 21px;

    letter-spacing: 2px;

    white-space: nowrap;

}


.review-date {

    color: #777;

    font-size: 14px;

    white-space: nowrap;

}


/* Текст */

.review-text {

    color: #ddd;

    font-size: 17px;

    line-height: 1.7;

    margin: 0;

    flex: 1;

}


/* Нижняя часть */

.review-footer {

    margin-top: 30px;

    padding-top: 20px;

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

    color: #777;

    font-size: 14px;

}


/* Стрелки */

.reviews-arrow {

    flex: 0 0 55px;

    width: 55px;

    height: 55px;

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

    border-radius: 50%;

    background: #181818;

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    cursor: pointer;

    transition: .3s;

}


.reviews-arrow svg {

    width: 24px;

    height: 24px;

}


.reviews-arrow:hover {

    background: #ff2b2b;

    border-color: #ff2b2b;

    transform: scale(1.08);

}


/* Точки */

.reviews-dots {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 9px;

    margin-top: 40px;

}


.review-dot {

    width: 9px;

    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #444;

    cursor: pointer;

    transition: .3s;

}


.review-dot.active {

    width: 28px;

    border-radius: 10px;

    background: #ff2b2b;

}


/* Планшет */

@media (max-width: 1000px) {

    .review-card {

        flex: 0 0 calc(50% - 12.5px);

    }

}


/* Телефон */

@media (max-width: 700px) {

    .reviews {

        padding: 100px 0;

    }

    .reviews-header h2 {

        font-size: 32px;

    }

    .reviews-header p {

        font-size: 14px;

    }

    .reviews-slider {

        gap: 8px;

    }

    .reviews-arrow {

        flex: 0 0 44px;

        width: 44px;

        height: 44px;

    }

    .review-card {

        flex: 0 0 100%;

        margin-right: 0;

        min-height: 360px;

        padding: 27px;

    }

    .review-top {

        align-items: flex-start;

        flex-direction: column;

    }

    .review-text {

        font-size: 14px;

    }

}

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

.footer-company h3 {
    margin-bottom: 13px;
}

.footer-company p {
    color: #888;
    line-height: 1.6;
}

.footer-details {
    margin-top: 20px;
}

.footer-details p {
    margin: 7px 0;
}

.footer-details strong {
    color: #ccc;
}

.footer-details a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer-details a:hover {
    color: #ff3030;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.08);
}

/* =========================
   КОМПАКТНЫЙ ТЕКСТ НА МОБИЛЬНЫХ
   ========================= */

@media (max-width: 700px) {

    /* Профессиональное оснащение */

    .equipment-header h2 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .equipment-header p {
        font-size: 13px;
        line-height: 1.5;
    }

    .equipment-header {
        margin-bottom: 35px;
    }


    /* Что говорят клиенты */

    .reviews-header h2 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .reviews-header p {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* =========================
   ПРИМЕЧАНИЕ О ЦЕНАХ
   ========================= */

.services-price-note {

    margin-top: 30px;

    padding: 22px 25px;

    background: #181818;

    border-left: 3px solid #ff2b2b;

    border-radius: 10px;

    color: #999;

    font-size: 14px;

    line-height: 1.6;

}

.services-price-note strong {

    color: #fff;

}


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

@media (max-width: 700px) {

    .services-price-note {

        margin-top: 18px;

        padding: 15px 16px;

        font-size: 12px;

        line-height: 1.5;

    }

}

@media(max-width:1000px){

    .equipment-grid{

        grid-template-columns:1fr;

        grid-auto-rows:320px;

    }

    .large{

        grid-row:auto;

    }

}