:root{
    --primary:#ff6a00;
    --primary-hover:#e55d00;
    --dark:#0f172a;
    --dark-light:#1e293b;
    --light:#f8fafc;
    --white:#ffffff;
    --gray:#64748b;
    --border:#e2e8f0;
    --radius:16px;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --transition:.3s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#1e293b;
    line-height:1.6;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:min(1280px,92%);
    margin:auto;
}

.section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
    color:var(--dark);
}

.section-title p{
    color:var(--gray);
    font-size:18px;
}

/* HEADER */

.header{
    /* position:fixed; */
    top:0;
    width:100%;
    z-index:999;
    background:rgba(15,23,42,.92);
    backdrop-filter:blur(10px);
}

.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:80px;
}

.logo {
 display: flex;
 align-items: center;
 text-decoration: none;
}


.logo img {
 height: clamp(56px, 7vw, 110px);
 width: auto;
 display: block;
 transition:
    transform 0.2s ease;
}
.logo:hover img {
transform: scale(1.03);
}

.nav{
    display:flex;
    gap:30px;
}

.nav a{
    color:#fff;
    font-weight:500;
    transition:var(--transition);
}

.nav a:hover{
    color:var(--primary);
}

.mobile-menu-btn{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/* BUTTONS */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:12px;
    transition:var(--transition);
    font-weight:600;
    cursor:pointer;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
}

.btn-primary:hover{
    background:var(--primary-hover);
    transform:translateY(-2px);
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:var(--dark);
}

/* ================= HERO ================= */

.hero{

    height:100vh;

    position:relative;

    overflow:hidden;

}

.heroSwiper{

    position:absolute;

    inset:0;

}

.heroSwiper .swiper-slide img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,.78) 0%,
    rgba(0,0,0,.45) 35%,
    rgba(0,0,0,.10) 100%
    );

    z-index:2;

}

.hero-content{

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:100%;

    z-index:100;

    display:flex;

    align-items:center;

}



   .hero-left{

    max-width:700px;

    position:relative;

    z-index:101;
	

}

.hero h1{

    color:white;

    font-size:clamp(42px, 5vw, 68px);

    line-height:1.05;

    font-weight:800;

    margin:20px 0;

    max-width:800px;

}

.hero p{

    color:rgba(255,255,255,.85);

    font-size:20px;

    line-height:1.6;

    max-width:650px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:15px;

}

.hero-stats{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.stat{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border-radius:18px;

    padding:18px 25px;

}

.stat span{

    color:white;

    font-size:34px;

    font-weight:700;

}





.hero-pagination{

    position:absolute;

    right:40px;

    top:50%;

    transform:translateY(-50%);

    z-index:20;

}

.hero-pagination .swiper-pagination-bullet{

    display:block;

    background:none;

    color:white;

    opacity:.35;

    font-size:28px;

    width:auto;

    height:auto;

    margin:20px 0 !important;

}

.hero-pagination .swiper-pagination-bullet-active{

    color:#ff6a00;

    opacity:1;

}
.hero-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:30px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    color:white;

    font-size:14px;

    font-weight:600;

    backdrop-filter:blur(10px);
}
@media(max-width:1200px){

    .hero h1{

        font-size:48px;

    }

}
@media(max-width:768px){

    .hero h1{

        font-size:34px;

        line-height:1.15;

    }

    .hero p{

        font-size:16px;

    }

    .hero-stats{

        flex-wrap:wrap;

    }

}
/* BREADCRUMBS */

.breadcrumbs-section{
    background:#f8fafc;
    border-bottom:1px solid #e5e7eb;
}

.breadcrumbs{
    display:flex;
    align-items:center;
    gap:10px;
    padding:18px 0;
    font-size:14px;
    flex-wrap:wrap;
}

.breadcrumbs a{
    color:#64748b;
    text-decoration:none;
    transition:.2s;
}

.breadcrumbs a:hover{
    color:#ff6a00;
}

.breadcrumbs span{
    color:#94a3b8;
}

.breadcrumbs span:last-child{
    color:#0f172a;
    font-weight:600;
}
/* VIDEO SECTION */

.video-section{
    background:#f8fafc;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-header p{
    color:#64748b;
    font-size:18px;
}

