/* BASE */
:root{
  --accent:#18a79f;
  --text:#111;
  --muted:#444;
  --line:#e7e7e7;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
}

a{ color:inherit; text-decoration:none; }

.wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 0px;
}

/* TOP BAR */


.repItem{
  padding:12px 0;
  border-left:3px solid var(--accent);
  padding-left:14px;
  margin-bottom:14px;
  font-size:14px;
  line-height:1.4;
}

.repItem:last-child{
  margin-bottom:0;
}

.repLink{
  color:var(--accent);
  text-decoration:none;
}

.repLink:hover{
  text-decoration:underline;
}


/*  HEADER  */
.header{ background:#fff; }

.header__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0; /* было 14 */
  gap:20px;
}

/* BRAND */
.brand{
  display:flex;
  align-items:center;

  margin-left -80px
}

.brand__logo img{
  width:230px;
  display:block;
  margin-left: -90px;
}

.brand__slogan{
  position:relative;
  padding-left:18px;
  line-height:1.2;
  font-size:14px;
  color:#222;
  margin-left: -10px;

}

.brand__slogan::before{
  content:"";
  position:absolute;
  left:0;
  top:4px;
  bottom:4px;
  width:2px;
  background:var(--accent);
}

.nav{
  display:flex;
  gap:34px;              /* было 26 */
  align-items:center;
  flex-wrap:wrap;
}

.nav > a,
.nav__drop > a{
  position:relative;
  font-weight:600;       /* было 400 */
  font-size:13px;        /* было 14 */
  letter-spacing:.8px;   /* было .4 */
  text-transform:uppercase;
  padding:8px 0;
  color:#111;
  transition:color .25s ease;
}

.nav > a::after,
.nav__drop > a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:2px;
  background:var(--accent);
  transition:width .25s ease;
}

.nav > a:hover,
.nav__drop > a:hover{
  color:var(--accent);
}

.nav > a:hover::after,
.nav__drop > a:hover::after{
  width:100%;
}

/* активный пункт */
.nav a.active{
  color:#111;
}

.nav a.active::after{
  width:100%;
}

/* DROPDOWN */
.nav__drop{ position:relative; }

.nav__submenu{
  display:none;
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:320px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
  padding:10px 0;
  z-index:10;
  border-radius:10px;
}

.nav__drop:hover .nav__submenu{ display:block; }

.nav__submenu a{
  display:block;
  padding:10px 14px;
  font-size:14px;
  font-weight:500;
  text-transform:none;
  letter-spacing:0;
  color:#222;
}

.nav__submenu a:hover{
  background:#f5f5f5;
}

.header__line{ height:2px; background:var(--accent); }

/* HERO SLIDER  */

.heroSlider{
  position:relative;
  height:78vh;
  min-height:520px;
  overflow:hidden;
}

/* скрываем радио */
.hs__radio{
  position:absolute;
  left:-9999px;
}

/* лента: 10 слайдов */
.hs__track{
  display:flex;
  width:1000%;
  height:100%;
  transition:transform .8s ease;
  animation: hsAuto 50s infinite;
}

/* при наведении — стоп */
.heroSlider:hover .hs__track{ animation-play-state: paused; }

/* один слайд */
.hs__slide{
  width:10%;
  height:100%;
  position:relative;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
}

/* оверлей */
.hs__overlay{ position:absolute; inset:0; background:rgba(0,160,150,.55); }
.hs__overlay.light{ background:rgba(255,255,255,.55); }

