/* =========================================================
   EcoTeploDim — CLEAN CSS
   PART 1: Base / Layout / Topbar / Buttons / Forms
   ========================================================= */

/* ===== ROOT ===== */
:root{
  --green:#2E7D32;
  --green-500:#24A148;
  --teal:#29B6F6;
  --yellow:#FFD600;

  --bg:#ffffff;
  --text:#0f1114;
  --muted:#6b717a;
  --line:#e7ecef;

  --radius:18px;
  --r-lg:22px;

  --shadow-soft:0 10px 24px rgba(0,0,0,.10);
  --shadow:0 18px 48px rgba(0,0,0,.18);

  --topbar-h:64px;
  --page-max:1120px;
  --gutter:16px;
  --btn-h:48px;
}

/* ===== RESET ===== */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  margin:0;
  padding:0;
  scroll-padding-top:var(--topbar-h);
}

body{
  margin:0;
  padding:0;
  font-family:Manrope,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:16px;
  line-height:1.55;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}

/* Не даємо випадково роздувати ширину сторінки */
img,
video{
  display:block;
  max-width:100%;
  height:auto;
}

a{
  color:inherit;
}

/* ===== BASIC LAYOUT ===== */


section{
  position:relative;
  padding:80px 0;
}

section.alt{
  background:linear-gradient(180deg,#fbfefd 0%, #f3faf6 100%);
}

header,
section,
footer{
  position:relative;
  z-index:1;
}

[id]{
  scroll-margin-top:var(--topbar-h);
}

.container{
  width:100%;
  max-width:var(--page-max);
  margin-inline:auto;
  padding-inline:var(--gutter);
}

/* ===== TYPOGRAPHY HELPERS ===== */
.kicker{
  display:inline-block;
  font-weight:800;
  color:var(--green-500);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.section__title{
  margin:0 0 12px;
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.1;
  font-weight:800;
}

.section__lead{
  margin:0 0 24px;
  color:var(--muted);
  font-size:18px;
}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:var(--btn-h);
  padding:.75rem 1.1rem;
  border-radius:14px;
  border:none;
  text-decoration:none;
  font-weight:800;
  line-height:1;
  user-select:none;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn--primary{
  background:linear-gradient(180deg, #43A047, #2E7D32);
  color:#fff;
  box-shadow:0 14px 30px rgba(46,125,50,.35);
}

.btn--primary:hover{
  transform:translateY(-1px);
}

.btn--ghost{
  background:#fff;
  color:var(--green);
  border:2px solid var(--green);
}

.btn--ghost:hover{
  background:var(--green);
  color:#fff;
}

.btn--xl{
  min-height:54px;
  padding:16px 22px;
  font-size:18px;
  border-radius:16px;
}

/* ===== FORM CONTROLS ===== */
.field{
  display:grid;
  gap:6px;
  margin-bottom:12px;
}

label{
  display:block;
  margin:.5rem 0 .25rem;
  font-weight:800;
}

input,
select,
textarea{
  width:100%;
  padding:.75rem .9rem;
  border:1px solid var(--line);
  border-radius:12px;
  font:inherit;
  font-size:16px;
  line-height:1.35;
  color:var(--text);
  background:#fff;
}

input:focus,
select:focus,
textarea:focus{
  outline:none;
  border-color:#43A047;
  box-shadow:0 0 0 4px rgba(67,160,71,.12);
}

.form__actions button{
  min-height:var(--btn-h);
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.form-note{
  position:static;
  display:block;
  grid-column:1 / -1;
  min-width:0;
  max-width:100%;
  margin:12px 0 0;
  padding:12px 14px;
  border:1px solid var(--line);
  border-left:6px solid var(--green);
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow-soft);
  z-index:1;
}

.form-note strong{
  font-weight:800;
}

.form-note--err{
  border-left-color:#c62828;
}

.form-note--warn{
  border-left-color:#fbc02d;
}

.btn.is-sent{
  pointer-events:none;
  opacity:.75;
}

/* ===== TOPBAR ===== */
.topbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:10000;
  background:rgba(255,255,255,.96);
  backdrop-filter:saturate(140%) blur(8px);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.topbar__inner{
  min-height:var(--topbar-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
}

.topbar__brand{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.topbar__phone{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  white-space:nowrap;
  color:var(--green-500);
  font-weight:800;
  text-decoration:none;
  font-size:15px;
  line-height:1;
}

body{
  padding-top:var(--topbar-h);
  padding-bottom:calc(70px + env(safe-area-inset-bottom));
}

/* ===== NAV ===== */
.nav{
  display:flex;
  align-items:center;
  gap:10px;
}

.nav a{
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  padding:8px 10px;
  border-radius:10px;
  white-space:nowrap;
}

.nav a:hover{
  background:#f1f5f9;
}

.nav a.is-active{
  background:#e8f5e9;
  color:var(--green);
}

.nav--main{
  flex:1 1 auto;
  justify-content:center;
}

/* ===== BURGER ===== */
.burger{
  display:none;
  width:32px;
  height:24px;
  flex-direction:column;
  justify-content:space-between;
  background:none;
  border:none;
  padding:0;
  margin-left:auto;
  cursor:pointer;
}

.burger span{
  display:block;
  width:100%;
  height:3px;
  background:#0a7616;
  border-radius:4px;
  transition:.25s ease;
}

.burger.active span:nth-child(1){
  transform:translateY(10px) rotate(45deg);
}

.burger.active span:nth-child(2){
  opacity:0;
}

.burger.active span:nth-child(3){
  transform:translateY(-10px) rotate(-45deg);
}

/* ===== MOBILE NAV ===== */
@media (max-width:768px){
  .burger{
    display:flex;
    z-index:110;
  }

  .topbar__phone{
    display:none;
  }

 

  .nav--main.nav--open{
    right:0;
  }


  .nav--main{
    position: fixed;
    top: 0;
    right: -100%;
    width: 78vw;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    padding: 72px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    box-shadow: -8px 0 24px rgba(0,0,0,.12);
    transition: right .3s ease;
    z-index: 100;
  }
   .nav--main.nav--open{
    right: 0;
  }

  .nav--main a{
    text-align: center;
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 12px;
  }

  .nav--main .btn{
    margin-top: 8px;
  }


  .topbar__inner{
    align-items:center;
  }
.menu-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(15,17,20,.28);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  z-index: 90;
}

.menu-backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}
}

/* ===== GENERIC RESPONSIVE ===== */
@media (max-width:900px){
  .section__title{
    font-size:30px;
  }
}

@media (max-width:640px){
  .container{
    max-width:620px;
  }

  .section__lead{
    font-size:16px;
  }

  .card,
  aside,
  form{
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width:480px){
  h1{
    font-size:1.9rem;
  }

  h2{
    font-size:1.4rem;
  }
}

@media (prefers-reduced-motion: reduce){
  *{
    animation:none !important;
    transition:none !important;
  }
}
/* =========================================================
   EcoTeploDim — CLEAN CSS
   PART 2: HERO
   ========================================================= */

/* ===== HERO BASE ===== */
.hero{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  min-height:calc(100svh - var(--topbar-h));
  display:flex;
  align-items:center;
}

/* якщо є відео на desktop */
.hero__video,
.hero > video.hero__video,
.hero > .hero__video,
.hero iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  border:0;
  border-radius:0;
  z-index:0;
  display:block;
}

/* оверлей */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.88) 38%,
      rgba(255,255,255,0.58) 62%,
      rgba(255,255,255,0.28) 100%
    );
}