.video-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.video-item{
    position:relative;
    width:100%;
    aspect-ratio:16/9;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 15px 50px rgba(0,0,0,.12);
}

.video-item iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:none;
}
/* TABLE OF CONTENTS */

.toc-section{
    background:#f8fafc;
}

.toc-card{

    background:#fff;

    border-radius:28px;

    padding:40px;

    box-shadow:
        0 15px 50px rgba(0,0,0,.08);

    border-top:4px solid #ff6a00;

}

.toc-header{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:30px;

}

.toc-icon{

    font-size:32px;

}

.toc-header h2{

    margin:0;

    font-size:32px;

}

.toc-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.toc-link{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 20px;

    background:#f8fafc;

    border-radius:16px;

    text-decoration:none;

    color:#0f172a;

    font-weight:500;

    transition:.25s;

}

.toc-link span{

    width:38px;

    height:38px;

    min-width:38px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#ff6a00;

    color:#fff;

    font-size:14px;

    font-weight:700;

}

.toc-link:hover{

    transform:translateY(-3px);

    background:#fff3eb;

    box-shadow:
        0 8px 25px rgba(255,106,0,.15);

}

.toc-link:hover span{

    transform:scale(1.08);

}
/* PRODUCTS */

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.product-card h3{
    padding:20px 20px 10px;
    color:var(--dark);
}

.product-card p{
    padding:0 20px 25px;
    color:var(--gray);
}

/* ABOUT */

.about{
    background:#f8fafc;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-logo img{
    border-radius:24px;
	height: clamp(56px, 7vw, 110px);
 width: auto;
 display: block;
 transition:
    transform 0.2s ease;
}
.about-image img{
    width:100%;
    height:auto;
    border-radius:24px;
}

.about-content h2{
    font-size:42px;
    margin-bottom:25px;
}

.seo-text{
    color:#475569;
    margin-bottom:30px;
}
/* COLORS */

.colors{
    background:#f8fafc;
}

.colors h2{
    text-align:center;
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    color:#64748b;
    margin-bottom:50px;
}

.colors-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.color-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.color-card:hover{
    transform:translateY(-6px);
}

.color-sample{
    height:140px;
    border-radius:14px;
    margin-bottom:20px;
    position:relative;
    overflow:hidden;
    box-shadow:
        inset 0 2px 4px rgba(255,255,255,.15),
        inset 0 -3px 8px rgba(0,0,0,.15);
}

/* Горизонтальные стыки секций */

.color-sample::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0px,
            transparent 32px,
            rgba(0,0,0,.18) 33px,
            rgba(255,255,255,.12) 34px,
            transparent 35px
        );
}

/* Цвета */

.white{
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f1f3f5 100%
        );
    border:1px solid #d8dde3;
}

.anthracite{
    background:
        linear-gradient(
            180deg,
            #4a5054 0%,
            #35393d 100%
        );
}

.brown{
    background:
        linear-gradient(
            180deg,
            #70472d 0%,
            #59331f 100%
        );
}

.golden-oak{
    background:
        repeating-linear-gradient(
            90deg,
            #b67b3f 0px,
            #c58b4b 8px,
            #ae7236 16px
        );
}

.golden-oak::after{
    content:"";
    position:absolute;
    inset:0;
    opacity:.25;
    background:
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 3px,
            rgba(255,255,255,.35) 4px
        );
}

.dark-oak{
    background:
        repeating-linear-gradient(
            90deg,
            #6b452a 0px,
            #7a5234 8px,
            #57361f 16px
        );
}

.dark-oak::after{
    content:"";
    position:absolute;
    inset:0;
    opacity:.25;
    background:
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 3px,
            rgba(255,255,255,.2) 4px
        );
}

.wenge{
    background:
        repeating-linear-gradient(
            90deg,
            #2b1d19 0px,
            #3a2822 8px,
            #1f1411 16px
        );
}

.wenge::after{
    content:"";
    position:absolute;
    inset:0;
    opacity:.18;
    background:
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 3px,
            rgba(255,255,255,.2) 4px
        );
}

.color-card h3{
    margin-bottom:8px;
}