/* текст */
.hs__content{
  position:relative;
  z-index:2;
  padding:0 70px;
  max-width:980px;
  color:#fff;
}
.hs__content.dark{ color:#222; }

.hs__badge{
  display:inline-flex;
  align-items:center;
  gap:14px;
  background:#fff;
  padding:10px 16px;
  border-radius:10px;
  margin-bottom:18px;
}
.hs__badge img{ width:160px; height:auto; display:block; }
.hs__badge span{ color:var(--accent); font-weight:800; font-size:26px; }

.hs__content h1{
  margin:0 0 12px;
  font-size:62px;
  font-weight:500;
  line-height:1.05;
  text-transform:uppercase;
}
.hs__line{ width:520px; height:2px; background:#fff; margin:10px 0 18px; }
.hs__line.dark{ background:#222; }

.hs__content p{
  margin:0 0 22px;
  font-size:26px;
  line-height:1.25;
}

.hs__btn{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:12px 24px;
  border-radius:4px;
}

/* BACKGROUNDS */
.hs__s1 { background-image:url("../img/slider/slide1.png"); }
.hs__s2 { background-image:url("../img/slider/slide2.jpg"); }
.hs__s3 { background-image:url("../img/slider/slide3.jpg"); }
.hs__s4 { background-image:url("../img/slider/slide4.jpg"); }
.hs__s5 { background-image:url("../img/slider/slide5.jpg"); }
.hs__s6 { background-image:url("../img/slider/slide6.jpg"); }
.hs__s7 { background-image:url("../img/slider/slide7.jpg"); }
.hs__s8 { background-image:url("../img/slider/slide8.jpg"); }
.hs__s9 { background-image:url("../img/slider/slide9.jpg"); }
.hs__s10{ background-image:url("../img/slider/slide10.jpg"); }

/* MANUAL переключение (10 шагов) */
#hs1:checked  ~ .hs__track{ animation:none; transform:translateX(0%); }
#hs2:checked  ~ .hs__track{ animation:none; transform:translateX(-10%); }
#hs3:checked  ~ .hs__track{ animation:none; transform:translateX(-20%); }
#hs4:checked  ~ .hs__track{ animation:none; transform:translateX(-30%); }
#hs5:checked  ~ .hs__track{ animation:none; transform:translateX(-40%); }
#hs6:checked  ~ .hs__track{ animation:none; transform:translateX(-50%); }
#hs7:checked  ~ .hs__track{ animation:none; transform:translateX(-60%); }
#hs8:checked  ~ .hs__track{ animation:none; transform:translateX(-70%); }
#hs9:checked  ~ .hs__track{ animation:none; transform:translateX(-80%); }
#hs10:checked ~ .hs__track{ animation:none; transform:translateX(-90%); }

/* AUTO (10 слайдов) */
@keyframes hsAuto{
  0%,9%    {transform:translateX(0)}
  10%,19%  {transform:translateX(-10%)}
  20%,29%  {transform:translateX(-20%)}
  30%,39%  {transform:translateX(-30%)}
  40%,49%  {transform:translateX(-40%)}
  50%,59%  {transform:translateX(-50%)}
  60%,69%  {transform:translateX(-60%)}
  70%,79%  {transform:translateX(-70%)}
  80%,89%  {transform:translateX(-80%)}
  90%,100% {transform:translateX(-90%)}
}

/* ARROWS */
.hs__arrows{ position:absolute; inset:0; pointer-events:none; z-index:5; }
.hs__arrow{
  pointer-events:auto;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid rgba(0,0,0,.55);
  background:rgba(255,255,255,.35);
  font-size:32px;
  cursor:pointer;
  user-select:none;
}
.hs__arrow.prev{ left:18px; }
.hs__arrow.next{ right:18px; }

/* показываем стрелки только для активного слайда */
.a1,.a2,.a3,.a4,.a5,.a6,.a7,.a8,.a9,.a10{ display:none; }

#hs1:checked  ~ .hs__arrows .a1 {display:flex}
#hs2:checked  ~ .hs__arrows .a2 {display:flex}
#hs3:checked  ~ .hs__arrows .a3 {display:flex}
#hs4:checked  ~ .hs__arrows .a4 {display:flex}
#hs5:checked  ~ .hs__arrows .a5 {display:flex}
#hs6:checked  ~ .hs__arrows .a6 {display:flex}
#hs7:checked  ~ .hs__arrows .a7 {display:flex}
#hs8:checked  ~ .hs__arrows .a8 {display:flex}
#hs9:checked  ~ .hs__arrows .a9 {display:flex}
#hs10:checked ~ .hs__arrows .a10{display:flex}

/* DOTS */
.hs__dots{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top:16px;
  display:flex;
  gap:10px;
  z-index:6;
}
.hs__dots label{
  width:10px;
  height:10px;
  border-radius:50%;
  border:1px solid #999;
  background:#fff;
  cursor:pointer;
  opacity:.85;
}

#hs1:checked  ~ .hs__dots label[for="hs1"],
#hs2:checked  ~ .hs__dots label[for="hs2"],
#hs3:checked  ~ .hs__dots label[for="hs3"],
#hs4:checked  ~ .hs__dots label[for="hs4"],
#hs5:checked  ~ .hs__dots label[for="hs5"],
#hs6:checked  ~ .hs__dots label[for="hs6"],
#hs7:checked  ~ .hs__dots label[for="hs7"],
#hs8:checked  ~ .hs__dots label[for="hs8"],
#hs9:checked  ~ .hs__dots label[for="hs9"],
#hs10:checked ~ .hs__dots label[for="hs10"]{
  background:var(--accent);
  border-color:var(--accent);
}

/* ===== FOOTER ===== */
.footer{ margin-top:40px; }

.footer__inner{
  display:grid;
  grid-template-columns:1.2fr .8fr 1fr;
  gap:20px;
  padding:22px 0;
}

.footer__logo{ width:220px; }

.footer__copy{ margin-top:10px; color:var(--muted); }

.footer__links a{ display:block; margin-bottom:10px; }

.footer__line{ height:2px; background:var(--accent); }

/* ===== MOBILE ===== */
@media (max-width:980px){
  .header__inner{ flex-direction:column; align-items:flex-start; }
  .nav{ gap:18px; }
  .brand{ min-width:auto; }
  .footer__inner{ grid-template-columns:1fr; }
}

@media (max-width:900px){
  .heroSlider{ height:72vh; min-height:460px; }
  .hs__content{ padding:0 18px; }
  .hs__content h1{ font-size:36px; }
  .hs__content p{ font-size:18px; }
  .hs__line{ width:260px; }
  .hs__badge img{ width:120px; }
  .hs__badge span{ font-size:18px; }
  .hs__arrow{ width:38px; height:38px; font-size:28px; }
}

/* ОБЩИЕ НАСТРОЙКИ */
.section{
  padding:70px 0;
}

.block-title{
  text-align:center;
  margin: 60px;     /
  font-size:14px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.block-title span{
  display:inline-block;
  padding-bottom:8px;
  border-bottom:1px solid #111;
}

/* БЛОК "О КОМПАНИИ" */
.about3{
  display:grid;
  margin-bottom:100px;
  grid-template-columns:repeat(3, 1fr);
  gap:34px;
}

.about3__text{
  font-size:16px;
  line-height:1.6;
  text-align:justify;
  color:#222;
  margin-bottom:16px;
}

.about3__box{
  border:1px solid var(--accent);
  height:240px;
  padding:30px 20px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.about3__icon{
  width:110px;
  height:110px;
  object-fit:contain;
  margin-bottom:10px;
}

.about3__stat{
  font-size:12px;
  line-height:1.3;
  margin-bottom:auto;
}

.about3__btn{
  display:inline-block;
  padding:6px 14px;
  border:1px solid var(--accent);
  color:var(--accent);
  font-size:10px;
  letter-spacing:.4px;
  text-transform:uppercase;
}

.about3__btn:hover{
  background:var(--accent);
  color:#fff;
  text-decoration:none;
}

/* (offer8) */
.offer8{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  column-gap:60px;
  row-gap:46px;
  text-align: center;
  justify-items: center;
  align-items: center;
  margin-top: 50px;

}

.offer8__item{
  display:grid;
  grid-template-rows:6px 90px 34px;
  align-items:start;
}

.offer8__line--top{
  width:130px;
  height:3px;
  background:var(--accent);
}

.offer8__icon{
  width:120px;
  height:120px;
  object-fit:contain;
  align-self:center;
}

.offer8__text{
  font-size:16px;
  line-height:1.3;
  color:#222;
  margin:0;
}

@media (max-width:1000px){
  .about3{ grid-template-columns:1fr; }

  .offer8{
    grid-template-columns:repeat(2, 1fr);
    column-gap:40px;
  }
}

@media (max-width:520px){
  .offer8{ grid-template-columns:1fr; }
}

/* ОСНОВНЫЕ НАПРАВЛЕНИЯ */
.directions{
  padding:100px 0 10px;
}

.directions__title{
  text-align:center;
  font-size:12px;
  letter-spacing:.6px;
  font-weight:700;
  text-transform:uppercase;
  margin:0;
}

.directions__underline{
  width:64px;
  height:1px;
  background:#111;
  margin:10px auto 28px;
}

.directions__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px 28px;
}

.dirCard{ display:block; }

.dirCard__img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
}

.dirCard__name{
  margin:10px 0 6px;
  font-size:11px;
  color:#222;
}

.dirCard__line{
  width:64px;
  height:2px;
  background:var(--accent);
}

/* адаптив */
@media (max-width:1000px){
  .directions__grid{ grid-template-columns:repeat(2, 1fr); }
  .dirCard__img{ height:170px; }
}

@media (max-width:560px){
  .directions__grid{ grid-template-columns:1fr; }
  .dirCard__img{ height:190px; }
}

/* НАШИ ОБЪЕКТЫ */
.projects{
  padding:90px 0;
  background:
    linear-gradient(rgba(255,255,255,.85), rgba(255,255,255,.85)),
    url("../img/bg/projects-bg.jpg") center/cover no-repeat;
}

.projects__title{
  text-align:center;
  font-size:12px;
  font-weight:700;
  letter-spacing:.6px;
  text-transform:uppercase;
  margin:0;
}

.projects__underline{
  width:60px;
  height:1px;
  background:#111;
  margin:10px auto 14px;
}

.projects__subtitle{
  text-align:center;
  font-size:12px;
  margin-bottom:34px;
}

.projects__slider{ position:relative; }

.projects__track{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
}

.projectCard{
  background:#fff;
  padding:10px;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
  font-size:11px;
  line-height:1.35;
}

.projectCard img{
  width:100%;
  height:160px;
  object-fit:cover;
  margin-bottom:10px;
}

.projectCard__btn{
  display:inline-block;
  margin-top:10px;
  padding:6px 14px;
  border:1px solid var(--accent);
  color:var(--accent);
  font-size:10px;
  text-transform:uppercase;
}

.projectCard__btn:hover{
  background:var(--accent);
  color:#fff;
}

/* стрелки */
.projects__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  background:#fff;
  border:1px solid #ccc;
  font-size:22px;
  cursor:pointer;
}

.projects__arrow.left{ left:-50px; }
.projects__arrow.right{ right:-50px; }

/* адаптив */
@media (max-width:900px){
  .projects__track{ grid-template-columns:1fr; }
  .projects__arrow{ display:none; }
}

/* ABOUT PAGE */
.page-title{
  text-align:center;
  font-size:30px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  margin:60px 0 0;
}

.page-underline{
  width:80px;
  height:2px;
  background:var(--accent);
  margin:14px auto 40px;
}

.aboutPage{
  max-width:900px;
  margin:0 auto;
}

.aboutPage__text{
  font-size:16px;
  line-height:1.7;
  margin-bottom:18px;
  color:#222;
  text-align:justify;
}

/* цифры */
.aboutStats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  margin:50px 0;
}