/* увесь контент героя поверх оверлея */
.hero > *:not(video):not(iframe):not(.hero__video){
  position:relative;
  z-index:2;
}

/* ===== HERO GRID ===== */
.hero__grid{
  width:100%;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  align-items:center;
  gap:28px;
}

.hero__grid--lead{
  grid-template-columns:minmax(0, 1.05fr) minmax(360px, 420px);
  gap:28px;
  align-items:center;
  padding-top:24px;
  padding-bottom:24px;
}

/* ===== HERO CONTENT CARD ===== */
.hero__content{
  position:relative;
  z-index:3;
  max-width:520px;
  padding:24px 26px;
  border-radius:20px;
  background:rgba(255,255,255,0.88);
  box-shadow:0 14px 30px rgba(0,0,0,0.08);
}

.hero h1{
  margin:8px 0 12px;
  font:800 clamp(36px, 4vw, 56px)/1.05 Manrope, Inter, sans-serif;
  letter-spacing:-.015em;
  color:#111;
}

.hero__lead{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.6;
  color:#2f3944;
  max-width:54ch;
}

.hero p{
  color:var(--muted);
}

.accent{
  color:var(--green);
}

/* ===== HERO TRUST ===== */
.trust{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin-top:10px;
  margin-bottom:14px;
  color:#55616d;
  font-weight:600;
}

.trust .stars,
.stars{
  color:#f59e0b;
  font-size:16px;
  letter-spacing:1px;
}

.trust .sep{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#cfd8dc;
}

/* ===== HERO BULLETS ===== */
.hero__bullets{
  list-style:none;
  padding:0;
  margin:14px 0 18px;
  display:grid;
  gap:12px;
}

.hero__bullets li{
  position:relative;
  padding-left:30px;
  font-size:17px;
  line-height:1.45;
  font-weight:700;
  color:#1f252b;
}

.hero__bullets li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:20px;
  height:20px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(36,161,72,.12);
  color:var(--green);
  font-size:13px;
  font-weight:800;
}

/* ===== HERO PILLS ===== */
.pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.pill{
  padding:8px 12px;
  font-size:13px;
  border-radius:999px;
  background:rgba(255,255,255,0.9);
  border:1px solid rgba(0,0,0,0.05);
  box-shadow:0 6px 14px rgba(0,0,0,0.06);
}

/* якщо CTA у hero ще десь лишиться */
.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:6px;
}

/* ===== HERO LEAD CARD ===== */
.hero-lead{
  position:relative;
  z-index:3;
  width:100%;
  max-width:380px;
  margin-top:5px;
  padding:22px 20px;
  border-radius:24px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.7);
  box-shadow:0 30px 70px rgba(0,0,0,0.18);
}

.hero-lead__head h3{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.15;
}

.hero-lead__head p{
  margin:0 0 18px;
  font-size:14px;
  line-height:1.45;
  color:#6b717a;
}

.hero-lead .field{
  gap:6px;
  margin-bottom:14px;
}

.hero-lead label{
  font-size:14px;
  font-weight:800;
}

.hero-lead input{
  min-height:52px;
  padding:0 14px;
  font-size:15px;
  border-radius:12px;
  border:1px solid #dbe3e8;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.45);
}

.hero-lead .btn{
  width:100%;
  min-height:54px;
  font-weight:800;
  letter-spacing:.2px;
  transition:all .2s ease;
}

.hero-lead .btn:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 30px rgba(46,125,50,0.35);
}

.hero-lead .muted{
  margin:10px 0 0;
  font-size:13px;
  line-height:1.45;
  color:#7a848d;
}

.hero-lead__contact{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid #edf2f5;
  display:grid;
  gap:6px;
  text-align:center;
}

.hero-lead__phone{
  font-size:26px;
  line-height:1;
  font-weight:800;
  color:var(--green);
  text-decoration:none;
}

.hero-lead__contact span{
  font-size:14px;
  color:#606a74;
}

/* ===== HERO ART (якщо лишатимеш) ===== */
.hero__art{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  background:linear-gradient(180deg,#f6faf7,#eef4f1);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  width:min(560px,42vw);
  min-height:250px;
  display:grid;
  place-items:center;
}

.hero-art__img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  filter:contrast(1.02) saturate(1.05);
  transition:transform .4s ease, filter .4s ease;
}

.hero__art:hover .hero-art__img{
  transform:scale(1.05);
  filter:contrast(1.06) saturate(1.08);
}

.hero-art__badge{
  position:absolute;
  left:14px;
  bottom:14px;
  padding:8px 12px;
  font-size:14px;
  font-weight:800;
  color:#0f1114;
  background:rgba(255,255,255,.85);
  border:1px solid var(--line);
  border-radius:12px;
}

