/* ====== Base ====== */
:root{
  --container: 1200px;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --border: rgba(255,255,255,.18);
  --shadow: 0 18px 45px rgba(0,0,0,.35);

  /* Typography */
  --font-body: "Nunito", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  --font-title: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: #0b0f14;
}

a{ color:inherit; text-decoration:none; }
button{ font:inherit; }

/* Заголовки/акценты: Cormorant */
h1, h2, h3{
  font-family: var(--font-title);
  font-weight: 700;
}

/* ====== Layout ====== */
.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* ====== Hero ====== */
.hero{
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1000px 600px at 20% 35%, rgba(0,0,0,.55), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.05) 45%, rgba(0,0,0,.45) 100%);
}


.hero .container{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* reserve space for bottom features strip */
  padding-bottom: 140px;
}

/* ====== Nav ====== */
.nav{
  position: relative;
  z-index: 2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 0;
}

.nav__left{
  display:flex;
  align-items:center;
  gap: 26px;
}

.logo{
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: .5px;
  font-size: 20px;
}

.menu{
  display:flex;
  gap: 18px;
}

.menu__link{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  padding: 10px 8px;
  border-radius: 10px;
  transition: .2s ease;
}
.menu__link:hover{
  color: var(--text);
  background: rgba(255,255,255,.08);
}

/* ====== Buttons ====== */
.btn{
  font-family: var(--font-body);
  font-weight: 700;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.18);
  color: var(--text);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
  transition: .2s ease;
  font-size: 14px;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }

.btn--light{
  background: rgba(255,255,255,.92);
  color: #111;
  border-color: rgba(255,255,255,.35);
  box-shadow: var(--shadow);
}
.btn--primary{
  background: rgba(255,255,255,.92);
  color:#111;
  border-color: rgba(255,255,255,.35);
}

/* ====== Hero content ====== */
.hero__content{
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 0;
  margin: auto 0; /* vertical centering within the first screen */
}

.hero__title{
  font-family: var(--font-title);
  font-weight: 700;

  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -1.2px;
}

.hero__subtitle{
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.hero__actions{
  margin-top: 22px;
}

/* ====== Features strip (container width, bottom-fixed) ====== */
.features{
  position: absolute;
  z-index: 3;

  left: 50%;
  transform: translateX(-50%);
  width: min(var(--container), calc(100% - 48px));
  bottom: 32px;

  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.12);

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature{
  display:flex;
  align-items:center;
  gap: 12px;
  min-height: 52px;
}

.feature__badge{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.feature__title{
  font-weight: 700;
  font-size: 14px;
}
.feature__sub{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ====== Responsive (Hero) ====== */
@media (max-width: 980px){
  .menu{ display:none; }
  .hero__content{ padding-top: 0; }
  .features{ grid-template-columns: 1fr; gap: 10px; bottom: 20px; }
}

/* ====== Product block (Block 2) ====== */
.product{
  background: #f3f6fb;
  color: #0b0f14;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  position: relative;
}

.product__wrap{
  height: 100%;
  position: relative;
  padding-top: 44px;
}

/* Top UI */
.product__top{
  position: relative;
  z-index: 3;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
}

.product__title{
  font-family: var(--font-title);
  font-weight: 700;

  margin: 0;
  font-size: clamp(32px, 3.6vw, 54px);
  letter-spacing: -1px;
  line-height: 1.05;
}

.segmented{
  display:inline-flex;
  padding: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.08);
}

.segmented__btn{
  font-family: var(--font-body);
  font-weight: 700;

  border: 0;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  cursor:pointer;
  font-size: 14px;
  color: rgba(0,0,0,.72);
  user-select: none;
}
.segmented__btn.is-active{
  background: #fff;
  color: #0b0f14;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

/* chips */
.product__chips{
  position: relative;
  z-index: 3;
  margin-top: 16px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip{
  font-family: var(--font-body);
  font-weight: 600;

  display:inline-flex;
  align-items:center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.08);
  font-size: 13px;
  color: rgba(0,0,0,.75);
}

/* FULL-BLOCK IMAGE (fill both directions) */
.product__media{
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;                 /* ← ВСЯ ширина экрана */
  height: 100%;
  transform: translateX(-50%);  /* ← центрируем относительно viewport */
  z-index: 1;
  pointer-events: none;
}
.product__img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* ← заполняет весь блок */
  object-position: center;
  display: block;
}

/* optional soft vignette for readability */
.product::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(255,255,255,.65), transparent 55%),
    linear-gradient(180deg, rgba(243,246,251,.85) 0%, rgba(243,246,251,.35) 40%, rgba(243,246,251,.85) 100%);
  z-index: 2;
  mix-blend-mode: multiply;
  opacity: .22;
}