.aboutStat{
  border:1px solid var(--accent);
  padding:26px 20px;
  text-align:center;
}

.aboutStat__num{
  font-size:32px;
  font-weight:700;
  color:var(--accent);
  margin-bottom:8px;
}

.aboutStat__text{ font-size:13px; }

/* адаптив */
@media (max-width:800px){
  .aboutStats{ grid-template-columns:1fr; }
  .page-title{ font-size:24px; }
}

/* НАШИ ПРЕИМУЩЕСТВА */
.advantages{ padding:70px 0; }

.advantages__title{
  text-align:center;
  font-size:14px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  margin:0;
}

.advantages__underline{
  width:60px;
  height:1px;
  background:#111;
  margin:12px auto 40px;
}

.advantages__grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  column-gap:60px;
  row-gap:34px;
}

.advItem{
  position:relative;
  border:1px solid var(--accent);
  padding:22px 24px 22px 34px;
  font-size:13px;
  line-height:1.4;
  background:#fff;
}

.advItem::before{
  content:"";
  position:absolute;
  left:-8px;
  top:0;
  width:6px;
  height:100%;
  background:var(--accent);
}

@media (max-width:900px){
  .advantages__grid{ grid-template-columns:1fr; }
}

/*    ВЫСТАВКИ И КОНФЕРЕНЦИИ */
.expo{
  padding: 70px 0;
  background: #f6f8f9;
}

.expo__title{
  text-align: center;
  margin: 0;
  font-size: 22px;
  letter-spacing: .5px;
}

.expo__underline{
  width: 90px;
  height: 3px;
  background: #1a7d6b;
  margin: 14px auto 26px;
  border-radius: 999px;
}


.ex__radio{ display:none; }


.ex__box{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
}


.ex__track{
  display: flex;
  width: 200%;
  transition: transform .55s ease;
}

/* переключение слайдов */
#ex1:checked ~ .ex__box .ex__track{ transform: translateX(0%); }
#ex2:checked ~ .ex__box .ex__track{ transform: translateX(-50%); }

/* слайд */
.exSlide{
  width: 50%;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 26px;
  padding: 26px;
  align-items: center;
}

/* картинка */
.exSlide__imgWrap{
  border-radius: 14px;
  overflow: hidden;
}

.exSlide__img{
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.exSlide__imgWrap:hover .exSlide__img{
  transform: scale(1.04);
}

/* текст */
.exSlide__info{
  padding: 6px 0;
}

.exSlide__h{
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
  color: #111;
}

.exSlide__p{
margin: 0 0 16px;
color: #444;
line-height: 1.55;
max-width: 520px;
}

.exSlide__btn{
display: inline-block;
padding: 10px 16px;
border-radius: 10px;
background: #1a7d6b;
color: #fff;
text-decoration: none;
font-weight: 700;
font-size: 13px;
transition: .2s ease;
margin-right: 8px;
}

.exSlide__btn:hover{opacity: .85;}

.exSlide__btn.ghost{
background: transparent;
color: #1a7d6b;
border: 1px solid rgba(26,125,107,.45);
}

.exArrow{
position:absolute;
top: 50%;
transform: translateY(-50%);
width: 44px;
height: 44px;
border-radius:12px;
display: grid;
place-items: center;
cursor: pointer;
background: rgba(0,0,0,.45);
color #fff;
font-size: 26px;
user-select: none;
z-index: 5;
}


.exPrev1,.exNext1,.exPrev2,.exNext2{ display:none; }

#ex1:checked ~ .ex__box .exPrev1,
#ex1:checked ~ .ex__box .exNext1{ display:grid; }

#ex2:checked ~ .ex__box .exPrev2,
#ex2:checked ~ .ex__box .exNext2{ display:grid; }

@media (max-width: 992px){
  .exSlide{
    grid-template-columns: 1fr;
  }
  .exSlide__img{
    height: 260px;
  }
  .exSlide__btn{
    margin-bottom: 8px;
  }
}
.

/* =========================
   CONTACT FORM
========================= */
.contactForm{
  padding:90px 0;
  background:
    linear-gradient(rgba(255,255,255,.85), rgba(255,255,255,.85)),
    url("../img/bg/form-bg.jpg") center/cover no-repeat;
}

.contactForm__title{
  text-align:center;
  font-size:14px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  margin:0;
}

.contactForm__underline{
  width:60px;
  height:1px;
  background:#111;
  margin:12px auto 40px;
}

#contactForm{
  max-width:520px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}

