:root{
  --bg:#0b0f14;
  --panel:#101826;
  --panel2:#0f141f;
  --text:#eaf1ff;
  --muted:rgba(234,241,255,.72);
  --line:rgba(234,241,255,.12);
  --accent:#6be4ff;
  --accent2:#a6ff9c;
  --shadow: 0 18px 55px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
  linear-gradient(to right,
    rgba(5, 8, 12, 0.6) 0%,
    rgba(5, 8, 12, 0.959) 25%,
    rgba(5,8,12,0.959) 50%,
    rgba(5,8,12,0.959) 75%,
    rgba(5, 8, 12, 0.6) 100%
  ),
  url("img/blank.jpg");
  background-size: 110%;
  background-position: top;
  background-attachment: scroll;
}







a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{width:min(1100px, 92vw); margin:0 auto}
.center{display:flex; justify-content:center; margin-top:18px}

.header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.10);
  border-bottom:1px solid var(--line);
}
.header__row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{display:flex; align-items:center; gap:12px}
.brand__logo{width:44px; height:44px; object-fit:contain; border-radius:10px; background:rgba(255,255,255,.05); padding:6px}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__sub{font-size:13px; color:var(--muted)}

.nav{display:flex; gap:14px; align-items:center}
.nav a{font-size:14px; color:var(--muted)}
.nav a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(107,228,255,.18), rgba(166,255,156,.14));
  border:1px solid rgba(107,228,255,.35);
  box-shadow: var(--shadow);
  font-weight:700;
}
.btn:hover{transform: translateY(-1px)}
.btn--ghost{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--small{padding:10px 12px; border-radius:12px}

.hero{padding:46px 0 22px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:stretch;
}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}
h1{
  margin:14px 0 10px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height:1.08;
  letter-spacing:-.6px;
}
.h1{margin:0; font-size: clamp(28px, 3.4vw, 40px); line-height:1.1}
.lead{
  margin:0;
  font-size: 16px;
  color:var(--muted);
  line-height:1.6;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.hero__mini{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:22px;
}
.mini-card{
  padding:12px;
  border-radius:16px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
}
.mini-card__title{font-weight:800; font-size:14px}
.mini-card__text{margin-top:6px; color:var(--muted); font-size:13px; line-height:1.35}

.hero__photo{
  height:100%;
  width:100%;
  min-height: 100%;
  border-radius:24px;
  background-size:cover;
  background-position:center;
  border:1px solid var(--line);
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.hero__photoOverlay{
  position:absolute; inset:auto 0 0 0;
  padding:18px;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
}
.hero__photoTitle{font-weight:900}
.hero__photoText{color:var(--muted); margin-top:4px; font-size:14px}

.section{padding:48px 0}
.section--alt{background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 8px; font-size:28px}
.muted{color:var(--muted)}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.card{
  padding:18px;
  border-radius:22px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
}
.card h3{margin:0 0 10px; font-size:18px}
.list{margin:0; padding-left:18px; color:var(--muted); line-height:1.6}
.chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
.chip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  font-size:13px;
  color:var(--muted);
}

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.service{
  padding:16px;
  border-radius:20px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.service h3{margin:0 0 8px}
.service p{margin:0; color:var(--muted); line-height:1.55}

.equipment{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:stretch;
}
.equipment__card{
  border-radius:24px;
  background: linear-gradient(135deg, rgba(107,228,255,.12), rgba(166,255,156,.10));
  border:1px solid rgba(107,228,255,.25);
  padding:18px;
  box-shadow: var(--shadow);
}
.equipment__label{font-weight:900; font-size:20px}
.equipment__note{margin-top:6px; color:var(--muted)}
.equipment__divider{height:1px; background:rgba(234,241,255,.18); margin:14px 0}

.gallery{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:10px;
}
.gallery--big{grid-template-columns: repeat(4, 1fr)}
.gitem{
  border:1px solid var(--line);
  border-radius:18px;
  background-size:cover;
  background-position:center;
  aspect-ratio: 1 / 1;
  cursor:pointer;
  transition: transform .12s ease;
}
.gitem:hover{transform: translateY(-2px)}

.kv{margin-top:10px}
.kv__row{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}
.kv__k{color:var(--muted)}
.kv__v a{color:var(--text); text-decoration:underline; text-underline-offset:3px}

.footer{
  padding:18px 0 26px;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.2);
}
.footer__row{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}

.lightbox{
  position:fixed; inset:0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.72);
  z-index:50;
  padding:18px;
}
.lightbox.is-open{display:grid}
.lightbox__img{
  max-width:min(1050px, 92vw);
  max-height: 86vh;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.04);
}
.lightbox__close{
  position:fixed;
  top:14px; right:18px;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-size:26px;
  cursor:pointer;
}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .hero__photo{min-height: 280px}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .gallery{grid-template-columns: repeat(3, 1fr)}
  .gallery--big{grid-template-columns: repeat(2, 1fr)}
  .grid-2{grid-template-columns:1fr}
  .equipment{grid-template-columns:1fr}
  .hero__mini{grid-template-columns:1fr}
  .nav{display:none}
}
.equipment__photos{
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.equipment__photos img{
  width: 100%;
  max-width: 140px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
  transition: transform .3s ease;
}

.equipment__photos img:hover{
  transform: scale(1.05);
}
.service__list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(234,241,255,.78);
  font-size: 13px;
  line-height: 1.5;
}