/* arrows bottom-left */
.product__arrows{
  position: absolute;
  left: 0;
  bottom: 32px;          /* ← фикс внизу блока */
  z-index: 4;
  display:flex;
  gap: 10px;
}

.nav-btn{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.9);
  cursor:pointer;
  font-size: 22px;
  line-height: 1;
}

/* responsive (Product) */
@media (max-width: 980px){
  .product__wrap{ padding-top: 24px; }
  .product__chips{ gap: 8px; }
  .product__arrows{ bottom: 20px; }
}


/* ====== Block 3: Laser scratch reveal ====== */
.laser{
  background:#0b0f14;
  color:#fff;
}

.laser__stage{
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

/* clean background */
.laser__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.laser__img--clean{ z-index: 1; }

/* canvas with hairy layer */
.laser__canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index: 2;
  pointer-events: none;
}

/* centered content */
.laser__content{
  position: relative;
  z-index: 5;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 40px 24px;
}

.laser__contentInner{
  width: min(980px, 100%);
}

.laser__content::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(780px 520px at 50% 45%, rgba(0,0,0,.58), rgba(0,0,0,.22) 55%, rgba(0,0,0,.62) 100%);
  z-index: -1;
}

.laser__title{
  font-family: var(--font-title);
  font-weight: 700;

  margin:0 0 14px 0;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.8px;
}

.laser__text{
  background: rgba(0,0,0,.26);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 18px 18px;
  backdrop-filter: blur(8px);
}

.laser__text p{
  margin: 0 0 10px 0;
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.5;
}

.laser__text ul{
  margin: 10px 0 0 18px;
  color: rgba(255,255,255,.86);
  line-height: 1.5;
}

.laser__text li{ margin: 6px 0; }

.laser__hint{
  margin-top: 12px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

@media (max-width: 980px){
  .laser__text{ padding: 16px; }
  .laser__text p{ font-size: 15px; }
}


/* FX canvas (laser glow + cooling halo) */
.laser__fxcanvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index: 4;          /* above text overlay? keep under text: set 3 for text; we'll set 2 hair, 3 content, 4 fx? actually glow should be under text */
  pointer-events:none;
  mix-blend-mode: screen;
  opacity: .95;
}

/* ====== Block 4: Feature scroll (page scroll driven) ====== */
.featureScroll{
  background:#ffffff;
  /* Height is set in JS as N * 100vh to create a scroll scenario */
  position: relative;
  padding: 0;
  margin-top: 2px;
}

.featureScroll__sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display:flex;
  align-items: center;
}

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

.featureScroll__wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  width: 100%;
}

/* Two big cards, same size, almost full height */
.featureScroll__card{
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  overflow:hidden;
  height: min(82vh, 780px);
  height: min(82svh, 780px);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  background: #fff;
}

.featureScroll__card--left{
  padding: 34px 34px;
  display:flex;
  flex-direction: column;
}

.featureScroll__kicker{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: rgba(0,0,0,.6);
  margin-bottom: 18px;
}

/* viewport window; list moves inside */
.featureScroll__viewport{
  position: relative;
  flex: 1;
  overflow: hidden;
}

.featureScroll__list{
  will-change: transform;
  transform: translate3d(0,0,0);
  transition: transform .18s ease-out;
}

/* Items */
.featureScroll__item{
  font-family: var(--font-title);
  font-weight: 700;

  width: 100%;
  text-align:left;
  border:0;
  background: transparent;
  cursor: pointer;
  padding: 10px 0;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.8px;
  color: rgba(0,0,0,.18);
  transition: color .22s ease, transform .22s ease;
  transform: translate3d(0,0,0);
}
.featureScroll__item:hover{ color: rgba(0,0,0,.45); }
.featureScroll__item.is-active{
  color: rgba(0,0,0,.92);
  transform: translate3d(0,-1px,0);
}

.featureScroll__card--right{
  position: relative;
  background: #e9edf5;
}

.featureScroll__label{
  position:absolute;
  left: 14px;
  top: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: rgba(0,0,0,.55);
  z-index: 3;
}

.featureScroll__imgStack{
  position:absolute;
  inset:0;
}

.featureScroll__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  opacity: 0;
  transition: opacity .35s ease;
}
.featureScroll__img.is-top{ opacity: 1; }

.featureScroll__badge{
  position:absolute;
  right: 14px;
  bottom: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  z-index: 3;
}