.color-card span{
    color:#64748b;
}
.color-card:hover .color-sample{
    transform:scale(1.03);
}

.color-sample{
    transition:.3s;
}

/* ADVANTAGES */
.advantages h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

/* ===================================
   ADVANTAGES ICONS
=================================== */

.advantages{

    background:#ffffff;

}

.advantages h2{

    text-align:center;

    color:#0f172a;

    margin-bottom:60px;

}

.advantages-icons{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:30px;

    flex-wrap:wrap;

}

.advantage-item{

    flex:1;

    min-width:150px;

    text-align:center;

    transition:.3s;

}

.advantage-item:hover{

    transform:translateY(-8px);

}

.advantage-item i{

    font-size:42px;

    color:#ff6a00;

    margin-bottom:18px;

}

.advantage-item span{

    display:block;

    color:#334155;

    font-weight:600;

    line-height:1.4;

}
@media(max-width:768px){

    .advantages-icons{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:35px;

    }

}


/* PROJECTS */

.projects-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* FAQ */

.faq{
    background:#f8fafc;
}

.faq h2{
    text-align:center;
    margin-bottom:50px;
}

.faq-list{
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    background:#fff;
    border-radius:18px;
    margin-bottom:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.faq-question{
    width:100%;
    padding:22px 28px;
    border:none;
    background:#fff;
    text-align:left;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    position:relative;
}

.faq-question::after{
    content:"+";
    position:absolute;
    right:25px;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
    color:#ff6a00;
}

.faq-item.active .faq-question::after{
    content:"−";
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-answer p{
    padding:0 28px 25px;
    color:#64748b;
    line-height:1.7;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

/* CONTACT */

.contact{

    background:var(--dark);

    color:#fff;

    padding:100px 0;

}

.contact h2{

    text-align:center;

    margin-bottom:40px;

    font-size:42px;

    color:#fff;

}

.contact-form{

    max-width:700px;

    margin:auto;

    display:grid;

    gap:15px;

}

.contact-form input,
.contact-form select{

    padding:16px;

    border-radius:12px;

    border:none;

    width:100%;

    background:#fff;

    color:#111827;

}
/* ===================================
   FOOTER
=================================== */

.footer{

    background:#020617;

    color:#94a3b8;

    padding:70px 0 30px;

}

.footer-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:50px;

    flex-wrap:wrap;

}

.footer-social{

    display:flex;

    gap:18px;

}

.footer-social a{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#0f172a;

    color:#ffffff;

    font-size:20px;

    transition:.3s;

}

.footer-social a:hover{

    background:#ff6a00;

    transform:translateY(-5px);

}

.footer-contacts{

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    gap:12px;

}

.footer-contacts a{

    color:#ffffff;

    font-size:18px;

    transition:.3s;

}

.footer-contacts a:hover{

    color:#ff6a00;

}

.footer-address{

    color:#94a3b8;

    margin-top:8px;

}

.footer-divider{

    height:1px;

    background:rgba(255,255,255,.08);

    margin:35px 0;

}

.footer-middle{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

    color:#cbd5e1;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

    color:#64748b;

}

/* MOBILE */

@media(max-width:768px){

    .footer-top{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

    .footer-contacts{

        align-items:center;

    }

    .footer-bottom{

        justify-content:center;

        text-align:center;

    }

}
.footer-location{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.footer-route-btn{
    color:#ff6a00;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.footer-route-btn:hover{
    opacity:.8;
}

/* RESPONSIVE */

@media(max-width:1024px){

    .hero-content,
    .about-grid{
        grid-template-columns:1fr;
    }

    .product-grid,
    
    .projects-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero h1{
        font-size:52px;
    }

}

@media(max-width:768px){

    .nav{
        display:none;
    }

    .mobile-menu-btn{
        display:block;
    }

    .hero{
        text-align:center;
    }

    .hero h1{
        font-size:42px;
    }

    .hero-stats{
        justify-content:center;
        flex-wrap:wrap;
    }

    .product-grid,
    .advantages-grid,
    .projects-grid{
        grid-template-columns:1fr;
    }

    .section{
        padding:70px 0;
    }

    .section-title h2,
    .about-content h2,
    .advantages h2,
    .contact h2{
        font-size:32px;
    }

}
/* ANIMATIONS */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;
}

.reveal.visible{
    opacity:1;
    transform:none;
}

/* SCROLLED HEADER */

.header-scrolled{
    background:#0f172a;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* MOBILE MENU */

.nav.mobile-open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#0f172a;
    padding:20px;
}

/* SCROLL TOP */

.scroll-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#ff6a00;
    color:#fff;
    cursor:pointer;
    opacity:0;
    pointer-events:none;
    transition:.3s;
    z-index:999;
}

.scroll-top.show{
    opacity:1;
    pointer-events:auto;
}
.projectsSwiper{
    overflow:visible;
    padding:30px 0 60px;
}

.projectsSwiper .swiper-slide{

    transition:.4s;
    transform:scale(.85);

    opacity:.7;
}

.projectsSwiper .swiper-slide-active{

    transform:scale(1);
    opacity:1;
}

.projectsSwiper img{

    width:100%;
    height:420px;

    object-fit:cover;

    border-radius:24px;

    cursor:pointer;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}
/* ==========================
   BRANDS
========================== */

.brands-section{

    background:#ffffff;

    overflow:hidden;

    padding:80px 0;

}

.brands-slider{

    width:100%;

    overflow:hidden;

    position:relative;

}

.brands-track{

    display:flex;

    align-items:center;

    width:max-content;

    animation:brandsScroll 35s linear infinite;

}

.brand-item{

    width:220px;

    height:120px;

    margin:0 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ffffff;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.brand-item:hover{

    transform:translateY(-8px);

}

.brand-item img{

    max-width:140px;

    max-height:60px;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.8;

    transition:.3s;

}

.brand-item:hover img{

    filter:none;

    opacity:1;

}

@keyframes brandsScroll {

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}
/* ===================================
   FOOTER
=================================== */

.footer{

    background:#020617;

    color:#94a3b8;

    padding:70px 0 30px;

}

.footer-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:50px;

    flex-wrap:wrap;

}

.footer-social{

    display:flex;

    gap:18px;

}

.footer-social a{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#0f172a;

    color:#ffffff;

    font-size:20px;

    transition:.3s;

}

.footer-social a:hover{

    background:#ff6a00;

    transform:translateY(-5px);

}

.footer-contacts{

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    gap:12px;

}

.footer-contacts a{

    color:#ffffff;

    font-size:18px;

    transition:.3s;

}

.footer-contacts a:hover{

    color:#ff6a00;

}

.footer-address{

    color:#94a3b8;

    margin-top:8px;

}

.footer-divider{

    height:1px;

    background:rgba(255,255,255,.08);

    margin:35px 0;

}

.footer-middle{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

    color:#cbd5e1;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

    color:#64748b;

}
.footer-links a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.25s;

}

.footer-links a:hover{

    color:#ff6a00;

}

/* текущая страница */

.footer-links a.active{

    color:#ff6a00;

    font-weight:700;

    position:relative;

}

.footer-links a.active::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-4px;

    width:100%;

    height:2px;

    background:#ff6a00;

}