.service__list li{
  margin: 6px 0;
}

.service__list li::marker{
  color: rgba(107,228,255,.95);
}
.service__list{
  margin-top: 12px;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(234,241,255,.8);
}

.service__list{
  list-style: none;
  padding-left: 0;
}

.service__list li{
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.service__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
}
.service__img{
  width: 100%;
  height: 180px;         /* можно 150 или 160 */
  object-fit: cover;
  border-radius: 14px;
  margin: 10px 0 12px;
  display: block;
}
.service__list{
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}

.service__list li{
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(234,241,255,.85);
}

.service__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
}
.equipment__img{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 768px){
  .equipment__img img:nth-child(3){
    display: none;
  }
}
@media (max-width: 768px){
  .equipment__photos img:nth-child(3){
    display: none;
  }
}
/* HERO заголовок — как в логотипе */
.hero h1{
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;

  /* запасной цвет если градиент не поддерживается */
  color: #dff6ff;

  /* градиент */
  background: linear-gradient(90deg, #ffffff 0%, #64dfff 35%, #33c7ff 60%, #a6ff9c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* мягкое свечение */
  text-shadow:
    0 0 22px rgba(100,223,255,0.18),
    0 0 42px rgba(51,199,255,0.12);
}
.header__phone{
  margin-left: 25px;
  font-size: 25px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* трубка отдельно */
.phone-icon{
  color: #ff3b30;  /* красная */
}

/* номер с градиентом */
.phone-number{
  background: linear-gradient(90deg,#33c7ff,#64dfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}
.call-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.call-modal.active{
  display: flex;
}

.call-modal__box{
  background: #0f141f;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.call-modal__title{
  font-size: 18px;
  margin-bottom: 15px;
  color: rgba(234,241,255,0.7);
}

.call-modal__number{
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(90deg,#33c7ff,#64dfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.call-modal__close{
  padding: 10px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}
.header__actions{
  display:flex;
  align-items:center;
  gap:14px;
  white-space: nowrap;
}
.call-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.call-modal.is-open{ display:block; }

.call-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
}

.call-modal__box{
  position: relative;
  width: min(520px, 92vw);
  margin: 14vh auto 0;
  padding: 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(234,241,255,.18);
  background: rgba(16,24,38,.92);
  box-shadow: 0 25px 80px rgba(0,0,0,.55);
}

.call-modal__close{
  position:absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(234,241,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.call-modal__title{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 10px;
}

.call-modal__number{
  font-weight: 1000;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 1px;
  margin: 6px 0 10px;
  background: linear-gradient(90deg,#33c7ff,#64dfff,#a6ff9c);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color: transparent;
}

.call-modal__hint{
  font-size: 13px;
  line-height: 1.45;
}
.call-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.call-modal.is-open{ display:block; }

.call-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(7px);
}

.call-modal__box{
  position: relative;
  width: min(560px, 92vw);
  margin: 14vh auto 0;
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(234,241,255,.18);
  background: rgba(16,24,38,.92);
  box-shadow: 0 25px 80px rgba(0,0,0,.55);
}

.call-modal__close{
  position:absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(234,241,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.call-modal__title{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 12px;
}

.call-modal__number{
  display:flex;
  align-items:center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(107,228,255,.22);
  background: rgba(255,255,255,.04);
}

.call-modal__number .phone-icon{
  font-size: 26px;
  color: #ff3b30;
}

.call-modal__number .phone-number{
  font-weight: 1000;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: 1px;
  background: linear-gradient(90deg,#33c7ff,#64dfff,#a6ff9c);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color: transparent;
}

.call-modal__hint{
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
}

.call-modal__actions{
  display:flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.email-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.email-modal.is-open{ display:block; }

.email-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(7px);
}

.email-modal__box{
  position: relative;
  width: min(520px, 92vw);
  margin: 16vh auto 0;
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(234,241,255,.18);
  background: rgba(16,24,38,.95);
  box-shadow: 0 25px 80px rgba(0,0,0,.55);
}

.email-modal__close{
  position:absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(234,241,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.email-modal__title{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 14px;
}

.email-modal__address{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(107,228,255,.25);
  background: rgba(255,255,255,.04);
  cursor: pointer;
}

.email-text{
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(90deg,#33c7ff,#64dfff,#a6ff9c);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color: transparent;
}

.email-modal__actions{
  display:flex;
  gap:10px;
  margin-top:16px;
}
.lightbox__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.5);
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 60;
}

.lightbox__prev{ left: 20px; }
.lightbox__next{ right: 20px; }

.lightbox__nav:hover{
  background: rgba(255,255,255,.1);
}
.lightbox__nav{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.55);
  color: white;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  z-index: 70;
}

.lightbox__prev{
  left: 24px;
}

.lightbox__next{
  right: 24px;
}

.lightbox__nav:hover{
  background: rgba(255,255,255,.15);

}
.header__row {
  flex-wrap: wrap;
}

.header__actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.header__phone {
  white-space: nowrap;
  font-size: 14px;
}
@media (max-width: 768px) {
  .header__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .header__actions {
    width: 100%;
    justify-content: space-between;
  }

  .header__phone {
    font-size: 13px;
  }
}