/* ===== HERO MOBILE ===== */
@media (max-width:900px){
  .hero{
    min-height:auto;
    background:url('../../images/hero-poster.jpg') center/cover no-repeat;
  }

  /* відео на мобілці вимикаємо */
  .hero__video,
  .hero > video.hero__video,
  .hero > .hero__video,
  .hero iframe{
    display:none !important;
  }

  .hero::after{
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.18) 0%,
        rgba(255,255,255,0.10) 100%
      );
  }

  .hero__grid,
  .hero__grid--lead{
    grid-template-columns:1fr;
    gap:18px;
    padding-top:18px;
    padding-bottom:20px;
  }

  .hero__content{
    max-width:100%;
    padding:14px;
    border-radius:18px;
    background:rgba(255,255,255,0.92);
    backdrop-filter:none;
  }

  .hero h1{
    font-size:28px;
    line-height:1.1;
  }

  .hero__lead{
    font-size:14px;
  }

  .hero__bullets li{
    font-size:14px;
  }

  .pill{
    font-size:12px;
    padding:6px 10px;
  }

  .hero-lead{
    max-width:100%;
    width:100%;
    margin-top:0;
    padding:16px;
    border-radius:16px;
  }

  .hero-lead input{
    min-height:48px;
  }

  .hero-lead .btn{
    min-height:50px;
  }

  .hero__art{
    width:100%;
    order:-1;
    margin-bottom:8px;
    min-height:220px;
  }

  .hero-art__badge{
    font-size:13px;
  }
}

@media (max-width:600px){
	.hero-lead{
    padding: 14px;
  }

  .hero-lead__head h3{
    font-size: 20px;
    margin-bottom: 6px;
  }

  .hero-lead__head p{
    font-size: 13px;
    margin-bottom: 12px;
  }

  .hero-lead .field{
    margin-bottom: 10px;
  }

  .hero-lead input{
    min-height: 46px;
  }
  .hero__cta{
    flex-direction:column;
    align-items:stretch;
  }

  .hero__cta .btn{
    width:100%;
  }

  .hero-lead__phone{
    font-size:22px;
  }
}
/* =========================================================
   EcoTeploDim — CLEAN CSS
   PART 3: Sticky CTA / Mobile helpers / Modal / Lightbox
   ========================================================= */

/* ===== STICKY CTA (mobile only) ===== */
.sticky-cta{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1150; /* нижче за .modal (1200+) */
  display:none;
  background:rgba(15,17,20,.98);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.08);
  backdrop-filter:saturate(140%) blur(6px);
  padding:10px 0 max(10px, env(safe-area-inset-bottom));
 box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
}

.sticky-cta__inner{
  max-width:var(--page-max);
  margin:0 auto;
  padding-inline:var(--gutter);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.sticky-cta .btn{
  flex:1;
  min-height:46px;
  text-align:center;
  font-size:14px;
  padding:10px 14px;
}

.sticky-cta .btn--ghost{
  border:2px solid var(--green);
  font-weight:700;
}

@media (max-width:900px){
  .sticky-cta{
    display:block;
  }
}

@media (min-width:901px){
  .sticky-cta{
    display:none !important;
  }
}

/* коли відкрито модал — ховаємо нижню панель */
.modal[aria-hidden="false"] ~ .sticky-cta{
  display:none !important;
}

/* запас під нижню мобільну панель */
@media (max-width:900px){
  body{
    padding-bottom:calc(92px + env(safe-area-inset-bottom));
  }
}

@media (min-width:901px){
  body{
    padding-bottom:0;
  }
}

/* ===== MOBILE CTA VARIANT (if separate class exists) ===== */
.mobile-cta{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding:12px 16px;
}

.mobile-cta a,
.mobile-cta button{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  flex:1;
  max-width:180px;
  text-align:center;
}

.mobile-cta .primary{
  flex:1.3;
}

.mobile-cta .secondary{
  flex:1;
}

/* ===== MODAL ===== */
.modal{
  position:fixed;
  inset:0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(15, 23, 20, 0.45);
  backdrop-filter: blur(4px);
}

.modal[aria-hidden="true"]{
  display:none;
}

.modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(15,17,20,.5);
  backdrop-filter:saturate(140%) blur(2px);
}

.modal__dialog{
  position: relative;
  width: min(100%, 520px);
  max-height: min(90vh, 760px);
  overflow: auto;
  margin: 0 auto;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.modal__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:16px 18px;
  border-bottom:1px solid var(--line);
}

.modal__head h3{
  margin:0;
  font-size:20px;
  font-weight:800;
}

.modal__close{
  border:0;
  background:transparent;
  color:#667085;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  transition:.2s ease;
}

.modal__close:hover{
  color:#000;
}

.modal__body{
  padding:16px 18px;
  overflow:auto;
}

.modal__body h4{
  margin:16px 0 6px;
  font-size:16px;
}

.modal__foot{
  display:flex;
  justify-content:flex-end;
  padding:14px 18px;
  border-top:1px solid var(--line);
}

/* modal statuses */
.modal__status{
  display:grid;
  gap:10px;
  justify-items:center;
  padding:22px 10px 20px;
  text-align:center;
  animation:fadeIn .18s ease;
}

.modal__status h4{
  margin:6px 0 4px;
  font-size:18px;
  font-weight:800;
}

.modal__status p{
  margin:0;
  color:var(--muted);
}

.modal__status .actions{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.status__icon{
  width:64px;
  height:64px;
  border-radius:50%;
  display:grid;
  place-items:center;
  box-shadow:var(--shadow-soft);
}

.status__icon svg{
  width:34px;
  height:34px;
}

.status--ok .status__icon{
  background:#eaf7ee;
  border:1px solid #cfeedd;
}

.status--ok .status__icon svg{
  fill:#2e7d32;
}

.status--err .status__icon{
  background:#fdecee;
  border:1px solid #f7c9cf;
}

.status--err .status__icon svg{
  fill:#c62828;
}

.status--load .status__icon{
  background:#eef4ff;
  border:1px solid #d6e4ff;
}

.spin{
  width:26px;
  height:26px;
  border-radius:50%;
  border:3px solid rgba(0,0,0,.12);
  border-top-color:var(--green);
  animation:spin 1s linear infinite;
}

@keyframes spin{
  to{ transform:rotate(360deg); }
}

@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(4px);
  }
  to{
    opacity:1;
    transform:none;
  }
}