/* MOBILE */

@media(max-width:768px){

    .footer-top{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

    .footer-contacts{

        align-items:center;

    }

    .footer-bottom{

        justify-content:center;

        text-align:center;

    }

}
.footer-location{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.footer-route-btn{
    color:#ff6a00;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.footer-route-btn:hover{
    opacity:.8;
}
/* =====================================================
   TECHROL MAP SECTION
===================================================== */

.map-section{

    padding:120px 0;

    background:#f8fafc;

    position:relative;

}

.map-section .section-title{

    text-align:center;

    max-width:800px;

    margin:0 auto 60px;

}

.section-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:30px;

    background:rgba(255,106,0,.08);

    border:1px solid rgba(255,106,0,.15);

    color:#ff6a00;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.map-section h2{

    font-size:52px;

    line-height:1.1;

    color:#0f172a;

    margin-bottom:20px;

}

.map-section p{

    color:#64748b;

    font-size:18px;

    line-height:1.7;

}

/* =====================================================
   MAP
===================================================== */

.uz-map{

    position:relative;

    display:block;

    max-width:1100px;

    margin:0 auto;

    transition:.4s;

}

.uz-map img{

    width:100%;

    height:auto;

    display:block;

    filter:drop-shadow(0 25px 50px rgba(0,0,0,.08));

}

.uz-map:hover{

    transform:translateY(-6px);

}

/* =====================================================
   PULSE POINTS
===================================================== */

.map-point{

    position:absolute;

    width:18px;

    height:18px;

    border-radius:50%;

    background:#ff6a00;

    z-index:3;

    cursor:pointer;

}

.map-point::before{

    content:"";

    position:absolute;

    inset:-10px;

    border-radius:50%;

    border:2px solid #ff6a00;

    animation:pulse-ring 2.5s infinite;

}

.map-point::after{

    content:"";

    position:absolute;

    inset:-20px;

    border-radius:50%;

    border:1px solid rgba(255,106,0,.35);

    animation:pulse-ring-2 2.5s infinite;

}

@keyframes pulse-ring{

    0%{

        transform:scale(.4);

        opacity:1;

    }

    100%{

        transform:scale(2.5);

        opacity:0;

    }

}

@keyframes pulse-ring-2{

    0%{

        transform:scale(.6);

        opacity:.7;

    }

    100%{

        transform:scale(3.5);

        opacity:0;

    }

}

/* =====================================================
   TOOLTIPS
===================================================== */

.map-point span{

    position:absolute;

    left:50%;

    bottom:32px;

    transform:translateX(-50%);

    background:#0f172a;

    color:white;

    padding:10px 14px;

    border-radius:12px;

    font-size:13px;

    line-height:1.4;

    white-space:nowrap;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    box-shadow:
    0 15px 30px rgba(0,0,0,.15);

}

.map-point span::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-6px;

    width:12px;

    height:12px;

    background:#0f172a;

    transform:
    translateX(-50%)
    rotate(45deg);

}