#contactForm input,
#contactForm textarea{
  width:100%;
  padding:10px 12px;
  border:1px solid #777;
  font-size:13px;
  background:rgba(255,255,255,.85);
}

#contactForm textarea{
  min-height:110px;
  resize:vertical;
}

.contactForm__consent{ font-size:11px; }

.contactForm__captcha{
  border:1px solid #ccc;
  padding:10px;
  font-size:12px;
  background:#f5f5f5;
}

.contactForm__btn{
  align-self:center;
  margin-top:10px;
  padding:8px 28px;
  background:var(--accent);
  border:none;
  color:#fff;
  font-size:12px;
  cursor:pointer;
}

#contactFormResult{
  margin-top:10px;
  font-size:12px;
  text-align:center;
}



/* ===== SERVICE PAGE LAYOUT ===== */

.serviceRequestSection{
  padding:80px 0;
  background:
    linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.9)),
    url("../img/bg/service-bg.jpg") center/cover no-repeat;
}

.serviceRequestWrap{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:60px;
  align-items:start;
}

/* LEFT FORM */
.serviceFormBlock{
  background:rgba(255,255,255,.7);
  padding:40px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.serviceFormTitle{
  text-align:center;
  font-weight:700;
  text-transform:uppercase;
  font-size:14px;
  letter-spacing:.6px;
  margin-bottom:25px;
}

.serviceFormLine{
  display:block;
  width:50px;
  height:2px;
  background:#111;
  margin:10px auto 0;
}

.serviceFormBlock input,
.serviceFormBlock textarea{
  width:100%;
  border:1px solid #777;
  padding:10px 12px;
  margin-bottom:12px;
  font-size:13px;
  background:rgba(255,255,255,.85);
}

.serviceFormBlock textarea{
  min-height:110px;
}

.uploadLabel{
  font-size:12px;
  margin:12px 0 6px;
}

.uploadBox{
  display:block;
  border:2px dashed #777;
  padding:18px;
  text-align:center;
  cursor:pointer;
  background:rgba(255,255,255,.6);
  margin-bottom:16px;
}

.uploadBox input{
  display:none;
}

.consent{
  font-size:11px;
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.captchaBox{
  border:1px solid #ccc;
  padding:10px;
  background:#f5f5f5;
  margin-bottom:18px;
  font-size:12px;
}

.submitBtn{
  background:#18a79f;
  border:none;
  color:#fff;
  padding:12px 28px;
  cursor:pointer;
  font-size:12px;
  letter-spacing:.5px;
}

/* RIGHT INFO */
.serviceInfoBlock{
  padding:20px 0;
}

.serviceInfoBlock h2{
  font-size:22px;
  margin-bottom:16px;
}

.serviceInfoBlock p{
  margin-bottom:16px;
  line-height:1.6;
}

.serviceInfoBlock ul{
  padding-left:18px;
  margin-bottom:24px;
}

.serviceInfoBlock li{
  margin-bottom:8px;
}

.infoContacts{
  font-size:14px;
  line-height:1.6;
  background:#f7f7f7;
  padding:18px;
}

/* MOBILE */
@media(max-width:900px){
  .serviceRequestWrap{
    grid-template-columns:1fr;
    gap:40px;
  }
}
/* ===== MAIN CENTER REQUEST FORM ===== */
.mainRequestCard{
  width:100%;
  max-width:600px;
  margin:0 auto;
  background:#fff;
  padding:50px 40px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);

  display:flex;
  flex-direction:column;
  align-items:center;
}

.mainRequestCard form{
  width:100%;
  max-width:500px;
}



.mainRequestTitle{
  font-size:16px;
  font-weight:700;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.mainRequestLine{
  display:block;
  width:60px;
  height:2px;
  background:#18a79f;
  margin:14px auto 30px;
}

.mainRequestCard input,
.mainRequestCard textarea{
  width:100%;
  border:1px solid #777;
  padding:12px;
  margin-bottom:14px;
  font-size:13px;
  background:#fff;
}

.mainRequestCard textarea{
  min-height:120px;
  resize:vertical;
}

.uploadLabel{
  font-size:12px;
  margin-bottom:8px;
}

.uploadBox{
  display:block;
  border:2px dashed #777;
  padding:20px;
  margin-bottom:16px;
  cursor:pointer;
  background:#fafafa;
}

.uploadBox input{
  display:none;
}

.consent{
  font-size:11px;
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom:20px;
}

.submitBtn{
  background:#18a79f;
  border:none;
  color:#fff;
  padding:14px 30px;
  font-size:12px;
  letter-spacing:.6px;
  cursor:pointer;
  transition:.2s;
}

.submitBtn:hover{
  background:#149088;
}
html{ scroll-behavior: smooth; }
.mainRequestCard{
  position:relative !important;
  left:auto !important;
  float:none !important;
  margin:0 auto !important;
}
.exSlide__imgWrap {
    position: relative;
    display: inline-block;
}

.exSlide__img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 600px;
}

.exSlide__frame {
    border: 4px solid #1c8f88;
    background: transparent;
}
.exSlide__img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


/* ===== Representatives page ===== */

.repPage {
  padding: 48px 0 70px;
}

.repHead {
  margin-bottom: 18px;
}

.repTitle {
  margin: 0;
  font-size: 28px;
  letter-spacing: .02em;
}

.repSubtitle {
  margin: 10px 0 0;
  opacity: .75;
  max-width: 820px;
}

/* Tabs */

.repTabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.repTab {
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: .2s ease;
}

.repTab:hover {
  transform: translateY(-1px);
}

.repTab.is-active {
  border-color: #15b8a6;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

/* Layout */

.repGrid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 18px;
  align-items: start;
}

@media (max-width: 980px) {
  .repGrid {
    grid-template-columns: 1fr;
  }
}

.repSide {
  display: grid;
  gap: 14px;
}

/* Card */

.repCard {
  display: none;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.repCard.is-active {
  display: block;
}

.repCardTop {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

/* === ФЛАГ === */

.repFlag {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.repFlag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Card content */

.repCardTitle {
  font-weight: 800;
  letter-spacing: .01em;
}

.repCardCompany {
  opacity: .7;
  margin-top: 4px;
  font-size: 14px;
}

.repRow {
  margin-top: 10px;
  line-height: 1.45;
}

/* Buttons */

.repBtns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.repBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: #15b8a6;
  color: #fff;
  text-decoration: none;
  border: 1px solid transparent;
  transition: .2s ease;
}

.repBtn:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.repBtn--ghost {
  background: #fff;
  color: #111;
  border-color: rgba(0,0,0,.14);
}

/* Map */

.repMapWrap {
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.repMapTitle {
  padding: 14px 16px;
  font-weight: 800;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.repMap {
  display: none;
}

.repMap.is-active {
  display: block;
}

.repMap iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}

@media (max-width: 980px) {
  .repMap iframe {
    height: 420px;
  }
}
/* ===== Clients page ===== */

.clientsPage { padding: 48px 0 70px; }

.clientsHead{
  display:flex;
  gap:18px;
  align-items:flex-end;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-bottom: 18px;
}

.clientsTitle{
  margin:0;
  font-size: 32px;
  letter-spacing: .01em;
}

.clientsSubtitle{
  margin: 10px 0 0;
  opacity: .75;
  max-width: 820px;
  line-height: 1.5;
}

.clientsTools{ display:flex; gap:12px; align-items:center; }

.clientsSearch{
  position:relative;
  width: min(360px, 90vw);
}

.clientsSearchIcon{
  position:absolute;
  left:12px;
  top:50%;
  transform: translateY(-50%);
  width:18px;
  height:18px;
  opacity:.55;
  pointer-events:none;
}

.clientsSearch input{
  width:100%;
  padding: 12px 12px 12px 40px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  outline:none;
  transition: .2s ease;
}

.clientsSearch input:focus{
  border-color:#15b8a6;
  box-shadow: 0 0 0 4px rgba(21,184,166,.12);
}

/* Tabs */
.clientsTabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 18px 0 18px;
}

.clientsTab{
  border: 1px solid rgba(0,0,0,.12);
  background:#fff;
  padding: 10px 14px;
  border-radius: 999px;
  cursor:pointer;
  font-weight:700;
  transition:.2s ease;
}

.clientsTab:hover{ transform: translateY(-1px); }

.clientsTab.is-active{
  border-color:#15b8a6;
  box-shadow: 0 10px 24px rgba(0,0,0,.07);
}

/* Grid */
.clientsGridWrap{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  background:#fff;
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
  padding: 16px;
}

.clientsGrid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 1020px){
  .clientsGrid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px){
  .clientsGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 460px){
  .clientsGrid{ grid-template-columns: 1fr; }
}

/* Card */
.clientCard{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(180deg, #fff, #fbfbfb);
  display:flex;
  gap: 12px;
  align-items:center;
  min-height: 78px;
  transition: .2s ease;
}

.clientCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.08);
  border-color: rgba(21,184,166,.35);
}

/* service */
.serviceWrap {
    padding: 56px 0 80px;
}

.servicesTitle {
    text-align: center;
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: .02em;
}

.servicesUnderLine {
    width: 90px;
    height: 3px;
    background: #15b8a6;
    margin: 14px auto 34px;
    border-radius: 999px;
}

.servicesGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

@media (max-width: 1099px) {
    .servicesGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .servicesGrid {
        grid-template-columns: 1fr;
    }
}

.serviceCard {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 10px 26px rgba(0,0,0,.06);
    transform: translateY(0);
    transition: .2s ease;
}

.serviceCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
    border-color: rgba(21,184,165,.35);
}