@media (max-width:700px){
  .modal{
    padding:16px;
  }

  .modal__dialog{
    width:min(100%, 520px);
    max-height:min(88vh, 760px);
    margin:auto;
    border-radius:18px;
  }

  .modal__head h3{
    font-size:18px;
  }

  .modal .field{
    margin-bottom:10px;
  }
}

/* ===== LIGHTBOX ===== */
.lightbox{
  position:fixed;
  inset:0;
  z-index:1400;
  display:none;
  background:rgba(15,17,20,.85);
}

.lightbox[aria-hidden="false"]{
  display:grid;
  place-items:center;
}

.lb__img{
  max-width:min(92vw,1200px);
  max-height:80vh;
  border-radius:16px;
  box-shadow:var(--shadow);
}

.lb__cap{
  margin-top:10px;
  color:#fff;
  text-align:center;
  font-weight:700;
}

.lb__close{
  position:absolute;
  top:14px;
  right:16px;
  border:0;
  background:transparent;
  color:#fff;
  font-size:36px;
  cursor:pointer;
}

.lb__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.4);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

.lb__prev{
  left:16px;
}

.lb__next{
  right:16px;
}

.lb__nav:hover{
  background:rgba(255,255,255,.16);
}

/* ===== SMALL MOBILE REFINEMENTS ===== */
@media (max-width: 600px){
  .sticky-cta{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    display: flex;
    justify-content: center; /* центруємо блок */
    
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.75);
    z-index: 1000;
  }

.sticky-cta__inner{
  border-radius: 16px;
  padding: 6px;

  background: #111;
  box-shadow: 0 8px 25px rgba(0,0,0,.25);

  border: none; /* ❗ прибрати чорну рамку */
}

  .sticky-cta .btn{
    flex: 1;
    min-height: 44px;
    font-size: 14px;
    border-radius: 12px;
      transition: transform .1s ease, box-shadow .1s ease;

  }
  .sticky-cta .btn:active{
  transform: scale(0.96);
}
.sticky-cta .btn-outline{
  background: #fff;
  color: #111;
  font-weight: 600;
}

.sticky-cta .btn-primary{
  background: #3a8f3f;
   box-shadow: 0 4px 12px rgba(58,143,63,.35);
}
}
/* =========================================================
   EcoTeploDim — CLEAN CSS
   PART 4: Sections
   Counters / Advantages / Services / Gallery / Calculator /
   Reviews / Steps / FAQ / Compare / Contact / Footer
   ========================================================= */

/* ===== COUNTERS ===== */
.counters__grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.counter{
  padding:16px;
  text-align:center;
  border:1px solid var(--line);
  border-radius:16px;
  background:linear-gradient(180deg,#f6faf7,#eef4f1);
  box-shadow:var(--shadow-soft);
}

.counter .num{
  font:800 clamp(22px, 3.4vw, 36px)/1 Manrope, sans-serif;
  color:var(--green);
}

.counter .txt{
  opacity:.85;
}

/* ===== GENERIC GRIDS ===== */
.grid.cols-2{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}

.adv-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:18px;
}

/* ===== ADVANTAGES ===== */
/* ===== Advantages section final style ===== */
#advantages{
  position: relative;

  overflow: hidden;
   background:
    radial-gradient(circle at 50% 20%, rgba(67,160,71,.06), transparent 38%),
    linear-gradient(180deg,#f7faf8 0%, #eef3f0 100%);
}

#advantages::before{
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67,160,71,.12) 0%, rgba(67,160,71,0) 70%);
  pointer-events: none;
}

#advantages::after{
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,182,246,.08) 0%, rgba(41,182,246,0) 70%);
  pointer-events: none;
}

#advantages .container{
  position: relative;
  z-index: 1;
}

#advantages .section__title{
  margin-bottom: 14px;
}

#advantages .section__lead{
  max-width: 820px;
  margin-bottom: 30px;
  font-size: 17px;
  color: #6b717a;
}

/* grid */
#advantages .adv-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* cards */
#advantages .adv{
  position: relative;
  min-height: 168px;
  padding: 26px 24px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow:
    0 12px 26px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}

#advantages .adv::before{
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 35%, rgba(67,160,71,.18) 0 38%, transparent 39%),
    linear-gradient(135deg, rgba(41,182,246,.10), rgba(41,182,246,.03));
  opacity: .95;
}

#advantages .adv::after{
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 64px;
  height: 4px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg, #43A047, #7bc67e);
  opacity: .9;
}

#advantages .adv:hover{
  transform: translateY(-6px);
  box-shadow:
    0 18px 36px rgba(0,0,0,.10),
    inset 0 1px 0 rgba(255,255,255,.6);
  border-color: rgba(67,160,71,.18);
}

#advantages .adv h3{
  margin: 0 0 12px;
  padding-right: 52px;
  font-size: 18px;
  line-height: 1.42;
  font-weight: 800;
  color: #161a1f;
}

#advantages .adv p{
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #707780;
}

/* CTA button under cards */
#advantages .btn.btn--primary{
  min-width: 250px;
  min-height: 58px;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(46,125,50,.28);
}

#advantages .btn.btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(46,125,50,.34);
}

/* responsive */
@media (max-width: 1100px){
  #advantages .adv-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px){
  #advantages .adv-grid{
    grid-template-columns: 1fr;
  }

  #advantages .adv{
    min-height: auto;
    padding: 22px 20px 20px;
  }

  #advantages .adv h3{
    font-size: 17px;
  }

  #advantages .adv p{
    font-size: 15px;
  }
}
#advantages .adv{
  padding-left: 24px;
}

#advantages .adv-icon{
  position:absolute;
  top:20px;
  right:20px;
  width:52px;
  height:52px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#eef7f0,#e7f2ec);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
}

#advantages .adv-icon svg{
  width:24px;
  height:24px;
  stroke:#43A047;
  stroke-width:2;
  fill:none;
}
#advantages .adv:first-child{
  background:linear-gradient(180deg,#ffffff 0%, #f6fbf7 100%);
  border:1px solid rgba(67,160,71,.18);
  box-shadow:0 16px 30px rgba(46,125,50,.10);
}
#advantages .adv:nth-child(1)::after{ width:90px; }
#advantages .adv:nth-child(2)::after{ width:72px; }
#advantages .adv:nth-child(3)::after{ width:58px; }
#advantages .adv:nth-child(4)::after{ width:80px; }
#advantages .adv:nth-child(5)::after{ width:66px; }
#advantages .adv:nth-child(6)::after{ width:76px; }
/* ===== SERVICES ===== */
.services .service{
  display:flex;
  align-items:center;
  gap:18px;
  padding:14px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow-soft);
  transition:transform .18s ease, box-shadow .2s ease;
}