/* tablet */
@media (max-width: 980px){
  .featureScroll__wrap{ grid-template-columns: 1fr; }
  .featureScroll__card{ height: 42vh; height: 42svh; }
  .featureScroll__card--right{ height: 46vh; height: 46svh; }
  .featureScroll__card--left{ padding: 22px 22px; }
  .featureScroll__item{ font-size: clamp(22px, 5vw, 36px); }
}



/* ====== BLOCK 3 (redesign): Laser principle panel ====== */
.laser{
  position: relative;
  color: #fff;
  background: #0b0f14;
}

.laser__stage{
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.laser__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.laser__canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.laser__fxcanvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .92;
}

/* content */
.laser__content{
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px 18px;
  gap: 14px;
  text-align: left;
}

.laser__panel{
  width: min(980px, 100%);
  border-radius: 22px;
  padding: 26px 28px 18px;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.laser__panel{ text-align: center; }
.laser__benefits{ text-align: left; }

.laser__title{
  font-family: var(--font-title);
  font-weight: 700;

  margin: 0 0 14px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.laser__lead{
  margin: 0 0 10px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.55;
}

.laser__lead strong{
  color: rgba(255,255,255,.95);
}

.laser__benefits{
  margin-top: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 14px 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.laserBenefit{
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255,255,255,.80);
  font-size: 13px;
  line-height: 1.35;
}

.laserBenefit__icon{
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,.78);
}

.laserBenefit__icon svg{
  width: 22px;
  height: 22px;
  display: block;
}

.laser__hint{
  width: min(980px, 100%);
  text-align: center;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

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

@media (max-width: 520px){
  .laser__panel{ padding: 20px 18px 14px; border-radius: 18px; }
  .laser__benefits{ grid-template-columns: 1fr; }
  .laserBenefit{ grid-template-columns: 20px 1fr; }
}

/* ====== END BLOCK 3 redesign ====== */



/* ====== Story / Scroll Video Section (marquee + pyramid video) ====== */
.story{
  position:relative;
  padding: 28px 0 0;
  background: radial-gradient(1200px 600px at 50% 0%, rgba(255,255,255,.06), rgba(0,0,0,0) 55%),
              radial-gradient(900px 500px at 20% 30%, rgba(255,255,255,.04), rgba(0,0,0,0) 60%);
}

.story__marquee{
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  overflow:hidden;
}

.marquee{
  display:flex;
  width:100%;
  gap:0;
  white-space:nowrap;
}
.marquee__track{
  display:flex;
  align-items:center;
  gap:48px;
  padding: 14px 0;
  animation: marquee 22s linear infinite;
}
.marquee__track span{
  font-family: var(--font-body);
  font-weight: 700;

  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color: rgba(255,255,255,.78);
  letter-spacing:.2px;
}
.marquee__track span::before{
  content:"★";
  opacity:.75;
}

@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-100%); }
}

.story__headline{
  max-width: var(--container);
  margin: 0 auto;
  padding: 54px 18px 22px;
  text-align:center;
}
.story__h2{
  font-family: var(--font-title);
  font-weight: 700;

  margin:0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing:-.03em;
  color: rgba(255,255,255,.95);
  text-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.story__h2 span{
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255,255,255,.68);
}

.storyScroll{
  position:relative;
  /* 200vh даёт время на анимацию пирамидки и «залипание» видео */
  min-height: 220vh;
  padding-bottom: 40px;
}
.storyScroll__sticky{
  z-index:1;
  overflow:hidden;
  position: sticky;
  top: 0;
  height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
}
.storyVideo{
  z-index:2;
  --clip: polygon(0 32%, 100% 32%, 100% 100%, 0 100%);
  position:relative;
  width: min(1120px, calc(100vw - 36px));
  height: min(640px, calc(100vh - 140px));
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  clip-path: var(--clip);
  transform: translateZ(0);
  background: rgba(0,0,0,.35);
}
@media (max-width: 840px){
  .storyVideo{
    height: min(520px, calc(100vh - 160px));
    border-radius: 16px;
  }
}

.storyVideo__media{
  z-index:1;
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.03) contrast(1.02);
}

.storySnow{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index: 1; /* above video, below UI if UI has higher */
  opacity:1;
  transition: opacity .25s ease;
}
.storyVideo__veil{
  position:absolute;
  z-index:2;
  inset:0;
  background: radial-gradient(900px 520px at 50% 20%, rgba(0,0,0,.25), rgba(0,0,0,.66) 70%),
              linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,.72));
  pointer-events:none;
}