.map-point:hover span{

    opacity:1;

    visibility:visible;

    bottom:38px;

}

/* =====================================================
   CITY POSITIONS
===================================================== */

.tashkent{
    top:52%;
    left:74%;
}

.samarkand{
    top:65%;
    left:59%;
}

.navoi{
    top:45%;
    left:49%;
}

.bukhara{
    top:52%;
    left:39%;
}

.fergana{
    top:54%;
    left:84%;
}

.andijan{
    top:57%;
    left:93%;
}
/* =====================================================
   OPEN MAP BUTTON
===================================================== */

.map-open{

    position:absolute;

    left:50%;

    bottom:5%;

    transform:translateX(-50%);

    padding:18px 28px;

    border-radius:50px;

    background:rgba(255,255,255,.9);

    backdrop-filter:blur(10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

    transition:.3s;

}

.map-open span{

    color:#0f172a;

    font-weight:700;

}

.uz-map:hover .map-open{

    transform:
    translateX(-50%)
    translateY(-5px);

}

/* =====================================================
   STATS
===================================================== */

.map-stats{

    margin-top:80px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.map-stat{

    background:white;

    border-radius:24px;

    padding:35px;

    text-align:center;

    box-shadow:
    0 15px 40px rgba(15,23,42,.06);

    transition:.3s;

}

.map-stat:hover{

    transform:translateY(-8px);

}

.map-stat span{

    display:block;

    font-size:48px;

    font-weight:800;

    color:#ff6a00;

    margin-bottom:12px;

}

.map-stat p{

    font-size:16px;

    color:#64748b;

    margin:0;

}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:992px){

    .map-section{

        padding:90px 0;

    }

    .map-section h2{

        font-size:40px;

    }

    .map-stats{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .map-section h2{

        font-size:32px;

    }

    .map-section p{

        font-size:16px;

    }

    .map-point{

        width:14px;

        height:14px;

    }

    .map-point span{

        font-size:11px;

        padding:8px 10px;

    }

    .map-open{

        padding:14px 20px;

    }

}

@media(max-width:480px){

    .map-section{

        padding:70px 0;

    }

    .map-section h2{

        font-size:28px;

    }

    .map-stat{

        padding:25px;

    }

    .map-stat span{

        font-size:38px;

    }

}
@media (max-width:768px){

    .hero{
        min-height:650px;
        height:auto;
        padding-top:120px;
        padding-bottom:60px;
    }
}
@media (max-width:768px){

    .video-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:32px;
    }

}
@media (max-width:768px){

    .colors-grid{
        grid-template-columns:1fr 1fr;
    }

}
@media (max-width:480px){

    .colors-grid{
        grid-template-columns:1fr;
    }

}
@media (max-width:768px){

    .breadcrumbs{
        font-size:13px;
        padding:14px 0;
    }

}
@media (max-width:768px){

    .toc-card{
        padding:25px;
    }

    .toc-grid{
        grid-template-columns:1fr;
    }

    .toc-header h2{
        font-size:26px;
    }

    .toc-link{
        font-size:15px;
    }

}
.category-content{

    display:none;

    margin-top:30px;

}

.automation-category.active
.category-content{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(260px,1fr));

    gap:24px;

}
#counter{
    
    bottom:10px;
    right:10px;
    opacity:0.08;
    transform:scale(0.8);
    transition:opacity .3s ease;
    z-index:1;
}