.services .service:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.services img{
  width:96px;
  height:96px;
  flex:0 0 96px;
  object-fit:contain;
  border-radius:14px;
}

.services h4{
  margin:0 0 6px;
  font-size:18px;
}

.services p{
  margin:0;
  color:var(--muted);
}

/* ===== PAIN / SOLUTION ===== */
.pain{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:24px;
  margin-top:32px;
}

.pain__card{
  position:relative;
  padding:26px 24px 24px;
  background:#fff;
  border:1px solid rgba(0,0,0,.03);
  border-radius:20px;
  box-shadow:0 4px 18px rgba(0,0,0,.06);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pain__card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  border-color:rgba(10,118,22,.2);
}

.pain__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.02em;
  text-transform:uppercase;
  background:rgba(133,196,66,.12);
  color:#0a7616;
}

.pain__card h3{
  margin-bottom:10px;
  font-size:18px;
  font-weight:700;
  line-height:1.3;
  color:#222;
}

.pain__bad{
  margin-bottom:10px;
  color:#c73333;
  font-size:15px;
  line-height:1.5;
}

.pain__good{
  color:#0a7616;
  font-size:15px;
  line-height:1.5;
}

/* ===== GALLERY ===== */
.gallery{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:10px;
  width:100%;
}

.gal__item{
  position:relative;
  display:block;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow-soft);
}

.gal__item img{
  display:block;
  width:100%;
  height:220px;
  object-fit:cover;
  transition:transform .3s ease, filter .3s ease;
}

.gal__item:hover img{
  transform:scale(1.04);
  filter:contrast(1.05);
}

.gal__cap{
  position:absolute;
  left:10px;
  bottom:10px;
  padding:6px 10px;
  font-size:13px;
  font-weight:800;
  background:rgba(255,255,255,.85);
  border:1px solid var(--line);
  border-radius:10px;
}

/* ===== CALCULATOR ===== */
.calc{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:start;
  width:100%;
}

.calc__result{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#f6faf7,#eef4f1);
}

.price{
  font-size:36px;
  font-weight:800;
  color:var(--green);
}

/* ===== REVIEWS ===== */
.reviews{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  width:100%;
}

.review{
  position:relative;
  padding:14px 16px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow-soft);
}

.review strong{
  display:block;
  margin-bottom:6px;
}

.review::after{
  content:"";
  position:absolute;
  left:18px;
  bottom:-10px;
  width:0;
  height:0;
  border:10px solid transparent;
  border-top-color:#fff;
  filter:drop-shadow(0 -1px 0 var(--line));
}

.review .ava{
  width:36px;
  height:36px;
  border-radius:50%;
  display:inline-grid;
  place-items:center;
  margin-right:8px;
  font-weight:800;
  color:#fff;
}

.review:nth-child(6n+1) .ava{ background:#29B6F6; }
.review:nth-child(6n+2) .ava{ background:#24A148; }
.review:nth-child(6n+3) .ava{ background:#FFB300; }
.review:nth-child(6n+4) .ava{ background:#7E57C2; }
.review:nth-child(6n+5) .ava{ background:#EC407A; }
.review:nth-child(6n+6) .ava{ background:#26A69A; }
#reviews{
  background: linear-gradient(180deg, #f8faf9 0%, #eef3f0 100%);
}

#reviews .section__title{
  margin-bottom: 12px;
}

#reviews .section__lead{
  max-width: 760px;
  margin-bottom: 30px;
}

.reviews{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:20px;
}

.review{
  position:relative;
  padding:22px 22px 20px;
  border-radius:22px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(255,255,255,.75);
  box-shadow:0 12px 28px rgba(0,0,0,.07);
  backdrop-filter:blur(6px);
  transition:transform .22s ease, box-shadow .22s ease;
}

.review:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 34px rgba(0,0,0,.10);
}

.review__head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
}

.review .ava{
  width:46px;
  height:46px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:800;
  color:#fff;
  flex:0 0 46px;
}

.review__meta{
  display:grid;
  gap:4px;
}

.review__meta strong{
  font-size:16px;
  line-height:1.25;
  color:#1a1f24;
}

.review__rating{
  font-size:14px;
  letter-spacing:1px;
  color:#f6b21a;
}

.review p{
  margin:0;
  font-size:16px;
  line-height:1.6;
  color:#4f5965;
}

.review::after{
  content:"“";
  position:absolute;
  top:18px;
  right:18px;
  font-size:48px;
  line-height:1;
  color:rgba(67,160,71,.12);
  font-weight:800;
}

@media (max-width:1100px){
  .reviews{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width:700px){
  .reviews{
    grid-template-columns:1fr;
  }

  .review{
    padding:18px;
    border-radius:18px;
  }

  .review p{
    font-size:15px;
  }
}
/* ===== STEPS ===== */
#process{
  background: linear-gradient(180deg,#f7faf8 0%, #eef3f0 100%);
}

#process .steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  position:relative;
  margin-top:30px;
}

#process .steps::before{
  content:"";
  position:absolute;
  top:38px;
  left:40px;
  right:40px;
  height:3px;
  background:linear-gradient(90deg,#43A047,#66BB6A);
  opacity:.18;
  z-index:0;
}

#process .step{
  position:relative;
  z-index:1;
  padding:28px 22px 22px;
  border-radius:20px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.7);
  box-shadow:0 10px 26px rgba(0,0,0,.06);
  backdrop-filter:blur(6px);
  transition:transform .25s ease, box-shadow .25s ease;
}

#process .step:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 34px rgba(0,0,0,.10);
}

#process .step__num{
  position:absolute;
  top:-14px;
  left:20px;
  width:38px;
  height:38px;
  border-radius:12px;
  background:linear-gradient(180deg,#43A047,#2E7D32);
  color:#fff;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 16px rgba(46,125,50,.25);
}

#process .step h3{
  margin:6px 0 12px;
  font-size:18px;
  line-height:1.35;
}

