
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: 'Manrope', sans-serif;
  color: #000;
  background: #fff;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}


img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --green: #008557;
  --green-dark: #006a44;
  --green-deep: #006d4e;
  --green-light: #008f66;
  --green-bright: #02cb31;
  --gradient: linear-gradient(180deg, #006d4e 0%, #008f66 100%);
  --text: #000000;
  --text-dark: #292929;
  --text-gray: #656565;
  --white: #ffffff;
  --radius-card: 25px;
  --radius-btn: 10px;
  --radius-img: 30px;
  --padding: 140px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover {
  opacity: .88;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.btn--gradient {
  background: var(--gradient);
  color: #fff;
  font-size: 14px;
  height: 56px;
  padding: 0 36px;
  border-radius: var(--radius-btn);
}

.btn--outline {
  background: transparent;
  color: #000;
  font-size: 14px;
  height: 56px;
  padding: 0 32px;
  border-radius: var(--radius-btn);
  border: 1.5px solid rgba(0,0,0,.3);
}

.btn--white-outline {
  background: #fff;
  color: var(--green-dark);
  font-size: 14px;
  height: 56px;
  padding: 0 32px;
  border-radius: var(--radius-btn);
}

.btn--full { width: 400px; }

.btn--green-sm {
  background: var(--gradient);
  color: #fff;
  font-size: 14px;
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  transition: opacity .2s, transform .2s;
}
.btn--green-sm:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.section-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 54px;
  color: #000;
}
.section-title--center { text-align: center; }
.section-title--white { color: #fff; }
.section-title--green { color: var(--green); }

.text-green { color: var(--green); }
.text-red { color: #d84a50; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
  height: 72px;
}

.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 var(--padding);
  gap: 0;
}

.header__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  gap: 0;
}

.header__logo-subtitle {
  align-self: flex-end;
  margin-right: 2px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .03em;
  color: #8a8a8a;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 118px;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
  white-space: nowrap;
}
.header__nav-link:hover { color: var(--green); }

.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.header__phone {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-right: -4px;
  line-height: 1.05;
  white-space: nowrap;
}

.header__social { display: flex; align-items: center; transition: opacity .2s, transform .2s; }
.header__social + .header__social { margin-left: -6px; }
.header__social:hover { opacity: 0.8; transform: translateY(-2px); }
.header__social img { width: 48px; height: 48px; border-radius: 12px; }

.header__mobile-btn { display: none; }

.hero {
  background: #fff;
  min-height: 798px;
  overflow: hidden;
  position: relative;
  padding-top: 72px; /* Fixed header offset */
}

.hero::before {
  content: '';
  position: absolute;
  right: -380px;
  top: -380px;
  width: 1300px;
  height: 1300px;
  background: radial-gradient(circle at center, rgba(2,203,49,0.22) 0%, rgba(2,203,49,0.1) 35%, rgba(2,203,49,0) 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--padding);
  display: flex;
  align-items: flex-start;
  position: relative;
  min-height: 798px;
}

.hero__content {
  flex: 0 0 615px;
  padding-top: 57px;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(2,203,49,0.05);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 0 20px;
  height: 37px;
  border-radius: 30px;
  margin-bottom: 25px;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
}

.hero__title {
  font-size: 60px;
  font-weight: 800;
  line-height: 54px;
  color: #000;
  margin-bottom: 25px;
}

.hero__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #646464;
  line-height: 22px;
  max-width: 526px;
  margin-bottom: 58px;
}
.hero__subtitle strong { color: #000; font-weight: 800; }

.hero__features {
  display: grid;
  grid-template-columns: 250px 250px;
  gap: 20px;
  margin-bottom: 76px;
}

.hero__feature.why-card {
  background: #f7f7f7;
  border-radius: var(--radius-card);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.hero__feature-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 16px 15px;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  box-shadow: 0 7px 60px rgba(0,0,0,.1);
  height: 74px;
}

.hero__feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.hero__feature-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hero__feature-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.hero__feature-desc {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
  opacity: 0.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 21px;
}

.hero-video {
  display: none;
  position: relative;
  left: calc((min(100vw, 1440px) - min(720px, calc(100vw - 32px))) / 2 - var(--padding));
  width: min(720px, calc(100vw - 32px));
  max-width: none;
  margin: 72px 0 78px;
}
.hero-video.is-open {
  display: block;
}
.hero-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: 0 16px 50px rgba(0,0,0,0.16);
}
.hero-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-video-toggle {
  gap: 10px;
}
.hero-video-toggle__icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex: 0 0 14px;
  transition: transform .25s ease;
}
.hero-video-toggle__icon::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: translate(-50%, -50%) rotate(45deg);
}
.hero-video-toggle.is-open .hero-video-toggle__icon {
  transform: rotate(180deg);
}

.hero__image {
  position: absolute;
  right: 100px;
  top: 60px;
  width: 640px;
  height: 570px;
  border-radius: 60px;
  background: transparent;
  overflow: hidden;
}

.before-after {
  background: #fff;
  padding: 45px 0 90px;
  position: relative;
  overflow: hidden;
}

.before-after::before {
  content: '';
  position: absolute;
  left: -375px;
  top: 30px;
  width: 1110px;
  height: 1113px;
  background: var(--green-bright);
  border-radius: 50%;
  opacity: .02;
  filter: blur(200px);
  pointer-events: none;
}

.before-after__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--padding);
}

.before-after__inner .section-title {
  text-align: center;
  margin-bottom: 47px;
}

.before-after__image-wrap {
  position: relative;
  width: 1160px;
  height: 773px;
  margin: 0 auto;
  border-radius: 50px;
  background: #c8e6d8;
  overflow: hidden;
}

.before-after__label {
  position: absolute;
  bottom: 40px;
  width: 291px;
  min-height: 220px;
  background: rgba(255,255,255,.01);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 25px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.before-after__label--left { left: 40px; }
.before-after__label--right { right: 40px; }

.before-after__label-title {
  display: block;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 15px;
}

.before-after__list {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}
.before-after__list li::before {
  content: '• ';
}

.before-after__icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.before-after__icon svg { width: 22px; height: 22px; }

.septic-problem {
  background: #fff;
  padding: 104px 0 115px;
}

.septic-problem__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--padding);
  display: grid;
  grid-template-columns: minmax(0, 492px) minmax(0, 1fr);
  gap: 48px;
  align-items: flex-start;
}

.septic-problem__left {
  flex: none;
  max-width: 492px;
}

.septic-problem__left .section-title {
  margin-bottom: 35px;
}

.septic-problem__desc {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 22.4px;
  margin-bottom: 32px;
  max-width: 435px;
  opacity: 0.5;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 22px;
  height: 81px;
  box-shadow: 0 7px 60px rgba(0,0,0,.10);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  color: var(--text-dark);
  width: 492px;
}

.problem-card__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.septic-problem__right {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
  width: 100%;
  max-width: 640px;
  min-width: 0;
  justify-self: end;
  align-items: stretch;
  transform: translateX(40px);
}

.septic-photo {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 640 / 414;
  border-radius: var(--radius-img);
  background: transparent;
  overflow: hidden;
}

.septic-photo img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.septic-photo__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.01);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 16px;
  border: 0.5px solid #fff;
  border-radius: 25px;
  text-align: center;
  width: 144px;
  height: 100px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.septic-photo__label--bottom {
  top: 50%;
  transform: translate(-50%, -50%);
}

.modern-sewage {
  background: #fff;
  padding: 61px 0 37px;
}

.modern-sewage__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--padding);
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.modern-sewage__left {
  flex: 0 0 560px;
}

.modern-sewage__left .section-title {
  color: #000;
  margin-bottom: 30px;
  font-size: 60px;
}

.modern-sewage__desc {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  max-width: 454px;
  opacity: 0.6;
}

.modern-sewage__right {
  flex: 1;
  padding-top: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px 40px;
}

.feature-item__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
}

.feature-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-item__desc {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  opacity: 0.6;
}

.green-bar {
  background: #fff;
  padding: 30px 0 92px;
}
.green-bar--faq {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.green-bar__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--padding);
}

.green-bar__box {
  background: var(--green);
  border-radius: 30px;
  padding: 35px 60px;
  display: flex;
  align-items: center;
  gap: 25px;
  height: 126px;
}

.green-bar__input {
  flex: 0 0 340px;
  height: 56px;
  background: #fff;
  border: 1.5px solid transparent;
  border-radius: var(--radius-btn);
  padding: 0 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  outline: none;
}
.green-bar__input::placeholder { color: #9e9e9e; }
.green-bar__input:focus { border-color: var(--green); }

.green-bar__btn {
  flex: 0 0 240px;
  height: 56px;
  background: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  cursor: pointer;
  transition: opacity .2s;
  margin-left: auto;
}
.green-bar__btn:hover { opacity: .88; }

.how-works {
  background: #fff;
  padding: 143px 0 90px;
  position: relative;
  overflow: hidden;
}

.how-works::before {
  content: '';
  position: absolute;
  right: -170px;
  top: 210px;
  width: 1110px;
  height: 1113px;
  background: var(--green-bright);
  border-radius: 50%;
  opacity: .02;
  pointer-events: none;
  z-index: 0;
}

.how-works__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--padding);
  position: relative;
  z-index: 1;
}

.how-works__inner .section-title {
  margin-bottom: 33px;
}

.how-works__diagram {
  width: 1160px;
  height: 598px;
  border-radius: 50px;
  background: #d4e9de;
  margin: 0 auto 60px;
  overflow: hidden;
}

.how-works__steps {
  position: relative;
  padding-bottom: 0;
}

.how-works__step { position: relative; }
.how-works__step--1 { margin-left: 0; }
.how-works__step--2 { margin-left: 170px; }
.how-works__step--3 { margin-left: 320px; }
.how-works__step--4 { margin-left: 470px; }
.how-works__step--5 { margin-left: 600px; }

.step-card {
  width: 560px;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 22px 32px 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 26px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  margin-bottom: 20px;
}

.step-card__num {
  font-size: 40px;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
  line-height: 1;
  min-width: 52px;
}

.step-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-card__desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
  opacity: 0.5;
}

.why-choose {
  background: #fff;
  padding: 44px 0 130px;
}

.why-choose__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--padding);
}

.why-choose__inner .section-title {
  margin-bottom: 60px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 260px);
  gap: 40px;
  justify-content: space-between;
}

.why-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 25px;
  box-shadow: 0 7px 60px rgba(0,0,0,.1);
  min-height: 173px;
  display: flex;
  flex-direction: column;
}

.why-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.why-card__desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  opacity: 0.5;
}

.models {
  background: #fff;
}

.models__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 74px var(--padding) 85px;
}

.models__inner > .section-title {
  margin-bottom: 54px; 
}

.models__grid {
  display: grid;
  grid-template-columns: 560px 560px;
  gap: 40px;
  margin-bottom: 73px; 
}

.model-card {
  width: 560px;
  height: 701px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
  position: relative;
  overflow: visible;
  transition: transform .2s ease, box-shadow .2s ease;
}
.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,133,87,.13);
}

.mc-name {
  position: absolute;
  left: 40px;
  top: 40px;
  font-size: 30px;
  font-weight: 800;
  color: #008557;
  line-height: 1;
}

.mc-badge {
  position: absolute;
  left: 32px;
  top: 106px;
  height: 60px;
  max-width: 324px;
  padding: 0 20px;
  border-radius: 20px;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mc-badge--wide { max-width: 430px; }

.mc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.mc-badge span:last-child {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.mc-desc {
  position: absolute;
  left: 40px;
  top: 200px;
  width: 264px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.35;
  opacity: 0.5;
}

.mc-specs {
  position: absolute;
  left: 40px;
  top: 314px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mc-specs li {
  display: flex;
  align-items: flex-start;
  gap: 12px; 
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.0;
  max-width: 220px;
}

.mc-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
  min-width: 19px;
  line-height: 1;
}

.mc-img {
  position: absolute;
  pointer-events: none;
}
.mc-img--uno {
  left: 240px;
  top: 70px;
  width: 380px;
  height: 700px;
}

.mc-img--pro {
  left: 240px;
  top: 70px;
  width: 390px;
  height: 700px;
}

.mc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.mc-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.mc-price__old {
  font-size: 16px;
  font-weight: 600;
  color: rgba(0,0,0,.45);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.mc-price__new {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: #e53935;
}

.mc-price__new-prefix {
  font-size: .62em;
  font-weight: 500;
}

.models__promo {
  background: var(--green);
  border: none;
  border-radius: 20px;
  width: 1160px;
  height: 97px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 40px;
  color: #fff;
  box-shadow: 0 4px 40px rgba(0,133,87,.15);
}

.models__promo-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-right: 21px;
  color: #fff;
}

.models__promo strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
}

.models__promo p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 860px;
  color: rgba(255,255,255,.85);
}