#counter:hover{
    opacity:0.4;
}
.product-modal{

position:fixed;

inset:0;

background:
    rgba(0,0,0,.7);

display:none;

justify-content:center;

align-items:center;

z-index:9999;
}

.product-modal.active{


display:flex;


}

.product-modal-content{

background:#fff;

width:min(900px,90%);

max-height:90vh;

overflow:auto;

padding:40px;

border-radius:20px;

position:relative;
}

.close-modal{
position:absolute;

top:15px;

right:20px;

font-size:32px;

cursor:pointer;
}

.modal-image,
.modal-drawing{


width:100%;

max-width:500px;

display:block;

margin:20px auto;

}

.model-card{
margin-top:30px;
}
#models-container.highlight{
    animation: highlightModels 1.5s ease;
}

@keyframes highlightModels{
    0%{background:#fff3cd;}
    100%{background:transparent;}
}
.product-card{
    position:relative;
}

.product-badge{
    position:absolute;
    top:5px;
    right:-15px;

    max-width:170px;
    max-height:120px;

    width:auto;
    height:auto;

    z-index:10;
}
/* =========================================================
   TECHROL — REVIEWS
   ========================================================= */

.tr-reviews {
    position: relative;
    padding: 100px 0;
    background: #f6f6f6;
    overflow: hidden;
}

.tr-reviews-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.tr-reviews-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;
    margin-bottom: 45px;
}

.tr-reviews-heading-left {
    min-width: 0;
}

.tr-reviews-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #ff6a00;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tr-reviews-heading h2 {
    margin: 0;

    color: #171717;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.05;
    font-weight: 800;
}

.tr-reviews-heading p {
    max-width: 430px;

    margin: 0;

    color: #707070;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   CAROUSEL
   ========================================================= */

.tr-reviews-carousel {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
}

.tr-reviews-viewport {
    width: 100%;
    overflow: hidden;
}

.tr-reviews-track {
    display: flex;
    gap: 24px;

    will-change: transform;

    transition:
        transform 0.65s cubic-bezier(.22, .61, .36, 1);
}


/* =========================================================
   CARD
   ========================================================= */

.tr-review-card {
    position: relative;

    flex: 0 0 calc((100% - 48px) / 3);

    min-width: 0;

    overflow: hidden;

    background: #fff;

    border-radius: 18px;

    box-shadow:
        0 8px 35px rgba(0, 0, 0, .07);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.tr-review-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, .11);
}


/* =========================================================
   PHOTO
   ========================================================= */

.tr-review-photo {
    position: relative;

    width: 100%;
    height: 235px;

    overflow: hidden;

    background: #ddd;
}

.tr-review-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;
}

.tr-review-card:hover
.tr-review-photo img {
    transform: scale(1.04);
}


/* затемнение снизу фотографии */

.tr-review-photo::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 80px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(0, 0, 0, .22)
        );

    pointer-events: none;
}


/* =========================================================
   CONTENT
   ========================================================= */

.tr-review-content {
    padding: 25px 27px 27px;
}

.tr-review-stars {
    margin-bottom: 14px;

    color: #ff6a00;

    font-size: 16px;
    letter-spacing: 3px;
    line-height: 1;
}