#process .step p{
  margin:0;
  font-size:16px;
  line-height:1.55;
  color:#5f6670;
}

#process .step::after{
  content:"";
  position:absolute;
  right:-10px;
  top:calc(50% - 6px);
  width:20px;
  height:12px;
  opacity:.35;
  background:
    radial-gradient(circle at 0 50%, #8fd3f4 0 40%, transparent 41%) left,
    radial-gradient(circle at 100% 50%, #8fd3f4 0 40%, transparent 41%) right;
  background-size:50% 100%;
  background-repeat:no-repeat;
}

#process .step:last-child::after{
  display:none;
}

#process .step:nth-child(1){ transform:translateY(0); }
#process .step:nth-child(2){ transform:translateY(6px); }
#process .step:nth-child(3){ transform:translateY(0); }
#process .step:nth-child(4){ transform:translateY(6px); }

@media (max-width:900px){
  #process .steps{
    grid-template-columns:1fr;
    gap:16px;
  }

  #process .steps::before{
    display:none;
  }

  #process .step{
    padding:24px 18px 18px;
    transform:none !important;
  }

  #process .step::after{
    display:none;
  }
}
/* ===== FAQ ===== */
.#faq{
 background:
    radial-gradient(circle at top right, rgba(67,160,71,.06), transparent 28%),
    linear-gradient(180deg,#f8faf9 0%, #eef3f0 100%);
}

.faq-section .container{
  max-width: 980px;
}

.faq-title{
  text-align: center;
  margin-bottom: 12px;
}

.faq-lead{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
  color: #6b717a;
}

.faq{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item{
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.faq-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.08);
}

.faq-question{
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  color: #161a1f;
    transition:background .2s ease, color .2s ease;

}

.faq-question span:first-child{
  flex: 1;
}

.faq-icon{
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.faq-icon::before,
.faq-icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background:#43A047;
  box-shadow:0 1px 0 rgba(255,255,255,.35);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: .25s ease;
}

.faq-icon::before{
  width: 18px;
  height: 3px;
}

.faq-icon::after{
  width: 3px;
  height: 18px;
}

.faq-item.active .faq-icon::after{
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: #5f6670;
  font-size: 16px;
  line-height: 1.6;
  transition: max-height .3s ease, padding .3s ease;
   border-left:3px solid rgba(67,160,71,.18);
  margin:0 24px 0 24px;
  padding-left:16px;
}
.faq-item.active .faq-question{
  color:#1f252b;
}
.faq-item.active .faq-answer{
  max-height: 220px;
  padding: 0 24px 20px;
}
.faq-item.active{
  border:1px solid rgba(67,160,71,.18);
  box-shadow:0 14px 30px rgba(46,125,50,.10);
  background:linear-gradient(180deg,#ffffff 0%, #f8fcf9 100%);
}
@media (max-width: 700px){
  .faq-title{
    text-align: left;
  }

  .faq-lead{
    text-align: left;
    margin: 0 0 24px;
  }

  .faq-question{
    font-size: 16px;
    padding: 18px 18px;
  }

  .faq-answer{
    font-size: 15px;
    padding: 0 18px;
    
  }

  .faq-item.active .faq-answer{
    padding: 0 18px 18px;
  }
}
/* ===== PPU COMPARE ===== */
#ppu-compare .compare{
  width:100%;
}

#ppu-compare table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}

#ppu-compare thead th{
  text-align:left;
  padding:12px 14px;
  font-weight:800;
  border-bottom:1px solid var(--line);
  white-space:nowrap;
}

#ppu-compare tbody td{
  padding:10px 14px;
  vertical-align:top;
  border-bottom:1px solid var(--line);
}

.badge{
  display:inline-block;
  padding:.2rem .55rem;
  font-size:13px;
  line-height:1;
  font-weight:800;
  white-space:nowrap;
  border-radius:10px;
}

.badge--good{
  background:#eaf7ee;
  color:#1b5e20;
  border:1px solid #cfeedd;
}

.badge--bad{
  background:#fdecee;
  color:#b23a3a;
  border:1px solid #f7c9cf;
}

.badge--neutral{
  background:#eef3f7;
  color:#3b4754;
  border:1px solid #dbe5ec;
}

/* ===== CONTACT ===== */
.contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.contact-clean{
  padding:80px 0 100px;
  background:linear-gradient(180deg,#f8fbf9 0%,#f3faf6 100%);
}

.contact-clean__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:start;
  gap:40px;
  width:100%;
}

.contact-clean h2{
  margin-top:0;
  font-size:26px;
  font-weight:800;
}

.contact-clean h3{
  margin:0 0 10px;
  font-size:20px;
  font-weight:800;
}

.contact-form form{
  display:grid;
  gap:10px;
  max-width:420px;
}

.contact-form label{
  font-weight:700;
  font-size:14px;
}

.contact-form input{
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:12px;
  font-size:15px;
}

.contact-form .btn{
  margin-top:4px;
}

.contact-form .note{
  margin:6px 0 0;
  font-size:13px;
  color:var(--muted);
}

.contact-info{
  display:grid;
  gap:10px;
  max-width:400px;
  padding:24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow-soft);
}

.info-phone{
  font-size:20px;
  font-weight:800;
  color:var(--green);
  text-decoration:none;
}

.info-mail{
  font-weight:700;
  color:var(--text);
  text-decoration:none;
}

.info-mail:hover{
  color:var(--green);
}

.info-loc{
  color:var(--muted);
  font-size:14px;
}

.info-social{
  display:flex;
  gap:10px;
  margin-top:8px;
}

.soc{
  width:75px;
  height:75px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  border-radius:10px;
  background:#f8faf9;
  box-shadow:var(--shadow-soft);
  transition:.2s ease;
}

.soc:hover{
  transform:translateY(-2px);
  background:#fff;
}

.contact-map{
  margin-top:50px;
  display:grid;
  place-items:center;
}

.map-placeholder{
  width:min(100%, 900px);
  aspect-ratio:16/7;
  display:grid;
  place-items:center;
  color:#6b717a;
  background:#e8ecef;
  border-radius:18px;
}

/* compact contact variant */
.contact--compact{
  --gap:10px;
  --pad:12px;
  --r:12px;
  --fs:14px;
}