.storyVideo__ui{
  position:absolute;
  z-index:4;
  inset: 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 28px;
  color: rgba(255,255,255,.92);
}
.storyVideo__kicker{
  font-family: var(--font-body);
  font-weight: 700;

  font-size: 12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(255,255,255,.62);
  margin-bottom: 10px;
}
.storyVideo__title{
  font-family: var(--font-title);
  font-weight: 700;

  font-size: clamp(30px, 4.3vw, 56px);
  letter-spacing:-.03em;
  margin:0 0 16px;
}
.storyIcons{
  display:flex;
  gap: 22px;
  align-items:flex-start;
  justify-content:center;
  margin: 10px 0 14px;
}
.storyIcon{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 10px;
  min-width: 120px;
}
.storyIcon__dot{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  display:grid;
  place-items:center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(0,0,0,.32);
}
.storyIcon__dot svg{
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,.92);
}
.storyIcon__label{
  font-family: var(--font-body);
  font-weight: 600;

  font-size: 13px;
  line-height: 1.15;
  color: rgba(255,255,255,.78);
}

.storyVideo__copy{
  max-width: 560px;
  margin: 10px 0 18px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.72);
}
.storyVideo__btn{
  font-family: var(--font-body);
  font-weight: 700;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #0b0b0b;
  text-decoration:none;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  transition: transform .2s ease, filter .2s ease;
}
.storyVideo__btn:hover{ transform: translateY(-1px); filter: brightness(1.02); }

/* Текст, который «едет» поверх видео после раскрытия */
.storyScroll__text{
  position:relative;
  max-width: var(--container);
  margin: -26vh auto 0;
  padding: 0 18px 60px;
  pointer-events:none;
}
.storyText{
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 26px 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 22px 60px rgba(0,0,0,.40);
  pointer-events:auto;
}
.storyText__h3{
  font-family: var(--font-title);
  font-weight: 700;

  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing:-.01em;
  color: rgba(255,255,255,.92);
}
.storyText p{
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  font-size: 14px;
}
.storyText p:last-child{ margin-bottom:0; }

/* ====== Community Mosaic (images + videos) ====== */
.community{
  background: #f4f5f6;
  padding: 110px 0 120px;
}
.community__title{
  font-family: var(--font-title);
  font-weight: 700;

  margin: 0;
  text-align: center;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #111;
}
.community__sub{
  margin: 18px auto 0;
  max-width: 520px;
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(17,17,17,.62);
}