.quiz {
  background: #fff;
  padding: 113px 0 113px;
}

.quiz__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--padding);
  display: flex;
  align-items: flex-start;
  gap: 94px;
}

.quiz__left {
  flex: 0 0 506px;
}

.quiz__left .section-title {
  font-size: 60px;
  line-height: 1.1;
}

.quiz__right {
  flex: 1;
  min-width: 0;
}

.quiz-card {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 40px rgba(0,0,0,.08);
  padding: 40px;
  width: min(100%, 640px);
  max-width: 100%;
  min-height: 620px;
  margin-left: auto;
  box-sizing: border-box;
}

.installation {
  background: #fff;
  padding: 84px 0 80px;
}

.installation__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--padding);
}

.installation__inner .section-title {
  margin-bottom: 85px;
}

.installation__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.installation__step {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.installation__photo {
  width: 100%;
  padding-top: 130%;
  height: 0;
  background: transparent;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 20px;
  box-sizing: border-box;
  position: relative;
}
.installation__photo img {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

.installation__check {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 32px;
  height: 32px;
  display: block;
}

.installation__meta {
  padding-left: 0;
}

.installation__step-label {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 13px;
}

.installation__step-desc {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.installation__connector {
  display: none;
}

.gallery {
  background: #fff;
  padding: 99px 0 80px;
}

.gallery__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--padding);
}

.gallery__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 60px;
}

.gallery__header .section-title { font-size: 60px; }

.gallery__header .btn {
  margin-top: 16px;
  flex-shrink: 0;
}

.gallery__photos {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.gallery__photo {
  width: 334px;
  height: 301px;
  border-radius: var(--radius-img);
  background: #d4e9de;
  overflow: hidden;
}

.italian {
  background: #fff;
  padding: 73px 0 20px;
}

.italian__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--padding);
}

.italian__inner .section-title {
  margin-bottom: 24px;
}

.italian__flags {
  display: flex;
  gap: 0;
  width: 1160px;
  height: 10px;
  margin: 0 auto 89px;
  overflow: hidden;
}

.italian__flag {
  flex: 1;
  height: 100%;
}
.italian__flag--green { background: #008557; }
.italian__flag--white {
  background: #ffffff;
  border-top: 0.5px solid #000;
  border-bottom: 0.5px solid #000;
}
.italian__flag--red { background: #d84a50; }

.italian__content {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.italian__left {
  flex: 0 0 640px;
}

.italian__desc {
  font-size: 20px;
  font-weight: 800;
  color: #000;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 594px;
}

.italian__cards {
  display: grid;
  grid-template-columns: 224px 224px;
  gap: 20px;
  margin-bottom: 64px;
}

.italian__card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: 0 7px 60px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 144px;
}

.italian__card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}
.italian__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.italian__card p {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.4;
}

.italian__reliability {
  font-size: 20px;
  font-weight: 800;
  color: #000;
}

.italian__right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  padding-right: 40px;
}

.italian__station-image {
  width: 495px;
  height: 713px;
  background: transparent;
  border-radius: var(--radius-img);
  overflow: visible;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: -95px;
}
.italian__station-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq {
  background: #fff;
  padding: 104px 0 115px;
}

.faq__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--padding);
}

.faq__inner .section-title {
  margin-bottom: 45px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}

.faq-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s ease;
}

.faq-item.is-active {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.faq-item__header {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
}
.faq-item__header:focus-visible,
.samples-modal__close:focus-visible,
.samples-modal__close-btn:focus-visible,
.lightbox-close:focus-visible,
.mobile-drawer__close:focus-visible,
.pnav-btn:focus-visible,
.green-bar__btn:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.faq-item__q {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.3;
  display: block;
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.faq-item__icon::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.is-active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-item__content {
  padding: 0 30px 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-gray);
}

.partners {
  background: #fff;
}

.partners__top {
  height: 95px;
  background: #fff;
}

.partners__body {
  background: #008557;
  position: relative;
  overflow: hidden;
  border-radius: 100px 100px 0 0;
  margin: 0;
}

.partners__body::before {
  display: none;
}

.pnav {
  position: absolute;
  top: -60px;
  right: 0;
  display: flex;
  gap: 12px;
  z-index: 20;
}

.pnav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.pnav-btn svg path { stroke: var(--green); }
.pnav-btn:hover { transform: scale(1.05); }

.partners__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 139px var(--padding) 100px;
  display: flex;
  align-items: flex-start;
  gap: 76px;
  position: relative;
  z-index: 2;
}

.partners__left {
  flex: 0 0 524px;
  z-index: 3;
  position: relative;
}

.partners__left .section-title {
  font-size: 60px;
  margin-bottom: 28px;
}

.partners__desc {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 360px;
}

.partners__stage {
  position: relative;
  width: 460px;
  height: 552px;
  flex-shrink: 0;
  margin-right: 80px;
}

.pstack { display: none; }

.pcard {
  position: absolute;
  top: 0;
  left: 0;
  width: 460px;
  height: 552px;
  background: transparent;
  border-radius: 25px;
  box-shadow: none;
  opacity: 0;
  transform: scale(.85);
  pointer-events: none;
  transition: transform .5s ease, opacity .5s ease;
  z-index: 0;
  overflow: hidden;
}
.pcard.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 3;
}
.pcard.prev,
.pcard.next {
  opacity: .55;
  filter: blur(8px);
  z-index: 1;
}
.pcard.prev {
  transform: scale(.85) translateX(-55%);
}
.pcard.next {
  transform: scale(.85) translateX(55%);
}

.pcard__badge {
  position: absolute;
  left: 30px;
  top: 30px;
  height: 46px;
  padding: 0 16px 0 12px;
  border-radius: 30px;
  background: rgba(2,203,49,0.05);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pcard__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.pcard__badge span:last-child {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}

.pcard__title {
  position: absolute;
  left: 30px;
  top: 101px;
  width: 242px;
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.3;
}

.pcard__desc {
  position: absolute;
  left: 30px;
  top: 221px;
  width: 197px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.55;
}

.pcard__list {
  position: absolute;
  left: 29px;
  top: 303px;
  width: 200px;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  line-height: 2;
}
.pcard__list li::before { content: '• '; }

.pcard__photo {
  position: absolute;
  left: 123px;
  top: 139px;
  width: 447px;
  height: 413px;
  pointer-events: none;
}
.pcard__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.pcard--image { padding: 0; }
.pcard--image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-section {
  background: #fff;
  padding: 135px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 790px;
}

.cta-section::before {
  content: '';
  position: absolute;
  left: 200px;
  top: -200px;
  width: 1500px;
  height: 1500px;
  background: radial-gradient(circle at center, rgba(2,203,49,0.12) 0%, rgba(2,203,49,0.06) 25%, rgba(2,203,49,0.02) 55%, rgba(2,203,49,0) 75%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.cta-section__image { z-index: 1; }
.cta-section__content { z-index: 2; }

.cta-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--padding);
  display: flex;
  align-items: flex-start;
  position: relative;
  min-height: 790px;
}

.cta-section__content {
  flex: 0 0 700px;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.cta-section__content .section-title {
  margin-bottom: 5px;
}

.cta-section__desc {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  margin-bottom: 73px;
  max-width: 501px;
  opacity: 1;
}

.cta-section__note {
  color: #9a9a9a;
  font-size: 15px;
  line-height: 1.5;
  max-width: 440px;
}

.cta-section__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-section__form .btn {
  margin-top: 20px;
}

.cta-input {
  width: 400px;
  height: 56px;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-btn);
  padding: 0 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  outline: none;
}
.cta-input::placeholder { color: #9e9e9e; }
.cta-input:focus { border-color: var(--green); }

.cta-section__image {
  position: absolute;
  right: -26px;
  top: 29px;
  width: 823px;
  height: 761px;
  background: transparent;
  overflow: hidden;
}

.cta-section__image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
  z-index: 3;
}

.footer {
  background: #fff;
  border-top: 1px solid #e8e8e8;
  height: 112px;
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--padding);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__logo { margin-right: 36px; }

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social { display: inline-flex; transition: opacity .2s, transform .2s; }
.footer__social:hover { opacity: 0.8; transform: translateY(-2px); }
.footer__social img { width: 56px; height: 56px; border-radius: 12px; }

.footer__links { margin-left: auto; display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }

.footer__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0.7;
}
.footer__link:hover { color: var(--green); opacity: 1; }

.footer__top {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-left: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
}
.footer__top:hover { color: var(--green); opacity: 1; }

.quiz-progress {
  width: 100%;
  height: 5px;
  background: #e8e8e8;
  border-radius: 100px;
  margin-bottom: 32px;
  overflow: hidden;
}
.quiz-progress__bar {
  height: 100%;
  background: var(--gradient);
  border-radius: 100px;
  transition: width .4s ease;
}

.quiz-step {
  display: none;
}
.quiz-step.active {
  display: block;
}

.qs-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 28px;
}

.qs-question {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.35;
}

.qs-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.qs-opt {
  background: #fff;
  border-radius: 20px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  cursor: pointer;
  transition: box-shadow .2s, background .2s;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  border: 1.5px solid transparent;
  user-select: none;
}
.qs-opt:hover {
  box-shadow: 0 2px 14px rgba(0,133,87,.15);
}
.qs-opt.selected {
  background: #eaf6f0;
  border-color: var(--green);
  color: var(--green);
}

.qs-letter {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
  min-width: 34px;
}
.qs-opt.selected .qs-letter {
  color: var(--green);
}

.qs-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 8px;
}

.qs-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.qs-input {
  width: 100%;
  height: 56px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-btn);
  padding: 0 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  outline: none;
  transition: border-color .2s;
}
.qs-input:focus { border-color: var(--green); }
.qs-input::placeholder { color: #9e9e9e; }
.qs-input--error {
  border-color: #ff3b30 !important;
  box-shadow: 0 0 0 2px rgba(255, 59, 48, 0.12) !important;
}
.qs-error {
  display: none;
  color: #ff3b30;
  font-size: 13px;
  font-weight: 500;
  margin: 10px 0 0;
}

.quiz-thanks {
  text-align: center;
  padding: 0;
}
.quiz-thanks .qs-question--green {
  color: var(--green);
  text-align: center;
  margin-bottom: 40px;
}
.quiz-thanks .qs-opts--static {
  pointer-events: none;
  margin-bottom: 30px;
}
.quiz-thanks__phone {
  display: flex;
  justify-content: center;
  margin: 20px 0 16px;
}
.quiz-thanks__note {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.4;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.qs-opt-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
}

.gallery__tile {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 30px;
}

.gallery__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 8px 60px rgba(0,0,0,.5);
  object-fit: contain;
  pointer-events: none;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }

.why-card,
.model-card,
.hero__feature-card,
.problem-card,
.step-card {
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover,
.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,133,87,.15);
}