.contact--compact .card{
  padding:var(--pad);
  border-radius:var(--r);
  box-shadow:none;
}

.contact--compact h3{
  margin:0 0 6px;
  font-size:18px;
}

.contact--compact .phone-main,
.contact--compact .contact-meta,
.contact--compact .soc-row{
  margin:0;
}

.contact--compact .phone-main{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}

.contact--compact .phone-number{
  font-size:16px;
  font-weight:800;
  color:var(--green);
  text-decoration:none;
}

.contact--compact .btn-call{
  padding:6px 10px;
  font-size:13px;
  font-weight:800;
  color:#fff;
  text-decoration:none;
  background:var(--green);
  border-radius:8px;
  box-shadow:none;
}

.contact--compact .contact-list,
.contact--compact .contact-meta{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:6px;
}

.contact--compact .contact-list li,
.contact--compact .contact-meta li{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:var(--fs);
}

.contact--compact .contact-list a{
  color:var(--text);
  text-decoration:none;
  font-weight:600;
}

.contact--compact .contact-list a:hover{
  color:var(--green);
}

.contact--compact .social-icons,
.contact--compact .soc-row{
  display:flex;
  align-items:center;
  gap:8px;
}

.contact--compact [data-social]{
  width:28px;
  height:28px;
  display:none;
  border:1px solid var(--line);
  border-radius:50%;
  background:#fff;
  background-repeat:no-repeat;
  background-position:center;
  background-size:16px;
}

.contact--compact [data-social].is-on{
  display:inline-grid;
}

.contact--compact .map-box{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:10px;
}

.contact--compact .map-placeholder{
  aspect-ratio:16/10;
  max-height:260px;
}

/* ===== FOOTER ===== */
.site-footer{
  position:relative;
  z-index:1;
  padding:18px 0;
  background:#fff;
  border-top:1px solid var(--line);
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.footer__brand{
  color:var(--muted);
  font-weight:700;
}

.footer__nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.footer__link{
  border:0;
  background:none;
  color:var(--muted);
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
}

.footer__link:hover{
  color:var(--green);
}

.site-footer .soc{
  width:32px;
  height:32px;
  border-radius:50%;
}

/* ===== RESPONSIVE ===== */
@media (max-width:1100px){
  .gallery{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
}

@media (max-width:900px){
  .grid.cols-2,
  .contact,
  .calc,
  .contact-clean__grid{
    grid-template-columns:1fr;
  }

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

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

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

  .gallery{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .contact--compact .map-box{
    display:none;
  }

  .contact--compact .map-toggle{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    color:var(--green);
    cursor:pointer;
  }
}

@media (max-width:700px){
  .footer__inner{
    flex-direction:column;
    gap:8px;
  }

  .gallery{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  /* mobile compare cards */
  #ppu-compare thead{
    display:none;
  }

  #ppu-compare table{
    border-collapse:separate;
    border-spacing:0;
    background:transparent;
  }

  #ppu-compare tbody{
    display:block;
  }

  #ppu-compare tbody tr{
    display:block;
    margin:12px 0;
    padding:12px 12px 8px;
    background:#fff;
    border:1px solid #e8eef0;
    border-radius:14px;
    box-shadow:0 6px 14px rgba(0,0,0,.05);
  }

  #ppu-compare tbody td{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:10px;
    padding:8px 0;
    border:0;
  }

  #ppu-compare tbody td:first-child{
    display:block;
    padding-bottom:6px;
    font-weight:800;
    color:var(--text);
  }

  #ppu-compare tbody td:first-child::before{
    content:none;
  }

  #ppu-compare tbody td:not(:first-child)::before{
    content:attr(data-label);
    flex:0 0 46%;
    max-width:52%;
    color:#6b7785;
    font-weight:600;
    line-height:1.3;
  }

  #ppu-compare tbody td .sub{
    display:block;
    margin-top:4px;
    font-size:12.5px;
    line-height:1.25;
    color:#6b717a;
  }
}

@media (max-width:640px){
  .reviews{
    grid-template-columns:1fr;
  }

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

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

  .gal__item img{
    height:200px;
  }

  .pain__card{
    padding:20px 18px;
  }

  .contact-clean{
    padding-top:8px;
  }

  .contact-clean__grid{
    display:flex;
    flex-direction:column;
    gap:16px;
  }

  .contact-form{
    order:1;
  }

  .contact-info{
    order:2;
    width:100%;
    max-width:none;
    margin:0;
    padding:14px 16px;
    border-radius:16px;
    box-shadow:0 10px 24px rgba(0,0,0,.06);
    border:1px solid #edf2f5;
  }

  .contact-form h2{
    margin:0 0 8px;
    font-size:22px;
    line-height:1.25;
  }

  .contact-form label{
    margin:10px 0 6px;
    font-size:14px;
    color:#39424e;
  }

  .contact-form input[type="text"],
  .contact-form input[type="tel"]{
    height:48px;
    padding:0 14px;
    font-size:16px;
    border:1px solid #e6edf0;
    border-radius:12px;
    background:#fff;
  }

  .contact-form .btn.btn--primary{
    width:100%;
    height:48px;
    margin-top:10px;
    border-radius:14px;
    font-weight:700;
  }

  .contact-form .note{
    margin:8px 2px 0;
    font-size:12px;
    color:#7a8897;
  }

  .contact-info h3{
    margin:0 0 8px;
    font-size:18px;
  }

  .contact-info .info-phone,
  .contact-info .info-mail{
    display:inline-block;
    margin:4px 0;
    font-weight:700;
    word-break:break-word;
  }

  .contact-info .info-loc{
    margin-top:6px;
    font-size:14px;
    color:#5f6b79;
  }

  .contact-clean .contact-map .map-placeholder,
  .contact-clean .contact-map iframe{
    height:220px !important;
    border-radius:16px;
  }
}
/* =========================================================
   EcoTeploDim — CLEAN CSS
   PART 5: Utilities / Motion / SEO / Final helpers
   ========================================================= */

/* ===== AOS-LITE STATES ===== */
[data-anim]{
  opacity:0;
  transform:translateY(12px);
  transition:opacity .5s ease, transform .5s ease;
}

[data-anim].in{
  opacity:1;
  transform:none;
}