.tr-review-text {
    min-height: 82px;

    margin: 0 0 22px;

    color: #4d4d4d;

    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   AUTHOR
   ========================================================= */

.tr-review-author {
    display: flex;
    align-items: center;

    gap: 12px;

    padding-top: 17px;

    border-top: 1px solid #ededed;
}

.tr-review-avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    border-radius: 50%;

    background: #171717;

    color: #fff;

    font-size: 15px;
    font-weight: 700;
}

.tr-review-author-info {
    min-width: 0;
}

.tr-review-author-name {
    display: block;

    margin-bottom: 3px;

    color: #171717;

    font-size: 14px;
    font-weight: 700;
}

.tr-review-project {
    display: block;

    overflow: hidden;

    color: #888;

    font-size: 12px;
    line-height: 1.4;

    white-space: nowrap;
    text-overflow: ellipsis;
}


/* =========================================================
   PROJECT LINK
   ========================================================= */

.tr-review-project-link {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-top: 17px;

    color: #171717;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: color .25s ease;
}

.tr-review-project-link span {
    color: #ff6a00;

    transition:
        transform .25s ease;
}

.tr-review-project-link:hover {
    color: #ff6a00;
}

.tr-review-project-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   ARROWS
   ========================================================= */

.tr-reviews-arrow {
    position: absolute;

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    padding: 0;

    border: 1px solid #e2e2e2;
    border-radius: 50%;

    background: #fff;

    color: #171717;

    cursor: pointer;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, .08);

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.tr-reviews-arrow span {
    position: relative;

    top: -1px;

    font-size: 27px;
    line-height: 1;
}

.tr-reviews-arrow:hover {
    border-color: #ff6a00;

    background: #ff6a00;

    color: #fff;

    transform: scale(1.05);
}

.tr-reviews-prev {
    left: -25px;
}

.tr-reviews-next {
    right: -25px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.tr-reviews-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 30px;
}


/* dots */

.tr-reviews-dots {
    display: flex;
    align-items: center;

    gap: 8px;
}

.tr-review-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;
    border-radius: 20px;

    background: #d1d1d1;

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;
}

.tr-review-dot.active {
    width: 28px;

    background: #ff6a00;
}


/* all projects */

.tr-reviews-all {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #171717;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color .25s ease;
}

.tr-reviews-all span {
    color: #ff6a00;

    transition:
        transform .25s ease;
}

.tr-reviews-all:hover {
    color: #ff6a00;
}

.tr-reviews-all:hover span {
    transform: translateX(4px);
}


/* =========================================================
   LOADING
   ========================================================= */

.tr-reviews-loading {
    width: 100%;

    padding: 60px 20px;

    text-align: center;

    color: #888;

    font-size: 14px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .tr-reviews {
        padding: 80px 0;
    }

    .tr-reviews-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }

    .tr-reviews-heading p {
        max-width: 650px;
    }

    .tr-review-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .tr-reviews-prev {
        left: -18px;
    }

    .tr-reviews-next {
        right: -18px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .tr-reviews {
        padding: 65px 0;
    }

    .tr-reviews-container {
        width: calc(100% - 30px);
    }

    .tr-reviews-heading {
        margin-bottom: 30px;
    }

    .tr-reviews-heading h2 {
        font-size: 32px;
    }

    .tr-reviews-heading p {
        font-size: 14px;
        line-height: 1.6;
    }

    .tr-review-card {
        flex: 0 0 100%;
    }

    .tr-review-photo {
        height: 215px;
    }

    .tr-review-content {
        padding: 23px;
    }

    .tr-review-text {
        min-height: auto;

        font-size: 14px;
    }

    .tr-reviews-arrow {
        width: 40px;
        height: 40px;
    }

    .tr-reviews-arrow span {
        font-size: 23px;
    }

    .tr-reviews-prev {
        left: 8px;
    }

    .tr-reviews-next {
        right: 8px;
    }

    .tr-reviews-footer {
        margin-top: 25px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .tr-reviews-heading h2 {
        font-size: 29px;
    }

    .tr-review-photo {
        height: 195px;
    }

    .tr-reviews-all {
        font-size: 12px;
    }
}