.community__mosaicWrap{
  margin-top: 56px;
  padding: 0 18px;
}
.community__mosaic{
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

/* Portrait-only tiles */
.mTile{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #e5e7eb;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  aspect-ratio: 9 / 16;
}
.mTile img,
.mTile video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.mTile video{ filter: saturate(1.02) contrast(1.02); }

/* Text tiles */
.mTile--text{
  background: #0b0b0b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.mTileText{
  text-align: center;
  max-width: 320px;
}
.mTileText__title{
  font-family: var(--font-title);
  font-weight: 700;

  letter-spacing: 0.06em;
  font-size: clamp(14px, 1.2vw, 18px);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.mTileText__body{
  font-family: var(--font-body);
  font-weight: 400;

  font-size: clamp(12px, 1.05vw, 15px);
  line-height: 1.45;
  color: rgba(255,255,255,.82);
}

/* Responsive */
@media (max-width: 980px){
  .community{ padding: 90px 0 100px; }
  .community__mosaic{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 580px){
  .community__mosaic{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .mTile{ border-radius: 18px; }
  .mTile--text{ padding: 18px; }
}


/* ====== BLOCK: Benefits ====== */
.benefits{
  background: #f4f5f6;
  color: #111;
  position: relative;
  padding: clamp(28px, 6vh, 78px) 0;
}

.benefits__title{
  font-family: var(--font-title);
  font-weight: 700;
  margin: 0 0 clamp(18px, 3.2vh, 28px);
  text-align: center;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #111;
}

.benefits__list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.8vw, 20px);
}

.benefitItem{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;

  padding: clamp(14px, 1.8vw, 18px);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.benefitItem__num{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  color: rgba(0,0,0,.78);
  background: rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.08);
}

.benefitItem__title{
  margin: 0;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.25;
  color: rgba(0,0,0,.92);
}

.benefitItem__text{
  margin: 8px 0 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(0,0,0,.68);
}

.benefits__footer{
  margin-top: clamp(16px, 3vh, 26px);
  padding-top: clamp(12px, 2.2vh, 18px);
  border-top: 1px solid rgba(0,0,0,.10);
}

.benefits__final{
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(0,0,0,.78);
}

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

@media (max-width: 520px){
  .benefitItem{ grid-template-columns: 30px 1fr; border-radius: 18px; padding: 14px; }
  .benefitItem__num{ width: 30px; height: 30px; font-size: 12px; }
  .benefitItem__title{ font-size: 14px; }
  .benefitItem__text{ font-size: 12.5px; }
}

/* ====== BLOCK 5: Results (Before/After) ====== */
.results{
  background: #f4f5f6;
  color: #111;
  position: relative;

  /* Full-viewport height + safe mobile viewport (address bar) */
  height: 100vh;
  height: 100svh;

  /* Vertical centering without touching horizontal composition */
  display: flex;
  align-items: center;

  /* Keep breathing room, but within 100vh (no extra scroll) */
  padding: clamp(20px, 6vh, 72px) 0;
}
.results__wrap{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items: start;
}
.results__title{
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #111;
}
.results__sub{
  margin: 14px 0 0;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(17,17,17,.62);
}
.results__cta{ margin-top: 26px; }

.results__btn{
  height: 46px;
  padding: 0 18px;
}

/* Slider */
.resultsSlider{
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  overflow: hidden;
}
.resultsSlider__track{
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.resultsSlider__track::-webkit-scrollbar{ height: 0; }
.resultsCard{
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 24px 24px 18px;
}
.resultsCard__top{ margin-bottom: 14px; }
.resultsBadges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rBadge{
  display:inline-flex;
  align-items:center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.08);
  color: rgba(0,0,0,.78);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
}

/* Compare */
.compare{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #e9edf5;
  aspect-ratio: 16 / 9;
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}
.compare__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.compare__img--before{
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}
.compare__labels{
  position:absolute;
  inset: 14px 14px auto 14px;
  display:flex;
  justify-content: space-between;
  z-index: 3;
  pointer-events:none;
}
.compare__label{
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16);
}
.compare__handle{
  position:absolute;
  top:0;
  bottom:0;
  left: 50%;
  width: 0;
  z-index: 4;
  cursor: col-resize;
  touch-action: none;
}
.compare__line{
  position:absolute;
  top:0;
  bottom:0;
  left: -1px;
  width: 2px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 0 0 1px rgba(0,0,0,.18), 0 14px 34px rgba(0,0,0,.18);
}
.compare__knob{
  position:absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: rgba(0,0,0,.72);
  display:grid;
  place-items:center;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.compare__knob svg{ width: 22px; height: 22px; }

.resultsCard__bottom{
  margin-top: 14px;
}
.resultsCard__note{
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0,0,0,.62);
}

/* Slider UI */
.resultsSlider__ui{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  padding: 14px 16px 18px;
  background: rgba(0,0,0,.02);
  border-top: 1px solid rgba(0,0,0,.06);
}
.resultsSlider__btn{
  background: rgba(255,255,255,.92);
}
.resultsDots{
  display:flex;
  align-items:center;
  gap: 10px;
}
.resultsDot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border: 0;
  padding: 0;
}
.resultsDot.is-active{
  width: 22px;
  background: rgba(0,0,0,.72);
}

/* Responsive */
@media (max-width: 980px){
  .results{ padding: clamp(18px, 5vh, 56px) 0; }
  .results__wrap{ grid-template-columns: 1fr; gap: 22px; }
  .results__sub{ max-width: 560px; }
  .resultsCard{ padding: 20px 18px 16px; }
  .compare{ aspect-ratio: 4 / 3; }
}
@media (max-width: 520px){
  .resultsSlider{ border-radius: 18px; }
  .compare{ border-radius: 16px; }
  .compare__labels{ inset: 10px 10px auto 10px; }
}

/* ====== BLOCK 6: Lead form ====== */
.lead{
  position: relative;

  /* Full-viewport height + safe mobile viewport (address bar) */
  height: 100vh;
  height: 100svh;

  /* Vertical centering without touching horizontal composition */
  display: flex;
  align-items: center;

  /* Keep breathing room, but within 100vh (no extra scroll) */
  padding: clamp(20px, 6vh, 72px) 0;

  background: radial-gradient(1200px 700px at 15% 20%, rgba(255,255,255,.06), rgba(0,0,0,0) 60%),
              radial-gradient(900px 520px at 70% 10%, rgba(255,255,255,.04), rgba(0,0,0,0) 62%),
              #0b0f14;
  color: #fff;
  overflow: hidden;
}
.lead__grid{
  display:grid;
  grid-template-columns: 520px 1fr;
  gap: 28px;
  align-items: center;
}
.leadCard{
  border-radius: 22px;
  padding: 30px 28px 22px;
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.leadCard__title{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,.95);
}
.leadCard__sub{
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
}