.serviceCard_img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.serviceCard_body {
    padding: 16px 16px 18px;
}

.serviceCard_name {
    font-weight: 800;
    font-size: 16px;
    margin: 0;
}

.serviceCard_line {
    width: 74px;
    height: 3px;
    background: #15b8a6;
    border-radius: 999px;
    margin-top: 12px;
}

.serviceCard_hint {
    margin-top: 10px;
    opacity: .72;
    font-size: 13px;
    line-height: 1.45;
}

.svcPage { padding: 60px 0 90px; }

.svcTitle {
  text-align:center;
  font-size:34px;
  font-weight:900;
  margin:0;
}

.svcUnderline {
  width:90px;
  height:3px;
  background:#15b8a6;
  margin:15px auto 30px;
  border-radius:999px;
}

.svcUnderline.small {
  width:70px;
  margin:12px auto 25px;
}

.svcText {
  max-width:900px;
  margin:0 auto 40px;
  line-height:1.7;
}

.svcList { margin-top:15px; padding-left:20px; }

.svcBlockTitle {
  text-align:center;
  font-weight:900;
  font-size:18px;
  letter-spacing:.08em;
}

.svcGrid {
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:25px;
}

@media(max-width:1000px){
  .svcGrid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:600px){
  .svcGrid { grid-template-columns:1fr; }
}

.svcCard {
  text-decoration:none;
  color:inherit;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 26px rgba(0,0,0,.06);
  transition:.2s;
}

.svcCard:hover {
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.svcCardImg {
  width:100%;
  height:180px;
  object-fit:cover;
}

.svcCardBody { padding:15px; }

.svcCardName { font-weight:800; }

.svcCardLine {
  width:60px;
  height:3px;
  background:#15b8a6;
  margin-top:12px;
  border-radius:999px;
}

/* HERO */
.svcHero{
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  image-rendering: auto;
  filter: contrast(1.05) brightness(1.02);
}

.svcHero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
      to right,
      rgba(0,0,0,.45),
      rgba(0,0,0,.25)
  );
}

.svcHero .wrap{
  position:relative;
  z-index:2;
  color:#fff;
}

.svcHero__content{
  padding: 80px 0 100px;
}

.svcHero h1{
  font-size: 44px;
  font-weight: 900;
}

.svcHero p{
  margin-top: 10px;
  font-size: 16px;
}

.heroNav{
  position:absolute;
  left:0;
  right:0;
  bottom:20px;
  display:flex;
  justify-content:space-between;
  padding:0 40px;
  z-index:3;
}