.btn--gradient {
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
.btn--gradient:hover { opacity: 1; }

.btn--green-sm {
  position: relative;
  overflow: hidden;
}
.btn--green-sm:hover { opacity: 1; }

.mobile-drawer { display: none; }

/* ===== SAMPLES MODAL (desktop) ===== */
.samples-modal {
  position: fixed; inset: 0; z-index: 300;
  display: none;
  align-items: center; justify-content: center;
}
.samples-modal.is-open { display: flex; }
.samples-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}
.samples-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  width: min(1180px, 94vw);
  max-height: 94vh;
  overflow: hidden;
}
.samples-modal__close {
  position: absolute;
  top: 28px; right: 32px;
  width: 36px; height: 36px;
  background: transparent;
  border: 0; cursor: pointer;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.samples-modal__close svg { width: 24px; height: 24px; }
.samples-modal__state { display: none; }
.samples-modal__state.is-active { display: flex; }
.samples-modal__state--form {
  align-items: stretch;
}
.samples-modal__state--no-photo { justify-content: center; }
.samples-modal__state--no-photo .samples-modal__body { padding: 56px 60px; max-width: 560px; margin: 0 auto; }
.samples-modal__photo {
  flex: 0 0 520px;
  padding: 56px 0 56px 44px;
  display: flex;
}
.samples-modal__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.samples-modal__body {
  flex: 1 1 auto;
  padding: 56px 64px 56px 56px;
  display: flex; flex-direction: column;
}
.samples-modal__title {
  font-size: 44px; font-weight: 800;
  line-height: 1.1;
  color: #000;
  margin: 0 0 36px;
  max-width: 520px;
}
.samples-modal__sub {
  font-size: 16px; font-weight: 500;
  line-height: 1.4;
  color: #6b6b6b;
  margin: -20px 0 24px;
}
.samples-modal__form {
  display: flex; flex-direction: column;
  gap: 16px;
}
.samples-field { position: relative; }
.samples-field__label {
  position: absolute;
  left: 26px; top: 16px;
  font-size: 14px; font-weight: 500;
  color: #9a9a9a;
  pointer-events: none;
  transition: opacity .15s;
}
.samples-input {
  width: 100%;
  height: 70px;
  padding: 30px 26px 12px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 16px;
  background: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  outline: none;
  transition: border-color .15s;
}
.samples-input:focus { border-color: var(--green); }
.samples-input:focus + .samples-field__label,
.samples-input:not(:placeholder-shown) + .samples-field__label { opacity: 0; }
.samples-input.samples-input--error { border-color: #e53935; }
.samples-modal__submit {
  margin-top: 14px;
  width: 100%;
  height: 70px;
  border-radius: 16px;
  font-size: 16px; font-weight: 700;
}
.samples-modal__state--success {
  flex-direction: column;
  align-items: center; justify-content: center;
  padding: 96px 40px;
  min-height: 360px;
  text-align: center;
}
.samples-modal__success-title {
  font-size: 44px; font-weight: 800;
  line-height: 1.15;
  color: #000;
  margin: 0 0 36px;
}
.samples-modal__close-btn {
  padding: 0 56px;
  height: 60px;
  border-radius: 14px;
  font-size: 15px; font-weight: 700;
}

.samples-modal--narrow .samples-modal__dialog {
  width: min(480px, 94vw);
}

.samples-modal__privacy {
  font-size: 12px;
  color: #9a9a9a;
  text-align: center;
  line-height: 1.5;
  margin-top: 4px;
}
.samples-modal__privacy a {
  color: var(--green);
  text-decoration: underline;
}

.samples-messenger-label {
  font-size: 14px;
  font-weight: 600;
  color: #6b6b6b;
  margin-bottom: -4px;
}

.samples-messenger-opts {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.samples-messenger-opts .qs-opt {
  flex: 1;
  min-width: 0;
  justify-content: center;
  gap: 8px;
}

.samples-messenger-label.is-error {
  color: #e53935;
}

.samples-messenger-opts.is-error {
  padding: 8px;
  border: 1.5px solid #ff3b30;
  border-radius: 18px;
  background: rgba(255, 59, 48, 0.04);
}

@media (min-width: 769px) and (max-width: 1439px) {
  :root {
    --l: calc(100vw / 1440);
    --padding: calc(140px * var(--l));
    --radius-card: calc(25px * var(--l));
    --radius-btn: calc(10px * var(--l));
    --radius-img: calc(30px * var(--l));
  }

  .section-title {
    font-size: calc(60px * var(--l));
    line-height: calc(54px * var(--l));
  }

  .btn--gradient,
  .btn--outline,
  .btn--white-outline {
    height: calc(56px * var(--l));
    font-size: calc(14px * var(--l));
    padding: 0 calc(32px * var(--l));
  }

  .btn--green-sm {
    height: calc(48px * var(--l));
    padding: 0 calc(24px * var(--l));
    font-size: calc(14px * var(--l));
    border-radius: calc(12px * var(--l));
  }

  .btn--full,
  .cta-input {
    width: calc(400px * var(--l));
  }

  .header {
    height: calc(72px * var(--l));
  }

  .header__logo img,
  .footer__logo img {
    width: calc(165px * var(--l));
    height: auto;
  }

  .header__nav {
    margin-left: calc(118px * var(--l));
    gap: calc(26px * var(--l));
  }

  .header__nav-link {
    line-height: 1;
    white-space: nowrap;
  }

  .header__nav-link,
  .footer__link,
  .footer__top {
    font-size: calc(14px * var(--l));
  }

  .header__phone {
    font-size: calc(18px * var(--l));
    line-height: 1.05;
    white-space: nowrap;
  }

  .header__social + .header__social {
    margin-left: calc(-6px * var(--l));
  }

  .header__social img {
    width: calc(48px * var(--l));
    height: calc(48px * var(--l));
    border-radius: calc(12px * var(--l));
  }

  .hero {
    min-height: calc(798px * var(--l));
    padding-top: calc(72px * var(--l));
  }

  .hero::before {
    right: calc(-380px * var(--l));
    top: calc(-380px * var(--l));
    width: calc(1300px * var(--l));
    height: calc(1300px * var(--l));
  }

  .hero__inner {
    min-height: calc(798px * var(--l));
  }

  .hero__content {
    flex: 0 0 calc(615px * var(--l));
    padding-top: calc(57px * var(--l));
  }

  .hero__badge {
    gap: calc(10px * var(--l));
    font-size: calc(12px * var(--l));
    padding: 0 calc(20px * var(--l));
    height: calc(37px * var(--l));
    border-radius: calc(30px * var(--l));
    margin-bottom: calc(25px * var(--l));
  }

  .hero__badge-dot {
    width: calc(8px * var(--l));
    height: calc(8px * var(--l));
  }

  .hero__title {
    font-size: calc(60px * var(--l));
    line-height: calc(54px * var(--l));
    margin-bottom: calc(25px * var(--l));
  }

  .hero__subtitle {
    font-size: calc(16px * var(--l));
    line-height: calc(22px * var(--l));
    max-width: calc(526px * var(--l));
    margin-bottom: calc(58px * var(--l));
  }

  .hero__features {
    grid-template-columns: repeat(2, calc(250px * var(--l)));
    gap: calc(20px * var(--l));
    margin-bottom: calc(76px * var(--l));
  }

  .hero__feature-card {
    padding: calc(16px * var(--l)) calc(15px * var(--l));
    gap: calc(17px * var(--l));
    height: calc(74px * var(--l));
  }

  .hero__feature-icon {
    width: calc(32px * var(--l));
    height: calc(32px * var(--l));
  }

  .hero__feature-title,
  .hero__feature-desc {
    font-size: calc(12px * var(--l));
  }

  .hero__feature-text {
    gap: calc(7px * var(--l));
  }

  .hero__actions {
    gap: calc(21px * var(--l));
  }

  .hero__image {
    right: calc(100px * var(--l));
    top: calc(60px * var(--l));
    width: calc(640px * var(--l));
    height: calc(570px * var(--l));
    border-radius: calc(60px * var(--l));
  }

  .before-after {
    padding: calc(45px * var(--l)) 0 calc(90px * var(--l));
  }

  .before-after__inner .section-title {
    margin-bottom: calc(47px * var(--l));
  }

  .before-after__image-wrap {
    width: calc(1160px * var(--l));
    height: calc(773px * var(--l));
    border-radius: calc(50px * var(--l));
  }

  .before-after__label {
    bottom: calc(40px * var(--l));
    width: calc(291px * var(--l));
    min-height: calc(220px * var(--l));
    border-radius: calc(25px * var(--l));
    padding: calc(25px * var(--l));
  }

  .before-after__label--left {
    left: calc(40px * var(--l));
  }

  .before-after__label--right {
    right: calc(40px * var(--l));
  }

  .before-after__label-title {
    font-size: calc(30px * var(--l));
    margin-bottom: calc(15px * var(--l));
  }

  .before-after__list {
    font-size: calc(14px * var(--l));
  }

  .before-after__icon {
    top: calc(20px * var(--l));
    right: calc(20px * var(--l));
    width: calc(41px * var(--l));
    height: calc(41px * var(--l));
  }

  .septic-problem {
    padding: calc(104px * var(--l)) 0 calc(115px * var(--l));
  }

  .septic-problem__inner {
    gap: calc(48px * var(--l));
  }

  .septic-problem__left {
    max-width: calc(492px * var(--l));
  }

  .septic-problem__left .section-title {
    margin-bottom: calc(35px * var(--l));
  }

  .septic-problem__desc {
    font-size: calc(16px * var(--l));
    line-height: calc(22.4px * var(--l));
    margin-bottom: calc(32px * var(--l));
    max-width: calc(435px * var(--l));
  }

  .problem-cards {
    gap: calc(20px * var(--l));
  }

  .problem-card {
    padding: 0 calc(20px * var(--l));
    gap: calc(22px * var(--l));
    height: calc(81px * var(--l));
    font-size: calc(16px * var(--l));
    line-height: calc(16px * var(--l));
    width: calc(492px * var(--l));
  }

  .problem-card__icon {
    width: calc(38px * var(--l));
    height: calc(38px * var(--l));
  }

  .septic-problem__right {
    gap: calc(20px * var(--l));
    max-width: calc(640px * var(--l));
    justify-self: end;
    align-items: stretch;
    transform: translateX(calc(40px * var(--l)));
  }

  .septic-photo {
    width: 100%;
    height: auto;
  }

  .septic-photo__label {
    font-size: calc(16px * var(--l));
    line-height: calc(16px * var(--l));
    border-radius: calc(25px * var(--l));
    width: calc(144px * var(--l));
    height: calc(100px * var(--l));
  }

  .modern-sewage {
    padding: calc(61px * var(--l)) 0 calc(37px * var(--l));
  }

  .modern-sewage__inner {
    gap: calc(40px * var(--l));
  }

  .modern-sewage__left {
    flex: 0 0 calc(560px * var(--l));
  }

  .modern-sewage__left .section-title {
    margin-bottom: calc(30px * var(--l));
    font-size: calc(60px * var(--l));
  }

  .modern-sewage__desc {
    font-size: calc(16px * var(--l));
    max-width: calc(454px * var(--l));
  }

  .modern-sewage__right {
    padding-top: calc(12px * var(--l));
  }

  .feature-grid {
    gap: calc(58px * var(--l)) calc(40px * var(--l));
  }

  .feature-item__icon {
    width: calc(32px * var(--l));
    height: calc(32px * var(--l));
    margin-bottom: calc(20px * var(--l));
  }

  .feature-item__title {
    font-size: calc(16px * var(--l));
    margin-bottom: calc(10px * var(--l));
  }

  .feature-item__desc {
    font-size: calc(14px * var(--l));
  }

  .green-bar {
    padding: calc(30px * var(--l)) 0 calc(92px * var(--l));
  }

  .green-bar--faq {
    margin-top: calc(-50px * var(--l));
  }

  .green-bar__box {
    border-radius: calc(30px * var(--l));
    padding: calc(35px * var(--l)) calc(60px * var(--l));
    gap: calc(25px * var(--l));
    height: calc(126px * var(--l));
  }

  .green-bar__input {
    flex: 0 0 calc(340px * var(--l));
    height: calc(56px * var(--l));
    padding: 0 calc(20px * var(--l));
    font-size: calc(16px * var(--l));
  }

  .green-bar__btn {
    flex: 0 0 calc(240px * var(--l));
    height: calc(56px * var(--l));
    font-size: calc(14px * var(--l));
  }

  .how-works {
    padding: calc(143px * var(--l)) 0 calc(90px * var(--l));
  }

  .how-works::before {
    right: calc(-170px * var(--l));
    top: calc(210px * var(--l));
    width: calc(1110px * var(--l));
    height: calc(1113px * var(--l));
  }

  .how-works__inner .section-title {
    margin-bottom: calc(33px * var(--l));
  }

  .how-works__diagram {
    width: calc(1160px * var(--l));
    height: calc(598px * var(--l));
    border-radius: calc(50px * var(--l));
    margin: 0 auto calc(60px * var(--l));
  }

  .how-works__step--2 { margin-left: calc(170px * var(--l)); }
  .how-works__step--3 { margin-left: calc(320px * var(--l)); }
  .how-works__step--4 { margin-left: calc(470px * var(--l)); }
  .how-works__step--5 { margin-left: calc(600px * var(--l)); }

  .step-card {
    width: calc(560px * var(--l));
    padding: calc(22px * var(--l)) calc(32px * var(--l)) calc(22px * var(--l)) calc(20px * var(--l));
    gap: calc(26px * var(--l));
    margin-bottom: calc(20px * var(--l));
  }

  .step-card__num {
    font-size: calc(40px * var(--l));
    min-width: calc(52px * var(--l));
  }

  .step-card__title {
    font-size: calc(16px * var(--l));
    margin-bottom: calc(8px * var(--l));
  }

  .step-card__desc {
    font-size: calc(14px * var(--l));
  }

  .why-choose {
    padding: calc(44px * var(--l)) 0 calc(130px * var(--l));
  }

  .why-choose__inner .section-title {
    margin-bottom: calc(60px * var(--l));
  }

  .why-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: calc(24px * var(--l));
  }

  .why-card {
    padding: calc(25px * var(--l));
    min-height: calc(173px * var(--l));
  }

  .why-card__icon {
    width: calc(48px * var(--l));
    height: calc(48px * var(--l));
    margin-bottom: calc(24px * var(--l));
  }

  .why-card__title {
    font-size: calc(16px * var(--l));
    margin-bottom: calc(20px * var(--l));
  }

  .why-card__desc {
    font-size: calc(14px * var(--l));
  }

  .models__inner {
    padding-top: calc(74px * var(--l));
    padding-bottom: calc(85px * var(--l));
  }

  .models__inner > .section-title {
    margin-bottom: calc(54px * var(--l));
  }

  .models__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(40px * var(--l));
    margin-bottom: calc(73px * var(--l));
  }

  .model-card {
    width: 100%;
    height: calc(701px * var(--l));
  }

  .mc-name {
    left: calc(40px * var(--l));
    top: calc(40px * var(--l));
    font-size: calc(30px * var(--l));
  }

  .mc-badge {
    left: calc(32px * var(--l));
    top: calc(106px * var(--l));
    height: calc(60px * var(--l));
    max-width: calc(324px * var(--l));
    padding: 0 calc(20px * var(--l));
    gap: calc(10px * var(--l));
    border-radius: calc(20px * var(--l));
  }

  .mc-badge--wide {
    max-width: calc(430px * var(--l));
  }

  .mc-dot {
    width: calc(10px * var(--l));
    height: calc(10px * var(--l));
  }

  .mc-badge span:last-child,
  .mc-desc,
  .mc-specs li,
  .models__promo p {
    font-size: calc(14px * var(--l));
  }

  .mc-desc {
    left: calc(40px * var(--l));
    top: calc(200px * var(--l));
    width: calc(264px * var(--l));
  }

  .mc-specs {
    left: calc(40px * var(--l));
    top: calc(314px * var(--l));
    gap: calc(15px * var(--l));
  }

  .mc-specs li {
    gap: calc(12px * var(--l));
    max-width: calc(220px * var(--l));
  }

  .mc-num {
    font-size: calc(14px * var(--l));
    min-width: calc(19px * var(--l));
  }

  .mc-img--uno,
  .mc-img--pro {
    left: calc(240px * var(--l));
    top: calc(70px * var(--l));
    width: calc(390px * var(--l));
    height: calc(700px * var(--l));
  }

  .mc-price__old {
    font-size: calc(16px * var(--l));
  }

  .mc-price__new {
    font-size: calc(34px * var(--l));
  }

  .models__promo {
    width: 100%;
    height: calc(97px * var(--l));
    border-radius: calc(20px * var(--l));
    padding: 0 calc(40px * var(--l));
  }

  .models__promo strong {
    font-size: calc(16px * var(--l));
    margin-bottom: calc(4px * var(--l));
  }

  .quiz {
    padding: calc(113px * var(--l)) 0;
  }

  .quiz__inner {
    gap: calc(94px * var(--l));
  }

  .quiz__left {
    flex: 0 0 calc(506px * var(--l));
  }

  .quiz__left .section-title {
    font-size: calc(60px * var(--l));
  }

  .quiz-card {
    width: min(100%, calc(640px * var(--l)));
    max-width: 100%;
    min-height: calc(620px * var(--l));
    padding: calc(40px * var(--l));
  }

  .quiz-progress {
    height: calc(5px * var(--l));
    margin-bottom: calc(32px * var(--l));
  }

  .qs-label {
    font-size: calc(14px * var(--l));
    margin-bottom: calc(28px * var(--l));
  }

  .qs-question {
    font-size: calc(22px * var(--l));
    margin-bottom: calc(30px * var(--l));
  }

  .qs-opts {
    gap: calc(10px * var(--l));
    margin-bottom: calc(24px * var(--l));
  }

  .qs-opt {
    height: calc(60px * var(--l));
    gap: calc(16px * var(--l));
    padding: 0 calc(24px * var(--l));
    font-size: calc(14px * var(--l));
    border-radius: calc(20px * var(--l));
  }

  .qs-letter {
    font-size: calc(22px * var(--l));
    min-width: calc(34px * var(--l));
  }

  .qs-footer {
    gap: calc(14px * var(--l));
    margin-top: calc(8px * var(--l));
  }

  .qs-form {
    gap: calc(12px * var(--l));
    margin-bottom: calc(24px * var(--l));
  }

  .qs-input {
    height: calc(56px * var(--l));
    padding: 0 calc(20px * var(--l));
    font-size: calc(15px * var(--l));
  }

  .qs-opt-icon {
    width: calc(32px * var(--l));
    height: calc(32px * var(--l));
  }

  .quiz-thanks__phone {
    margin: calc(20px * var(--l)) 0 calc(16px * var(--l));
  }

  .quiz-thanks__note {
    font-size: calc(16px * var(--l));
    max-width: calc(320px * var(--l));
  }

  .installation {
    padding: calc(84px * var(--l)) 0 calc(80px * var(--l));
  }

  .installation__inner .section-title {
    margin-bottom: calc(85px * var(--l));
  }

  .installation__steps {
    gap: calc(32px * var(--l));
  }

  .installation__photo {
    border-radius: calc(30px * var(--l));
    margin-bottom: calc(20px * var(--l));
  }

  .installation__step-label {
    font-size: calc(34px * var(--l));
    margin-bottom: calc(13px * var(--l));
  }

  .installation__step-desc {
    font-size: calc(14px * var(--l));
  }

  .installation__check {
    right: calc(16px * var(--l));
    bottom: calc(16px * var(--l));
    width: calc(32px * var(--l));
    height: calc(32px * var(--l));
  }

  .gallery {
    padding: calc(99px * var(--l)) 0 calc(80px * var(--l));
  }

  .gallery__header {
    margin-bottom: calc(60px * var(--l));
  }

  .gallery__header .section-title {
    font-size: calc(60px * var(--l));
  }

  .gallery__header .btn {
    margin-top: calc(16px * var(--l));
  }

  .gallery__grid {
    gap: calc(40px * var(--l));
  }

  .gallery__tile {
    height: calc(400px * var(--l));
    border-radius: calc(30px * var(--l));
  }

  .italian {
    padding: calc(73px * var(--l)) 0 calc(20px * var(--l));
  }

  .italian__inner .section-title {
    margin-bottom: calc(24px * var(--l));
  }

  .italian__flags {
    width: calc(1160px * var(--l));
    height: calc(10px * var(--l));
    margin: 0 auto calc(89px * var(--l));
  }

  .italian__left {
    flex: 0 0 calc(640px * var(--l));
  }

  .italian__desc {
    font-size: calc(20px * var(--l));
    margin-bottom: calc(40px * var(--l));
    max-width: calc(594px * var(--l));
  }

  .italian__cards {
    grid-template-columns: repeat(2, calc(224px * var(--l)));
    gap: calc(20px * var(--l));
    margin-bottom: calc(64px * var(--l));
  }

  .italian__card {
    padding: calc(20px * var(--l));
    gap: calc(14px * var(--l));
    height: calc(144px * var(--l));
  }

  .italian__card-icon {
    width: calc(40px * var(--l));
    height: calc(40px * var(--l));
  }

  .italian__card p,
  .italian__reliability {
    font-size: calc(20px * var(--l));
  }

  .italian__right {
    padding-right: calc(40px * var(--l));
  }

  .italian__station-image {
    width: calc(500px * var(--l));
    height: calc(820px * var(--l));
    margin-top: calc(-60px * var(--l));
  }

  .faq {
    padding: calc(104px * var(--l)) 0 calc(115px * var(--l));
  }

  .faq__inner .section-title {
    margin-bottom: calc(45px * var(--l));
  }

  .faq__grid {
    gap: calc(20px * var(--l));
    max-width: calc(1160px * var(--l));
  }

  .faq-item {
    border-radius: calc(20px * var(--l));
  }

  .faq-item__header {
    padding: calc(25px * var(--l)) calc(30px * var(--l));
  }

  .faq-item__q {
    font-size: calc(18px * var(--l));
  }

  .faq-item__icon {
    width: calc(24px * var(--l));
    height: calc(24px * var(--l));
    margin-left: calc(20px * var(--l));
  }

  .faq-item__icon::before {
    width: calc(8px * var(--l));
    height: calc(8px * var(--l));
  }

  .faq-item__content {
    padding: 0 calc(30px * var(--l)) calc(25px * var(--l));
    font-size: calc(16px * var(--l));
  }

  .partners__top {
    height: calc(95px * var(--l));
  }

  .partners__body {
    border-radius: calc(100px * var(--l)) calc(100px * var(--l)) 0 0;
  }

  .partners__inner {
    padding: calc(139px * var(--l)) var(--padding) calc(100px * var(--l));
    gap: calc(76px * var(--l));
  }

  .partners__left {
    flex: 0 0 calc(524px * var(--l));
  }

  .partners__left .section-title {
    font-size: calc(60px * var(--l));
    margin-bottom: calc(28px * var(--l));
  }

  .partners__desc {
    font-size: calc(16px * var(--l));
    margin-bottom: calc(30px * var(--l));
    max-width: calc(360px * var(--l));
  }

  .partners__stage {
    width: calc(460px * var(--l));
    height: calc(552px * var(--l));
    margin-right: calc(80px * var(--l));
  }

  .pnav {
    top: calc(-60px * var(--l));
    gap: calc(12px * var(--l));
  }

  .pnav-btn {
    width: calc(44px * var(--l));
    height: calc(44px * var(--l));
  }

  .pcard,
  .pcard--image {
    width: calc(460px * var(--l));
    height: calc(552px * var(--l));
    border-radius: calc(25px * var(--l));
  }

  .cta-section {
    padding-top: calc(135px * var(--l));
    min-height: calc(790px * var(--l));
  }

  .cta-section__inner {
    min-height: calc(790px * var(--l));
  }

  .cta-section__content {
    flex: 0 0 calc(700px * var(--l));
  }

  .cta-section__desc {
    font-size: calc(16px * var(--l));
    margin-bottom: calc(73px * var(--l));
    max-width: calc(501px * var(--l));
  }

  .cta-section__form {
    gap: calc(10px * var(--l));
  }

  .cta-section__form .btn {
    margin-top: calc(20px * var(--l));
  }

  .cta-input {
    height: calc(56px * var(--l));
    padding: 0 calc(20px * var(--l));
    font-size: calc(16px * var(--l));
  }

  .cta-section__image {
    position: absolute;
    right: calc(-26px * var(--l));
    top: calc(29px * var(--l));
    width: calc(823px * var(--l));
    height: calc(761px * var(--l));
  }

  .footer {
    height: calc(112px * var(--l));
  }

  .footer__inner {
    gap: calc(20px * var(--l));
  }

  .footer__logo {
    margin-right: calc(36px * var(--l));
  }

  .footer__socials {
    gap: calc(12px * var(--l));
  }

  .footer__social img {
    width: calc(56px * var(--l));
    height: calc(56px * var(--l));
    border-radius: calc(12px * var(--l));
  }

  .footer__links {
    gap: calc(24px * var(--l));
  }

  .footer__top {
    margin-left: calc(50px * var(--l));
    gap: calc(6px * var(--l));
  }

  .samples-modal__dialog {
    border-radius: calc(40px * var(--l));
  }

  .samples-modal__close {
    top: calc(28px * var(--l));
    right: calc(32px * var(--l));
    width: calc(36px * var(--l));
    height: calc(36px * var(--l));
  }

  .samples-modal__state--no-photo .samples-modal__body {
    padding: calc(56px * var(--l)) calc(60px * var(--l));
    max-width: calc(560px * var(--l));
  }

  .samples-modal__body {
    padding: calc(56px * var(--l)) calc(64px * var(--l)) calc(56px * var(--l)) calc(56px * var(--l));
  }

  .samples-modal__title,
  .samples-modal__success-title {
    font-size: calc(44px * var(--l));
    margin-bottom: calc(36px * var(--l));
  }

  .samples-modal__sub,
  .samples-modal__privacy,
  .samples-messenger-label {
    font-size: calc(16px * var(--l));
  }

  .samples-input {
    height: calc(70px * var(--l));
    padding: calc(30px * var(--l)) calc(26px * var(--l)) calc(12px * var(--l));
    border-radius: calc(16px * var(--l));
    font-size: calc(16px * var(--l));
  }

  .samples-field__label {
    left: calc(26px * var(--l));
    top: calc(16px * var(--l));
    font-size: calc(14px * var(--l));
  }

  .samples-modal__submit {
    margin-top: calc(14px * var(--l));
    height: calc(70px * var(--l));
    border-radius: calc(16px * var(--l));
    font-size: calc(16px * var(--l));
  }

  .samples-modal__close-btn {
    padding: 0 calc(56px * var(--l));
    height: calc(60px * var(--l));
    border-radius: calc(14px * var(--l));
    font-size: calc(15px * var(--l));
  }
}

@media (min-width: 769px) and (max-width: 1439px) {
  .septic-problem,
  .quiz,
  .cta-section,
  .septic-problem__inner,
  .quiz__inner,
  .cta-section__inner {
    overflow-x: hidden;
  }

  .hero__inner,
  .septic-problem__inner,
  .quiz__inner,
  .cta-section__inner {
    min-width: 0;
  }

  .hero__content,
  .septic-problem__left,
  .septic-problem__right,
  .quiz__left,
  .quiz__right,
  .cta-section__content {
    min-width: 0;
  }

  .hero__content {
    flex: 0 1 50%;
    max-width: 50%;
  }

  .hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: calc(500px * var(--l));
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .hero__image {
    right: 0;
    top: calc(72px * var(--l));
    width: min(43%, calc(560px * var(--l)));
    height: auto;
    aspect-ratio: 64 / 57;
  }

  .septic-problem__inner {
    display: grid;
    grid-template-columns: minmax(0, calc(492px * var(--l))) minmax(0, 1fr);
    gap: calc(16px * var(--l));
  }

  .septic-problem__left {
    flex: none;
    max-width: none;
  }

  .septic-problem__right {
    flex: none;
    min-width: 0;
    width: 100%;
    max-width: calc(640px * var(--l));
    justify-self: end;
    align-items: stretch;
    transform: translateX(calc(40px * var(--l)));
  }

  .problem-card {
    width: 100%;
  }

  .septic-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 640 / 414;
    margin: 0;
  }

  .models__grid {
    align-items: stretch;
  }

  .model-card {
    overflow: hidden;
  }

  .mc-img--uno,
  .mc-img--pro {
    left: auto;
    right: calc(-18px * var(--l));
    width: min(54%, calc(310px * var(--l)));
    height: calc(610px * var(--l));
  }

  .mc-desc {
    width: calc(220px * var(--l));
  }

  .quiz__inner {
    display: grid;
    grid-template-columns: minmax(0, calc(420px * var(--l))) minmax(0, 1fr);
    gap: calc(32px * var(--l));
    align-items: start;
  }

  .quiz__left {
    flex: none;
    max-width: none;
  }

  .quiz__right {
    flex: none;
    min-width: 0;
    max-width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .quiz-card {
    width: min(100%, calc(620px * var(--l)));
    max-width: 100%;
    margin-left: auto;
  }

  .cta-section__inner {
    display: flex;
    align-items: flex-start;
  }

  .cta-section__content {
    flex: none;
    max-width: calc(700px * var(--l));
  }

  .cta-section__form {
    max-width: calc(400px * var(--l));
  }

  .cta-section__image {
    position: absolute;
    right: calc(-26px * var(--l));
    top: calc(29px * var(--l));
    width: calc(823px * var(--l));
    height: calc(761px * var(--l));
  }
}

@media (max-width: 768px) {
  :root { --m: 0.3125vw; }
  body { min-width: 0; overflow-x: hidden; }

  /* ===== HEADER (Figma: 320x48) ===== */
  .header {
    padding: 0; height: calc(48 * var(--m));
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  }
  .header__inner {
    padding: calc(14 * var(--m)) calc(15 * var(--m));
    display: flex; align-items: center; max-width: 100%;
    height: calc(48 * var(--m)); gap: 0;
  }
  .header__logo { flex-shrink: 0; gap: 0; }
  .header__logo img { width: calc(87 * var(--m)); height: calc(20 * var(--m)); }
  .header__logo-subtitle {
    margin-right: calc(1 * var(--m));
    font-size: calc(5.5 * var(--m));
    letter-spacing: .02em;
  }
  .header__nav { display: none; }
  .header__right { gap: calc(10 * var(--m)); margin-left: auto; display: flex; align-items: center; }
  .header__phone { display: none; }
  .header__social { display: none; }
  .header__right .btn--green-sm { display: none; }
  .header__mobile-btn {
    display: flex; align-items: center; justify-content: center;
    width: calc(22 * var(--m)); height: calc(22 * var(--m));
    border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  }
  .header__mobile-phone { background: #006a44; }
  .header__mobile-phone svg { width: calc(12 * var(--m)); height: calc(12 * var(--m)); }
  .header__mobile-menu {
    background: transparent; width: calc(18 * var(--m)); height: calc(14 * var(--m));
    flex-direction: column; justify-content: space-between; padding: 0;
  }
  .header__mobile-menu span {
    display: block; width: calc(16 * var(--m)); height: calc(2 * var(--m));
    background: #006a44; border-radius: 1px;
  }

  /* ===== MOBILE DRAWER ===== */
  .mobile-drawer {
    display: block;
    position: fixed; inset: 0; z-index: 200;
    pointer-events: none;
  }
  .mobile-drawer.is-open { pointer-events: auto; }
  .mobile-drawer__backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0; transition: opacity .25s ease;
  }
  .mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }
  .mobile-drawer__panel {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: calc(260 * var(--m)); max-width: 82vw;
    background: #fff;
    padding: calc(18 * var(--m));
    transform: translateX(-100%);
    transition: transform .28s ease;
    display: flex; flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }
  .mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
  .mobile-drawer__top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: calc(26 * var(--m));
  }
  .mobile-drawer__logo img { width: calc(100 * var(--m)); height: auto; display: block; }
  .mobile-drawer__close {
    width: calc(28 * var(--m)); height: calc(28 * var(--m));
    border: 0; background: transparent; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
  }
  .mobile-drawer__close svg { width: calc(18 * var(--m)); height: calc(18 * var(--m)); }
  .mobile-drawer__nav {
    display: flex; flex-direction: column; gap: calc(18 * var(--m));
    flex: 1 1 auto;
  }
  .mobile-drawer__link {
    font-size: calc(16 * var(--m)); font-weight: 800; color: #000;
    text-decoration: none; display: block;
  }
  .mobile-drawer__btn {
    background: #008557; color: #fff; font-size: calc(16 * var(--m)); font-weight: 800;
    padding: calc(15 * var(--m)) 0;
    border-radius: calc(10 * var(--m)); text-decoration: none; display: block;
    text-align: center; margin-top: calc(18 * var(--m));
  }
  .mobile-drawer__bottom {
    display: flex; flex-direction: column; gap: calc(20 * var(--m));
    padding-top: calc(20 * var(--m));
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .mobile-drawer__phone {
    font-size: calc(19 * var(--m)); font-weight: 800; color: #006a44; text-align: center;
    line-height: 1.1;
    white-space: nowrap;
  }
  .mobile-drawer__socials { display: flex; gap: calc(18 * var(--m)); justify-content: center; }
  .mobile-drawer__socials img {
    width: calc(48 * var(--m)); height: calc(48 * var(--m));
    border-radius: calc(12 * var(--m));
  }

  /* ===== HERO (Figma: 320x700) ===== */
  .hero { padding: calc(75 * var(--m)) 0 calc(18 * var(--m)); position: relative; overflow: hidden; background: #fff; }
  .hero::before {
    width: calc(420 * var(--m)); height: calc(420 * var(--m));
    left: calc(-40 * var(--m)); top: calc(-160 * var(--m));
    background: radial-gradient(circle at center, rgba(2,203,49,0.35) 0%, rgba(2,203,49,0.18) 40%, rgba(2,203,49,0) 70%);
    filter: blur(40px);
    -webkit-filter: blur(40px);
  }
  .hero__inner {
    flex-direction: column; padding: 0 calc(15 * var(--m)); max-width: 100%;
    gap: 0; position: relative; display: flex;
  }
  .hero__content { display: contents; }
  .hero__badge--desktop { display: none !important; }
  .hero__title {
    font-size: calc(28 * var(--m)); line-height: 1;
    margin: calc(14 * var(--m)) 0 0; padding: 0;
    font-weight: 800; order: 1; color: #000;
  }
  .hero__title br { display: inline; }
  .hero__image {
    position: relative;
    width: calc(290 * var(--m)); height: calc(240 * var(--m));
    margin: calc(18 * var(--m)) auto 0;
    border-radius: calc(20 * var(--m));
    order: 2; overflow: hidden;
    right: auto; top: auto;
  }
  .hero__image img { width: 100%; height: 100%; object-fit: cover; border-radius: calc(20 * var(--m)); }
  .hero__badge--mobile {
    display: inline-flex; align-items: center; justify-content: center;
    position: absolute; top: calc(25 * var(--m)); left: 50%;
    transform: translateX(-50%);
    width: calc(203 * var(--m)); height: calc(26 * var(--m));
    padding: 0; border-radius: calc(30 * var(--m));
    background: rgba(0,0,0,0.28); color: #fff;
    font-size: calc(10 * var(--m)); font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.18);
    z-index: 2;
  }
  .hero__badge--mobile .hero__badge-dot { display: none; }
  .hero__subtitle {
    font-size: calc(12 * var(--m)); font-weight: 500; line-height: 1.42;
    margin: calc(14 * var(--m)) 0 0; padding: 0;
    width: calc(262 * var(--m)); max-width: 100%;
    color: #646464; order: 3;
  }
  .hero__subtitle strong { color: #646464; font-weight: 700; }
  .hero__features {
    grid-template-columns: repeat(2, calc(142 * var(--m)));
    gap: calc(6 * var(--m));
    margin: calc(14 * var(--m)) 0 0;
    display: grid; order: 4;
    justify-content: space-between; width: 100%;
  }
  .hero__feature-card {
    width: calc(142 * var(--m)); height: calc(49 * var(--m));
    padding: calc(10 * var(--m));
    gap: calc(10 * var(--m));
    border-radius: calc(15 * var(--m));
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex; align-items: center;
  }
  .hero__feature-icon {
    width: calc(26 * var(--m)); height: calc(26 * var(--m));
    flex-shrink: 0; background: transparent; border-radius: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .hero__feature-icon img,
  .hero__feature-icon svg { width: 100% !important; height: 100% !important; object-fit: contain; }
  .hero__feature-text { display: flex; flex-direction: column; gap: calc(2 * var(--m)); }
  .hero__feature-title { font-size: calc(8 * var(--m)); font-weight: 800; line-height: 1.1; color: #292929; }
  .hero__feature-desc { font-size: calc(8 * var(--m)); font-weight: 500; line-height: 1.25; color: #292929; }
  .hero__actions {
    flex-direction: column; align-items: stretch;
    gap: calc(10 * var(--m)); width: 100%;
    margin: calc(14 * var(--m)) 0 0;
    order: 5;
  }
  .hero__actions .btn {
    width: 100%; max-width: calc(290 * var(--m));
    margin: 0 auto; height: calc(40 * var(--m));
    padding: 0 calc(16 * var(--m));
    font-size: calc(12 * var(--m)); font-weight: 700;
    border-radius: calc(10 * var(--m));
  }
  .hero-video {
    order: 6;
    left: auto;
    width: 100%;
    max-width: calc(290 * var(--m));
    margin: calc(38 * var(--m)) auto calc(44 * var(--m));
  }
  .hero-video__frame {
    border-radius: calc(14 * var(--m));
    box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  }
  .hero-video-toggle {
    gap: calc(8 * var(--m));
  }
  .hero-video-toggle__icon {
    width: calc(12 * var(--m));
    height: calc(12 * var(--m));
    flex-basis: calc(12 * var(--m));
  }
  .hero-video-toggle__icon::before {
    width: calc(6 * var(--m));
    height: calc(6 * var(--m));
    border-width: calc(2 * var(--m));
  }
  .btn--gradient, .btn--outline {
    padding: 0 calc(16 * var(--m)); font-size: calc(12 * var(--m));
    height: calc(40 * var(--m)); border-radius: calc(10 * var(--m));
  }
  .btn--full { width: 100%; }

  /* ===== SECTION TITLE COMMON ===== */
  .section-title { font-size: calc(30 * var(--m)); line-height: 1.12; font-weight: 800; }
  .section-title br { display: inline; }

  /* ===== BEFORE-AFTER (Figma: 320x593) ===== */
  .before-after { padding: calc(36 * var(--m)) 0 calc(44 * var(--m)); }
  .before-after__inner { padding: 0 calc(15 * var(--m)); }
  .before-after__inner .section-title {
    margin: 0 0 calc(47 * var(--m));
    text-align: left; font-size: calc(30 * var(--m));
    line-height: 1.12; max-width: 100%;
    white-space: normal;
  }
  .before-after__image-wrap {
    position: relative;
    width: calc(290 * var(--m)); height: auto;
    border-radius: 0;
    overflow: visible;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: calc(14 * var(--m));
    row-gap: calc(26 * var(--m));
    background: transparent;
  }
  .before-after__image-wrap > img {
    border-radius: calc(20 * var(--m)) !important;
    width: 100%; height: calc(194 * var(--m)); object-fit: cover;
    grid-column: 1 / -1;
  }
  .before-after__label {
    position: static;
    padding: 0; background: transparent; backdrop-filter: none;
    color: #008557; border-radius: 0; box-shadow: none;
    display: flex; flex-direction: column; min-height: 0;
    width: 100%; max-width: 100%;
    top: auto; left: auto; right: auto; bottom: auto;
  }
  .before-after__label--left { grid-column: 1; padding-left: 0; }
  .before-after__label--right { grid-column: 2; padding-left: 0; }
  .before-after__label-title {
    color: #008557; font-size: calc(16 * var(--m)); font-weight: 800;
    margin-bottom: calc(8 * var(--m)); line-height: 1;
  }
  .before-after__list { color: #008557; padding: 0; margin: 0; list-style: none; }
  .before-after__list li {
    font-size: calc(11 * var(--m)); font-weight: 500; line-height: 1.3;
    color: #008557; padding: 0 0 0 calc(10 * var(--m));
    position: relative; margin-bottom: calc(4 * var(--m));
  }
  .before-after__list li::before {
    content: "\2022";
    position: absolute; left: 0; top: 0;
    color: #008557; display: inline-block;
  }
  .before-after__icon {
    position: absolute;
    width: calc(34 * var(--m)); height: calc(34 * var(--m));
    background: #fff; border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
  }
  .before-after__label--left .before-after__icon { 
    left: calc(10 * var(--m)); right: auto; 
    top: calc(194 * var(--m) - 34 * var(--m) - 10 * var(--m)); 
  }
  .before-after__label--right .before-after__icon { 
    left: auto; right: calc(10 * var(--m)); 
    top: calc(194 * var(--m) - 34 * var(--m) - 10 * var(--m)); 
  }
  .before-after__icon svg { width: 55%; height: 55%; }

  /* ===== SEPTIC PROBLEM (Figma: 320x1101) ===== */
  .septic-problem { padding: calc(38 * var(--m)) 0 calc(44 * var(--m)); }
  .septic-problem__inner { flex-direction: column; padding: 0 calc(15 * var(--m)); gap: 0; display: flex; max-width: 100%; }
  .septic-problem__left { display: contents; }
  .septic-problem__left .section-title {
    font-size: calc(30 * var(--m)); line-height: 1.12; font-weight: 800;
    margin: 0; order: 1; max-width: calc(240 * var(--m));
  }
  .septic-problem__desc {
    font-size: calc(12 * var(--m)); font-weight: 500; line-height: 1.42;
    margin: calc(30 * var(--m)) 0 0; color: #646464;
    order: 2; max-width: calc(252 * var(--m));
  }
  .septic-problem__right {
    display: contents;
  }
  .septic-photo {
    width: calc(320 * var(--m)); max-width: 100%;
    height: calc(230 * var(--m));
    border-radius: calc(20 * var(--m));
    box-shadow: none; position: relative;
    margin: 0 auto;
  }
  .septic-photo--top { margin: calc(30 * var(--m)) auto 0; order: 3; }
  .septic-photo--bottom { margin: calc(15 * var(--m)) auto 0; order: 4; }
  .septic-photo img { border-radius: calc(20 * var(--m)); }
  .septic-photo__label {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: calc(105 * var(--m)); height: calc(51 * var(--m));
    background: rgba(255,255,255,0.22); color: #fff;
    font-size: calc(12 * var(--m)); font-weight: 800;
    border-radius: calc(20 * var(--m));
    display: flex; align-items: center; justify-content: center;
    text-align: center; line-height: 1.2;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  }
  .septic-photo--bottom .septic-photo__label { height: calc(65 * var(--m)); width: calc(105 * var(--m)); }
  .problem-cards {
    grid-template-columns: 1fr; gap: calc(15 * var(--m));
    display: grid; order: 5;
    margin-top: calc(40 * var(--m));
  }
  .problem-card {
    width: calc(290 * var(--m)); max-width: 100%; height: auto;
    padding: calc(12 * var(--m)) calc(14 * var(--m));
    min-height: calc(53 * var(--m));
    border-radius: calc(15 * var(--m));
    gap: calc(18 * var(--m));
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08); /* updated shadow */
    display: flex; align-items: center;
  }
  .problem-card span { font-size: calc(12 * var(--m)); font-weight: 500; line-height: 1.3; color: #292929; }
  .problem-card__icon { width: calc(28 * var(--m)); height: calc(28 * var(--m)); flex-shrink: 0; }

  /* ===== MODERN SEWAGE (Figma: 320x1262 split w/ green bar at bottom) ===== */
  .modern-sewage {
    padding: calc(73 * var(--m)) 0 calc(44 * var(--m)) 0;
    background: #fff; color: #000;
    position: relative; overflow: hidden;
  }
  .modern-sewage::before {
    content: ''; position: absolute;
    width: calc(525 * var(--m)); height: calc(730 * var(--m));
    left: calc(-221 * var(--m)); top: calc(245 * var(--m));
    border-radius: 50%; background: rgba(2,203,49,0.04);
    filter: blur(40px);
    -webkit-filter: blur(40px);
    pointer-events: none;
  }
  .modern-sewage__inner { flex-direction: column; padding: 0 calc(15 * var(--m)); gap: 0; position: relative; }
  .modern-sewage__left, .modern-sewage__right { flex: 1 1 auto; max-width: 100%; }
  .modern-sewage__left .section-title {
    font-size: calc(30 * var(--m)); line-height: 1.12; font-weight: 800;
    margin: 0 0 calc(30 * var(--m)); color: #000;
    max-width: 100%;
  }
  .modern-sewage__left .section-title .text-green { color: #008557; }
  .modern-sewage__desc {
    font-size: calc(12 * var(--m)); font-weight: 500; line-height: 1.42;
    color: #646464; opacity: 1; max-width: calc(252 * var(--m));
    margin: 0 0 calc(57 * var(--m));
  }
  .feature-grid { grid-template-columns: 1fr; gap: calc(33 * var(--m)); display: grid; }
  .feature-item {
    padding: 0; background: transparent !important; box-shadow: none !important;
    border-radius: 0;
    display: flex; flex-direction: column;
    gap: calc(11 * var(--m)); align-items: flex-start;
  }
  .feature-item__icon {
    width: calc(28 * var(--m)); height: calc(28 * var(--m));
    margin-bottom: 0; background: transparent; border-radius: 0;
  }
  .feature-item__icon img {
    width: 100%; height: 100%; object-fit: contain;
    filter: none;
  }
  .feature-item__title {
    font-size: calc(14 * var(--m)); font-weight: 700; line-height: 1.2;
    color: #292929; margin: 0;
  }
  .feature-item__desc {
    font-size: calc(12 * var(--m)); font-weight: 500; line-height: 1.3;
    color: #000; margin: calc(-3 * var(--m)) 0 0;
  }

  /* ===== GREEN BAR ===== */
  .green-bar {
    padding: calc(23 * var(--m)) calc(15 * var(--m)) calc(26 * var(--m));
    background: #008557;
  }
  .green-bar__inner { padding: 0; }
  .green-bar__box {
    flex-direction: column; padding: 0; gap: calc(10 * var(--m));
    background: transparent !important; border-radius: 0; box-shadow: none;
    width: 100%; max-width: calc(290 * var(--m)); margin: 0 auto;
    height: auto !important; min-height: 0;
    display: flex; align-items: stretch;
  }
  .green-bar__input {
    width: 100%; font-size: calc(12 * var(--m));
    height: calc(35 * var(--m)); padding: 0 calc(20 * var(--m));
    border-radius: calc(10 * var(--m));
    background: #fff; color: #000; border: 1px solid rgba(0,0,0,0.12);
    flex: 0 0 auto;
  }
  .green-bar__input::placeholder { color: #000; }
  .green-bar__btn {
    width: 100%; font-size: calc(12 * var(--m)); font-weight: 700;
    height: calc(40 * var(--m)); padding: 0;
    border-radius: calc(10 * var(--m));
    margin-top: calc(6 * var(--m)); margin-left: 0;
    background: #fff; color: #008557;
    border: 0; flex: 0 0 auto;
  }

  /* ===== HOW WORKS (Figma: 320x1044) ===== */
  .how-works { padding: calc(33 * var(--m)) 0 calc(44 * var(--m)); }
  .how-works__inner { padding: 0 calc(15 * var(--m)); }
  .how-works__inner .section-title {
    font-size: calc(30 * var(--m)); line-height: 1.12; font-weight: 800;
    margin: 0 0 calc(39 * var(--m));
    max-width: calc(240 * var(--m));
    text-align: left !important;
  }
  .how-works__diagram {
    width: calc(290 * var(--m)); max-width: 100%;
    height: calc(150 * var(--m));
    margin: 0 auto calc(56 * var(--m));
    border-radius: calc(20 * var(--m));
  }
  .how-works__steps {
    display: flex; flex-direction: column;
    gap: calc(15 * var(--m));
    position: static !important;
    padding-bottom: 0 !important;
    height: auto !important;
  }
  .how-works__step,
  .how-works__step--1,
  .how-works__step--2,
  .how-works__step--3,
  .how-works__step--4,
  .how-works__step--5 {
    position: static !important; width: 100% !important;
    left: auto !important; right: auto !important;
    top: auto !important; bottom: auto !important;
    transform: none !important;
    margin-left: 0 !important; margin-right: 0 !important;
  }
  .step-card {
    width: calc(290 * var(--m)); max-width: 100%;
    flex-direction: row; align-items: flex-start;
    gap: calc(14 * var(--m));
    padding: calc(20 * var(--m));
    border-radius: calc(15 * var(--m));
    min-height: calc(110 * var(--m)); height: auto;
    position: relative; margin: 0 auto;
    background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.08); /* updated shadow */
  }
  .step-card__num {
    font-size: calc(20 * var(--m)); font-weight: 800; color: #008557;
    position: static; line-height: 1;
    flex-shrink: 0; min-width: calc(26 * var(--m));
    left: auto; top: auto;
  }
  .step-card__body { display: flex; flex-direction: column; gap: calc(5 * var(--m)); }
  .step-card__title { font-size: calc(14 * var(--m)); font-weight: 800; line-height: 1; color: #292929; margin: 0; }
  .step-card__desc { font-size: calc(12 * var(--m)); font-weight: 500; line-height: 1.3; color: #292929; margin: 0; }

  /* ===== WHY CHOOSE (Figma: 320x926) ===== */
  .why-choose { padding: calc(23 * var(--m)) 0 calc(44 * var(--m)); }
  .why-choose__inner { padding: 0 calc(15 * var(--m)); }
  .why-choose__inner .section-title {
    font-size: calc(30 * var(--m)); line-height: 1.12; font-weight: 800;
    margin: 0 0 calc(64 * var(--m));
    max-width: calc(270 * var(--m));
    text-align: left;
  }
  .why-cards { grid-template-columns: 1fr; gap: calc(15 * var(--m)); display: grid; margin-top: 0; }
  .why-card {
    width: calc(290 * var(--m)); max-width: 100%;
    padding: calc(25 * var(--m));
    min-height: calc(155 * var(--m));
    border-radius: calc(15 * var(--m));
    display: flex; flex-direction: column; gap: calc(13 * var(--m));
    background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.08); /* updated shadow */
    margin: 0 auto;
  }
  .why-card__emoji { font-size: calc(30 * var(--m)); line-height: 1; }
  .why-card__title { font-size: calc(14 * var(--m)); font-weight: 800; color: #292929; margin: 0; }
  .why-card__desc { font-size: calc(12 * var(--m)); font-weight: 500; line-height: 1.5; color: #292929; margin: 0; }

  /* ===== MODELS (Figma: 320x1771) ===== */
  .models { padding: calc(73 * var(--m)) 0 calc(44 * var(--m)); }
  .models__inner { padding: 0 calc(15 * var(--m)); }
  .models__inner .section-title {
    font-size: calc(30 * var(--m)); line-height: 1.12; font-weight: 800;
    text-align: center; margin: 0 0 calc(40 * var(--m));
  }
  .models__grid { grid-template-columns: 1fr; gap: calc(40 * var(--m)); display: grid; margin-bottom: calc(35 * var(--m)); }
  .model-card {
    width: calc(290 * var(--m)); max-width: 100%;
    min-height: calc(618 * var(--m)); height: auto;
    padding: calc(31 * var(--m)) calc(15 * var(--m)) calc(25 * var(--m));
    border-radius: calc(15 * var(--m));
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; gap: 0;
    background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    margin: 0 auto;
  }
  .mc-name {
    position: static;
    font-size: calc(20 * var(--m)); color: #000; font-weight: 800;
    line-height: 1; margin: 0; order: 1;
    text-align: center;
  }
  .mc-img, .mc-img--uno, .mc-img--pro {
    position: static;
    width: 100% !important; height: calc(248 * var(--m)) !important;
    left: auto; top: auto; margin: calc(26 * var(--m)) 0 0;
    border-radius: calc(20 * var(--m));
    order: 2;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
  }
  .mc-img img { object-fit: contain; object-position: center; width: 100%; height: 100%; }
  .mc-badge {
    position: static; max-width: calc(260 * var(--m));
    width: calc(260 * var(--m));
    height: auto; min-height: calc(55 * var(--m));
    padding: calc(10 * var(--m)) calc(20 * var(--m));
    border-radius: calc(20 * var(--m));
    gap: 0; background: #008557; border: none;
    margin: calc(20 * var(--m)) auto 0;
    order: 3;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
  }
  .mc-badge .mc-dot { display: none; }
  .mc-badge span:last-child { font-size: calc(12 * var(--m)); font-weight: 700; line-height: 1.4; color: #fff; }
  .mc-desc {
    position: static;
    font-size: calc(12 * var(--m)); font-weight: 500; line-height: 1.5;
    width: calc(219 * var(--m)); max-width: 100%;
    margin: calc(23 * var(--m)) auto 0; color: #000; order: 4;
    text-align: left;
  }
  .mc-specs {
    position: static; order: 5; list-style: none; padding: 0;
    gap: calc(15 * var(--m)); margin: calc(35 * var(--m)) 0 0;
    display: flex; flex-direction: column;
  }
  .mc-price {
    position: static;
    order: 6;
    margin-top: calc(22 * var(--m));
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: calc(6 * var(--m));
  }
  .mc-price__old {
    font-size: calc(14 * var(--m));
    color: rgba(0,0,0,.45);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
  }
  .mc-price__new {
    font-size: calc(28 * var(--m));
    color: #e53935;
    font-weight: 800;
    line-height: 1;
  }
  .mc-price__new-prefix {
    color: #000;
    font-size: .62em;
    font-weight: 500;
  }
  .mc-specs li {
    font-size: calc(12 * var(--m)); font-weight: 500; line-height: 1;
    gap: calc(15 * var(--m)); max-width: 100%; color: #000;
    display: flex; align-items: center;
  }
  .mc-order-btn {
    position: static;
    order: 7;
    margin-top: calc(18 * var(--m));
    width: 100%;
  }
  .mc-num {
    font-size: calc(14 * var(--m)); font-weight: 800; color: #008557;
    min-width: calc(18 * var(--m));
  }
  .models__promo {
    flex-direction: row; align-items: flex-start;
    padding: calc(31 * var(--m)) calc(12 * var(--m));
    gap: calc(14 * var(--m));
    border-radius: calc(30 * var(--m));
    width: calc(264 * var(--m)); max-width: 100%; height: auto;
    min-height: calc(184 * var(--m));
    background: #008557; color: #fff; border: none;
    margin: 0 auto;
  }
  .models__promo-icon { font-size: calc(20 * var(--m)); color: #fff; margin: 0; line-height: 1; }
  .models__promo strong { font-size: calc(12 * var(--m)); font-weight: 800; color: #fff; display: block; margin: 0 0 calc(11 * var(--m)); }
  .models__promo p { font-size: calc(12 * var(--m)); font-weight: 500; line-height: 1.45; color: #fff; max-width: calc(219 * var(--m)); margin: 0; }

  /* ===== QUIZ (Figma: 320x739) ===== */
  .quiz { padding: calc(43 * var(--m)) 0 calc(44 * var(--m)); background: #fff; }
  .quiz__inner { flex-direction: column; padding: 0 calc(15 * var(--m)); gap: calc(59 * var(--m)); }
  .quiz__left, .quiz__right { flex: 1 1 auto; max-width: 100%; }
  .quiz__left .section-title {
    font-size: calc(30 * var(--m)); line-height: 1.12; font-weight: 800;
    color: #000; margin: 0; max-width: calc(240 * var(--m));
  }
  .quiz__left .section-title .text-green { color: #008557; }
  .quiz-card {
    padding: calc(20 * var(--m));
    width: calc(290 * var(--m)); max-width: 100%;
    min-height: calc(440 * var(--m)); height: auto;
    border-radius: calc(15 * var(--m));
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin: 0 auto;
  }
  .quiz-progress { height: calc(3 * var(--m)); margin-bottom: calc(20 * var(--m)); }
  .qs-label { font-size: calc(16 * var(--m)); font-weight: 800; color: #008557; margin-bottom: calc(20 * var(--m)); display: block; }
  .qs-label__count { display: none; }
  .qs-question { font-size: calc(16 * var(--m)); font-weight: 800; color: #000; line-height: 1.3; margin: 0 0 calc(50 * var(--m)); max-width: calc(220 * var(--m)); }
  .qs-opts {
    grid-template-columns: 1fr; gap: calc(5 * var(--m));
    display: grid; margin: 0; padding: 0; list-style: none;
  }
  .qs-opt {
    padding: 0 calc(20 * var(--m));
    font-size: calc(12 * var(--m)); font-weight: 800; color: #000;
    height: calc(43 * var(--m));
    width: calc(250 * var(--m)); max-width: 100%;
    border-radius: calc(25 * var(--m));
    gap: calc(20 * var(--m));
    background: #fff; border: 1px solid rgba(0,0,0,0.08);
    display: flex; align-items: center;
    margin: 0 auto;
  }
  .qs-letter { font-size: calc(16 * var(--m)); font-weight: 800; color: #008557; min-width: calc(20 * var(--m)); }
  .qs-footer { justify-content: flex-end; margin-top: calc(19 * var(--m)); display: flex; gap: calc(10 * var(--m)); }
  .qs-footer .qs-prev { display: inline-flex; }
  .qs-footer .btn, .qs-next, .qs-prev, .qs-submit {
    padding: 0 calc(15 * var(--m)); font-size: calc(10 * var(--m)); font-weight: 700;
    height: calc(32 * var(--m)); border-radius: calc(10 * var(--m));
    width: auto; min-width: calc(112 * var(--m));
  }
  .qs-input {
    height: calc(40 * var(--m));
    font-size: calc(12 * var(--m));
    padding: 0 calc(16 * var(--m));
    border-radius: calc(10 * var(--m));
  }
  .qs-form {
    gap: calc(10 * var(--m));
    margin: calc(14 * var(--m)) 0 calc(18 * var(--m));
  }

  /* ===== INSTALLATION (Figma: 320x1931) ===== */
  .installation { padding: calc(22 * var(--m)) 0 calc(44 * var(--m)); }
  .installation__inner { padding: 0 calc(15 * var(--m)); }
  .installation__inner .section-title {
    font-size: calc(30 * var(--m)); line-height: 1.12; font-weight: 800;
    text-align: center; margin: 0 0 calc(36 * var(--m));
  }
  .installation__steps {
    display: flex;
    grid-template-columns: none;
    flex-direction: column; align-items: center;
    gap: calc(44 * var(--m)); justify-content: flex-start;
  }
  .installation__step,
  .installation__step:first-child {
    flex-direction: column;
    width: 100% !important; max-width: 100%;
    align-items: flex-start; gap: calc(18 * var(--m));
    margin: 0;
  }
  .installation__photo {
    width: calc(247 * var(--m));
    height: calc(321 * var(--m));
    max-width: 100%;
    border-radius: calc(30 * var(--m));
    margin: 0 auto; order: 2; overflow: hidden;
    position: relative;
  }
  .installation__photo img {
    position: absolute !important;
    top: 0; left: 0;
    width: 100% !important; height: 100% !important;
    object-fit: cover !important;
    display: block;
    border-radius: calc(30 * var(--m));
  }
  .installation__connector { display: none; }
  .installation__meta { text-align: left; padding: 0; width: 100%; order: 1; display: flex; flex-direction: column; gap: calc(6 * var(--m)); }
  .installation__step-label { font-size: calc(15 * var(--m)); font-weight: 800; color: #006a44; display: block; }
  .installation__step-desc { font-size: calc(14 * var(--m)); font-weight: 500; line-height: 1; color: #000; opacity: 1; }
  .installation__check { width: calc(41 * var(--m)); height: calc(41 * var(--m)); bottom: calc(20 * var(--m)); right: calc(20 * var(--m)); }
  .installation__check svg { width: 100%; height: 100%; }

  /* ===== GALLERY (Figma: 320x1150) ===== */
  .gallery { padding: calc(23 * var(--m)) 0 calc(44 * var(--m)); }
  .gallery__inner {
    padding: 0 calc(15 * var(--m));
    display: flex; flex-direction: column;
  }
  .gallery__header { display: contents; }
  .gallery__header .section-title {
    font-size: calc(30 * var(--m)) !important; line-height: 1.12; font-weight: 800;
    margin: 0 0 calc(18 * var(--m));
    text-align: left;
    order: 1;
  }
  .gallery__header .btn {
    width: calc(242 * var(--m)); max-width: 100%;
    height: calc(48 * var(--m)); font-size: calc(12 * var(--m)); font-weight: 700;
    border-radius: calc(10 * var(--m));
    order: 3;
    margin: calc(30 * var(--m)) auto 0;
  }
  .gallery__grid {
    grid-template-columns: 1fr; gap: calc(6 * var(--m));
    justify-items: stretch; justify-content: center;
    order: 2;
  }
  .gallery__header .section-title .br-desktop { display: none; }
  .gallery__tile {
    width: calc(264 * var(--m)); max-width: 100%;
    height: calc(237 * var(--m));
    border-radius: calc(30 * var(--m));
    margin: 0 auto; overflow: hidden;
    background: transparent;
  }
  .gallery__tile img { width: 100%; height: 100%; object-fit: cover; border-radius: calc(30 * var(--m)); }

  /* ===== ITALIAN (Figma: 320x1055) ===== */
  .italian { padding: calc(73 * var(--m)) 0 calc(20 * var(--m)); }
  .green-bar--faq { margin-top: calc(-100 * var(--m)); position: relative; z-index: 10; }
  .italian__inner { padding: 0 calc(15 * var(--m)); position: relative; z-index: 1; }
  .italian__inner .section-title {
    font-size: calc(30 * var(--m)); line-height: 1.12; font-weight: 800;
    text-align: center; margin: 0;
  }
  .italian__flags {
    width: calc(290 * var(--m)); max-width: 100%;
    height: calc(10 * var(--m));
    margin: calc(38 * var(--m)) auto calc(10 * var(--m));
    overflow: hidden; display: flex; gap: 0;
  }
  .italian__flag { flex: 1; height: 100%; }
  .italian__flag--green { background: #35714F; }
  .italian__flag--white {
    background: #fff;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .italian__flag--red { background: #B34045; }
  .italian__content { flex-direction: column; gap: calc(20 * var(--m)); display: flex; padding: 0; align-items: center; }
  .italian__left, .italian__right { display: contents; }
  .italian__station-image {
    width: calc(209 * var(--m)); max-width: 100%;
    height: calc(340 * var(--m));
    margin: 0 auto;
    background: transparent;
    order: 1;
    border: 2px solid #fff;
    border-radius: 0 !important;
  }
  .italian__station-image img { border-radius: 0 !important; }
  .italian__desc {
    font-size: calc(14 * var(--m)); font-weight: 800; line-height: 1.45;
    order: 2; max-width: calc(268 * var(--m)); padding: 0;
    margin: 0; color: #000;
  }
  .italian__cards {
    order: 3;
    display: flex; flex-direction: column; gap: calc(12 * var(--m));
    width: calc(290 * var(--m)); max-width: 100%;
    margin: calc(30 * var(--m)) auto 0; padding: 0;
  }
  .italian__card {
    width: 100%; padding: calc(24 * var(--m)) calc(20 * var(--m));
    background: #fff; border-radius: calc(20 * var(--m));
    display: flex; flex-direction: row; align-items: center; gap: calc(14 * var(--m));
    box-shadow: 0 4px 14px rgba(0,0,0,0.08); /* updated shadow */
  }
  .italian__card-icon {
    width: calc(32 * var(--m));
    height: calc(32 * var(--m));
    flex: 0 0 calc(32 * var(--m));
    font-size: calc(24 * var(--m));
  }
  .italian__card p {
    font-size: calc(13 * var(--m)); font-weight: 700; line-height: 1.35;
    margin: 0; color: #000;
    flex: 1 1 auto;
  }
  .italian__reliability {
    order: 4;
    font-size: calc(24 * var(--m)); font-weight: 800; line-height: 1.2;
    text-align: center; margin: calc(30 * var(--m)) 0 0;
  }

  /* ===== ITALIAN RELIABILITY (Figma: 320x936) ===== */
  .italian-reliability { padding: calc(73 * var(--m)) 0 calc(44 * var(--m)); }
  .italian-reliability__inner { padding: 0 calc(15 * var(--m)); }

  /* ===== FAQ (Figma: 320x858) ===== */
  .faq { padding: calc(60 * var(--m)) 0; }
  .faq__inner { padding: 0 calc(20 * var(--m)); }
  .faq__inner .section-title { margin-bottom: calc(30 * var(--m)); text-align: center !important; }
  .faq__grid { grid-template-columns: 1fr; gap: calc(12 * var(--m)); }
  .faq-item { border-radius: calc(15 * var(--m)); }
  .faq-item__header { padding: calc(18 * var(--m)) calc(20 * var(--m)); }
  .faq-item__q { font-size: calc(15 * var(--m)); font-weight: 700; line-height: 1.3; margin-bottom: 0; color: #292929; }
  .faq-item__content { padding: 0 calc(20 * var(--m)) calc(18 * var(--m)); font-size: calc(14 * var(--m)); font-weight: 500; line-height: 1.5; color: var(--text-gray); }
  .faq-item__icon { width: calc(24 * var(--m)); height: calc(24 * var(--m)); margin-left: calc(15 * var(--m)); }
  .faq-item__icon::before { width: calc(8 * var(--m)); height: calc(8 * var(--m)); border-width: calc(2 * var(--m)); }
  .faq-item__icon::after { display: none; }

  /* ===== PARTNERS (Figma: 320x800) ===== */
  .partners { padding: 0; }
  .partners__top { display: none; }
  .partners__body {
    margin: 0; padding: calc(68 * var(--m)) 0 calc(78 * var(--m));
    border-radius: calc(30 * var(--m)) calc(30 * var(--m)) 0 0;
    background: #008557; position: relative; overflow: hidden;
  }
  .partners__body::before { display: none; }
  .pnav {
    display: none;
  }
  .partners__inner {
    display: flex; flex-direction: column; gap: 0;
    padding: 0 calc(15 * var(--m));
  }
  .partners__left { display: contents; }
  .partners__right { flex: 1 1 auto; max-width: 100%; padding: 0; }
  .partners__left .section-title {
    font-size: calc(30 * var(--m)); line-height: 1.2; font-weight: 800;
    color: #fff; margin: 0 auto; text-align: center;
    max-width: calc(290 * var(--m));
    order: 1;
  }
  .partners__desc {
    font-size: calc(12 * var(--m)); font-weight: 500;
    color: #fff; line-height: 1.5;
    max-width: calc(260 * var(--m)); margin: calc(20 * var(--m)) auto 0;
    text-align: center;
    order: 2;
  }
  .btn--white-outline {
    width: calc(242 * var(--m)); max-width: 100%;
    height: calc(48 * var(--m)); font-size: calc(12 * var(--m)); font-weight: 700;
    padding: 0 calc(16 * var(--m));
    border-radius: calc(10 * var(--m));
    background: #fff; color: #006a44;
    margin: calc(30 * var(--m)) auto 0;
    display: flex; align-items: center; justify-content: center;
    order: 4;
  }
  .partners__stage {
    width: calc(227 * var(--m)); max-width: 100%;
    height: calc(272.4 * var(--m));
    position: relative; margin: calc(30 * var(--m)) auto 0;
    order: 3;
    overflow: visible;
  }
  .pstack--l, .pstack--r { display: none; }
  .pcard {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; max-width: 100% !important;
    height: 100% !important;
    opacity: 0;
    transform: scale(0.8) !important;
    filter: none !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: transform, opacity;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: calc(25 * var(--m)) !important;
    border: none !important;
    background: #fff !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08); /* card shadow */
    pointer-events: none;
    overflow: hidden !important;
  }
  .pcard.active {
    opacity: 1 !important;
    transform: scale(1) !important;
    pointer-events: auto;
    z-index: 3;
  }
  .pcard.prev, .pcard.next {
    display: flex !important;
    opacity: 0.6 !important;
    filter: none !important;
    z-index: 2;
  }
  .pcard.prev { transform: translateX(-25%) scale(0.85) !important; opacity: 0.4 !important; }
  .pcard.next { transform: translateX(25%) scale(0.85) !important; opacity: 0.4 !important; }
  .pcard__badge {
    position: static;
    height: auto; padding: calc(8 * var(--m)) calc(14 * var(--m));
    border-radius: calc(14 * var(--m)); margin-bottom: calc(14 * var(--m));
    background: rgba(0,133,87,0.1);
  }
  .pcard__badge .pcard__dot { background: #008557; }
  .pcard__badge span:last-child { font-size: calc(11 * var(--m)); font-weight: 700; color: #008557; }
  .pcard__title { position: static; width: 100%; font-size: calc(15 * var(--m)); font-weight: 800; line-height: 1.25; margin-bottom: calc(12 * var(--m)); color: #000; }
  .pcard__desc { position: static; width: 100%; font-size: calc(11 * var(--m)); line-height: 1.45; margin-bottom: calc(12 * var(--m)); color: #000; }
  .pcard__list { position: static; width: 100%; font-size: calc(11 * var(--m)); line-height: 1.7; padding-left: calc(16 * var(--m)); color: #000; }
  .pcard__photo { display: none; }
  .pcard--image { padding: 0 !important; border-radius: calc(25 * var(--m)) !important; overflow: hidden !important; background: #fff !important; box-shadow: none; }
  .pcard--image > img { width: 100%; height: 101%; object-fit: cover; object-position: center; border-radius: 0 !important; }

  /* ===== CTA SECTION (Figma: 320x762) ===== */
  .cta-section { padding: calc(73 * var(--m)) 0 calc(30 * var(--m)); position: relative; overflow: hidden; }
  .cta-section::before {
    width: calc(380 * var(--m)); height: calc(380 * var(--m));
    left: calc(-30 * var(--m)); top: calc(90 * var(--m));
    background: radial-gradient(circle at center, rgba(2,203,49,0.08) 0%, rgba(2,203,49,0.03) 40%, rgba(2,203,49,0) 70%);
    filter: blur(30px);
  }
  .cta-section__form { position: relative; z-index: 4; background: #fff; }
  .cta-section__form .btn { position: relative; z-index: 5; }
  .cta-section::after {
    display: block; content: '';
    position: absolute; left: 0; right: 0; bottom: 0;
    height: calc(80 * var(--m));
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none; z-index: 3;
  }
  .cta-section__inner { flex-direction: column; padding: 0 calc(15 * var(--m)); gap: 0; position: relative; }
  .cta-section__content { display: contents; }
  .cta-section__content .section-title {
    font-size: calc(22 * var(--m)); line-height: 1.05; font-weight: 800;
    order: 1; margin: 0 auto; max-width: calc(260 * var(--m));
    text-align: center;
  }
  .cta-section__desc {
    font-size: calc(12 * var(--m)); font-weight: 500; line-height: 1.42;
    order: 2; margin: calc(16 * var(--m)) auto 0; color: #000;
    max-width: calc(252 * var(--m));
    text-align: center;
  }
  .cta-section__note {
    order: 4;
    max-width: calc(290 * var(--m)) !important;
    margin: calc(18 * var(--m)) auto 0 !important;
    font-size: calc(12 * var(--m)) !important;
    line-height: 1.45 !important;
    color: #8a8a8a !important;
    text-align: left;
  }
  .cta-section__image {
    position: relative; right: auto; top: auto;
    width: 100%; max-width: calc(330 * var(--m));
    height: calc(302 * var(--m));
    margin: calc(21 * var(--m)) auto 0; background: transparent;
    order: 3; border-radius: 0; overflow: visible;
  }
  .cta-section__image::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    height: calc(110 * var(--m));
    background: linear-gradient(to bottom, transparent 0%, #fff 85%);
    pointer-events: none;
  }
  .cta-section__image img { width: 100%; height: 100%; object-fit: contain; object-position: top; }
  .cta-section__form { gap: calc(10 * var(--m)); order: 5; width: 100%; max-width: calc(290 * var(--m)); margin: calc(16 * var(--m)) auto 0; display: flex; flex-direction: column; }
  .cta-form-field { width: 100%; }
  .cta-input {
    width: 100%;
    font-size: calc(12 * var(--m));
    height: calc(35 * var(--m)); padding: 0 calc(20 * var(--m));
    border-radius: calc(10 * var(--m));
    background: #fff; border: 1.5px solid rgba(0,0,0,0.18);
  }
  .cta-input::placeholder { color: #000; }
  .cta-section__form .btn { width: 100%; height: calc(40 * var(--m)); font-size: calc(12 * var(--m)); font-weight: 700; border-radius: calc(10 * var(--m)); }

  /* ===== FOOTER ===== */
  .footer { padding: calc(30 * var(--m)) 0; height: auto; }
  .footer__inner { flex-direction: column; padding: 0 calc(15 * var(--m)); gap: calc(14 * var(--m)); text-align: center; align-items: center; height: auto; }
  .footer__logo { margin: 0; }
  .footer__logo img { width: calc(87 * var(--m)); height: calc(20 * var(--m)); }
  .footer__socials { gap: calc(10 * var(--m)); }
  .footer__social img { width: calc(48 * var(--m)); height: calc(48 * var(--m)); border-radius: calc(10 * var(--m)); }
  .footer__links { margin: 0; }
  .footer__link { font-size: calc(11 * var(--m)); }
  .footer__top { margin: 0; font-size: calc(11 * var(--m)); }

  /* ===== SAMPLES MODAL (mobile) ===== */
  .samples-modal__dialog {
    width: min(calc(100vw - 24px), calc(420 * var(--m)));
    border-radius: calc(28 * var(--m));
    max-height: 92vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .samples-modal__close {
    top: calc(14 * var(--m)); right: calc(14 * var(--m));
    width: calc(32 * var(--m)); height: calc(32 * var(--m));
  }
  .samples-modal__close svg { width: calc(20 * var(--m)); height: calc(20 * var(--m)); }
  .samples-modal__state--form { flex-direction: column; }
  .samples-modal__photo {
    flex: 0 0 auto;
    padding: calc(20 * var(--m)) calc(20 * var(--m)) 0;
    height: calc(260 * var(--m));
  }
  .samples-modal__photo img { border-radius: calc(22 * var(--m)); }
  .samples-modal__body {
    padding: calc(22 * var(--m)) calc(14 * var(--m)) calc(24 * var(--m));
    width: 100%;
    min-width: 0;
  }
  .samples-modal__sub { font-size: calc(12 * var(--m)); margin: calc(-10 * var(--m)) 0 calc(14 * var(--m)); }
  .samples-modal__title {
    font-size: calc(24 * var(--m));
    margin: 0 0 calc(18 * var(--m));
  }
  .samples-modal__form { gap: calc(10 * var(--m)); }
  .samples-messenger-opts {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(8 * var(--m));
    width: 100%;
  }
  .samples-messenger-opts .qs-opt {
    min-width: 0;
    width: 100%;
    padding: 0 calc(8 * var(--m));
    gap: calc(6 * var(--m));
    overflow: hidden;
    font-size: calc(10.5 * var(--m));
  }
  .samples-messenger-opts .qs-opt-icon {
    width: calc(24 * var(--m));
    height: calc(24 * var(--m));
    flex-shrink: 0;
  }
  .samples-field__label { left: calc(20 * var(--m)); top: calc(16 * var(--m)); font-size: calc(12 * var(--m)); }
  .samples-input {
    height: calc(52 * var(--m));
    padding: calc(22 * var(--m)) calc(20 * var(--m)) calc(8 * var(--m));
    border-radius: calc(12 * var(--m));
    font-size: calc(13 * var(--m));
  }
  .samples-modal__submit {
    height: calc(50 * var(--m));
    font-size: calc(12 * var(--m));
    border-radius: calc(12 * var(--m));
    margin-top: calc(10 * var(--m));
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    padding: 0 calc(12 * var(--m));
  }
  .samples-modal__state--success {
    padding: calc(56 * var(--m)) calc(24 * var(--m));
    min-height: calc(240 * var(--m));
  }
  .samples-modal__success-title { font-size: calc(24 * var(--m)); margin: 0 0 calc(26 * var(--m)); }
  .samples-modal__close-btn { height: calc(46 * var(--m)); padding: 0 calc(40 * var(--m)); font-size: calc(13 * var(--m)); border-radius: calc(12 * var(--m)); }

  #lightbox img { max-width: 92vw; max-height: 80vh; }

  .scroll-top { right: calc(14 * var(--m)); bottom: calc(14 * var(--m)); width: calc(40 * var(--m)); height: calc(40 * var(--m)); }
}

/* ===== GAP FIX: green-bar -> how-works ===== */
.how-works { padding-top: 60px; }

/* ===== FADE-IN ANIMATION ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MODEL ORDER BUTTON ===== */
@media (min-width: 769px) {
  .mc-price {
    position: absolute;
    left: 32px;
    bottom: 94px;
    align-items: flex-start;
    text-align: left;
  }
  .mc-order-btn {
    position: absolute;
    bottom: 28px;
    left: 32px;
    height: 46px;
    padding: 0 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 14px;
    z-index: 2;
  }
}
@media (max-width: 768px) {
  .mc-price {
    position: static;
    order: 6;
    margin-top: calc(22 * var(--m));
  }
  .mc-order-btn {
    position: static;
    order: 7;
    margin-top: calc(18 * var(--m));
    width: 100%;
    height: calc(52 * var(--m));
    font-size: calc(14 * var(--m));
    border-radius: calc(12 * var(--m));
  }
}

.input-error {
  border: 1.5px solid #ff3b30 !important;
  box-shadow: 0 0 0 2px rgba(255, 59, 48, 0.12) !important;
}

/* ===== QUIZ MULTI-SELECT (q7) ===== */
.qs-opts--multi .qs-opt.selected {
  background: rgba(0,133,87,.08);
  border-color: var(--green);
}