.leadForm{
  display:grid;
  gap: 14px;
}
.leadForm__hp{
  position:absolute;
  left:-9999px;
  top:-9999px;
  opacity:0;
  pointer-events:none;
}
.leadForm__field{ display:grid; gap: 8px; }
.leadForm__label{
  font-size: 13px;
  color: rgba(255,255,255,.78);
}
.leadForm__req{ color: rgba(255,255,255,.92); }
.leadForm__input,
.leadForm__textarea{
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  padding: 14px 16px;
  outline: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.10);
}
.leadForm__textarea{
  border-radius: 18px;
  resize: vertical;
  min-height: 112px;
}
.leadForm__input::placeholder,
.leadForm__textarea::placeholder{ color: rgba(255,255,255,.45); }
.leadForm__input:focus,
.leadForm__textarea:focus{
  border-color: rgba(255,255,255,.32);
  background: rgba(0,0,0,.28);
}

.leadForm__input.is-error,
.leadForm__textarea.is-error{
  border-color: rgba(255,120,120,.65);
  box-shadow: 0 0 0 3px rgba(255,120,120,.12);
}

.leadForm__error{
  min-height: 16px;
  font-size: 12px;
  color: rgba(255,170,170,.92);
}

.leadForm__messengers{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mCheck, .aCheck{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  user-select:none;
}
.mCheck input, .aCheck input{
  width: 18px;
  height: 18px;
  accent-color: rgba(255,255,255,.92);
}

.leadForm__agree{
  margin-top: 4px;
}

.leadForm__submit{
  margin-top: 6px;
  height: 46px;
  justify-content:center;
  gap: 10px;
  position: relative;
}
.leadForm__submit[disabled]{ opacity:.75; cursor:not-allowed; transform:none; }
.leadForm__spinner{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.18);
  border-top-color: rgba(0,0,0,.70);
  display:none;
  animation: spin .75s linear infinite;
}
.leadForm.is-loading .leadForm__spinner{ display:inline-block; }
.leadForm.is-loading .leadForm__submitText{ opacity:.78; }

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

.leadForm__policy{
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,.60);
}
.leadForm__link{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.leadForm__success{
  margin-top: 8px;
  font-size: 13px;
  color: rgba(220,255,220,.88);
  min-height: 18px;
}

.leadMedia{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: min(640px, 70vh);
  box-shadow: 0 30px 90px rgba(0,0,0,.50);
  border: 1px solid rgba(255,255,255,.10);
}
.leadMedia__img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.02);
}
.leadMedia__veil{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 540px at 20% 20%, rgba(0,0,0,.20), rgba(0,0,0,.62) 70%),
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.55));
}

@media (max-width: 980px){
  .lead{ padding: clamp(18px, 5vh, 56px) 0; }
  .lead__grid{ grid-template-columns: 1fr; }
  .leadMedia{ height: 52vh; }
}
@media (max-width: 520px){
  .leadCard{ padding: 22px 18px 18px; border-radius: 18px; }
  .leadMedia{ border-radius: 18px; }
}



/* ====== BLOCK 7: Testimonials (Experts) ====== */
.testimonials{
  position: relative;

  /* Full-viewport height + safe mobile viewport (address bar) */
  height: 100vh;
  height: 100svh;

  background:
    radial-gradient(1200px 700px at 50% 15%, rgba(255,255,255,.06), rgba(0,0,0,0) 60%),
    radial-gradient(900px 520px at 15% 25%, rgba(255,255,255,.04), rgba(0,0,0,0) 62%),
    #0b0f14;
  color: rgba(255,255,255,.92);
  overflow: hidden;
}

.testimonials__wrap{
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: stretch;
  align-content: center;
  padding: clamp(22px, 4.5vh, 56px) 0 clamp(18px, 3.8vh, 44px);
}

.testimonials__title{
  margin: 0;
  text-align: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,.92);
}

.tSlider{
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 2.6vh, 22px);
}

/* track uses scroll-snap like existing resultsSlider */
.tSlider__track{
  flex: 0 0 auto;
  display:flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
}
.tSlider__track::-webkit-scrollbar{ height: 0; }

.tSlide{
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 0;
}

.tSlide__grid{
  height: 100%;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2vw, 26px);
  align-items: center;
}

.tCol{
  display:flex;
  flex-direction: column;
  min-height: 0;
}

.tCard{
  border-radius: 22px;
  padding: clamp(18px, 2.1vw, 26px);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  min-height: clamp(210px, 28vh, 300px);
  display:flex;
  flex-direction: column;
}

.tCard__text{
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.6;
  display: block;
  overflow: visible;
}