.heroNav__btn{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
  border-radius:18px;
  text-decoration:none;
  color:#fff;

  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  border:1px solid rgba(255,255,255,.35);
  transition:.3s ease;
}

.heroNav__btn:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.28);
}

.heroNav__chev{
  font-size:28px;
  font-weight:900;
}

.heroNav__kicker{
  font-size:11px;
  text-transform:uppercase;
  opacity:.7;
}

.heroNav__title{
  font-weight:800;
  font-size:14px;
}
/* ==== Banner / Hero image  ==== */
.consumablesHero{
  aspect-ratio: 16 / 9;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.consumablesHero__img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* */
.consumablesHero__img--contain{
  object-fit: contain;
  background: #fff;
}

/* ==== Заголовок внутри баннера  ==== */
.consumablesHero__content{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.consumablesHero__box{
  max-width: 520px;
  padding: 0 0 0 60px;
}

.consumablesHero__title{
  margin: 0 0 8px;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  color: #111;
  line-height: 1.05;
}

.consumablesHero__sub{
  margin: 0 0 16px;
  font-size: 16px;
  color: #444;
}


.consumablesHero__btn:hover{
  background: #16b3aa;
  color: #fff;
}

/* == */
.sectionTitle{
  text-align: center;
  margin: 34px 0 12px;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sectionUnderline{
  width: 80px;
  height: 3px;
  background: #16b3aa;
  margin: 0 auto 26px;
  border-radius: 2px;
}

/* ==== Сетка карточек (иконки/плитки) ==== */
.consumablesGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.consumablesCard{
  display: block;
  text-decoration: none;
  border: 1px solid #e6e8ec;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: .2s ease;
}

.consumablesCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.consumablesCard__img{
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #f6f8fb;
}

.consumablesCard__name{
  padding: 12px 10px 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #111;
  text-align: center;
}


@media (max-width: 980px){
  .consumablesGrid{ grid-template-columns: repeat(3, 1fr); }
  .consumablesHero__box{ padding-left: 24px; }
}

@media (max-width: 640px){
  .consumablesGrid{ grid-template-columns: repeat(2, 1fr); }
  .consumablesHero__img{ height: 320px; }
  .consumablesHero__title{ font-size: 32px; }
}
.exSlide__btn { position: relative; z-index: 9999; }
.exSlide__frame, .exSlide__topline { pointer-events: none; }

.ex_radio {display: none;}

.ex_box {position: relative; overflow: hidden;}

.ex__radio { display: none; }

.ex__box { position: relative; overflow: hidden; }

.ex__track {
  display: flex;
  width: 200%;
  transition: transform .5s ease;
}

.exSlide {
  width: 50%;
  display: flex;
  gap: 40px;
  align-items: center;
}


#ex1:checked ~ .ex__box .ex__track { transform: translateX(0%); }
#ex2:checked ~ .ex__box .ex__track { transform: translateX(-50%); }


.exArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 28px;
  z-index: 10;
  user-select: none;
}

.exPrev { left: 10px; }
.exNext { right: 10px; }


.exPrev1, .exNext1, .exPrev2, .exNext2 { display: none; }
#ex1:checked ~ .ex__box .exPrev1,
#ex1:checked ~ .ex__box .exNext1 { display: grid; }
#ex2:checked ~ .ex__box .exPrev2,
#ex2:checked ~ .ex__box .exNext2 { display: grid; }

/* ===== News page ===== */
/* ====== SPT News page ====== */
.sptNews { padding: 34px 0 70px; background: #fff; }

.sptNews__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 18px;
}

.sptNews__title{
  margin:0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: .02em;
}

.sptNews__sub{
  margin: 8px 0 0;
  opacity: .7;
  max-width: 760px;
}

/* grid */
.sptNews__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 1100px){
  .sptNews__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px){
  .sptNews__grid{ grid-template-columns: 1fr; }
  .sptNews__title{ font-size: 28px; }
}

/* card */
.sptCard{
  background:#fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
}

.sptCard__media{
  display:block;
  position:relative;
  aspect-ratio: 16 / 9;
  background:#f2f3f5;
  overflow:hidden;
}

.sptCard__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1);
  transition: transform .35s ease;
}

.sptCard:hover .sptCard__media img{ transform: scale(1.04); }

.sptCard__body{ padding: 14px 16px 16px; display:flex; flex-direction:column; height:100%; }

.sptCard__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  font-size:12px;
  margin-bottom: 10px;
}

.sptTag{
  background: rgba(26,125,107,.14);
  color:#1a7d6b;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.sptDate{ opacity:.75; }

.sptCard__title{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.25;
}

.sptCard__title a{
  color: inherit;
  text-decoration:none;
}
.sptCard__title a:hover{ text-decoration:underline; }

.sptCard__text{
  margin:0 0 14px;
  opacity:.82;
  font-size:13px;
  line-height:1.55;


  display:-webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow:hidden;
}

.sptCard__actions{ margin-top:auto; }

.sptBtn{
  display:inline-block;
  text-decoration:none;
  font-weight:700;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #1a7d6b;
  color:#1a7d6b;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.sptBtn:hover{
  background:#1a7d6b;
  color:#fff;
  transform: translateY(-1px);
}
/* ============================= */
/*        EXPO DETAIL PAGE      */
/* ============================= */

.expoDetail {
  padding: 60px 0 100px;
  background: #ffffff;
}

/* Кнопка назад */
.expoDetail__back {
  margin-bottom: 25px;
}

.expoDetail__back a {
  text-decoration: none;
  color: #1a7d6b;
  font-weight: 600;
  transition: 0.2s ease;
}

.expoDetail__back a:hover {
  opacity: 0.7;
}

/* Заголовок */
.expoDetail__title {
  font-size: 32px;
  margin: 0 0 10px;
  line-height: 1.25;
  max-width: 900px;
}

/* Линия под заголовком */
.expoDetail__header::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #1a7d6b;
  margin-top: 15px;
}

/* Мета */
.expoDetail__meta {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
  font-size: 14px;
  opacity: 0.8;
}

.expoTag {
  background: rgba(26,125,107,0.15);
  color: #1a7d6b;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.expoDate {
  color: #555;
}

/* Контент статьи */
.expoDetail__content {
  max-width: 820px;
  font-size: 16px;
  line-height: 1.55;
  color: #333;
  margin-bottom: 50px;
}

