:root{
  --bg: radial-gradient(900px circle at 10% 5%, rgba(0, 153, 0, 0.18), transparent 55%),
        radial-gradient(700px circle at 85% 0%, rgba(0, 255, 153, 0.12), transparent 50%),
        linear-gradient(180deg, #050a05 0%, #050906 40%, #040604 100%);

  --surface: rgba(255, 255, 255, 0.06);
  --text: rgba(246, 255, 246, 0.96);
  --muted: rgba(246, 255, 246, 0.70);
  --border: rgba(0, 255, 153, 0.18);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.45);

  --accent: #009900; /* брендовый */
  --accent2: #00ff85; /* салатовый */
  --accent3: #00e6c7; /* техно-акцент */
  --radius: 16px;
  --radius2: 22px;
  --container: 1120px;

  /* Единый ритм отступов между секциями (как у героя → линия → заголовок) */
  --section-pad-top: 24px;
  --section-pad-bottom: 20px;
  --section-line-gap: 9px;
  --section-head-gap: 9px;
  --section-inner-rule-my: 13px;
}

*{ box-sizing: border-box; }
/* Не даём картинкам раздувать вёрстку (flex/grid + большой PNG на хостинге). */
img{
  max-width: 100%;
  height: auto;
}
html{
  scroll-behavior: smooth;
  color-scheme: dark;
  overflow-x: hidden;
  scroll-padding-top: 92px;
}
body{
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Tahoma, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.35;
  overflow-x: hidden;
}

main{
  overflow-x: hidden;
}

a{ color: inherit; }

.container{
  width: min(var(--container), 100%);
  padding: 0 18px;
  margin: 0 auto;
}

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(3, 6, 3, 0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  min-width: 0;
}

.logo{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 800;
  flex-shrink: 0;
}

.logo-mark{
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.10), 0 10px 30px rgba(0, 255, 153, 0.14);
}

.logo-text{
  font-size: 24px;
}