.tCard__link{
  margin-top: auto;
  align-self: flex-end;
  padding-top: 14px;

  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: lowercase;

  color: rgba(255,255,255,.72);
  display:inline-flex;
  align-items:center;
  gap: 8px;
  transition: color .18s ease, transform .18s ease;
}
.tCard__link:hover{
  color: rgba(255,255,255,.92);
  transform: translateY(-1px);
}

.tCard__arrow{
  font-size: 14px;
  line-height: 1;
  opacity: .9;
}

/* author line */
.tAuthor{
  margin-top: 16px;
  display:flex;
  align-items:center;
  gap: 14px;
  padding-left: 4px;
}

.tAuthor__avatar{
  width: 74px;
  height: 74px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  background: rgba(255,255,255,.04);
  flex: 0 0 auto;
}

.tAuthor__name{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.92);
}

.tAuthor__role{
  margin-top: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,.62);
}

/* nav row */
.tSlider__ui{
  display:flex;
  align-items:center;
  justify-content: center;
  gap: 16px;
  padding: 0;
}

.tNavBtn{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.9);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  display:grid;
  place-items:center;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.tNavBtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
}

.tDots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  flex: 1;
}

.tDot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.22);
  cursor: pointer;
  padding: 0;
  transition: transform .18s ease, background .18s ease, width .18s ease;
}
.tDot.is-active{
  background: rgba(255,255,255,.85);
  width: 24px;
}

/* Tablet */
@media (max-width: 980px){
  .tAuthor__name{ font-size: 16px; }
  .tAuthor__avatar{ width: 66px; height: 66px; }
  .tNavBtn{ width: 48px; height: 48px; font-size: 24px; }
}

/* Mobile: one card per view, keep 100vh */
@media (max-width: 680px){
  .testimonials__wrap{
    padding: 34px 0 44px;
  }
  .tSlide__grid{
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .tCard{
    min-height: 0;
  }
  .tCard__text{
    -webkit-line-clamp: 10;
  }
}
/* ====== END BLOCK 7 ====== */


/* Testimonials: reuse global nav-btn style (match other arrows) */
.testimonials .nav-btn{
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.9);
  color: #111;
  width: 44px;
  height: 44px;
  font-size: 22px;
  line-height: 1;
}
.testimonials .nav-btn:hover{ transform: translateY(-1px); }


/* ====== Installment Form Block ====== */
.installment{
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,0));
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.installment__wrap{
  max-width: 820px;
  text-align: center;
}

