  
    
      
    
    
      Главная
      ЭТЛ
      Проектирование
      Электромонтаж
      Контакты
    
  



  
  
    ИП Бахтерев — ЭТЛ, проектирование, монтаж до 1 кВ
    Профессионально. Официально. Надежно. Лицензия Ростехнадзора, официальные протоколы, сроки и гарантия качества.
  

  
  
    Электротехническая лаборатория (ЭТЛ)
    
      
        Измерение сопротивления изоляции
        Проверка состояния электрических сетей и оборудования.
      
      
        Проверка контура «фаза-ноль»
        Контроль правильности подключения.
      
      
        Испытание автоматических выключателей до 1 кВ
        Обеспечение безопасности электроустановок.
      
      
        Комплексная услуга
        Проверка → дефектная ведомость → устранение дефектов силами нашей организации.
      
    
  

  
  
    Проектирование электрических и слаботочных сетей
    
      
        Консультация и осмотр объекта
      
      
        Формирование технического задания
      
      
        Согласование решений
      
      
        Передача документации
        В электронном и бумажном виде (по запросу).
      
    
  

  
  
    Электромонтажные работы
    
      Монтаж наружной подсветки
      Установка и подключение электрических щитов
      Прокладка кабельных линий и трасс
      Монтаж розеток, выключателей, освещения
      Диагностика и мелкие ремонтные работы
    
  

  
  
    Контакты
    Телефон: +7 (923) 391-00-57
    Email: pbahterev@gmail.com
    Telegram: @ipbahterev

    
      
        
        
        
          — Выберите услугу —
          ЭТЛ
          Проектирование
          Электромонтаж
          Другое
        
        
        
        Отправить заявку
        
      
    
  




  ☎
  ✉
  📨