.expoDetail__content br + br {
  margin-bottom: 10px;
}

/* Заголовок фото */
.expoDetail__photosTitle {
  margin: 40px 0 20px;
  font-size: 18px;
  font-weight: 600;
}

/* Галерея */
.expoGallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.expoGallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s ease;
  cursor: pointer;
}

.expoGallery img:hover {
  transform: scale(1.03);
}

/* Адаптив */
@media (max-width: 992px) {
  .expoGallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .expoDetail__title {
    font-size: 24px;
  }

  .expoGallery {
    grid-template-columns: 1fr;
  }

  .expoGallery img {
    height: auto;
  }
}

/* ===== ОБОРУДОВАНИЕ ===== */

.equipPage {
  padding: 80px 0;
  background: #f8f9fb;
}

.page-title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.page-underline {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 60px;
}
/* =========================================
   SERVICES (/services) grid fix
*/
.equipPage .equipGrid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 26px !important;
  align-items: stretch;
}


@media (max-width: 1099px){
  .equipPage .equipGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px){
  .equipPage .equipGrid{
    grid-template-columns: 1fr !important;
  }
}

/* карточки занимают всю ширину колонки */
.equipPage .equipCard{
  width: 100% !important;
  max-width: none !important;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
}

/* картинка как на оборудовании */
.equipPage .equipCard__img{
  width: 100% !important;
  height: 210px;        /* можешь поменять */
  object-fit: cover;
  display: block;
}

/* сетка */
.equipPage .equipGrid{
  display:grid !important;
  gap:26px !important;
  align-items:stretch;
}

@media (min-width:1200px){
  .equipPage .equipGrid{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

/* 3 / 2 / 1 */
@media (max-width:1199px){
  .equipPage .equipGrid{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width:900px){
  .equipPage .equipGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width:640px){
  .equipPage .equipGrid{
    grid-template-columns: 1fr !important;
  }
}

/* карточка */
.equipPage .equipCard{
  display:flex;
  flex-direction:column;
  width:100%;
  text-decoration:none;
  color:inherit;

  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  overflow:hidden;

  box-shadow:0 10px 26px rgba(0,0,0,.06);
  transform:translateY(0);
  transition:.2s ease;
}

.equipPage .equipCard:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.10);
  border-color: rgba(21,184,165,.35);
}

/* картинка */
.equipPage .equipCard__img{
  width:100%;
  height:190px;
  display:block;
}

.equipPage .equipCard__name{
  padding:14px 16px 0;
  font-weight:900;
  font-size:14px;
  line-height:1.25;
  margin:0;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.equipPage .equipCard__line{
  width:74px;
  height:3px;
  background:#15b8a6;
  border-radius:999px;
  margin:12px 0 16px 16px;
}

.equipPage .equipGrid{
  display:grid !important;
  gap:26px !important;
  align-items:stretch;
}


@media (min-width:1200px){
  .equipPage .equipGrid{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

/* 3 / 2 / 1 */
@media (max-width:1199px){
  .equipPage .equipGrid{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width:900px){
  .equipPage .equipGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width:640px){
  .equipPage .equipGrid{
    grid-template-columns: 1fr !important;
  }
}

/* карточка */
.equipPage .equipCard{
  display:flex;
  flex-direction:column;
  width:100%;
  text-decoration:none;
  color:inherit;

  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  overflow:hidden;

  box-shadow:0 10px 26px rgba(0,0,0,.06);
  transform:translateY(0);
  transition:.2s ease;
}

.equipPage .equipCard:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.10);
  border-color: rgba(21,184,165,.35);
}


.equipPage .equipCard__img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}

.equipPage .equipCard__name{
  padding:14px 16px 0;
  font-weight:900;
  font-size:14px;
  line-height:1.25;
  margin:0;


  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.equipPage .equipCard__line{
  width:74px;
  height:3px;
  background:#15b8a6;
  border-radius:999px;
  margin:12px 0 16px 16px;
}

:root{
  --accent: #19b5ad;
  --accent2: #2fd6ce;
  --text: #101214;
  --muted: rgba(0,0,0,.62);
  --line: rgba(0,0,0,.08);
  --soft: #f7fbfb;
  --shadow: 0 14px 35px rgba(0,0,0,.06);
}

.topbar{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 999;
}


.topbar:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:2px;
  background: linear-gradient(90deg, transparent, rgba(25,181,173,.55), transparent);
  opacity:.55;
}

.topbar__inner{
  min-height: 46px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 16px;
}

.topbar__left{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}


.topbar__item{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.7);
  transition: .25s ease;
  line-height: 1;
}


.topbar__link{
  text-decoration: none;
}

.topbar__item:hover{
  color: var(--text);
  border-color: rgba(25,181,173,.30);
  box-shadow: 0 10px 25px rgba(25,181,173,.08);
  transform: translateY(-1px);
}

.topbar__item img{
  width: 15px;
  height: 15px;
  display: inline-block;
  object-fit: contain;
  opacity: .92;
  filter: none;
}


.topbar__drop{
  position: relative;
}

.topbar__trigger{
  cursor: pointer;
  background: transparent;
  outline: none;
  border: none;
  font: inherit;
  color: inherit;
}

.topbar__chev{
  font-size: 11px;
  opacity: .65;
  transition: transform .25s ease;
}

.topbar__drop:hover .topbar__chev{
  transform: rotate(180deg);
}


.topbar__menu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 290px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .25s ease;
}