/* ===== SMALL HELPERS ===== */
.media-box{
  min-height:300px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow-soft);
}

.price--muted,
.muted{
  color:var(--muted);
}

/* ===== SEO BLOCK ===== */
.seo-block{
  padding:80px 0;
  background:linear-gradient(180deg,#f8fbf9,#eef7f1);
}

.center{
  text-align:center;
}

.seo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:30px;
}

.seo-card{
  background:#fff;
  padding:24px;
  border-radius:20px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition:.25s ease;
}

.seo-card:hover{
  transform:translateY(-4px);
}

.seo-list{
  list-style:none;
  padding:0;
  margin:12px 0;
}

.seo-list li{
  margin-bottom:6px;
  font-weight:600;
}

.seo-highlight{
  margin-top:30px;
  padding:18px 22px;
  border-radius:18px;
  background:#fff;
  display:flex;
  gap:14px;
  align-items:center;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  border-left:6px solid #43A047;
}

.seo-highlight__icon{
  font-size:24px;
}

.seo-cta{
  margin-top:30px;
  text-align:center;
}
.seo-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.seo-list li{
  background:#e8f5e9;
  padding:8px 12px;
  border-radius:999px;
  font-weight:600;
}
.seo-subtitle{
  text-align:center;
  font-size:18px;
  color:#2e7d32;
  font-weight:600;
  margin-top:-10px;
}
.seo-highlight{
  background:linear-gradient(135deg,#ffffff,#f1f8f4);
  border-left:6px solid #2e7d32;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}
.seo-card--benefits{
  display:flex;
  flex-direction:column;
}

.seo-points{
  display:grid;
  gap:16px;
  margin-top:14px;
}

.seo-point{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 14px;
  background:#f7faf7;
  border:1px solid #e3ece4;
  border-radius:16px;
}

.seo-point__icon{
  width:28px;
  height:28px;
  flex:0 0 28px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#e8f5e9;
  color:#2e7d32;
  font-weight:800;
}

.seo-point strong{
  display:block;
  margin-bottom:4px;
  font-size:18px;
}

.seo-point p{
  margin:0;
  color:#5f6670;
  line-height:1.5;
}
@media (max-width: 768px){
  .seo-block{
    padding: 56px 0;
  }

  .seo-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .seo-card{
    padding: 18px;
    border-radius: 18px;
  }

  .seo-card h3{
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.2;
  }

  .seo-subtitle{
    margin: 8px 0 18px;
    font-size: 16px;
    line-height: 1.4;
    padding: 0 8px;
  }

  .seo-points{
    gap: 12px;
    margin-top: 12px;
  }

  .seo-point{
    padding: 12px;
    border-radius: 14px;
    gap: 10px;
  }

  .seo-point strong{
    font-size: 18px;
    line-height: 1.3;
  }

  .seo-point p{
    font-size: 15px;
    line-height: 1.45;
  }

  .seo-list{
    gap: 10px;
  }

  .seo-list li{
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
    padding: 10px 12px;
    font-size: 15px;
    line-height: 1.35;
  }

  .seo-highlight{
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    align-items: flex-start;
  }

  .seo-highlight__icon{
    font-size: 20px;
    margin-top: 2px;
  }

  .seo-cta{
    margin-top: 18px;
  }

  .seo-cta .btn{
    width: 100%;
    max-width: 100%;
  }
    .seo-block .section__title{
    font-size: 28px;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 8px;
  }
}
/* ===== ACCESSIBILITY ===== */
.topbar__phone:focus-visible,
.info-phone:focus-visible,
.info-mail:focus-visible,
.contact--compact .phone-number:focus-visible,
.contact--compact .btn-call:focus-visible,
.contact--compact .contact-list a:focus-visible,
.contact--compact [data-social]:focus-visible,
.soc:focus-visible{
  outline:2px solid var(--green-500);
  outline-offset:2px;
}

html,
body{
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

@media (max-width: 900px){
  .container{
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 14px;
    padding-right: 14px;
  }

  section,
  header,
  footer{
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}



/* ===== WAVES / BACKGROUND HELPERS ===== */
.bg-waves{
  z-index:0;
}

/* ===== REDUCE MOTION ===== */
@media (prefers-reduced-motion: reduce){
  *{
    animation:none !important;
    transition:none !important;
  }

  .hero__video{
    animation:none;
  }

  .bg-waves .wave{
    animation:none;
    opacity:.10;
  }
}

/* ===== VERY SMALL SCREENS ===== */
@media (max-width:400px){
  .btn{
    font-size:14px;
  }

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

  .hero-lead__phone{
    font-size:20px;
  }
}
.info-social{
  display:flex;
  gap:12px;
  margin-top:12px;
}

.soc{
  width:72px;
  height:72px;
  border-radius:16px;
  background:#fff;
  border:1px solid #e6edf0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  position:relative;

  box-shadow:0 8px 20px rgba(0,0,0,.06);
  transition:all .2s ease;
}

/* ІКОНКА через псевдоелемент */
.soc::before{
  font-family:"Font Awesome 6 Brands";
  font-size:28px;
  color:#2E7D32;
  transition:.2s ease;
}

/* Telegram */
.soc.tg::before{
  content:"\f2c6";
}

/* WhatsApp */
.soc.wa::before{
  content:"\f232";
}

/* Viber */
.soc.vb::before{
  content:"\f409";
}

/* Instagram */
.soc.ig::before{
  content:"\f16d";
}

/* hover */
.soc:hover{
  transform:translateY(-4px);
  border-color:#43A047;
  box-shadow:0 12px 26px rgba(46,125,50,.15);
  background:#f7fcf8;
}

/* кольори при hover */
.soc.tg:hover::before{ color:#229ED9; }
.soc.wa:hover::before{ color:#25D366; }
.soc.vb:hover::before{ color:#7360F2; }
.soc.ig:hover::before{ color:#E1306C; }

/* мобілка */
@media (max-width:600px){
  .soc{
    width:64px;
    height:64px;
    border-radius:14px;
  }

  .soc::before{
    font-size:24px;
  }
  .site-footer{
  margin-bottom: 90px;
}
}
.soc{
  flex-direction:column;
  gap:4px;
}

.soc__label{
  font-size:10px;
  color:#777;
}