:root{
  --bg:#e6eae5;
  --header:#3b4a3f;
  --nav:#6b7a6b;
  --accent:#7fa37f;
  --accent-dark:#567456;
  --card:#fff;
  --danger:#c53030;
}
*{box-sizing:border-box}
body{margin:0;font-family:'Inter',Arial,Helvetica,sans-serif;background:var(--bg);color:#111;-webkit-font-smoothing:antialiased}
header {
  width: 100vw; /* растягиваем шапку на всю ширину окна */
  box-sizing: border-box;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;      /* растягиваем контент внутри шапки */
  max-width: 1200px; /* ограничиваем ширину контента */
  margin: 0 auto;   /* центрируем */
  padding: 16px 20px;
  gap: 16px;
}

.logo-wrap {
  flex: 0 0 auto;  /* убираем 50vw */
  width: auto;
  display: flex;
  align-items: center;
}

.site-logo {
  max-width: 250px;  /* фиксированная ширина для десктопа */
  height: auto;
  border-radius: 8px;
  display: block;
  object-fit: contain;
  transition: .18s;
  cursor: pointer;
}
.site-logo:hover{transform:translateY(-2px) scale(1.03);box-shadow:0 8px 20px rgba(0,0,0,0.2);}
nav{display:flex;align-items:center;gap:8px;flex:1 1 auto;justify-content:flex-end;flex-wrap:wrap}
nav button{background:var(--nav);color:#fff;border:none;padding:10px 14px;border-radius:8px;cursor:pointer;font-weight:600;transition:.2s;font-size:15px}
nav button:hover{background:#9bb49b;transform:translateY(-2px)}
main{max-width:1200px;margin:26px auto;padding:0 18px 60px}
section{display:none;padding:18px 0}
section.active{display:block}
h1{font-size:26px;margin:0 0 14px;color:#0b2a1e;font-weight:700;text-align:center}
h2{font-size:22px;margin:8px 0 12px;color:#0b2a1e;font-weight:600;text-align:left}
h3{font-size:18px;margin:6px 0 10px;color:#0b2a1e;font-weight:500}
.grid{display:grid;gap:18px}
.grid-2{grid-template-columns:1fr 1fr}
.card{background:var(--card);padding:18px;border-radius:12px;box-shadow:0 6px 18px rgba(0,0,0,0.08);transition:transform .25s, box-shadow .25s;}
.card:hover{transform:translateY(-6px) scale(1.02);box-shadow:0 14px 28px rgba(0,0,0,0.18);}
.btn{padding:10px 14px;border-radius:10px;border:none;cursor:pointer;font-weight:700;font-size:14px}
.btn-primary{background:var(--accent);color:#fff}
.btn-primary:hover{background:var(--accent-dark)}
.btn-outline{background:#fff;border:2px solid var(--accent);color:var(--accent)}
.btn-outline:hover{background:var(--accent);color:#fff}
.advantages{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.adv{background:#fff;padding:10px;border-radius:10px;display:flex;align-items:center;gap:10px;box-shadow:0 4px 12px rgba(0,0,0,0.06)}
.adv img{width:28px;height:28px}
.placeholder{color:var(--danger);font-weight:800}
.form-card{max-width:720px;margin-top:14px}
.form-card input,.form-card select,.form-card textarea{width:100%;padding:10px;border-radius:8px;border:1px solid #d0d6ce;margin:8px 0;font-size:14px}
footer{font-size:13px;line-height:1.45;text-align:center;padding:14px}

/* Floating call button */
.call-float{position:fixed;right:18px;bottom:18px;z-index:999;display:flex;flex-direction:column;gap:8px}
.call-btn{width:60px;height:60px;border-radius:50%;background:var(--accent);color:#fff;border:none;box-shadow:0 8px 24px rgba(0,0,0,0.25);display:flex;align-items:center;justify-content:center;font-weight:700;cursor:pointer;transition:.2s;}
.call-btn:hover{background:var(--accent-dark);transform:translateY(-3px);}
.call-label{background:#fff;padding:8px 12px;border-radius:12px;color:#111;box-shadow:0 6px 18px rgba(0,0,0,0.12);font-weight:700;text-align:center}

/* small screens */
@media(max-width:900px){.grid-2{grid-template-columns:1fr}.site-logo{max-width:46vw;max-height:140px}}
@media(max-width:480px){
  html, body{margin:0;padding:0;width:100%;overflow-x:hidden;}
  header{padding:0;width:100%;}
  .header-row{flex-direction:column;flex-wrap:nowrap;gap:0;width:100%;}
  .logo-wrap{width:100%;flex:none;justify-content:center;padding:12px 0;}
  .site-logo{width:100%;max-width:100%;max-height:120px;border-radius:0;}
  nav{width:100%;justify-content:center;padding:8px;gap:6px;}
  nav button{flex:1 1 48%;}
  main{margin-top:16px;padding:0 12px;}
  .card{padding:16px;}
  h1{font-size:24px;}
  h2{font-size:20px;}
  h3{font-size:16px;}
}
ul, ol{margin-left:18px}




function showSection(id){
  document.querySelectorAll('main section').forEach(s=>s.classList.remove('active'));
  const el = document.getElementById(id);
  if(el) el.classList.add('active');
  window.scrollTo({top:0,behavior:'smooth'});
}

/* MENU SCROLL */
document.querySelectorAll('nav button[data-target]').forEach(btn => {
  btn.addEventListener('click', () => {
    const targetId = btn.getAttribute('data-target');
    const targetEl = document.getElementById(targetId);
    if(targetEl){
      targetEl.scrollIntoView({behavior: 'smooth'});
    }
  });
});

/* FLOATING CONTACTS */
function openContact(type){
  if(type === 'tel'){
    window.location.href = 'tel:+79233910057';
  } else if(type === 'mail'){
    window.location.href = 'mailto:pbahterev@gmail.com';
  } else if(type === 'tg'){
    window.open('https://t.me/ipbahterev', '_blank');
  }
}

/* FORM */
document.getElementById('leadForm').addEventListener('submit', async function(e){
  e.preventDefault();
  const statusEl = document.getElementById('formStatus');
  statusEl.textContent = '';
  const data = {
    name: document.getElementById('f_name').value.trim(),
    phone: document.getElementById('f_phone').value.trim(),
    service: document.getElementById('f_service').value,
    address: document.getElementById('f_address').value.trim(),
    comment: document.getElementById('f_comment').value.trim(),
    site: window.location.hostname
  };
  if(!data.name || !data.phone || !data.service || !data.address){
    statusEl.style.color = 'var(--danger)';
    statusEl.textContent = 'Пожалуйста, заполните обязательные поля';
    return;
  }
  const subject = encodeURIComponent(`Заявка: ${data.service} — ${data.name}`);
  let body = `Имя: ${data.name}\nТелефон: ${data.phone}\nУслуга: ${data.service}\nАдрес: ${data.address}\nКомментарий: ${data.comment}\n\n(Отправлено с сайта ${window.location.hostname})`;
  window.location.href = `mailto:pbahterev@gmail.com?subject=${subject}&body=${encodeURIComponent(body)}`;
});