.nav{
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}
.nav a{
  text-decoration: none;
  color: rgba(246, 255, 246, 0.78);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 13px;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(0, 153, 0, 0.14);
  color: var(--accent);
}
.nav-cta{
  background: transparent;
  color: rgba(246, 255, 246, 0.78);
}
.nav-cta:hover,
.nav-cta:focus-visible,
.nav-cta:active{
  background: rgba(0, 153, 0, 0.22);
  color: var(--accent);
}
.header-contact{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
  min-width: 0;
}
.header-contact-phone{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 900;
  font-size: 27px;
  letter-spacing: 0.01em;
  color: rgba(246, 255, 246, 0.96);
  line-height: 1.05;
}
.header-contact-phone:hover,
.header-contact-phone:focus-visible,
.header-contact-phone:active{
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.header-contact-phone:hover,
.header-contact-phone:focus-visible{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.header-contact-phone::before{
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 0 6px rgba(0, 255, 153, 0.35));
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%2300ff85'%20stroke-width='2.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M22%2016.9v3a2%202%200%2001-2.2%202%2019.8%2019.8%200%2001-8.6-3.1%2019.5%2019.5%200%2001-6-6%2019.8%2019.8%200%2001-3.1-8.6A2%202%200%20013.1%201h3a2%202%200%20012%201.7c.1.9.3%201.8.6%202.6a2%202%200%2001-.5%202.1L7%208.9a16%2016%200%20007.1%207.1l1.5-1.2a2%202%200%20012.1-.5c.8.3%201.7.5%202.6.6A2%202%200%200122%2016.9z'/%3E%3C/svg%3E");
}
.header-contact-time{
  font-size: 13px;
  font-weight: 700;
  color: rgba(246, 255, 246, 0.74);
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-messenger{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.header-messenger:hover,
.header-messenger:focus-visible{
  background: rgba(0, 153, 0, 0.22);
  border-color: rgba(0, 255, 153, 0.35);
  transform: translateY(-1px);
}

.header-messenger-img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.header-messenger-icon{
  width: 22px;
  height: 22px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header-messenger-icon--wa{
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='%2325D366'%3E%3Cpath%20d='M17.472%2014.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94%201.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198%200-.52.074-.792.372-.272.297-1.04%201.016-1.04%202.479%200%201.462%201.065%202.875%201.213%203.074.149.198%202.096%203.2%205.077%204.487.709.306%201.262.489%201.694.625.712.227%201.36.195%201.871.118.571-.085%201.758-.719%202.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421%207.403h-.004a9.87%209.87%200%2001-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86%209.86%200%2001-1.51-5.26c.001-5.45%204.436-9.884%209.888-9.884%202.64%200%205.122%201.03%206.988%202.898a9.825%209.825%200%20012.893%206.994c-.003%205.45-4.437%209.884-9.885%209.884m8.413-18.297A11.815%2011.815%200%200012.05%200C5.495%200%20.16%205.335.157%2011.892c0%202.096.547%204.142%201.588%205.945L.057%2024l6.305-1.654a11.882%2011.882%200%20005.683%201.448h.005c6.554%200%2011.89-5.335%2011.893-11.893a11.821%2011.821%200%2000-3.48-8.413z'/%3E%3C/svg%3E");
}

.header-messenger-icon--tg{
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='%23229ED9'%3E%3Cpath%20d='M21.924%202.617a1.1%201.1%200%2000-1.126-.095L2.386%209.766c-.855.35-.85%201.62.008%201.962l4.66%201.84%201.81%205.77c.19.608.97.85%201.45.403l2.56-2.37%204.33%203.17c.8.59%201.93.12%202.13-.9l2.8-13.12c.18-.85-.32-1.68-1.15-1.83zM17.56%205.45l-10.3%206.48%205.48-4.3c.12-.1.28-.05.34.1l-1.92%209.1%201.08-6.45c.02-.15.18-.22.3-.14l7.1%204.5c.14.09.13.3-.02.36l-11.96%204.5z'/%3E%3C/svg%3E");
}

.logo--header-mark .logo-mark{
  width: auto;
  max-width: min(120px, 28vw);
  max-height: 48px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.logo--header-mark .logo-text{
  white-space: nowrap;
}

.hero-messengers{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}

.hero-heading-row{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 28px;
  margin: 0 0 2px;
}

.hero-heading-row .hero-title{
  flex: 0 0 auto;
  max-width: none;
  /* Только переносы из разметки (<br>), без автоматической разбивки строк */
  white-space: nowrap;
}

.hero-sticker{
  flex: 0 0 auto;
  align-self: flex-start;
  margin: -22px 0 0;
  /* Без isolation: иначе mix-blend-mode смешивается только внутри группы и «белое поле»
     остаётся белым, а не с фоном hero. */
}

/* Стикер на фото — только мобильная вёрстка */
.hero-sticker--on-photo{
  display: none;
}

.hero-sticker-img{
  display: block;
  width: clamp(104px, 16vw, 168px);
  height: auto;
  transform: rotate(7deg);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.45)) drop-shadow(0 2px 0 rgba(0, 255, 153, 0.12));
}

.cost-lead-text--compact{
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

.cost-lead-text--primary{
  white-space: nowrap;
}

.screen-process{
  position: relative;
  padding: calc(var(--section-pad-top) + 4px) 0 var(--section-pad-bottom);
  overflow: hidden;
}

.screen-process::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 18% 20%, rgba(0, 153, 0, 0.14), transparent 58%),
    radial-gradient(700px 480px at 88% 70%, rgba(0, 255, 153, 0.08), transparent 52%),
    linear-gradient(180deg, rgba(5, 10, 5, 0.97) 0%, rgba(4, 7, 5, 1) 100%);
  pointer-events: none;
}

.screen-process .container{
  position: relative;
  z-index: 1;
}

.process-layout{
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(260px, 1.12fr) minmax(220px, 0.92fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.process-panel{
  background:
    radial-gradient(900px 420px at 0% 50%, rgba(0, 153, 0, 0.12), transparent 55%),
    radial-gradient(520px 360px at 100% 30%, rgba(0, 230, 199, 0.08), transparent 50%),
    linear-gradient(165deg, rgba(12, 22, 14, 0.94) 0%, rgba(6, 10, 8, 0.98) 100%);
  border: 1px solid rgba(0, 255, 153, 0.18);
  border-radius: var(--radius2);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.process-steps{
  margin: 0;
  padding: 26px 32px 28px 26px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step-item{
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px 20px;
  align-items: start;
}

.process-step-xl-num{
  font-size: 56px;
  line-height: 0.82;
  font-weight: 950;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.58);
  user-select: none;
}

.process-step-content{
  min-width: 0;
}

.process-step-title{
  font-size: 17px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: rgba(246, 255, 246, 0.96);
}

.process-step-box{
  margin-top: 8px;
  padding: 8px 11px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 153, 0.28);
  background: rgba(0, 0, 0, 0.22);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(246, 255, 246, 0.78);
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

.process-visual-wrap{
  position: relative;
  align-self: stretch;
  min-height: min(300px, 50vh);
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.process-visual-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.screen-cases{
  padding: var(--section-pad-top) 0 10px;
  overflow: hidden;
}

.cases-marquee-outer{
  margin-top: 16px;
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.cases-nav{
  flex: 0 0 44px;
  width: 44px;
  min-width: 44px;
  align-self: center;
  height: 44px;
  margin: 0;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 153, 0.28);
  background: rgba(0, 0, 0, 0.38);
  color: rgba(246, 255, 246, 0.92);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cases-nav:hover{
  background: rgba(0, 153, 0, 0.22);
  border-color: rgba(0, 255, 153, 0.45);
}

.cases-nav:focus-visible{
  outline: 2px solid rgba(0, 255, 153, 0.55);
  outline-offset: 2px;
}

.cases-nav-icon{
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-top: -2px;
  user-select: none;
}

.cases-marquee{
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  cursor: grab;
}

.cases-track .case-card{
  opacity: 1;
  transform: none;
  filter: none;
}

@keyframes cases-track-drift{
  from{ transform: translate3d(0, 0, 0); }
  to{ transform: translate3d(-50%, 0, 0); }
}

.cases-track.cases-track--css-loop{
  animation: cases-track-drift var(--cases-loop-duration, 150s) linear infinite;
  will-change: transform;
}

.cases-marquee.is-user-scrolling .cases-track.cases-track--css-loop{
  animation-play-state: paused;
}

.cases-marquee:active{
  cursor: grabbing;
}

.cases-marquee::-webkit-scrollbar{
  display: none;
}

.cases-track{
  display: flex;
  gap: 14px;
  width: max-content;
}

.cases-cta-wrap{
  margin-top: var(--section-inner-rule-my);
  display: flex;
  justify-content: center;
}

.case-card{
  flex: 0 0 min(340px, 88vw);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.case-card-top{
  display: grid;
  gap: 8px;
}

.case-model{
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.case-model-device{
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: rgba(246, 255, 246, 0.98);
}

.case-model-service{
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(246, 255, 246, 0.78);
}

.case-row{
  font-size: 14px;
  line-height: 1.4;
  color: rgba(246, 255, 246, 0.82);
}

.case-k{
  font-weight: 850;
  color: var(--accent2);
}

.case-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 750;
  color: rgba(246, 255, 246, 0.72);
}

.case-photo-wrap{
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 153, 0.16);
  background: rgba(0, 0, 0, 0.2);
}

.case-photo{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.reviews-objections{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.reviews-objection{
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(246, 255, 246, 0.88);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 780;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.reviews-objection:hover,
.reviews-objection:focus-visible{
  border-color: rgba(0, 255, 153, 0.35);
  background: rgba(0, 153, 0, 0.18);
  outline: none;
}

.reviews-objection.active{
  background: rgba(0, 153, 0, 0.38);
  border-color: rgba(0, 255, 153, 0.45);
  color: #fff;
}

.reviews-feed-outer{
  margin-top: 14px;
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.reviews-feed-scroller{
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-feed-scroller::-webkit-scrollbar{
  display: none;
}

.reviews-feed-track{
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 2px 2px 4px;
  align-items: stretch;
}

.reviews-feed-track .review-feed-card{
  flex: 0 0 min(320px, 82vw);
  scroll-snap-align: start;
  min-height: 230px;
}

@media (max-width: 768px){
  .reviews-feed-outer > .cases-nav{
    display: none;
  }
  .reviews-feed-outer{
    gap: 0;
  }
}

.reviews-feed-foot{
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.lead-messenger-block{
  margin: 10px 0 26px;
  padding: 14px 14px 12px;
  border-radius: var(--radius2);
  border: 1px solid rgba(0, 255, 153, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.lead-messenger-block--in-contact{
  margin-top: 0;
  margin-bottom: 0;
}

.lead-messenger-hero-title{
  margin: 12px 0 8px;
  font-size: clamp(21px, 3.6vw, 26px);
  font-weight: 950;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: rgba(246, 255, 246, 0.96);
  text-align: left;
}

.lead-messenger-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  align-items: center;
}

.lead-messenger-aside{
  min-width: 0;
}

.lead-messenger-btns{
  justify-content: center;
}

.lead-messenger-btns--grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cost-lead-btns.lead-messenger-btns--grid{
  margin-top: 0;
}

.cost-lead-btns.lead-messenger-btns--grid .cost-lead-btn{
  margin-top: 0;
  width: 100%;
  min-height: 44px;
  font-size: 13px;
  padding-left: 10px;
  padding-right: 10px;
}

.lead-messenger-visual-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.lead-messenger-visual{
  width: 100%;
  max-width: 210px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5));
}

.cost-lead-btn-wa{
  background: #25d366;
  color: #062d14;
  border-color: rgba(255, 255, 255, 0.18);
}

.cost-lead-btn-wa:hover{
  filter: brightness(1.05);
}

.cost-lead-btn-tg{
  background: #229ed9;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.cost-lead-btn-tg:hover{
  filter: brightness(1.06);
}

.cost-lead-btn-icon{
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.cost-lead-btn-icon--wa{
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='%23062d14'%3E%3Cpath%20d='M17.472%2014.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94%201.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198%200-.52.074-.792.372-.272.297-1.04%201.016-1.04%202.479%200%201.462%201.065%202.875%201.213%203.074.149.198%202.096%203.2%205.077%204.487.709.306%201.262.489%201.694.625.712.227%201.36.195%201.871.118.571-.085%201.758-.719%202.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421%207.403h-.004a9.87%209.87%200%2001-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86%209.86%200%2001-1.51-5.26c.001-5.45%204.436-9.884%209.888-9.884%202.64%200%205.122%201.03%206.988%202.898a9.825%209.825%200%20012.893%206.994c-.003%205.45-4.437%209.884-9.885%209.884m8.413-18.297A11.815%2011.815%200%200012.05%200C5.495%200%20.16%205.335.157%2011.892c0%202.096.547%204.142%201.588%205.945L.057%2024l6.305-1.654a11.882%2011.882%200%20005.683%201.448h.005c6.554%200%2011.89-5.335%2011.893-11.893a11.821%2011.821%200%2000-3.48-8.413z'/%3E%3C/svg%3E");
}

.cost-lead-btn-icon--tg{
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='%23ffffff'%3E%3Cpath%20d='M21.924%202.617a1.1%201.1%200%2000-1.126-.095L2.386%209.766c-.855.35-.85%201.62.008%201.962l4.66%201.84%201.81%205.77c.19.608.97.85%201.45.403l2.56-2.37%204.33%203.17c.8.59%201.93.12%202.13-.9l2.8-13.12c.18-.85-.32-1.68-1.15-1.83zM17.56%205.45l-10.3%206.48%205.48-4.3c.12-.1.28-.05.34.1l-1.92%209.1%201.08-6.45c.02-.15.18-.22.3-.14l7.1%204.5c.14.09.13.3-.02.36l-11.96%204.5z'/%3E%3C/svg%3E");
}

.screen-faq{
  margin-top: 16px;
  padding: 4px 0 4px;
}

.faq-list{
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.faq-cta-row{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta-btn{
  width: 100%;
  min-height: 48px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  justify-content: center;
  white-space: normal;
  line-height: 1.25;
}

.faq-item{
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 153, 0.14);
}

.faq-item.card{
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.faq-item.card:hover{
  transform: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.26);
}

.faq-q{
  cursor: pointer;
  padding: 9px 11px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 850;
  font-size: 14px;
  line-height: 1.3;
  list-style: none;
}

.faq-q::-webkit-details-marker{
  display: none;
}

.faq-q-icon{
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 6px;
  border: 1px solid rgba(0, 255, 153, 0.38);
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.faq-q-icon::before{
  content: "+";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  color: var(--accent2);
}

details[open] > .faq-q .faq-q-icon::before{
  content: "−";
  font-size: 17px;
  font-weight: 900;
}

.faq-q-text{
  flex: 1;
  min-width: 0;
}

.faq-a{
  padding: 0 11px 10px 43px;
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
  font-size: 13.5px;
}

select.input{
  appearance: none;
  color-scheme: dark;
  background-color: rgba(0, 0, 0, 0.22);
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='16'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%2300ff85'%20stroke-width='2'%3E%3Cpath%20d='M6%209l6%206%206-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

select.input option,
select.input optgroup{
  background-color: #0a140c;
  color: rgba(246, 255, 246, 0.95);
}

select.input option:disabled{
  color: rgba(246, 255, 246, 0.42);
}

.screen-cost-lead .section-head{
  margin-bottom: var(--section-head-gap);
}
.cost-lead-card{
  border-radius: 18px;
  border: 1px solid rgba(0, 255, 153, 0.20);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
  background:
    radial-gradient(900px circle at 8% 0%, rgba(0, 153, 0, 0.20), transparent 60%),
    radial-gradient(700px circle at 92% 0%, rgba(0, 255, 153, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(10px);
  padding: 20px 20px 18px;
}
.cost-lead-title{
  margin: 0;
  text-align: center;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: rgba(246, 255, 246, 0.96);
}
.cost-lead-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 14px;
  align-items: stretch;
}
.cost-lead-col{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cost-lead-divider{
  background: linear-gradient(180deg, rgba(0, 255, 153, 0), rgba(0, 255, 153, 0.42), rgba(0, 255, 153, 0));
}
.cost-lead-text{
  margin: 0;
  color: rgba(246, 255, 246, 0.82);
  text-align: center;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.cost-lead-text.cost-lead-text--hint{
  margin-top: 12px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  color: rgba(246, 255, 246, 0.62);
  font-weight: 650;
  font-size: 12.5px;
  line-height: 1.35;
  font-style: normal;
}

.cost-lead-visual{
  margin: 12px 0 0;
  width: min(220px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 153, 0.28);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 255, 153, 0.14);
}
.cost-lead-visual-img{
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
  clip-path: circle(44% at 50% 50%);
}
.cost-lead-btn{
  margin-top: 12px;
  min-width: 0;
  min-height: 48px;
  font-size: 16px;
  border-radius: 14px;
  padding-left: 16px;
  padding-right: 16px;
}
.cost-lead-btn-logo{
  width: 20px;
  height: 20px;
  padding: 1px;
  border-radius: 5px;
  background: #ffffff;
  object-fit: contain;
  flex: 0 0 20px;
}
.cost-lead-btns{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.cost-lead-btn-vk{
  background: #2787f5;
  color: #ffffff;
  border-color: #2787f5;
}
.cost-lead-btn-vk:hover{
  background: #1e73d8;
}
.cost-lead-btn-max{
  background: #7c3aed;
  color: #ffffff;
  border-color: #7c3aed;
}
.cost-lead-btn-max:hover{
  background: #6d28d9;
}
.cost-lead-form{
  margin-top: 2px;
  width: 100%;
  max-width: 560px;
}
.cost-lead-form-card{
  margin-top: 10px;
  width: 100%;
  max-width: 560px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.30);
}
.cost-lead-form-card .contact-title{
  margin-bottom: 8px;
}
.cost-lead-form-card .btn-wide{
  width: 100%;
  min-width: 0;
}
.cost-lead-form-card .form-disclaimer{
  text-align: left;
}
.cost-lead-form .field{
  margin-top: 12px;
}
.cost-lead-form .field:first-child{
  margin-top: 0;
}
.cost-lead-form .input{
  height: 46px;
  font-size: 14px;
}
.cost-lead-form .label{
  font-size: 14px;
}
.cost-lead-form .form-actions{
  margin-top: 14px;
}
.cost-lead-form .btn{
  min-height: 48px;
  font-size: 15px;
}
.cost-lead-form .form-disclaimer{
  font-size: 12.5px;
}

.screen{
  padding: var(--section-pad-top) 0 var(--section-pad-bottom);
  scroll-margin-top: 82px;
}

/* Секция контактов: меньше «воздуха» внизу и у вложенного FAQ (иначе двойные отступы .screen) */
.screen.screen-contacts{
  padding-bottom: calc(var(--section-pad-bottom) - 6px);
}

.screen-contacts .screen.screen-faq{
  margin-top: 0;
  padding-top: var(--section-pad-top);
  padding-bottom: calc(var(--section-pad-bottom) - 10px);
}

.screen-contacts .screen.screen-faq::before{
  margin-bottom: var(--section-line-gap);
}

.screen-contacts .faq-list{
  margin-top: 6px;
}
.screen-hero{
  padding-top: 84px;
  padding-bottom: 22px;
  overflow-x: hidden;
}

/* Между всеми экранами: компактнее по вертикали + неоновая линия-разделитель */
.screen:not(.screen-hero)::before{
  content: "";
  display: block;
  margin: 0 auto var(--section-line-gap);
  width: min(1100px, calc(100% - 36px));
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(0, 255, 153, 0) 0%,
    rgba(0, 255, 153, 0.58) 48%,
    rgba(0, 255, 153, 0) 100%
  );
  box-shadow: 0 0 18px rgba(0, 255, 153, 0.24);
  animation: sectionDividerPulse 2.8s ease-in-out infinite;
}
/* У блока рейтингов свои две линии вокруг карточек — общую верхнюю линию секции отключаем */
.screen.screen-ratings::before{
  display: none;
}
.section-head{
  margin-bottom: var(--section-head-gap);
}

#lead-form-anchor.section-head{
  margin-bottom: calc(var(--section-head-gap) + 1px);
  scroll-margin-top: 92px;
}
.section-title{
  margin: 0;
  font-size: 36px;
  letter-spacing: -0.02em;
}
.section-subtitle{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 720px;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.hero-media{
  min-width: 0;
}
.hero-copy{
  padding-top: 6px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-title{
  margin: 0;
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.hero-lead{
  margin: 6px 0 0;
  font-size: 16px;
  color: rgba(246, 255, 246, 0.78);
  max-width: 560px;
}
.hero-lead-line{
  display: block;
  white-space: nowrap;
}
.hero-actions{
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-photo2{
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  max-width: 100%;
  border: none;
  box-shadow: none;
  background: transparent;
  aspect-ratio: 1 / 1;
}
.hero-photo2-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  background: transparent;
  border-radius: 18px;
  opacity: 0;
  transform: translateY(14px) scale(1.015);
  animation: heroPhotoIn 0.95s ease 0.15s forwards;
}
.hero-copy .quick-points{
  margin-top: 24px;
}
.hero-actions .btn{
  min-height: 56px;
  padding: 15px 20px;
  font-size: 17px;
  border-radius: 16px;
}
.hero-actions .btn-primary{
  box-shadow: 0 20px 40px rgba(0, 153, 0, 0.34), 0 0 0 1px rgba(0, 255, 153, 0.18);
}
.hero-actions .btn-secondary{
  background: linear-gradient(135deg, rgba(0, 255, 153, 0.22), rgba(0, 230, 199, 0.20));
  color: rgba(210, 255, 232, 0.98);
  border-color: rgba(0, 255, 153, 0.38);
  box-shadow: 0 14px 30px rgba(0, 255, 153, 0.14);
}
.hero-actions .btn-secondary:hover{
  background: linear-gradient(135deg, rgba(0, 255, 153, 0.30), rgba(0, 230, 199, 0.26));
}
.hero-promo-wrap{
  margin-top: 16px;
}
.trust-ratings{
  display: grid;
  gap: 10px;
}
.screen-ratings{
  position: relative;
  padding: var(--section-pad-top) 0 var(--section-pad-bottom);
}
.screen-ratings .container{
  display: flex;
  flex-direction: column;
}
.ratings-heading{
  margin: 0 0 var(--section-head-gap);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(246, 255, 246, 0.98);
  text-shadow: 0 0 24px rgba(0, 255, 153, 0.20);
}
.rating-facts{
  margin: 0 0 var(--section-head-gap);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.rating-fact{
  padding: 2px 0;
  min-height: auto;
  text-align: center;
}
.rating-fact-value{
  font-size: 38px;
  line-height: 1;
  font-weight: 1000;
  color: var(--accent2);
}
.rating-fact-label{
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  color: rgba(246,255,246,0.80);
}
.screen-ratings .container::before{
  content: "";
  display: block;
  flex-shrink: 0;
  width: min(1100px, calc(100% - 36px));
  height: 2px;
  margin: 0 auto var(--section-line-gap);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(0, 255, 153, 0) 0%,
    rgba(0, 255, 153, 0.58) 48%,
    rgba(0, 255, 153, 0) 100%
  );
  box-shadow: 0 0 18px rgba(0, 255, 153, 0.24);
  animation: sectionDividerPulse 2.8s ease-in-out infinite;
}
.trust-ratings-row{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.trust-rating{
  display: grid;
  grid-template-columns: 46px auto auto 1fr;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 14px;
  text-decoration: none;
}
.trust-rating-logo{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
}
.trust-rating-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.trust-rating-score{
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}
.trust-rating-stars{
  color: #f59e0b;
  letter-spacing: 0.06em;
  font-size: 12px;
  font-weight: 900;
}
.trust-rating-count{
  justify-self: end;
  color: rgba(246,255,246,0.74);
  font-weight: 700;
}
.hero-contact{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
}
.hero-contact-label{
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.hero-contact-link{
  text-decoration: none;
  font-weight: 900;
  color: var(--accent);
}

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

.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  padding: 18px;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(0, 255, 153, 0.30);
  box-shadow: 0 22px 60px rgba(0, 255, 153, 0.08), 0 14px 45px rgba(0, 0, 0, 0.35);
}

.card.promo-card{
  border-radius: var(--radius2);
  padding: 22px 20px;
  background:
    radial-gradient(1000px 320px at 18% 0%, rgba(0, 153, 0, 0.22), transparent 60%),
    radial-gradient(600px 260px at 90% 0%, rgba(0, 230, 199, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
}
.promo-pill{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 153, 0, 0.18);
  color: rgba(160, 255, 190, 0.96);
  font-weight: 800;
  font-size: 13px;
}
.promo-title{
  margin: 14px 0 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.promo-text{
  margin: 10px 0 0;
  color: rgba(246, 255, 246, 0.78);
  font-weight: 600;
}
.promo-row{
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0; /* flex: иначе ряд не сжимается из‑за широкого контента */
}
.promo-copy{
  flex: 1 1 auto;
  min-width: 0;
}
.promo-visual{
  margin: 0;
  flex: 0 0 auto;
  min-width: 0; /* иначе min-width:auto берётся от огромного intrinsic PNG */
}
.promo-circle{
  width: 132px;
  height: 132px;
  max-width: min(132px, 38vw);
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: transparent;
  isolation: isolate;
}
.promo-circle img{
  width: 100%;
  height: 100%;
  max-width: none; /* глобальный img { max-width:100% } не должен сжимать кроп */
  object-fit: cover;
  object-position: center;
  display: block;
  /* Вырезаем по зелёному контуру, который есть на самом изображении. */
  clip-path: circle(44% at 50% 50%);
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-wide{ min-width: 240px; }
.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #021006;
  border-color: rgba(0,0,0,0);
  box-shadow: 0 18px 34px rgba(0, 153, 0, 0.22), 0 0 0 1px rgba(0,255,153,0.10);
}
.btn-primary:hover{ box-shadow: 0 26px 55px rgba(0, 153, 0, 0.30), 0 0 0 1px rgba(0,255,153,0.14); }
.btn-secondary{
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent2);
  border-color: rgba(0, 255, 153, 0.20);
}
.btn-secondary:hover{
  background: rgba(0, 153, 0, 0.14);
}
.btn-accent{
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  color: #021006;
  border-color: rgba(0,0,0,0);
}
.btn-accent:hover{
  box-shadow: 0 18px 34px rgba(0, 255, 153, 0.22);
}

.promo-foot{
  margin: 12px 0 0;
  color: rgba(246, 255, 246, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.quick-points{
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.quick-point{
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}
.quick-icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 153, 0, 0.14);
  border: 1px solid rgba(0, 255, 153, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-icon::before{
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%2300ff85'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Ccircle%20cx='11'%20cy='11'%20r='7'/%3E%3Cpath%20d='M21%2021l-4.3-4.3'/%3E%3C/svg%3E");
}
.quick-icon-fast,
.quick-icon-warranty,
.quick-icon-experience,
.quick-icon-reviews,
.quick-icon-stock{
  background: rgba(0, 255, 153, 0.14);
  border-color: rgba(0, 255, 153, 0.26);
}
.quick-icon-experience::before{
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%2300ff85'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Ccircle%20cx='12'%20cy='12'%20r='8'/%3E%3Cpath%20d='M12%208v4l3%202'/%3E%3C/svg%3E");
}
.quick-icon-reviews::before{
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%2300ff85'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M12%203l2.8%205.7%206.2.9-4.5%204.4%201.1%206.2L12%2017.3%206.4%2020.2l1.1-6.2L3%209.6l6.2-.9z'/%3E%3C/svg%3E");
}
.quick-icon-fast::before{
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%2300ff85'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M13%202L3%2014h9l-1%208%2010-12h-9z'/%3E%3C/svg%3E");
}
.quick-icon-warranty::before{
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%2300ff85'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M12%202l8%204v6c0%205-3.4%209.4-8%2010-4.6-.6-8-5-8-10V6l8-4z'/%3E%3Cpath%20d='M9%2012l2%202%204-5'/%3E%3C/svg%3E");
}
.quick-icon-stock::before{
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%2300ff85'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Crect%20x='3'%20y='7'%20width='18'%20height='13'%20rx='2'/%3E%3Cpath%20d='M8%207V5h8v2'/%3E%3Cpath%20d='M3%2012h18'/%3E%3C/svg%3E");
}
.quick-title{ font-weight: 900; font-size: 17px; line-height: 1.2; }
.quick-text{ margin-top: 2px; color: var(--muted); font-weight: 650; font-size: 13px; }

.grid{
  display: grid;
  gap: 16px;
}
.cards-4{ grid-template-columns: repeat(4, 1fr); }
.cards-3{ grid-template-columns: repeat(3, 1fr); }
.advantages-layout{
  position: relative;
  isolation: isolate;
  overflow-y: visible;
}

@supports (overflow: clip){
  .advantages-layout{
    overflow-x: clip;
  }
}
.advantages-list{
  position: relative;
  z-index: 2;
  padding-right: clamp(80px, 16vw, 210px);
}
.advantages-side{
  position: absolute;
  right: -280px;
  bottom: -130px;
  width: clamp(620px, 78vw, 1180px);
  z-index: 1;
  pointer-events: none;
}
.advantages-side::before{
  content: "";
  position: absolute;
  inset: 8% 12% 10% 8%;
  border-radius: 34px;
  background: radial-gradient(circle at 35% 40%, rgba(0, 255, 153, 0.34), rgba(0, 255, 153, 0) 72%);
  filter: blur(20px);
  z-index: -1;
}
.advantages-side-image{
  width: 100%;
  display: block;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.86) 20%, #000 40%, #000 100%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.86) 20%, #000 40%, #000 100%);
}

.benefit{
  padding: 18px 16px;
}
.benefit-image{
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(0, 255, 153, 0.22);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}
.benefit h3{
  margin: 12px 0 0;
  font-size: 16px;
}
.benefit p{
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.benefit-icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(0, 153, 0, 0.12);
  border: 1px solid rgba(0, 255, 153, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.benefit-icon::before{
  content:"";
  width: 22px;
  height: 22px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.benefit-icon-nopay::before{
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%2322c55e'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M12%202l8%204v6c0%205-3.4%209.4-8%2010-4.6-.6-8-5-8-10V6l8-4z'/%3E%3Cpath%20d='M9%2012l2%202%204-5'/%3E%3C/svg%3E");
}
.benefit-icon-nopay,
.benefit-icon-diagn,
.benefit-icon-fast,
.benefit-icon-warranty{
  background: rgba(0, 255, 153, 0.14);
  border-color: rgba(0, 255, 153, 0.24);
}

.benefit-icon-diagn::before{
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%2300ff85'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Ccircle%20cx='11'%20cy='11'%20r='7'/%3E%3Cpath%20d='M21%2021l-4.3-4.3'/%3E%3C/svg%3E");
}
.benefit-icon-fast::before{
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%2300ff85'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M13%202L3%2014h9l-1%208%2010-12h-9z'/%3E%3C/svg%3E");
}
.benefit-icon-warranty::before{
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%2300ff85'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M7%202h10v20l-5-3-5%203V2z'/%3E%3Cpath%20d='M9%207h6'/%3E%3Cpath%20d='M9%2011h6'/%3E%3C/svg%3E");
}

.services-2{
  grid-template-columns: 1fr 1fr;
}
.services-cards-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.service-card{
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-radius: 18px;
  overflow: hidden;
}
.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0, 255, 153, 0.10), 0 14px 34px rgba(0, 0, 0, 0.40);
}
.service-card-image{
  width: 100%;
  height: 150px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: transparent;
}
.service-card-title{
  margin: 12px 0 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}
.service-card-price{
  margin-top: 8px;
  font-weight: 900;
  color: var(--accent2);
  font-size: 22px;
}
.service-card-desc{
  margin: 8px 0 0;
  color: rgba(246,255,246,0.80);
  font-size: 14px;
  line-height: 1.45;
}
.service-card-actions{
  margin-top: auto;
  padding-top: 12px;
}
.service-card-btn{
  width: 100%;
}

.services-seo-blocks{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
.services-seo-block{
  padding: 18px 16px;
}
.services-seo-block + .services-seo-block{
  position: relative;
}
.services-seo-block + .services-seo-block::before{
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: -7px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,255,153,0), rgba(0,255,153,0.35), rgba(0,255,153,0));
}
.services-seo-title{
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.services-seo-text{
  margin: 10px 0 0;
  color: rgba(246,255,246,0.80);
  line-height: 1.52;
}
.services-seo-list{
  margin: 10px 0 0;
  padding: 0 0 0 20px;
  color: rgba(246,255,246,0.86);
  line-height: 1.55;
}
.services-seo-subgrid{
  margin-top: 10px;
  display: grid;
  gap: 8px;
}
.services-seo-subitem-title{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: rgba(246,255,246,0.92);
}
.services-seo-subitem-text{
  margin: 4px 0 0;
  color: rgba(246,255,246,0.74);
  line-height: 1.45;
}
.services-cta-block{
  margin-top: 18px;
  padding: 20px 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.services-cta-title{
  font-size: 24px;
  font-weight: 1000;
  letter-spacing: -0.01em;
}
.services-cta-text{
  margin-top: 8px;
  color: rgba(246,255,246,0.78);
}
.services-cta-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.panel{
  padding: 20px 18px;
}
.panel-alt{
  background: linear-gradient(180deg, rgba(0, 153, 0, 0.08), rgba(255,255,255,0.06));
}
.panel-title{
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.list{
  margin: 14px 0 0;
  padding: 0 0 0 18px;
  color: rgba(246, 255, 246, 0.80);
  font-weight: 650;
}
.list li{
  margin: 8px 0;
}
.panel-foot{
  margin-top: 16px;
}
.callout{
  margin-top: 18px;
  padding: 20px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.callout-title{
  font-weight: 1000;
  font-size: 18px;
}
.callout-text{
  margin-top: 6px;
  color: var(--muted);
  font-weight: 650;
}

.price-card{
  padding: 20px 16px;
}
.price-top{
  font-weight: 900;
  font-size: 13px;
  color: rgba(246, 255, 246, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-name{
  margin: 12px 0 0;
  font-size: 20px;
}
.price-row{
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.price-from{
  font-weight: 1000;
  font-size: 22px;
  color: var(--accent);
}
.price-note{
  color: var(--muted);
  font-weight: 700;
}
.price-text{
  margin: 10px 0 0;
  color: rgba(246, 255, 246, 0.78);
  font-weight: 650;
}

.price-cta{
  margin-top: 18px;
  padding: 20px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.price-cta-title{
  font-weight: 1000;
  font-size: 18px;
}
.price-cta-sub{
  margin-top: 6px;
  color: var(--muted);
  font-weight: 650;
}

.review-card{
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-stars{
  color: #f59e0b;
  letter-spacing: 0.03em;
  font-size: 14px;
}
.review-text{
  margin: 0;
  color: rgba(246, 255, 246, 0.80);
  font-weight: 650;
}
.review-author{
  margin-top: auto;
  font-weight: 900;
  color: rgba(246, 255, 246, 0.66);
  font-size: 14px;
}
.review-card-founder{
  background: linear-gradient(180deg, rgba(0, 153, 0, 0.10), rgba(255,255,255,0.06));
}
.review-founder-quote{
  font-weight: 1000;
  color: var(--accent2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.reviews-feed-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.reviews-feed-tabs{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 10px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #ffffff;
}
.reviews-feed-tab{
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
  padding: 6px 12px;
}
.reviews-feed-tab.active{
  background: #f3f4f6;
}
.reviews-feed-tab-icon{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  cursor: pointer;
  padding: 0;
}
.reviews-feed-tab-icon.active{
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.reviews-feed-tab-icon img{
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.reviews-feed-cta{
  padding-left: 18px;
  padding-right: 18px;
}
.reviews-feed-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.review-feed-card{
  min-height: 250px;
  background: #ffffff;
  border-color: rgba(20, 26, 36, 0.08);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.10);
  border-radius: 20px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
}
.review-feed-card .review-stars{
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 0.1em;
}
.review-feed-card .review-author{
  color: #111827;
  font-size: 18px;
  line-height: 1.05;
  margin-top: 6px;
  font-weight: 700;
}
.review-feed-card .review-date{
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}
.review-feed-card .review-text{
  color: #374151;
  font-size: 16px;
  line-height: 1.45;
  margin-top: 14px;
  font-weight: 500;
}
.review-feed-card .review-source{
  color: #6b7280;
  font-size: 14px;
}
.review-date{
  margin-top: 2px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
}
.review-source{
  display: inline-flex;
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  color: #9ca3af;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.reviews-widget{
  display: grid;
  grid-template-columns: 1.75fr 0.85fr;
  gap: 14px;
  align-items: start;
}
.review-yandex-card{
  padding: 18px;
}
.review-yandex-title{
  font-size: 34px;
  font-weight: 1000;
  letter-spacing: -0.02em;
}
.review-yandex-subtitle{
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}
.review-yandex-rating{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 44px auto auto 1fr;
  align-items: center;
  gap: 10px;
}
.review-yandex-logo{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
}
.review-yandex-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.review-yandex-score{
  font-size: 40px;
  line-height: 1;
  font-weight: 1000;
}
.review-yandex-stars{
  color: #f59e0b;
  letter-spacing: 0.06em;
  font-weight: 900;
  font-size: 16px;
}
.review-yandex-count{
  justify-self: end;
  font-weight: 800;
  color: rgba(246,255,246,0.75);
}
.review-yandex-tags{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.review-yandex-tags span{
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(246,255,246,0.84);
}
.review-platforms{
  display: grid;
  gap: 10px;
}
.review-platform{
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 38px auto auto 1fr;
  align-items: center;
  gap: 8px;
}
.review-platform-logo{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  overflow: hidden;
}
.review-platform-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.review-platform-score{
  font-size: 34px;
  line-height: 1;
  font-weight: 1000;
}
.review-platform-stars{
  color: #f59e0b;
  letter-spacing: 0.05em;
  font-size: 12px;
  font-weight: 900;
}
.review-platform-count{
  justify-self: end;
  color: rgba(246,255,246,0.74);
  font-weight: 800;
}

.contacts-grid{
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  gap: 12px;
  margin-bottom: var(--section-inner-rule-my);
}

.branches{
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin-bottom: calc(var(--section-inner-rule-my) + 4px);
}

/* Линия между блоком филиалов и заявкой — тот же градиент, что у .screen::before */
.section-block-rule{
  display: block;
  margin: var(--section-inner-rule-my) auto calc(var(--section-inner-rule-my) + 1px);
  width: min(1100px, calc(100% - 36px));
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(0, 255, 153, 0) 0%,
    rgba(0, 255, 153, 0.58) 48%,
    rgba(0, 255, 153, 0) 100%
  );
  box-shadow: 0 0 18px rgba(0, 255, 153, 0.24);
  animation: sectionDividerPulse 2.8s ease-in-out infinite;
}

/* Подвал: линия под FAQ, над слоганом */
.section-block-rule--footer-top{
  margin: calc(var(--section-inner-rule-my) - 5px) auto var(--section-line-gap);
}
.branch-card{
  padding: 14px;
  overflow: hidden;
}
.branch-gallery{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.branch-photo{
  width: 100%;
  height: 170px;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}
.branch-body{
  padding: 14px 4px 4px;
}
.branch-title{
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.branch-line{
  margin-top: 10px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
  align-items: start;
}
.branch-label{
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}
.branch-value{
  font-weight: 750;
  color: rgba(246, 255, 246, 0.90);
}
.branch-link{
  text-decoration: none;
  color: var(--accent);
  font-weight: 900;
}
.branch-actions{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-card{
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.contact-title{
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.contact-item{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.contact-item:first-of-type{
  border-top: none;
}
.contact-label{
  color: var(--muted);
  font-weight: 800;
}
.contact-value{
  text-decoration: none;
  font-weight: 850;
  color: rgba(246, 255, 246, 0.90);
}
.contact-note{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-card > .contact-note:first-child{
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.contact-note-title{
  font-weight: 1000;
  margin-bottom: 8px;
}
.list-muted{
  color: rgba(246, 255, 246, 0.72);
}
.list-muted li{ margin: 7px 0; }

.form-card{
  padding: 18px 16px;
}
.form-intro{
  margin: 0 0 12px;
  color: rgba(246, 255, 246, 0.72);
  font-weight: 650;
  font-size: 15px;
  line-height: 1.45;
}
.form{
  margin-top: 6px;
}
.field{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.field:first-child{ margin-top: 0; }
.label{
  font-weight: 900;
  color: rgba(246, 255, 246, 0.86);
  font-size: 14px;
}
.input{
  width: 100%;
  height: 46px;
  border-radius: 14px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  outline: none;
  font-weight: 700;
  font-size: 14px;
  color: rgba(246, 255, 246, 0.95);
}
.input::placeholder{
  color: rgba(246, 255, 246, 0.45);
  font-weight: 650;
}
.input:focus{
  border-color: rgba(0, 255, 153, 0.65);
  box-shadow: 0 0 0 4px rgba(0, 255, 153, 0.14);
}
.form-actions{
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-disclaimer{
  color: rgba(246, 255, 246, 0.62);
  font-weight: 650;
  font-size: 12.5px;
}
.form-status:empty{
  display: none;
}
.form-status:not(:empty){
  margin-top: 8px;
  min-height: 1.2em;
  font-weight: 800;
}

.site-footer{
  padding: 18px 0 22px;
  color: rgba(246, 255, 246, 0.60);
  font-weight: 700;
}
.footer-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-copy{
  max-width: 520px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  color: rgba(246, 255, 246, 0.72);
}

.footer-legal{
  max-width: 460px;
  margin: 0 auto;
  padding: 10px 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 650;
  color: rgba(246, 255, 246, 0.46);
}

.footer-legal p{
  margin: 0.22em 0;
}

.footer-legal p:first-child{
  margin-top: 0;
  font-size: 9px;
  line-height: 1.35;
  color: rgba(246, 255, 246, 0.4);
}

.footer-legal p:last-child{
  margin-bottom: 0;
}

.to-top{
  position: fixed;
  left: 16px;
  right: auto;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  font-weight: 1000;
  color: rgba(246, 255, 246, 0.70);
  display: none;
}
.to-top.show{ display: inline-flex; align-items: center; justify-content: center; }

/* VK CommunityMessages: виджет на ПК, на мобильных скрыт */
#vk_community_messages{
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 120;
}

.vk-chat-fab{
  display: none;
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 120;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2787f5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.vk-chat-fab:hover,
.vk-chat-fab:focus-visible{
  background: #1e73d8;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(39, 135, 245, 0.35);
}

.vk-chat-fab-logo{
  width: 28px;
  height: 28px;
  padding: 2px;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px){
  #vk_community_messages,
  #vk_community_messages iframe,
  #vk_community_messages *,
  .vk-chat-fab,
  iframe[src*="vk.ru"],
  iframe[src*="vk.com"]{
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
  }
}

@media (min-width: 769px){
  .vk-chat-fab{
    display: none !important;
  }
}

/* Premium tech: анимация появления */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  filter: blur(8px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes heroPhotoIn{
  from{
    opacity: 0;
    transform: translateY(14px) scale(1.015);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes sectionDividerPulse{
  0%, 100%{
    opacity: 0.55;
    transform: scaleX(0.98);
  }
  50%{
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .hero-photo2-img{
    opacity: 1;
    transform: none;
    animation: none;
  }
  .screen:not(.screen-hero)::before{
    animation: none;
    opacity: 0.85;
  }
  .section-block-rule{
    animation: none;
    opacity: 0.85;
  }
  .screen-ratings .container::before{
    animation: none;
    opacity: 0.85;
  }
  .cases-marquee{
    scroll-behavior: auto;
  }
  .reviews-feed-scroller{
    scroll-behavior: auto;
  }
  .hero-sticker-img{
    transform: none;
  }
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards-4{ grid-template-columns: repeat(2, 1fr); }
  .cards-3{ grid-template-columns: repeat(2, 1fr); }
  .services-2{ grid-template-columns: 1fr; }
  .services-cards-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card-image{ height: 170px; }
  .services-seo-title{ font-size: 24px; }
  .services-cta-block{
    flex-direction: column;
    align-items: flex-start;
  }
  .branches{ grid-template-columns: 1fr; }
  .contacts-grid{ grid-template-columns: 1fr; }
  .faq-cta-row{ grid-template-columns: 1fr; }
  .reviews-feed-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-feed-head{ align-items: flex-start; }
  .reviews-widget{ grid-template-columns: 1fr; }
  .review-yandex-tags{ grid-template-columns: 1fr 1fr; }
  .section-title{ font-size: 32px; }
  .hero-title{ font-size: 38px; }
  .hero-heading-row{
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .hero-heading-row .hero-title{
    white-space: normal;
  }
  .hero-sticker{
    margin-top: -14px;
  }
  .hero-copy{
    height: auto;
    display: block;
  }
  .hero-lead{ margin-top: 8px; }
  .hero-copy .quick-points{ margin-top: 18px; }
  .hero-actions{ margin-top: 22px; }
  .hero-lead-line{ white-space: normal; }
  .hero-actions .btn{
    white-space: normal;
    min-width: 0;
  }
  .hero-photo2{ max-width: 100%; }
  .hero-photo2{ aspect-ratio: auto; }
  .hero-photo2-img{ height: 520px; object-fit: contain; object-position: center top; }
  .hero-actions .btn{
    min-height: 52px;
    font-size: 16px;
    padding: 13px 16px;
  }
  .quick-points{ grid-template-columns: 1fr; }
  .advantages-list{
    padding-right: 0;
  }
  .advantages-side{
    right: -190px;
    bottom: -95px;
    width: clamp(440px, 86vw, 760px);
  }
  .advantages-side-image{
    opacity: 1;
  }
  .screen-ratings{
    padding: var(--section-pad-top) 0 var(--section-pad-bottom);
  }
  .ratings-heading{ font-size: 23px; margin-bottom: 12px; }
  .rating-facts{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .rating-fact{
    min-height: auto;
    padding: 8px 6px;
  }
  .rating-fact-value{ font-size: 34px; }
  .rating-fact-label{
    font-size: 15px;
    line-height: 1.3;
  }
  .screen:not(.screen-hero)::before,
  .section-block-rule{
    width: calc(100% - 28px);
  }
  .screen:not(.screen-hero)::before,
  .screen-ratings .container::before{
    margin-bottom: var(--section-line-gap);
  }
  .screen-ratings .container::before{
    width: calc(100% - 28px);
  }
  .trust-ratings-row{ grid-template-columns: 1fr; }
  .trust-rating{
    grid-template-columns: 40px auto auto 1fr;
    padding: 10px 12px;
  }
  .trust-rating-logo{ width: 32px; height: 32px; border-radius: 9px; }
  .trust-rating-score{ font-size: 28px; }
  .header-inner{
    height: auto;
    min-height: 74px;
    padding: 8px 0;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .header-contact{
    flex: 0 0 auto;
  }
  .logo-mark{
    width: 50px;
    height: 50px;
  }
  .logo--header-mark .logo-mark{
    width: auto;
    height: auto;
    max-width: min(100px, 26vw);
    max-height: 44px;
  }
  .logo-text{ font-size: 21px; }
  .screen-process .process-layout{
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
  }
  .process-steps{
    padding: 20px 16px 22px;
  }
  .screen-process .process-visual-wrap{
    order: -1;
    min-height: auto;
    max-height: none;
    margin: 0;
    padding: 2px 10px 8px;
    line-height: 0;
    overflow: visible;
    display: block;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .screen-process .process-visual-img{
    position: static;
    display: block;
    width: 100%;
    height: auto;
    max-height: min(70vw, 360px);
    margin: 0;
    object-fit: contain;
    object-position: top center;
  }
  .process-step-xl-num{
    font-size: 46px;
  }
  .nav{ gap: 10px; }
  .nav a{
    font-size: 15px;
    padding: 11px 9px;
  }
  .header-contact-phone{ font-size: 21px; }
  .header-contact-phone::before{ width: 14px; height: 14px; flex-basis: 14px; }
  .header-contact-time{ font-size: 11px; }
  .cost-lead-title{ font-size: 28px; }
  .cost-lead-text{ font-size: 16px; }
  .cost-lead-visual{
    width: min(190px, 100%);
    margin-top: 10px;
  }
  .cost-lead-btn{
    min-width: 0;
    min-height: 44px;
    font-size: 14px;
  }
  .cost-lead-btns{
    justify-content: center;
  }
  .cost-lead-form-card{ max-width: 100%; }
  .cost-lead-text--primary{
    white-space: normal;
  }
  .cost-lead-text.cost-lead-text--hint{
    white-space: normal;
    margin-bottom: 16px;
  }
}

@media (max-width: 560px){
  .services-cards-grid{ grid-template-columns: 1fr; }
  .service-card-image{ height: 178px; }
  .service-card-desc{
    font-size: 15px;
    line-height: 1.6;
  }
  .services-seo-title{ font-size: 22px; }
  .services-seo-text,
  .services-seo-list,
  .services-seo-subitem-text{
    line-height: 1.65;
  }
  .services-seo-subitem-title{ font-size: 17px; }
  .services-cta-title{ font-size: 21px; }

  .cost-lead-text--primary{
    white-space: normal;
  }

  .cards-4{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: 1fr; }
  .reviews-feed-head{
    flex-direction: column;
    align-items: stretch;
  }
  .reviews-feed-grid{ grid-template-columns: 1fr; }
  .reviews-feed-tab{ font-size: 13px; }
  .reviews-feed-tab-icon{
    width: 28px;
    height: 28px;
  }
  .reviews-feed-tab-icon img{
    width: 20px;
    height: 20px;
  }
  .review-yandex-rating{
    grid-template-columns: 32px auto;
    row-gap: 4px;
    column-gap: 8px;
  }
  .review-yandex-logo{ width: 28px; height: 28px; border-radius: 8px; }
  .review-yandex-score{ font-size: 26px; }
  .review-yandex-stars,
  .review-yandex-count{
    grid-column: 2;
    justify-self: start;
  }
  .review-yandex-tags{ grid-template-columns: 1fr; }
  .review-platform{
    grid-template-columns: 32px auto;
    row-gap: 3px;
    column-gap: 8px;
  }
  .review-platform-logo{ width: 28px; height: 28px; border-radius: 8px; }
  .review-platform-score{ font-size: 24px; }
  .review-platform-stars,
  .review-platform-count{
    grid-column: 2;
    justify-self: start;
  }
  .hero-title{ font-size: 32px; }
  .hero-heading-row{
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }
  .hero-heading-row .hero-title{
    width: auto;
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }
  .hero-sticker{
    margin: -8px 0 0;
  }
  .hero-sticker-img{
    width: min(128px, 42vw);
  }
  .hero-lead{ margin-top: 8px; }
  .hero-copy .quick-points{ margin-top: 16px; }
  .hero-actions{ margin-top: 18px; }
  .screen-ratings{
    padding: var(--section-pad-top) 0 var(--section-pad-bottom);
  }
  .ratings-heading{
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .rating-facts{
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 12px;
  }
  .rating-fact{
    min-height: auto;
    padding: 12px 14px;
  }
  .rating-fact-value{ font-size: 36px; }
  .rating-fact-label{
    margin-top: 6px;
    font-size: 16px;
    line-height: 1.35;
  }
  .screen:not(.screen-hero)::before,
  .section-block-rule{
    width: calc(100% - 24px);
  }
  .screen:not(.screen-hero)::before,
  .screen-ratings .container::before{
    margin-bottom: var(--section-line-gap);
  }
  .screen-ratings .container::before{
    width: calc(100% - 24px);
  }
  .trust-rating{
    grid-template-columns: 32px 1fr;
    row-gap: 3px;
    column-gap: 8px;
  }
  .trust-rating-logo{ width: 28px; height: 28px; border-radius: 8px; }
  .trust-rating-score{ font-size: 22px; }
  .trust-rating-stars{
    grid-column: 2;
    justify-self: start;
  }
  .trust-rating-count{
    grid-column: 2;
    justify-self: start;
    font-size: 12px;
  }
  .hero-photo2{ aspect-ratio: auto; }
  .hero-photo2-img{ height: 360px; object-fit: contain; object-position: center top; }
  .hero-actions .btn{
    min-height: 48px;
    font-size: 15px;
    padding: 12px 14px;
  }
  .header-inner{
    height: auto;
    min-height: 70px;
    padding: 6px 0;
  }
  .logo-mark{
    width: 46px;
    height: 46px;
  }
  .logo--header-mark .logo-mark{
    width: auto;
    height: auto;
    max-width: min(88px, 22vw);
    max-height: 38px;
  }
  .logo--header-mark .logo-text{
    font-size: 18px;
  }
  .logo-text{ font-size: 20px; }
  .nav{ display: none; }
  .header-contact{ gap: 1px; }
  .header-contact-phone{ font-size: 16px; }
  .header-contact-phone::before{ width: 12px; height: 12px; flex-basis: 12px; }
  .header-contact-time{ font-size: 10px; }
  .section-title{ font-size: 28px; }
  .cost-lead-card{
    padding: 16px 12px 14px;
  }
  .cost-lead-title{
    font-size: 22px;
  }
  .cost-lead-grid{
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
  }
  .cost-lead-divider{
    display: none;
  }
  .cost-lead-text{
    font-size: 15px;
    line-height: 1.3;
  }
  .cost-lead-visual{
    width: min(152px, 100%);
    margin-top: 8px;
  }
  .cost-lead-btn{
    min-width: 0;
    width: auto;
    min-height: 44px;
    font-size: 15px;
    margin-top: 10px;
  }
  .cost-lead-btns{
    width: 100%;
    gap: 8px;
  }
  .cost-lead-form{ max-width: 100%; }
  .cost-lead-form-card{ max-width: 100%; }

  .promo-row{
    flex-direction: column;
    align-items: flex-start;
  }
  .advantages-side{
    display: none;
  }
}

/* Узкие экраны: без горизонтального скролла страницы, блоки в одну колонку где нужно */
@media (max-width: 768px){
  .site-header{
    overflow-x: hidden;
  }

  .container{
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-inner{
    gap: 8px;
  }

  /* Главный экран — только мобильная вёрстка */
  .screen-hero .hero-messengers{
    justify-content: center;
  }

  .screen-hero .hero-photo2{
    position: relative;
  }

  .screen-hero .hero-sticker--on-title{
    display: none;
  }

  .screen-hero .hero-sticker--on-photo{
    display: block;
    position: absolute;
    right: 2%;
    bottom: 6%;
    margin: 0;
    z-index: 2;
    pointer-events: none;
  }

  .screen-hero .hero-sticker--on-photo .hero-sticker-img{
    width: min(118px, 32vw);
  }

  .screen-hero .hero-heading-row{
    justify-content: center;
  }

  .screen-hero .hero-lead{
    text-align: center;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .screen-hero .hero-lead br{
    display: none;
  }

  .screen-hero .hero-lead-line{
    display: inline;
    white-space: normal;
  }

  .screen-hero .hero-lead-line + .hero-lead-line::before{
    content: " ";
  }

  .screen-hero .quick-points{
    gap: 12px;
  }

  .screen-hero .quick-point{
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    justify-items: stretch;
    text-align: left;
    gap: 12px 14px;
  }

  .screen-hero .quick-point > div{
    width: auto;
    min-width: 0;
  }

  .screen-hero .quick-title{
    text-align: left;
    line-height: 1.25;
  }

  .section-title,
  .section-subtitle{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .btn{
    white-space: normal;
    line-height: 1.25;
    text-align: center;
  }

  .btn-wide{
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .lead-messenger-layout{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lead-messenger-visual-wrap{
    order: -1;
    max-width: min(260px, 88vw);
    margin-left: auto;
    margin-right: auto;
  }

  .cost-lead-btns.lead-messenger-btns--grid .cost-lead-btn{
    min-width: 0;
  }

  .branch-line{
    grid-template-columns: minmax(0, 88px) minmax(0, 1fr);
    column-gap: 8px;
  }

  .branch-value,
  .branch-link{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .branch-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .branch-actions .btn{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-item{
    grid-template-columns: minmax(0, 104px) minmax(0, 1fr);
    gap: 8px 10px;
    min-width: 0;
  }

  .contact-value{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .input,
  select.input,
  textarea.input{
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .cases-marquee-outer > .cases-nav{
    display: none;
  }

  .cases-marquee-outer{
    gap: 0;
  }

  .cases-marquee{
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  }

  .trust-rating{
    min-width: 0;
  }

  .trust-rating-count{
    overflow-wrap: anywhere;
    word-break: break-word;
    justify-self: start;
  }

  .hero-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .reviews-objection{
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .callout,
  .price-cta{
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .callout .btn,
  .price-cta .btn{
    width: 100%;
    max-width: 100%;
  }

  .services-cta-actions{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .services-cta-actions .btn{
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .faq-q-text{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .faq-a{
    padding: 0 11px 10px 11px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