.installment__title{
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.installment__subtitle{
  margin: 16px 0 42px;
  font-size: 16px;
  color: var(--muted);
}

.installment__subtitle strong{
  color: var(--text);
}

.installment__form{
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.installment__fields{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
}

.installment__input{
  height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size: 15px;
  outline: none;
}

.installment__input::placeholder{
  color: rgba(255,255,255,.55);
}

.installment__input:focus{
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
}

.installment__btn{
  margin-top: 8px;
  height: 52px;
  padding: 0 28px;
}

.installment__note{
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

@media (max-width: 640px){
  .installment{ padding: 80px 0; }
  .installment__fields{ grid-template-columns: 1fr; }
}


/* ====== FOOTER ====== */
.siteFooter{
  background: #070a0f;
  color: rgba(255,255,255,.82);
  border-top: 1px solid rgba(255,255,255,.10);
  padding: clamp(22px, 4.2vh, 52px) 0;
}
.siteFooter__wrap{ display:flex; flex-direction: column; gap: 16px; }
.siteFooter__grid{
  display:grid;
  grid-template-columns: 1.6fr 1fr 0.9fr;
  gap: clamp(16px, 2.4vw, 30px);
  align-items:start;
}
.siteFooter__company{
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.68);
}
.siteFooter__links{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.siteFooter__link{
  font-size: 13px;
  color: rgba(255,255,255,.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.siteFooter__link:hover{ color: rgba(255,255,255,.92); }
.siteFooter__contacts{
  display:flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.siteFooter__contact{
  font-size: 14px;
  color: rgba(255,255,255,.86);
  text-decoration: none;
}
.siteFooter__contact:hover{ color: rgba(255,255,255,.98); text-decoration: underline; text-underline-offset: 3px; }

.siteFooter__bottom{
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.siteFooter__copy{
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

@media (max-width: 980px){
  .siteFooter__grid{ grid-template-columns: 1fr; }
  .siteFooter__contacts{ align-items:flex-start; }
}


/* ====== CRO Additions (Audience / ROI / Proof / Sticky CTA) ====== */
.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__actions .btn{ min-height: 48px; }
.hero__trust{
  margin-top: 16px;
  max-width: 680px;
}
.hero__trust ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display:flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.hero__trust li{
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.35;
  color: rgba(255,255,255,.78);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
}

/* Audience */
.audience{
  position: relative;
  padding: clamp(28px, 7vh, 84px) 0;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.18));
  border-top: 1px solid rgba(255,255,255,.10);
}
.audience__head{
  max-width: 820px;
  margin: 0 auto clamp(18px, 3.6vh, 28px);
  text-align: center;
}
.audience__title{
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(30px, 5.2vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.audience__sub{
  margin: 0 auto;
  max-width: 720px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
}
.audience__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 18px);
}
.aCard{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
  padding: clamp(16px, 2.2vw, 20px);
}
.aCard__title{
  margin: 0;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.25;
  color: rgba(255,255,255,.92);
}
.aCard__text{
  margin: 10px 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.70);
}
.audience__cta{
  margin-top: clamp(16px, 3.4vh, 26px);
  text-align: center;
}
.audience__note{
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.62);
}

/* ROI */
.roi{
  position: relative;
  padding: clamp(26px, 7vh, 86px) 0;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,0));
}
.roi__head{
  max-width: 900px;
  margin: 0 auto clamp(18px, 3.6vh, 28px);
  text-align:center;
}
.roi__title{
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(30px, 5.2vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.roi__sub{
  margin: 0 auto;
  max-width: 820px;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
}
.roi__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 18px);
  align-items: start;
}
.roiCard{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
  padding: clamp(16px, 2.2vw, 20px);
}
.roiCard__kicker{
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.roiCalc__row{
  display:grid;
  gap: 6px;
  margin-bottom: 12px;
}
.roiCalc__label{
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255,255,255,.72);
}
.roiCalc__input{
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.92);
  padding: 0 14px;
  outline: none;
}
.roiCalc__input:focus{
  border-color: rgba(255,255,255,.26);
  background: rgba(0,0,0,.34);
}
.roiCalc__btn{ width: 100%; height: 48px; margin-top: 4px; }
.roiCalc__hint{
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.58);
}
.roiResult{
  display:grid;
  gap: 12px;
  margin-top: 6px;
}
.roiResult__item{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  padding: 14px 14px;
}
.roiResult__label{
  font-size: 12.5px;
  color: rgba(255,255,255,.66);
}
.roiResult__value{
  margin-top: 6px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(20px, 3.6vw, 30px);
  line-height: 1.05;
}
.roiResult__cta{
  margin-top: 14px;
  text-align: left;
}
.roiResult__note{
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.60);
}

/* Product guide */
.product__guide{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
.pGuide{
  display:none;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  padding: 12px 14px;
}
.pGuide.is-active{ display:block; }
.pGuide__title{
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13.5px;
  color: rgba(255,255,255,.90);
}
.pGuide__text{
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 12.8px;
  line-height: 1.55;
  color: rgba(255,255,255,.68);
}
.product__guideCta{ margin-top: 2px; }
.product__guideCta .btn{ height: 46px; }

/* Proof */
.proof{
  position: relative;
  padding: clamp(28px, 7vh, 84px) 0;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(0,0,0,.0), rgba(0,0,0,.30)),
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.0));
}
.proof__head{
  max-width: 900px;
  margin: 0 auto clamp(18px, 3.6vh, 28px);
  text-align:center;
}
.proof__title{
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(30px, 5.2vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.proof__sub{
  margin: 0 auto;
  max-width: 820px;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
}
.proof__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.8vw, 16px);
}
.pCard{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
  padding: 16px 14px;
}
.pCard__value{
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.pCard__label{
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12.5px;
  color: rgba(255,255,255,.86);
}
.pCard__text{
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.66);
}
.proof__cta{
  margin-top: clamp(16px, 3.4vh, 26px);
  text-align: center;
}
.proof__note{
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.62);
}

/* Sticky bar (mobile) */
.stickyBar{
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 50;
  display:none;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
}
.stickyBar__call,
.stickyBar__cta{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 48px;
  border-radius: 14px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
}
.stickyBar__call{
  flex: 0 0 40%;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.06);
}
.stickyBar__cta{
  flex: 1;
  color: #111;
  background: rgba(255,255,255,.92);
}
@media (max-width: 980px){
  .audience__grid{ grid-template-columns: 1fr; }
  .roi__grid{ grid-template-columns: 1fr; }
  .proof__grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px){
  .hero__actions{ flex-direction: column; }
  .hero__actions .btn{ width: 100%; }
  .stickyBar{ display:flex; }
  /* prevent overlap with sticky bar */
  .siteFooter{ padding-bottom: 90px; }
}
@media (max-width: 420px){
  .proof__grid{ grid-template-columns: 1fr; }
}