.topbar__drop:hover .topbar__menu{
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.repItem{
padding: 10px 10px;
border-radius: 12px;
transition: .2s ease;
}

.repItem+ .repItem{
margin-top: 6px;
}

.repItem:hover{
background: rgba(25,181,173,.06);
}

.repLink{
text-decoration: none;
color: var(--text);
}

.repItem b{
color: var(--text);
}

.repItem div{
color: rgba(0,0,0,.62);
font-size: 12px;
margin-top: 3px;
}

.topbar__right{
display:inline-flex;
gap:8px;
align-items:center;
}

.lang{
font-size: 12px;
letter-spacing: .8px;
text-transform: uppercase;
color: rgba(0,0,0,.55);
text-decoration:none;
padding: 6px 10px;
border-radius: 999px;
border: 1px solid  rgba(0,0,0,.08);
background: rgba(255,255,255,.7);
transition: .25s ease;
}

.lang:hover{
color: var(--text);
border-color: rgba(25,181,173,.30);
box-shadow: 0 10px 25px rgba(25,181,173,.08);
transform: translateY(-1px):
}

.lang--active{
  color: #062126;
  background: linear-gradient(90deg, rgba(25,181,173,.95), rgba(47,214,206,.95));
  border-color: transparent;
}

:root{
  --accent: #19b5ad;
  --accent2: #2fd6ce;
  --text: #101214;
  --muted: rgba(0,0,0,.62);
  --line: rgba(0,0,0,.08);
  --soft: #f7fbfb;
  --shadow: 0 16px 40px rgba(0,0,0,.06);
}

.footer{
  margin-top: 90px;
  background: #ffffff;
  border-top: 1px solid rgba(25,181,173,.22);
  position: relative;
}


.footer::before{
  content:"";
  position:absolute;
  left:0; right:0; top:-1px;
  height:2px;
  background: linear-gradient(90deg, transparent, rgba(25,181,173,.55), transparent);
  opacity:.75;
}

.footer__inner{
  padding: 60px 0 44px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.footer__logo{
  width: 190px;
  max-width: 100%;
  margin-bottom: 12px;
}

.footer__desc{
  color: rgba(0,0,0,.58);
  line-height: 1.7;
  font-size: 14px;
  max-width: 340px;
}

.footer__title{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer__title:after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, rgba(25,181,173,.95), rgba(47,214,206,0));
}

.footer__col a{
  display: block;
  margin: 0 0 11px;
  color: rgba(0,0,0,.60);
  text-decoration: none;
  transition: .22s ease;
}


.footer__col a:hover{
  color: var(--accent);
  transform: translateX(4px);
}

.footer__contacts{
  background: linear-gradient(180deg, #ffffff, #fbfefe);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 18px;
  padding: 18px 18px 14px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.footer__contacts::before{
  content:"";
  position:absolute;
  top:-70px;
  right:-70px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(25,181,173,.12) 0%, transparent 70%);
  pointer-events:none;
}

.footer__contact{
  margin-bottom: 14px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.footer__label{
  display:block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: rgba(0,0,0,.46);
  margin-bottom: 6px;
}

.footer__contacts a{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px dashed rgba(25,181,173,.55);
  transition: .22s ease;
}

.footer__contacts a:hover{
  color: var(--accent);
  border-color: rgba(25,181,173,.95);
}

.footer__text{
  color: rgba(0,0,0,.60);
}

.footer__bottom{
  border-top: 1px solid rgba(0,0,0,.08);
  background: var(--soft);
}

.footer__bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 16px 0;
  gap: 16px;
  font-size: 13px;
  color: rgba(0,0,0,.58);
}

.footer__small{
  color: rgba(0,0,0,.42);
}

@media (max-width: 1000px){
  .footer__inner{
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}

@media (max-width: 600px){
  .footer__inner{
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 50px 0 36px;
  }

  .footer__bottom-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.footer{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f4fbfb 0%, #ffffff 75%);
}

.footer::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(25,181,173,.08), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(25,181,173,.06), transparent 35%),
    radial-gradient(circle at 70% 85%, rgba(25,181,173,.05), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.footer__inner,
.footer__bottom{
  position: relative;
  z-index: 2;
}

.topbar__item img{
  width: 16px !important;
  height: 16px !important;
  display: inline-block !important;
  vertical-align: middle;
  object-fit: contain;
  opacity: 1 !important;
  filter: none !important;
}

.topbar__icon{
width: 16px;
height: 16px;
margin-right: 6px;
color: #19b5ad;
flex-shrink: 0;
}

.topbar__item{
display: inline-flex;
align-items: center;
gap: 6px;
}

/* адаптив под телефоны */
.uploadBox{
  display:flex;
  justify-content:center;
  align-items:center;
  border:2px dashed #dcdcdc;
  border-radius:12px;
  padding:18px;
  cursor:pointer;
  background:#fafafa;
  text-align:center;
}

.uploadBox input[type="file"]{
  display:none;
}

.fileList{
  margin-top:10px;
}

.fileItem{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:8px 10px;
  background:#f3f3f3;
  border-radius:8px;
  margin-bottom:6px;
  font-size:14px;
}

.fileLeft{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}

.fileIcon{
  flex-shrink:0;
}

.fileName{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:260px;
}

.fileRemove{
  border:none;
  background:transparent;
  cursor:pointer;
  font-size:18px;
  color:#888;
}

.fileRemove:hover{
  color:#d00;
}

.uploadProgress{
  width:100%;
  height:6px;
  background:#eee;
  border-radius:5px;
  margin-top:10px;
  overflow:hidden;
}

#mainUploadBar{
  width:0%;
  height:100%;
  background:#31cfc9;
  transition:width .3s;
}

.fileIcon{
width:22px;
height:22px;
flex-shrink:0;
}

.fileIcon img{
width:100%;
height:100%;
object-fit:contain;
}

@media (max-width:980px){
  .nav{
    display:flex !important;
    flex-direction:column !important;
    flex-wrap:nowrap !important;
    align-items:stretch !important;
    justify-content:flex-start !important;
  }

  .nav > a,
  .nav__drop,
  .nav__drop > a,
  .nav__submenu,
  .nav__submenu a{
    width:100% !important;
    max-width:100% !important;
  }

  .nav > a,
  .nav__drop > a{
    display:block !important;
  }

  .nav__submenu{
    display:block !important;
    position:static !important;
  }
}

.uzPage {
  padding: 50px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.uzWrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.uzPage h1 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #17324d;
  text-align: center;
}

.uzLeadText {
  max-width: 850px;
  margin: 0 auto 35px;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: #425466;
}

.uzContactCard {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 45px;
}

.uzContactCard h3,
.uzServicesBlock h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #17324d;
}

.uzContactCard p {
  margin: 10px 0;
  font-size: 17px;
  color: #34495e;
}

.uzServicesBlock {
  margin-top: 20px;
}

.uzServicesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.uzServiceCard {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.uzServiceCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.uzServiceImage img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.uzServiceContent {
  padding: 22px;
}

.uzServiceContent h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #17324d;
}

.uzServiceContent p {
  font-size: 16px;
  line-height: 1.6;
  color: #52606d;
  margin: 0;
}

@media (max-width: 768px) {
  .uzPage h1 {
    font-size: 30px;
  }

  .uzLeadText {
    font-size: 16px;
  }

  .uzServiceImage img {
    height: 190px;
  }
}
