/* Installer landing page built from the supplied desktop and mobile references. */

html {
  scroll-behavior: smooth;
}

/* The installer page uses its own compact navigation, independent of the global header. */
.installer-site-header {
  background: var(--color-white);
  border-bottom: 0;
  padding: 12px 0 14px;
  position: relative;
}

.installer-site-header::after {
  display: none;
}

.installer-header__inner {
  align-items: center;
  direction: rtl;
  display: flex;
  gap: 32px;
  height: 98px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 24px;
}

.installer-header__logo {
  display: flex;
  flex: 0 0 auto;
  line-height: 0;
}

.installer-header__logo img {
  display: block;
  height: auto;
  max-width: 225px;
  width: 225px;
}

.installer-header__nav {
  flex: 1 1 auto;
  min-width: 0;
}

.installer-header__nav ul {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.4vw, 38px);
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.installer-header__nav a {
  color: var(--color-neutral-9);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.installer-header__nav a:hover,
.installer-header__nav a.is-active {
  color: var(--color-secondary);
}

.installer-header__actions {
  align-items: center;
  direction: ltr;
  display: flex;
  flex: 0 0 auto;
  gap: 20px;
}

.installer-header__login,
.installer-header__brochure {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  min-height: 54px;
  text-decoration: none;
  white-space: nowrap;
}

.installer-header__login {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 0 31px;
}

.installer-header__brochure {
  background: var(--color-white);
  box-shadow: 0 7px 18px rgba(0, 170, 90, 0.16);
  color: var(--color-green-600);
  gap: 17px;
  min-width: 143px;
  padding: 0 23px;
}

.installer-header__chevron {
  border-bottom: 2px solid var(--color-green-600);
  border-right: 2px solid var(--color-green-600);
  height: 9px;
  transform: rotate(45deg) translateY(-2px);
  width: 9px;
}

.installer-header__menu {
  display: none !important;
}

@media (max-width: 767px) {
  .installer-site-header {
    padding: 0;
  }

  .installer-site-header::after {
    display: none;
  }

  .installer-header__inner {
    direction: ltr;
    gap: 8px;
    height: 120px;
    max-width: none;
    padding: 0 14px;
  }

  .installer-header__logo {
    min-width: 0;
  }

  .installer-header__logo img {
    max-width: 205px;
    width: min(205px, 51vw);
  }

  .installer-header__nav {
    display: none;
  }

  .installer-header__actions {
    gap: 0;
    margin-left: auto;
  }

  .installer-header__login {
    display: none;
  }

  .installer-header__brochure {
    font-size: 15px;
    min-height: 52px;
    min-width: 106px;
    padding: 0 13px;
  }

  .installer-header__menu {
    align-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    flex: 0 0 40px;
    flex-direction: column;
    gap: 6px;
    height: 40px;
    justify-content: center;
    padding: 0;
    display: flex !important;
  }

  .installer-header__menu span {
    background: var(--color-neutral-7);
    border-radius: 99px;
    display: block;
    height: 4px;
    transition: transform 180ms ease, opacity 180ms ease;
    width: 34px;
  }

  .installer-header__menu.is-open span:nth-child(1),
  body.menu-open .installer-header__menu span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .installer-header__menu.is-open span:nth-child(2),
  body.menu-open .installer-header__menu span:nth-child(2) {
    opacity: 0;
  }

  .installer-header__menu.is-open span:nth-child(3),
  body.menu-open .installer-header__menu span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

.installer-landing-active.bg-body {
  background: var(--color-white) !important;
}

.installer-landing {
  background: var(--color-white);
  color: var(--color-violet-500);
  overflow: hidden;
}

.installer-landing img {
  display: block;
  height: auto;
  max-width: 100%;
}

.installer-shell {
  margin-inline: auto;
  max-width: 1220px;
  padding-inline: 32px;
  width: 100%;
}

.installer-section-title {
  color: var(--color-violet-500);
  text-align: center;
}

.installer-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 10px 34px;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.installer-button:hover {
  transform: translateY(-2px);
}

.installer-button:focus-visible,
.installer-video__cover:focus-visible,
.installer-faq__tab:focus-visible,
.installer-footer__top:focus-visible {
  outline: 3px solid var(--color-warning-500);
  outline-offset: 3px;
}

.installer-button--violet {
  background: var(--color-violet-600);
  color: var(--color-white);
}

.installer-button--violet:hover {
  background: var(--color-violet-700);
  color: var(--color-white);
}

.installer-button--light {
  background: var(--color-white);
  border-color: var(--color-green-100);
  color: var(--color-green-500);
}

.installer-button--light:hover {
  border-color: var(--color-green-500);
  color: var(--color-green-700);
}

/* Hero */
.installer-hero {
  background:
    radial-gradient(ellipse at 1% 45%, rgb(188 250 216 / 92%) 0%, rgb(226 255 239 / 80%) 28%, transparent 54%),
    radial-gradient(ellipse at 76% 116%, rgb(248 226 255 / 92%) 0%, rgb(255 255 255 / 92%) 57%),
    var(--color-white);
  height: 614px;
  min-height: 614px;
  overflow: hidden;
  position: relative;
}

.installer-hero::before,
.installer-hero::after {
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: absolute;
}

.installer-hero::before {
  background: radial-gradient(circle at 35% 35%, #ff9b22 0%, #ff6800 42%, #c34800 68%, transparent 72%);
  filter: blur(8px);
  height: 170px;
  inset: -54px -48px auto auto;
  opacity: 0.94;
  width: 170px;
}

.installer-hero::after {
  background: linear-gradient(135deg, #ff7d00 0%, #ffae00 52%, #ffe28b 100%);
  border-radius: 50%;
  bottom: -72px;
  filter: blur(8px);
  height: 150px;
  left: -58px;
  opacity: 0.88;
  transform: rotate(34deg);
  width: 230px;
}

.installer-hero__layout {
  height: 100%;
  max-width: none;
  padding-inline: 0;
  position: relative;
}

.installer-hero__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: clamp(90px, 12.45vw, 190px);
  top: 101px;
  width: min(620px, 42vw);
  z-index: 2;
}

.installer-hero__title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
}

.installer-hero__title-green {
  color: var(--color-green-500);
  font-size: clamp(56px, 5.2vw, 80px);
  line-height: 1.05;
}

.installer-hero__title-violet {
  color: var(--color-violet-600);
  font-size: clamp(36px, 3.15vw, 50px);
  line-height: 1.18;
}

.installer-hero__description {
  background: rgb(255 255 255 / 82%);
  border-radius: 18px;
  color: var(--color-violet-600);
  margin: 39px 0 38px;
  max-width: 540px;
  padding: 13px 24px;
  position: relative;
  right: -30px;
}

.installer-hero__actions {
  display: flex;
  gap: 20px;
}

.installer-hero__media {
  bottom: auto;
  display: flex;
  height: auto;
  justify-content: flex-start;
  left: clamp(160px, 15vw, 230px);
  max-height: none;
  position: absolute;
  top: 40px;
  width: min(500px, 35vw);
  z-index: 1;
}

.installer-hero__media img {
  max-height: none;
  object-fit: contain;
  object-position: bottom center;
  width: 100%;
}

.installer-hero__actions .installer-button {
  min-height: 60px;
  padding-inline: 0;
}

.installer-hero__actions .installer-button--violet {
  width: 170px;
}

.installer-hero__actions .installer-button--light {
  width: 152px;
}

.installer-button__label--mobile {
  display: none;
}

.installer-hero__actions .installer-button--violet span {
  display: none;
}

.installer-hero__mobile-cta {
  display: none;
}

/* About and steps */
.installer-about {
  background: var(--color-white);
  padding: 88px 0 74px;
}

.installer-about__layout {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.installer-about__visual {
  min-height: 390px;
  position: relative;
}

.installer-about__visual img {
  height: 390px;
  object-fit: contain;
  width: 100%;
}

.installer-about__badge {
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgb(var(--color-violet-900-rgb) / 18%);
  color: var(--color-white);
  display: flex;
  height: 92px;
  justify-content: center;
  padding: 12px;
  position: absolute;
  text-align: center;
  width: 92px;
}

.installer-about__badge--before {
  background: var(--color-violet-600);
  right: 8%;
  top: 2%;
}

.installer-about__badge--after {
  background: var(--color-green-500);
  bottom: 1%;
  left: 8%;
}

.installer-about__content h2 {
  color: var(--color-violet-600);
  margin-bottom: 20px;
}

.installer-about__content p {
  color: var(--color-neutral-9);
  margin: 0;
  text-align: justify;
}

.installer-usage {
  padding-top: 74px;
}

.installer-usage__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.installer-usage__item {
  align-items: start;
  border: 1px solid var(--color-green-200);
  border-radius: 12px;
  display: grid;
  gap: 8px 14px;
  grid-template-columns: auto 1fr;
  padding: 20px;
}

.installer-line-icon {
  align-items: center;
  background: var(--color-green-50);
  border: 1px solid var(--color-green-200);
  border-radius: 50%;
  color: var(--color-green-600);
  display: flex;
  grid-row: 1 / span 2;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.installer-line-icon__svg {
  display: block;
  fill: none;
  height: 27px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  width: 27px;
}

.installer-line-icon__asset {
  display: block;
  height: 27px;
  width: 27px;
}

.installer-usage__item h3 {
  color: var(--color-green-600);
}

.installer-usage__item p {
  color: var(--color-neutral-8);
  margin: 0;
}

.installer-usage__note {
  color: var(--color-violet-500);
  margin: 18px 0 0;
  text-align: center;
}

/* Benefits */
.installer-benefits__heading {
  background: var(--color-white);
  padding: 30px 20px 28px;
  position: relative;
  text-align: center;
}

.installer-benefits__heading::after {
  background: var(--color-white);
  bottom: -16px;
  content: "";
  height: 32px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) rotate(45deg);
  width: 32px;
  z-index: 2;
}

.installer-benefits__stage {
  background: var(--color-violet-500);
  padding: 64px 0 74px;
  position: relative;
}

.installer-benefits__stage::before {
  background: var(--color-green-500);
  content: "";
  height: 100%;
  inset: 0 auto 0 0;
  opacity: 0.78;
  position: absolute;
  width: 34%;
}

.installer-benefits__stage .installer-shell {
  position: relative;
  z-index: 1;
}

.installer-benefits__lead {
  color: var(--color-white);
  margin: 0 0 48px;
  text-align: center;
}

.installer-benefits__grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.installer-benefits__grid::-webkit-scrollbar {
  display: none;
}

.installer-benefit-card {
  background: var(--color-white);
  border: 3px solid var(--color-violet-100);
  border-bottom-color: var(--color-green-200);
  border-radius: 14px;
  min-height: 230px;
  padding: 54px 24px 26px;
  position: relative;
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: center;
  text-align: center;
}

.installer-benefit-card__icon {
  align-items: center;
  background: var(--color-white);
  border: 2px solid var(--color-green-500);
  border-radius: 50%;
  color: var(--color-violet-600);
  display: flex;
  height: 76px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: -38px;
  transform: translateX(-50%);
  width: 76px;
}

.installer-benefit-card__icon img {
  filter: invert(22%) sepia(42%) saturate(1098%) hue-rotate(236deg) brightness(86%);
  height: 34px;
  width: 34px;
}

.installer-benefit-card__icon--custom img {
  filter: none;
  height: 42px;
  object-fit: contain;
  width: 44px;
}

.installer-benefit-card h3 {
  color: var(--color-green-600);
  margin-bottom: 14px;
}

.installer-benefit-card p {
  color: var(--color-neutral-8);
  margin: 0;
}

/* Video */
.installer-video {
  background: rgb(var(--color-green-50-rgb) / 68%);
  padding: 80px 0;
}

.installer-video__layout {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.installer-video__cover {
  background: transparent;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: inherit;
  width: 100%;
}

.installer-video__cover img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}

.installer-video__player {
  aspect-ratio: 3 / 2;
  background: black;
  border-radius: 18px;
  display: block;
  object-fit: contain;
  width: 100%;
}

.installer-video__play {
  align-items: center;
  background: rgb(255 255 255 / 88%);
  border: 3px solid var(--color-green-500);
  border-radius: 50%;
  color: var(--color-violet-600);
  display: flex;
  height: 78px;
  justify-content: center;
  left: 50%;
  padding-right: 4px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
}

.installer-video__content h2 {
  color: var(--color-violet-600);
  margin-bottom: 30px;
}

.installer-heading-icon {
  filter: invert(48%) sepia(72%) saturate(1051%) hue-rotate(109deg) brightness(91%);
  height: 38px;
  margin: 0 auto 12px;
  width: 38px;
}

.installer-video__notes {
  display: grid;
  gap: 18px;
}

.installer-video__note {
  align-items: center;
  background: var(--color-white);
  border: 1px solid rgb(238 227 248 / 94%);
  border-radius: 14px;
  box-shadow: 0 12px 30px #E2BBFB;
  color: #595959;
  display: flex;
  font-size: 22px;
  font-weight: 600;
  gap: 14px;
  line-height: 1.8;
  margin: 0;
  padding: 22px 24px;
}

.installer-video__note .kowork-richtext-accent {
  color: #07A152;
  font-weight: 700;
}

.installer-video__note img {
  filter: invert(48%) sepia(72%) saturate(1051%) hue-rotate(109deg) brightness(91%);
  flex: 0 0 auto;
  height: 26px;
  width: 26px;
}

.installer-video__note-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}

/* Results */
.installer-results {
  background: var(--color-white);
  padding: 84px 0 76px;
  text-align: center;
}

.installer-results__mark,
.installer-faq__mark {
  align-items: center;
  background: var(--color-green-500);
  border-radius: 4px;
  color: var(--color-white);
  display: flex;
  height: 42px;
  justify-content: center;
  margin: 0 auto 16px;
  width: 42px;
}

.installer-results__report {
  border: 5px solid var(--color-green-100);
  border-bottom-color: var(--color-violet-100);
  border-radius: 12px;
  display: inline-block;
  margin: 38px auto 44px;
  overflow: hidden;
  width: min(420px, 80%);
}

.installer-results__report img {
  width: 100%;
}

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

.installer-result h3 {
  color: var(--color-green-600);
  margin-bottom: 10px;
}

.installer-result p {
  color: var(--color-neutral-8);
  margin: 0;
}

/* Collaboration form */
.installer-collaboration {
  background: var(--color-violet-500);
  position: relative;
}

.installer-collaboration::before {
  background: var(--color-green-500);
  content: "";
  height: 100%;
  inset: 0 auto 0 0;
  opacity: 0.86;
  position: absolute;
  width: 42%;
}

.installer-collaboration__layout {
  align-items: end;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  min-height: 590px;
  position: relative;
  z-index: 1;
}

.installer-collaboration__media {
  align-self: end;
}

.installer-collaboration__media > img {
  max-height: 570px;
  object-fit: contain;
  object-position: bottom center;
  width: 100%;
}

.installer-form-card {
  align-self: center;
  background: var(--color-white);
  border-radius: 28px;
  margin-block: 56px;
  padding: 36px;
}

.installer-form-card h2 {
  color: var(--color-violet-600);
  text-align: center;
}

.installer-form-card__intro {
  color: var(--color-neutral-8);
  margin: 12px auto 24px;
  max-width: 560px;
  text-align: center;
}

.installer-form-card__message {
  border-radius: 10px;
  margin: 0 0 18px;
  padding: 12px 16px;
}

.installer-form-card__message--success {
  background: var(--color-green-50);
  color: var(--color-green-700);
}

.installer-form-card__message--error {
  background: rgb(var(--color-error-300-rgb) / 16%);
  color: var(--color-error-700);
}

.installer-form {
  display: grid;
  gap: 18px 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.installer-field {
  color: var(--color-green-600);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.installer-field input,
.installer-field select {
  appearance: none;
  background: var(--color-neutral-2);
  border: 1px solid var(--color-neutral-5);
  border-radius: 999px;
  color: var(--color-neutral-10);
  font: inherit;
  min-height: 48px;
  outline: none;
  padding: 10px 18px;
  width: 100%;
}

.installer-field select {
  background-image: none;
}

.installer-field input:focus,
.installer-field select:focus {
  border-color: var(--color-green-500);
  box-shadow: 0 0 0 3px rgb(var(--color-green-500-rgb) / 14%);
}

.installer-field small {
  color: var(--color-error-700);
}

.installer-form__terms {
  align-items: flex-start;
  color: var(--color-neutral-8);
  display: flex;
  gap: 8px;
  grid-column: 1 / -1;
}

.installer-form__terms input {
  accent-color: var(--color-green-500);
  margin-top: 3px;
}

.installer-form__submit {
  border: 0;
  cursor: pointer;
  grid-column: 1 / -1;
  width: 100%;
}

/* FAQ */
.installer-faq {
  background: rgb(var(--color-violet-50-rgb) / 74%);
  padding: 84px 0 100px;
}

.installer-faq__mark {
  background: transparent;
  height: auto;
  font-weight: var(--fw-bold);
  position: relative;
  width: min(120px, 100%);
}

.installer-faq__mark svg {
  display: block;
  height: auto;
  width: 100%;
}

.installer-faq__tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 28px 0 40px;
}

.installer-faq__tab {
  background: var(--color-white);
  border: 0;
  border-radius: 999px;
  color: var(--color-green-600);
  cursor: pointer;
  padding: 12px 28px;
}

.installer-faq__tab.is-active {
  background: var(--color-green-500);
  color: var(--color-white);
}

.installer-faq__tab-icon {
  display: none;
}

.installer-faq__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.installer-faq__column {
  display: contents;
}

.installer-faq__subcolumn {
  display: contents;
}

.installer-faq__item {
  background: var(--color-white);
  border-radius: 12px;
  color: var(--color-violet-600);
  min-width: 0;
  overflow: hidden;
}

.installer-faq__item[hidden] {
  display: none;
}

.installer-faq__item summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  list-style: none;
  padding: 20px 22px;
}

.installer-faq__item summary::-webkit-details-marker {
  display: none;
}

.installer-faq__toggle {
  background: var(--color-violet-600);
  border-radius: 50%;
  flex: 0 0 22px;
  height: 22px;
  position: relative;
  width: 22px;
}

.installer-faq__toggle::before,
.installer-faq__toggle::after {
  background: var(--color-white);
  content: "";
  height: 2px;
  left: 5px;
  position: absolute;
  top: 10px;
  width: 12px;
}

.installer-faq__toggle::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.installer-faq__item[open] .installer-faq__toggle {
  background: var(--color-green-500);
}

.installer-faq__item[open] .installer-faq__toggle::after {
  transform: rotate(0);
}

.installer-faq__item p {
  color: var(--color-neutral-8);
  margin: 0;
  padding: 0 22px 22px;
}

/* Dedicated landing footer */
.installer-footer {
  background: var(--color-violet-700);
  border-top: 9px solid var(--color-green-500);
  color: var(--color-white);
  position: relative;
  text-align: center;
}

.installer-footer__top {
  align-items: center;
  background: var(--color-green-500);
  border: 1px solid var(--color-white);
  border-radius: 50%;
  color: var(--color-white);
  display: flex;
  height: 52px;
  justify-content: center;
  left: auto;
  position: absolute;
  right: 8.35%;
  text-decoration: none;
  top: -43px;
  width: 80px;
  height: 80px;
  line-height: 0;
}

.installer-footer__top-icon {
  display: block;
  height: 40px;
  width: 44px;
}

.installer-footer__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 44px;
  padding-top: 64px;
}

.installer-footer__logo {
  background: var(--color-white);
  border-radius: 8px;
  max-height: 58px;
  object-fit: contain;
  padding: 6px 12px;
  width: 190px;
}

.installer-footer h2 {
  margin: 16px 0;
}

.installer-footer__body {
  color: var(--color-neutral-2);
  margin: 0;
  max-width: 820px;
}

.installer-footer__phones {
  display: flex;
  gap: 36px;
  margin-top: 24px;
  direction: ltr;
}

.installer-footer__phones a {
  align-items: center;
  color: var(--color-white);
  direction: ltr;
  display: inline-flex;
  gap: 8px;
  text-decoration: none;
}

.installer-footer__phone-icon {
  background-color: currentColor;
  display: inline-block;
  flex: 0 0 19px;
  height: 17px;
  mask: url('../images/installer/icons/contact.svg') center / contain no-repeat;
  -webkit-mask: url('../images/installer/icons/contact.svg') center / contain no-repeat;
  width: 19px;
}

.installer-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  direction: ltr;
}

.installer-footer__socials a {
  align-items: center;
  background: var(--color-white);
  border-radius: 50%;
  color: var(--color-violet-600);
  display: flex;
  height: 34px;
  justify-content: center;
  text-decoration: none;
  width: 34px;
}

.installer-footer__social-icon {
  background-color: currentColor;
  display: block;
  height: 22px;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  width: 22px;
}

.installer-footer__social-icon--instagram {
  mask-image: url('../images/instagram-white.svg');
  -webkit-mask-image: url('../images/instagram-white.svg');
}

.installer-footer__social-icon--whatsapp {
  height: 23px;
  width: 23px;
  color: var(--color-white);
  mask-image: url('../images/installer/icons/whatsapp.svg');
  -webkit-mask-image: url('../images/installer/icons/whatsapp.svg');
}

.installer-footer__social-link--whatsapp {
  background: var(--color-green-500) !important;
  color: var(--color-white) !important;
}

.installer-footer__social-icon--telegram {
  height: 24px;
  width: 24px;
  mask-image: url('../images/installer/icons/telegram.svg');
  -webkit-mask-image: url('../images/installer/icons/telegram.svg');
}

.installer-footer__copyright {
  align-items: center;
  background: var(--color-violet-900);
  color: var(--color-white);
  display: flex;
  font-size: 16px;
  font-weight: var(--fw-medium);
  justify-content: center;
  line-height: 24px;
  margin: 0;
  min-height: 47px;
  padding: 0 20px;
  text-align: center;
}

/* Landing reference alignment */

.installer-about__layout,
.installer-video__layout,
.installer-collaboration__layout {
  direction: ltr;
}

.installer-about__content,
.installer-video__content,
.installer-form-card {
  direction: rtl;
}

.installer-about__content p {
  font-size: 20px;
  line-height: 1.7;
}

.installer-about__visual img {
  transform: scaleX(-1);
}

.installer-about__body--mobile {
  display: none;
}

.installer-benefits__stage {
  background:
    linear-gradient(180deg, transparent 0%, transparent 66%, rgb(228 202 239 / 96%) 100%),
  linear-gradient(108deg, #0b9e57 0%, #557181 48%, #42105e 100%);
  padding-bottom: 106px;
  padding-top: 78px;
}

.installer-benefits__stage::before {
  display: none;
}

.installer-benefits__coins {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.installer-benefits__stage .installer-shell {
  position: relative;
  z-index: 2;
}

.installer-benefits__coins span {
  background: url("../images/installer/coin.png") center / contain no-repeat;
  filter: blur(1px);
  height: 72px;
  position: absolute;
  width: 72px;
}

.installer-benefits__coins span:nth-child(1) { left: 13%; top: 13%; transform: perspective(260px) rotateY(16deg) rotateZ(-18deg); }
.installer-benefits__coins span:nth-child(2) { left: 31%; top: 22%; height: 120px; transform: perspective(300px) rotateY(-9deg) rotateZ(31deg); width: 120px; }
.installer-benefits__coins span:nth-child(3) { left: 48%; top: 17%; height: 58px; transform: perspective(240px) rotateY(21deg) rotateZ(-12deg); width: 58px; }
.installer-benefits__coins span:nth-child(4) { right: 26%; top: 21%; height: 76px; transform: perspective(260px) rotateY(-17deg) rotateZ(24deg); width: 76px; }
.installer-benefits__coins span:nth-child(5) { right: 12%; top: 13%; height: 88px; transform: perspective(280px) rotateY(11deg) rotateZ(-27deg); width: 88px; }

.installer-benefit-card {
  min-height: 256px;
}

.installer-benefit-card__icon {
  border: 3px solid var(--color-violet-500);
  outline: 1px dashed var(--color-black);
  outline-offset: 10px;
}

.installer-benefits__pagination,
.installer-results__pagination {
  align-items: center;
  display: flex;
  gap: 9px;
  justify-content: center;
}

.installer-benefits__pagination {
  margin-top: 62px;
}

.installer-results__pagination {
  margin-top: 40px;
}

.installer-benefits__pagination span,
.installer-benefits__pagination button,
.installer-results__pagination span,
.installer-results__pagination button {
  background: var(--color-violet-600);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  height: 12px;
  padding: 0;
  width: 12px;
}

.installer-benefits__pagination button.is-active,
.installer-results__pagination button.is-active,
.installer-results__pagination span.is-active {
  background: var(--color-green-500);
}

.installer-benefits__pagination button:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
}

.installer-results__pagination button:focus-visible {
  outline: 2px solid var(--color-green-500);
  outline-offset: 4px;
}

.installer-video {
  background:
    radial-gradient(ellipse at 90% 85%, rgb(199 255 218 / 90%) 0%, transparent 47%),
    radial-gradient(ellipse at 5% 90%, rgb(240 214 255 / 88%) 0%, transparent 48%),
    var(--color-white);
  padding-bottom: 104px;
  padding-top: 104px;
}

.installer-video__content {
  position: relative;
}

.installer-video__cover img {
  aspect-ratio: 4 / 3;
}

.installer-video__content > .installer-heading-icon {
  float: left;
  margin: 0 0 12px 0;
}

.installer-video__content h2 {
  text-align: right;
}

.installer-results {
  background: linear-gradient(155deg, #c4f8d6 0%, #ffffff 42%, #ffffff 100%);
}

.installer-results__mark {
  display: none;
}

.installer-results > .installer-shell > .installer-heading-icon {
  filter: none;
  height: 64px;
  width: 64px;
}

.installer-collaboration {
  background: linear-gradient(112deg, #0da25b 0%, #405d75 49%, #42105e 100%);
}

.installer-collaboration::before {
  display: none;
}

.installer-collaboration__media {
  position: relative;
}

.installer-collaboration__badge {
  align-items: center;
  background: var(--color-white);
  border: 3px solid var(--color-green-200);
  border-radius: 50%;
  color: var(--color-green-600);
  display: flex;
  font-size: 32px;
  height: 86px;
  justify-content: center;
  position: absolute;
  width: 86px;
  z-index: 2;
}

.installer-collaboration__badge--support { left: 2%; top: 42%; }
.installer-collaboration__badge--brand { color: var(--color-violet-600); right: 5%; top: 25%; }

.installer-footer {
  background: linear-gradient(108deg, #0b9e57 0%, #2b5962 51%, #42105e 100%);
}

.installer-footer__logo {
  background: transparent;
  border-radius: 0;
  height: 58px;
  object-fit: contain;
  object-position: center;
  padding: 0;
  width: 58px;
}

.installer-landing .installer-footer__logo {
  height: 58px;
  max-width: none;
  width: 58px;
}

.installer-footer__phones > span {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Collaboration reference layout */
.installer-collaboration {
  background:
    radial-gradient(ellipse 48% 88% at 16% 82%, rgb(153 255 198 / 74%) 0%, transparent 68%),
    linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 82%) 100%),
    linear-gradient(106deg, #0b9257 0%, #2bc878 25%, #5e7586 53%, #43105e 100%);
  min-height: 658px;
}

.installer-collaboration__layout {
  align-items: stretch;
  display: grid;
  gap: 56px;
  grid-template-columns: 500px minmax(0, 564px);
  max-width: 1120px;
  min-height: 658px;
  padding-inline: 0;
}

.installer-collaboration__media {
  align-self: end;
  height: 658px;
  overflow: visible;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.installer-collaboration__media > img {
  height: 658px;
  max-height: none;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  transform: scaleX(-1);
  width: auto;
}

.installer-collaboration__badge {
  box-shadow: 0 4px 12px rgb(28 42 35 / 12%);
  height: 86px;
  width: 86px;
}

.installer-collaboration__badge svg {
  fill: none;
  height: 48px;
  max-width: 76px;
  object-fit: contain;
  width: 48px;
}

.installer-collaboration__badge img {
  height: 48px;
  object-fit: contain;
  width: 48px;
}

.installer-collaboration__badge--support {
  left: 0;
  top: 51%;
}

.installer-collaboration__badge--brand {
  height: 100px;
  right: 8%;
  top: 38%;
  width: 100px;
}

.installer-form-card {
  align-self: center;
  border-radius: 28px;
  margin: 0;
  padding: 24px 29px 32px;
  width: 564px;
}

.installer-form-card h2 {
  font-size: 27px;
  line-height: 1.45;
  margin: 0;
}

.installer-form-card__intro {
  font-size: 16px;
  line-height: 1.8;
  margin: 10px auto 20px;
  max-width: none;
}

.installer-form {
  --installer-control-height: 52px;
  gap: 14px 18px;
}

.installer-form__terms {
  display: none;
}

.installer-field {
  gap: 6px;
}

.installer-field input,
.installer-field select {
  height: var(--installer-control-height);
  min-height: var(--installer-control-height);
  padding-block: 0;
}

.installer-form__submit {
  align-self: end;
  grid-column: 2;
  justify-self: stretch;
  height: var(--installer-control-height);
  margin-inline: 0;
  min-height: var(--installer-control-height);
  padding-block: 0;
  width: 100%;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .installer-collaboration__layout {
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1.1fr);
    padding-inline: 32px;
  }

  .installer-collaboration__media > img {
    height: min(658px, 60vw);
  }

  .installer-collaboration__media {
    height: min(658px, 60vw);
  }

  .installer-form-card {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .installer-form {
    --installer-control-height: 64px;
  }

  .installer-field input,
  .installer-field select {
    height: var(--installer-control-height);
    min-height: var(--installer-control-height);
  }

  .installer-form__submit {
    grid-column: auto;
    height: var(--installer-control-height);
    margin-inline: 0;
    min-height: var(--installer-control-height);
    width: 100%;
  }
}

.installer-footer__phones small {
  color: var(--color-white);
  font-size: 14px;
}

.installer-footer__socials a {
  font-size: 20px;
  height: 44px;
  width: 44px;
}

@media (max-width: 1023px) {
  .installer-hero {
    height: auto;
    min-height: 590px;
  }

  .installer-hero__layout {
    align-items: center;
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    height: auto;
    min-height: 590px;
    padding-inline: 32px;
  }

  .installer-hero__content {
    position: static;
    width: auto;
  }

  .installer-hero__description {
    right: 0;
  }

  .installer-hero__title-green {
    font-size: var(--fs-d2);
    line-height: var(--lh-d2);
  }

  .installer-hero__title-violet {
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
  }

  .installer-hero__media {
    align-self: end;
    height: auto;
    left: auto;
    max-height: 560px;
    position: static;
    width: auto;
  }

  .installer-hero__media img {
    max-height: 560px;
  }

  .installer-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  }

  .installer-about__layout {
    gap: 38px;
  }

  .installer-collaboration__layout {
    gap: 32px;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  }
}

@media (max-width: 767px) {
  .installer-shell {
    padding-inline: 18px;
  }

  .installer-landing-active .site-header {
    padding-block: 8px;
  }

  .installer-hero {
    background:
      radial-gradient(ellipse at 8% 88%, rgb(190 250 216 / 96%) 0%, transparent 49%),
      radial-gradient(ellipse at 88% 62%, rgb(240 210 255 / 94%) 0%, transparent 56%),
      var(--color-white);
    height: clamp(760px, 190vw, 1110px);
    min-height: clamp(760px, 190vw, 1110px);
    padding-top: 28px;
  }

  .installer-hero::before,
  .installer-hero::after {
    display: none;
  }

  .installer-hero__layout {
    display: flex;
    flex-direction: column;
    gap: 52px;
    height: 100%;
    min-height: 0;
    padding-inline: 18px;
  }

  .installer-hero__content {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .installer-hero__title-green {
    font-size: clamp(48px, 11vw, 64px);
    line-height: 1.18;
  }

  .installer-hero__title-violet {
    font-size: clamp(30px, 6.15vw, 36px);
    line-height: 1.22;
  }

  .installer-hero__title {
    align-items: center;
  }

  .installer-hero__description {
    border-radius: 20px;
    font-size: clamp(20px, 3.75vw, 22px);
    font-weight: var(--fw-bold);
    line-height: 40px;
    margin: 22px auto 26px;
    max-width: none;
    padding: 23px 24px;
    right: 0;
    width: calc(100% + 8px);
  }

  .installer-hero__actions {
    direction: ltr;
    gap: 20px;
    justify-content: space-between;
    left: 6px;
    position: relative;
    width: min(409px, calc(100% - 40px));
  }

  .installer-hero__actions .installer-button {
    flex: 1 1 0;
    min-height: 67px;
    padding: 6px 12px;
    width: auto;
  }

  .installer-hero__actions .installer-button--light .installer-button__label--desktop {
    display: none;
  }

  .installer-hero__actions .installer-button--light .installer-button__label--mobile {
    display: inline;
  }

  .installer-hero__media {
    flex: 0 0 auto;
    left: 38px;
    max-height: none;
    position: relative;
    top: 0;
    width: min(500px, calc(100vw - 110px));
  }

  .installer-hero__media img {
    max-height: none;
  }

  .installer-hero__mobile-cta {
    --cta-gap: clamp(10px, 2.4vw, 16px);
    --cta-height: clamp(78px, 17vw, 115px);
    --cta-icon-size: var(--cta-height);
    --cta-side: clamp(18px, 4.3vw, 29px);
    background: var(--color-green-500);
    border-radius: clamp(24px, 5.7vw, 40px);
    bottom: 30px;
    box-sizing: border-box;
    color: var(--color-white);
    container-type: inline-size;
    align-items: center;
    display: flex;
    font-weight: var(--fw-bold);
    justify-content: center;
    left: 50%;
    min-height: var(--cta-height);
    padding: 12px clamp(8px, 2.4vw, 16px);
    position: absolute;
    text-align: center;
    text-decoration: none;
    transform: translateX(calc(-50% - (var(--cta-icon-size) + var(--cta-gap)) / 2));
    width: calc(100% - var(--cta-side) - var(--cta-side) - var(--cta-icon-size) - var(--cta-gap));
    white-space: nowrap;
    z-index: 3;
  }

  .installer-hero__mobile-cta-label {
    display: block;
    font-size: clamp(12px, 8cqw, 24px);
    line-height: 1.35;
    max-width: 100%;
    white-space: nowrap;
  }

  .installer-hero__mobile-cta::after {
    aspect-ratio: 1 / 1;
    background-color: var(--color-green-500);
    border-radius: clamp(28px, 5.7vw, 40px);
    content: "";
    height: var(--cta-icon-size);
    pointer-events: none;
    position: absolute;
    right: calc((var(--cta-icon-size) + var(--cta-gap)) * -1);
    top: 0;
    width: var(--cta-icon-size);
  }

  .installer-hero__mobile-cta::before {
    background-color: var(--color-white);
    content: "";
    height: var(--cta-icon-size);
    mask: url('../images/installer/icons/whatsapp.svg') center / 52% no-repeat;
    -webkit-mask: url('../images/installer/icons/whatsapp.svg') center / 52% no-repeat;
    pointer-events: none;
    position: absolute;
    right: calc((var(--cta-icon-size) + var(--cta-gap)) * -1);
    top: 0;
    width: var(--cta-icon-size);
    z-index: 1;
  }

  .installer-about {
    padding: 54px 0 48px;
  }

  .installer-about__layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .installer-about__visual {
    min-height: 250px;
    width: 100%;
  }

  .installer-about__visual img {
    height: 250px;
  }

  .installer-about__badge {
    height: 70px;
    width: 70px;
  }

  .installer-about__content {
    background: rgb(var(--color-violet-50-rgb) / 48%);
    border-radius: 14px;
    padding: 20px;
  }

  .installer-about__content h2,
  .installer-about__content p {
    text-align: center;
  }

  .installer-about__body--desktop { display: none; }
  .installer-about__body--mobile { display: block; }

  .installer-usage {
    padding-top: 46px;
  }

  .installer-usage__grid {
    gap: 12px;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .installer-usage__item {
    padding: 15px;
  }

  .installer-benefits__heading {
    padding-top: 12px;
  }

  .installer-benefits__stage {
    padding: 54px 0 46px;
  }

  .installer-benefits__stage::before {
    height: 33%;
    inset: auto 0 0;
    width: 100%;
  }

  .installer-benefits__lead {
    margin-bottom: 46px;
  }

  .installer-benefits__grid {
    display: flex;
    gap: 14px;
    margin-inline: -18px;
    overflow-x: auto;
    padding: 40px 18px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .installer-benefits__grid::-webkit-scrollbar,
  .installer-results__grid::-webkit-scrollbar {
    display: none;
  }

  .installer-results__grid {
    scrollbar-width: none;
  }

  .installer-benefit-card {
    flex: 0 0 86%;
    min-height: 226px;
    scroll-snap-align: center;
  }

  .installer-video {
    padding: 52px 0;
  }

  .installer-video__layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .installer-video__cover {
    width: 100%;
  }

  .installer-video__content h2 {
    margin-bottom: 22px;
    text-align: center;
  }

  .installer-video__note {
    padding: 16px;
  }

  .installer-results {
    padding: 54px 0 48px;
  }

  .installer-results__report {
    margin: 28px auto 24px;
    width: 88%;
  }

  .installer-results__grid {
    display: flex;
    gap: 14px;
    margin-inline: -18px;
    overflow-x: auto;
    padding: 6px 18px 12px;
    scroll-snap-type: x mandatory;
  }

  .installer-result {
    background: var(--color-white);
    border: 1px solid var(--color-green-100);
    border-radius: 12px;
    flex: 0 0 84%;
    padding: 18px;
    scroll-snap-align: center;
  }

  .installer-collaboration::before {
    height: 35%;
    inset: 0 0 auto;
    width: 100%;
  }

  .installer-collaboration__layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: auto;
    padding-inline: 0;
  }

  .installer-collaboration__media {
    height: 360px;
    width: 100%;
  }

  .installer-collaboration__media > img {
    height: 360px;
    max-height: 360px;
  }

  .installer-form-card {
    border-radius: 24px 24px 0 0;
    margin: -28px 12px 42px;
    padding: 26px 18px;
    position: relative;
    width: calc(100% - 24px);
    z-index: 2;
  }

  .installer-form {
    grid-template-columns: 1fr;
  }

  .installer-form__terms,
  .installer-form__submit {
    grid-column: auto;
  }

  .installer-faq {
    padding: 54px 0 72px;
  }

  .installer-faq__tabs {
    gap: 8px;
    margin: 22px 0 28px;
  }

  .installer-faq__tab {
    padding: 10px 14px;
  }

  .installer-faq__grid {
    grid-template-columns: 1fr;
  }

  .installer-faq__item summary {
    gap: 12px;
    padding: 16px;
  }

  .installer-faq__item p {
    padding: 0 16px 16px;
  }

  .installer-footer__content {
    padding-bottom: 34px;
    padding-top: 56px;
  }

  .installer-footer__body {
    max-width: 340px;
  }

  .installer-footer__phones {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 767px) {
  .installer-about {
    background:
      radial-gradient(ellipse 100% 34% at 0% 43%, rgb(190 250 216 / 96%) 0%, rgb(226 255 239 / 80%) 28%, transparent 54%),
      radial-gradient(ellipse 100% 34% at 100% 43%, rgb(248 226 255 / 92%) 0%, rgb(255 255 255 / 92%) 57%),
      var(--color-white);
    padding: 0 0 48px;
  }

  .installer-about__layout {
    gap: 0;
    padding-inline: 0;
  }

  .installer-about__visual {
    height: 420px;
    min-height: 420px;
  }

  .installer-about__visual img {
    height: 420px;
  }

  .installer-about__badge {
    height: 92px;
    width: 92px;
  }

  .installer-about__badge--before {
    right: 15%;
    top: 3%;
  }

  .installer-about__badge--after {
    bottom: 1%;
    left: 17%;
  }

  .installer-about__content {
    background: var(--color-white);
    border-radius: 20px;
    margin: 34px 26px 0;
    padding: 34px 26px 28px;
    width: calc(100% - 52px);
    min-height: 270px;
  }

  .installer-about__content h2 {
    font-size: 27px;
    line-height: 34px;
    margin-bottom: 20px;
    text-align: right;
  }

  .installer-about__content p {
    font-size: 18px;
    line-height: 1.75;
    text-align: center;
  }

  .installer-usage {
    padding: 78px 26px 0;
  }

  .installer-usage__grid {
    gap: 16px;
    margin-top: 28px;
  }

  .installer-usage__item {
    border-radius: 13px;
    height: auto;
    min-height: 0;
    padding: 18px 18px 18px 24px;
  }

  .installer-usage__item h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .installer-usage__item p {
    display: none;
    font-size: 16px;
    line-height: 26px;
  }

  .installer-line-icon {
    font-size: 0;
    height: 54px;
    width: 54px;
  }

  .installer-line-icon__svg {
    height: 30px;
    width: 30px;
  }

  .installer-usage__note {
    font-size: 16px;
    line-height: 28px;
    margin-top: 24px;
  }

  .installer-benefits__heading {
    padding: 34px 20px 31px;
  }

  .installer-benefits__heading h2 {
    font-size: 31px;
    line-height: 38px;
  }

  .installer-benefits__stage {
    border-radius: 30px 30px 0 0;
    padding: 63px 0 30px;
  }

  .installer-benefits__lead {
    font-size: 25px;
    line-height: 40px;
    margin: 0 auto 24px;
    max-width: 470px;
  }

  .installer-benefits__grid {
    gap: 24px;
    margin-inline: 0;
    padding: 151px 36px 12px;
  }

  .installer-benefit-card {
    flex-basis: calc(100% + 16px);
    min-height: 282px;
    padding: 99px 26px 28px;
  }

  .installer-benefit-card__icon { top: -64px; }

  .installer-benefit-card h3 {
    font-size: 25px;
    line-height: 34px;
  }

  .installer-benefit-card p {
    font-size: 18px;
    line-height: 30px;
  }

  .installer-benefits__pagination {
    margin-top: 19px;
  }

  .installer-video {
    padding: 74px 0 62px;
  }

  .installer-video__layout {
    display: grid;
    gap: 0;
    grid-template-areas:
      "icon"
      "title"
      "cover"
      "notes";
    grid-template-columns: 1fr;
  }

  .installer-video__content {
    display: contents;
  }

  .installer-video__content > .installer-heading-icon {
    float: none;
    grid-area: icon;
    height: 64px;
    margin: 0 auto 16px;
    width: 64px;
  }

  .installer-video__content h2 {
    font-size: 34px;
    grid-area: title;
    line-height: 42px;
    margin: 0 0 76px;
    text-align: center;
  }

  .installer-video__cover {
    border-radius: 18px;
    grid-area: cover;
    margin: 0 auto 34px;
    width: calc(100% - 64px);
  }

  .installer-video__cover img {
    aspect-ratio: 3 / 2;
  }

  .installer-video__notes {
    gap: 20px;
    grid-area: notes;
    margin-inline: 26px;
  }

  .installer-video__note {
    border-radius: 26px;
    font-size: 21px;
    line-height: 36px;
    min-height: 144px;
    padding: 28px 26px;
  }

  .installer-results {
    padding: 78px 0 48px;
  }

  .installer-results > .installer-shell > .installer-heading-icon {
    height: 72px;
    margin-bottom: 54px;
    width: 72px;
  }

  .installer-results .installer-section-title {
    font-size: 31px;
    line-height: 42px;
    margin-inline: auto;
    max-width: 430px;
  }

  .installer-results__report {
    margin: 61px auto 46px;
    width: calc(100% - 140px);
  }

  .installer-results__grid {
    display: flex;
    gap: 14px;
    margin-inline: -18px;
    overflow-x: auto;
    padding: 0 18px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .installer-result {
    background: transparent;
    border: 0;
    display: block;
    flex: 0 0 84%;
    padding: 0;
    scroll-snap-align: center;
  }

  .installer-result h3 {
    font-size: 27px;
    line-height: 36px;
  }

  .installer-result p {
    font-size: 18px;
    line-height: 32px;
    margin-inline: auto;
    max-width: 410px;
  }

  .installer-results__pagination {
    margin-top: 32px;
  }

  .installer-collaboration {
    background:
      linear-gradient(to bottom, var(--color-white) 0 124px, transparent 124px),
      linear-gradient(112deg, #0da25b 0%, #405d75 49%, #42105e 100%);
  }

  .installer-collaboration__layout {
    padding-inline: 0;
  }

  .installer-collaboration__media {
    height: 535px;
  }

  .installer-collaboration__media > img { position: relative; top: 36px; }
  .installer-collaboration__badge { height: 96px; width: 96px; }
  .installer-collaboration__badge--support { left: 8%; top: 61%; }
  .installer-collaboration__badge--brand { right: 8%; top: 37%; }

  .installer-collaboration__media > img {
    height: 535px;
    max-height: 535px;
  }

  .installer-form-card {
    border-radius: 28px;
    margin: -2px 26px 34px;
    padding: 32px 26px 26px;
    width: calc(100% - 52px);
  }

  .installer-form-card h2 {
    font-size: 32px;
    line-height: 44px;
  }

  .installer-form-card__intro {
    font-size: 22px;
    line-height: 38px;
    margin: 18px auto 42px;
    max-width: 390px;
  }

  .installer-form {
    gap: 26px;
  }

  .installer-form__terms { display: none; }

  .installer-field {
    font-size: 18px;
    gap: 8px;
  }

  .installer-field input,
  .installer-field select {
    min-height: 64px;
  }

  .installer-form__submit {
    min-height: 78px;
  }

  .installer-faq {
    padding: 76px 0 88px;
  }

  .installer-faq__mark {
    background: transparent;
    height: auto;
    margin-bottom: 46px;
    width: 110px;
  }

  .installer-faq .installer-section-title {
    font-size: 34px;
    line-height: 42px;
  }

  .installer-faq__tabs {
    gap: 26px;
    margin: 54px 0 56px;
  }

  .installer-faq__tab {
    align-items: center;
    border-radius: 28px;
    box-shadow: 0 8px 16px rgb(var(--color-violet-900-rgb) / 14%), 0 2px 5px rgb(var(--color-violet-900-rgb) / 8%);
    display: flex;
    flex: 0 0 198px;
    flex-direction: column;
    font-size: 19px;
    gap: 12px;
    height: 190px;
    justify-content: center;
    padding: 18px;
  }

  .installer-faq__tab.is-active {
    box-shadow: 0 9px 16px rgb(var(--color-violet-900-rgb) / 20%), 0 2px 5px rgb(var(--color-violet-900-rgb) / 10%);
  }

  .installer-faq__tab-icon {
    display: block;
    height: 100px;
    width: auto;
  }

  .installer-faq__tab[data-installer-faq-tab="product"]:not(.is-active) .installer-faq__tab-icon {
    filter: invert(48%) sepia(72%) saturate(1051%) hue-rotate(109deg) brightness(91%);
  }

  .installer-faq__tab[data-installer-faq-tab="partner"].is-active .installer-faq__tab-icon {
    filter: brightness(0) invert(1);
  }

  .installer-faq__grid {
    gap: 14px;
    margin-inline: 8px;
  }

  .installer-faq__item {
    border-radius: 22px;
    box-shadow: 0 4px 14px rgb(var(--color-violet-900-rgb) / 8%);
  }

  .installer-faq__item summary {
    font-size: 21px;
    line-height: 34px;
    min-height: 122px;
    padding: 20px 28px;
  }

  .installer-faq__toggle {
    flex-basis: 34px;
    height: 34px;
    width: 34px;
  }

  .installer-faq__toggle::before,
  .installer-faq__toggle::after {
    left: 8px;
    top: 16px;
    width: 18px;
  }

  .installer-faq__item p {
    font-size: 18px;
    line-height: 32px;
    padding: 0 28px 50px;
    margin-inline: auto;
    max-width: 440px;
    text-align: center;
  }

  .installer-footer {
    background: linear-gradient(135deg, #0b9e57 0%, #2b5962 52%, #42105e 100%);
    border-top-width: 14px;
  }

  .installer-footer__top {
    border-width: 2px;
    height: 52px;
    left: 50%;
    right: auto;
    top: -31px;
    transform: translateX(-50%);
    width: 52px;
  }

  .installer-footer__top-icon {
    height: 34px;
    width: 36px;
  }

  .installer-footer__content {
    padding-bottom: 32px;
    padding-top: 31px;
  }

  .installer-footer__logo {
    height: 64px;
    width: 64px;
    max-height: none;
  }

  .installer-landing .installer-footer__logo {
    height: 64px;
    max-width: none;
    width: 64px;
  }

  .installer-footer h2 {
    font-size: 28px;
    line-height: 36px;
    margin: 16px 0 12px;
  }

  .installer-footer__body {
    font-size: 16px;
    line-height: 30px;
    max-width: 400px;
  }

  .installer-footer__phones {
    flex-direction: row;
    gap: 28px;
    justify-content: center;
    margin-top: 34px;
    width: 100%;
  }

  .installer-footer__phones > span { gap: 8px; }
  .installer-footer__phones small { font-size: 16px; }

  .installer-footer__phones a {
    font-size: 18px;
  }

  .installer-footer__phone-icon {
    flex-basis: 21px;
    height: 19px;
    width: 21px;
  }

  .installer-footer__socials {
    gap: 8px;
    margin-top: 38px;
  }

  .installer-footer__socials a {
    height: 40px;
    width: 40px;
  }

  .installer-footer__social-icon {
    height: 20px;
    width: 20px;
  }

  .installer-footer__social-icon--whatsapp {
    height: 21px;
    width: 21px;
  }

  .installer-footer__social-icon--telegram {
    height: 24px;
    width: 24px;
  }

  .installer-footer__copyright {
    box-sizing: border-box;
    font-size: clamp(12px, 3vw, 16px);
    height: auto;
    line-height: 24px;
    min-height: 0;
    padding: 0 12px;
    padding-block: 16px;
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  .installer-about .installer-shell {
    max-width: 1290px;
  }

  .installer-about {
    min-height: 948px;
    padding-bottom: 58px;
  }

  .installer-about__layout {
    min-height: 446px;
  }

  .installer-usage {
    background: var(--color-white);
    padding-top: 38px;
  }

  .installer-usage .installer-section-title {
    font-size: 36px;
    line-height: 1.3;
    margin: 0;
  }

  .installer-usage__grid {
    gap: 20px;
    margin-top: 35px;
  }

  .installer-usage__note {
    margin-top: 35px;
  }

  .installer-usage__item {
    border-color: var(--color-green-100);
    border-radius: 11px;
    column-gap: 20px;
    min-height: 120px;
    padding: 18px 20px;
  }

  .installer-usage__item h3 {
    color: var(--color-green-600);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
    text-align: center;
  }

  .installer-usage__item p {
    display: none;
  }

  .installer-usage .installer-line-icon {
    background: rgb(var(--color-green-500-rgb) / 18%);
    border: 0;
    flex: 0 0 68px;
    height: 68px;
    width: 68px;
  }

  .installer-usage__item:nth-child(1),
  .installer-usage__item:nth-child(2) {
    border-color: var(--color-violet-100);
  }

  .installer-usage .installer-line-icon__svg {
    height: 34px;
    stroke-width: 1.55;
    width: 34px;
  }

  .installer-usage .installer-line-icon__asset {
    height: 34px;
    width: 34px;
  }

  .installer-benefits__heading {
    padding: 47px 20px;
  }

  .installer-benefits__stage {
    padding: 82px 0 49px;
  }

  .installer-benefits__stage .installer-shell {
    max-width: 1354px;
  }

  .installer-benefits__grid {
    padding-top: 119px;
  }

  .installer-benefit-card {
    min-height: 258px;
  }

  .installer-video {
    min-height: 666px;
  }

  .installer-video__layout {
    max-width: 1350px;
  }

  .installer-results {
    min-height: 902px;
    padding-bottom: 108px;
  }

  .installer-results > .installer-shell > .installer-heading-icon {
    margin-bottom: 32px;
  }

  .installer-results__report {
    margin-top: 57px;
    margin-bottom: 54px;
    width: min(440px, 80%);
  }

  .installer-collaboration__layout {
    max-width: 1360px;
    min-height: 660px;
  }

  .installer-collaboration__media > img {
    max-height: 610px;
  }

  .installer-form-card {
    padding: 24px 30px;
  }

  .installer-form-card__intro {
    margin: 8px auto 14px;
  }

  .installer-form {
    gap: 12px;
  }

  .installer-form__terms {
    display: none;
  }

  .installer-faq {
    min-height: 922px;
    padding: 104px 0 60px;
  }

  .installer-faq__mark {
    height: 64px;
    margin-bottom: 32px;
    width: 64px;
  }

  .installer-faq__tabs {
    margin: 36px 0 54px;
  }

  .installer-faq__grid {
    align-items: start;
  }

  .installer-faq__item summary {
    min-height: 86px;
  }

  .installer-faq__item[open] p {
    padding-bottom: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .installer-button,
  .installer-faq__toggle::after {
    transition: none;
  }
}

/* About visual: split apple artwork with the supplied brand mark. */
.installer-about__visual {
  height: clamp(390px, 32vw, 520px);
  min-height: 0;
  overflow: visible;
}

.installer-about__visual .installer-about__apple {
  height: 100%;
  inset: 0 auto 0 3%;
  object-fit: contain;
  position: absolute;
  transform: scaleX(-1);
  width: 105%;
  z-index: 1;
}

.installer-about__visual .installer-about__logo {
  height: auto;
  left: 15.5%;
  position: absolute;
  top: 39%;
  transform: none;
  width: clamp(112px, 18.5%, 178px);
  z-index: 3;
}

.installer-about__accent {
  display: block;
  pointer-events: none;
  position: absolute;
  z-index: 4;
}

.installer-about__accent--purple-dot,
.installer-about__accent--green-dot,
.installer-about__accent--green-small-dot {
  aspect-ratio: 1;
  border-radius: 50%;
}

.installer-about__accent--purple-dot {
  background: #a35fc9;
  left: 15%;
  top: 22%;
  width: 4.2%;
}

.installer-about__accent--green-dot {
  background: var(--color-green-500);
  left: 7.5%;
  top: 52%;
  width: 4.2%;
}

.installer-about__accent--green-small-dot {
  background: #52d697;
  left: 21.5%;
  top: 76%;
  width: 1.8%;
}

.installer-about__accent--purple-plus,
.installer-about__accent--green-plus {
  font-family: Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 0.8;
}

.installer-about__accent--purple-plus {
  color: var(--color-violet-600);
  left: 14%;
  top: 61%;
}

.installer-about__accent--green-plus {
  color: var(--color-green-500);
  left: 29.5%;
  top: 26%;
}

.installer-about__badge {
  font-size: clamp(13px, 1.6vw, 23px);
  height: clamp(104px, 18%, 178px);
  line-height: 1.35;
  width: clamp(104px, 18%, 178px);
  z-index: 5;
}

.installer-about__badge--before {
  right: 8.5%;
  top: 12%;
}

.installer-about__badge--after {
  bottom: 4%;
  left: 21.5%;
}

@media (max-width: 767px) {
  .installer-about__visual {
    height: 420px;
    min-height: 420px;
  }

  .installer-about__visual .installer-about__apple {
    height: 100%;
  }

  .installer-about__visual .installer-about__logo {
    left: 15.5%;
    top: 39%;
  }

  .installer-about__badge--before {
    right: 8.5%;
    top: 12%;
  }

  .installer-about__badge--after {
    bottom: 4%;
    left: 21.5%;
  }
}

/* Video section reference layout: desktop uses the wide composition, while
 * mobile keeps the same proportions as the supplied portrait reference. */
@media (min-width: 1024px) {
  .installer-video {
    box-sizing: border-box;
    min-height: 594px;
    padding: 89px 0 119px;
  }

  .installer-video__layout {
    align-items: start;
    gap: 54px;
    grid-template-columns: minmax(0, 0.932fr) minmax(0, 1fr);
    max-width: 1144px;
    padding-inline: 0;
  }

  .installer-video__cover {
    border-radius: 18px;
    overflow: visible;
  }

  .installer-video__cover img:first-child {
    aspect-ratio: 1.36;
    border-radius: 18px;
  }

  .installer-video__play {
    background: none;
    border: 0;
    border-radius: 0;
    display: block;
    height: auto;
    padding: 0;
    pointer-events: none;
    width: 94px;
  }

  .installer-video__sachet {
    background: linear-gradient(180deg, #0ba75d 0%, #e6fff3 100%);
    border: 3px solid var(--color-white);
    border-radius: 22px;
    border-top-right-radius: 50px;
    bottom: -25px;
    display: block;
    height: 136px;
    overflow: hidden;
    position: absolute;
    right: 34px;
    width: 150px;
    z-index: 2;
  }

  .installer-video__sachet img {
    height: 128px;
    left: 18px;
    margin: 0;
    object-fit: contain;
    position: absolute;
    top: 4px;
    width: 86px;
    z-index: 1;
  }

  .installer-video__sachet::after {
    background: url("../images/installer/sachet.png") center / contain no-repeat;
    content: "";
    filter: drop-shadow(0 5px 5px rgb(68 14 98 / 16%));
    height: 98px;
    position: absolute;
    right: 5px;
    top: 24px;
    transform: rotate(18deg);
    width: 55px;
    z-index: 2;
  }

  .installer-video__content > .installer-heading-icon {
    float: none;
    height: auto;
    margin: 6px 0 12px;
    left: 0;
    position: absolute;
    top: 0;
    width: 80px;
  }

  .installer-video__heading-icon {
    background: none;
    border-radius: 0;
    display: block;
    filter: none;
    float: none;
    position: relative;
  }

  .installer-video__heading-icon::before {
    content: none;
  }

  .installer-video__content h2 {
    font-size: 37px;
    line-height: 1.3;
    margin-bottom: 56px;
  }

  .installer-video__notes {
    clear: both;
    gap: 34px;
  }

  .installer-video__note {
    border-radius: 12px;
    color: #595959;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.8;
    min-height: 101px;
    padding: 20px 26px;
  }

  .installer-video__note:first-child {
    min-height: 129px;
  }

  .installer-video__note-icon {
    border: 0;
    display: block;
    flex: 0 0 48px;
    height: auto;
    width: 48px;
  }
}

@media (max-width: 1023px) {
  .installer-video {
    background:
      radial-gradient(ellipse 92% 42% at 0% 61%, rgb(177 255 207 / 96%) 0%, rgb(211 255 226 / 82%) 34%, transparent 72%),
      radial-gradient(ellipse 88% 44% at 100% 70%, rgb(240 201 255 / 94%) 0%, rgb(249 226 255 / 86%) 38%, transparent 73%),
      radial-gradient(ellipse 78% 27% at 50% 88%, rgb(231 184 255 / 72%) 0%, transparent 70%),
      var(--color-white);
    box-sizing: border-box;
    padding: 14.25vw 0 15.8vw;
  }

  .installer-video__layout {
    display: grid;
    gap: 0;
    grid-template-areas:
      "icon"
      "title"
      "cover"
      "notes";
    grid-template-columns: 1fr;
    padding-inline: 9vw;
  }

  .installer-video__content {
    display: contents;
  }

  .installer-video__content > .installer-heading-icon {
    float: none;
    grid-area: icon;
    height: auto;
    margin: 0 auto 5vw;
    width: 14.2vw;
  }

  .installer-video__heading-icon {
    background: none;
    border-radius: 0;
    display: block;
    filter: none;
    position: relative;
  }

  .installer-video__heading-icon::before {
    content: none;
  }

  .installer-video__content h2 {
    font-size: clamp(26px, 5.7vw, 50px);
    grid-area: title;
    line-height: 1.25;
    margin: 0 0 7.75vw;
    text-align: center;
  }

  .installer-video__cover {
    border: 4px solid var(--color-white);
    border-radius: 18px;
    grid-area: cover;
    margin: 0 auto 5.4vw;
    width: 82vw;
  }

  .installer-video__cover img:first-child {
    aspect-ratio: 3 / 2;
    border-radius: 14px;
  }

  .installer-video__play {
    background: none;
    border: 0;
    border-radius: 0;
    display: block;
    height: auto;
    padding: 0;
    pointer-events: none;
    width: 94px;
  }

  .installer-video__sachet {
    display: none;
  }

  .installer-video__notes {
    gap: 2.3vw;
    grid-area: notes;
    margin-inline: 0;
  }

  .installer-video__note {
    background: rgb(255 255 255 / 98%);
    border: 1px solid rgb(238 227 248 / 94%);
    border-radius: 2.3vw;
    box-shadow: 0 1.8vw 4.8vw #E2BBFB;
    color: #595959;
    font-size: clamp(16px, 3.2vw, 30px);
    font-weight: 600;
    line-height: 1.72;
    min-height: 13.3vw;
    padding: 2.6vw 3vw;
    text-align: center;
  }

  .installer-video__note:first-child {
    min-height: 25vw;
  }

  .installer-video__note-icon {
    border: 0;
    display: block;
    flex: 0 0 9vw;
    height: auto;
    margin-left: 1.8vw;
    width: 9vw;
  }
}

/* Keep the form button aligned with its fields after all responsive overrides. */
@media (min-width: 768px) {
  .installer-collaboration__media::before {
    background: radial-gradient(
            ellipse 63% 88% at 50% 71%,
            #45CD7E,
            transparent 100%
    );
    border-radius: 50%;
    content: "";
    filter: blur(10px);
    inset: 3% 0 0;
    pointer-events: none;
    position: absolute;
    z-index: 0;
  }

  .installer-collaboration,
  .installer-collaboration__layout {
    height: 658px;
    min-height: 658px;
  }

  .installer-collaboration__media,
  .installer-collaboration__media > img {
    height: 100%;
  }

  .installer-collaboration__media > img {
    filter: drop-shadow(0 0 12px #45CD7E);
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .installer-collaboration,
  .installer-collaboration__layout {
    height: min(658px, 60vw);
    min-height: min(658px, 60vw);
  }
}

@media (min-width: 768px){
  .installer-collaboration{
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .installer-form {
    --installer-control-height: 64px;
  }

  .installer-form .installer-field input,
  .installer-form .installer-field select,
  .installer-form .installer-form__submit {
    height: var(--installer-control-height);
    min-height: var(--installer-control-height);
  }
}

@media (max-width: 767px) {
  .installer-faq__tabs {
    gap: 8px;
    width: 100%;
  }

  .installer-faq__tab {
    box-sizing: border-box;
    flex: 0 1 calc((100% - 8px) / 2);
    max-width: 198px;
    min-width: 0;
    padding-inline: 10px;
    width: 100%;
  }

  .installer-faq__tab-icon {
    height: clamp(72px, 23.7vw, 100px);
  }
}

@media (min-width: 768px) {
  .installer-faq {
    background: linear-gradient(180deg, #ffffff 0%, #fcf8ff 22%, #f9edfd 62%, #f2defb 100%);
    min-height: 922px;
    padding: 104px 0 60px;
  }

  .installer-faq > .installer-shell {
    max-width: 1210px;
  }

  .installer-faq__mark {
    margin-bottom: 32px;
    width: 76px;
  }

  .installer-faq .installer-section-title {
    font-size: 31px;
    font-weight: var(--fw-bold);
    line-height: 38px;
  }

  .installer-faq__tabs {
    align-items: center;
    gap: 18px;
    margin: 32px auto 52px;
  }

  .installer-faq__tab {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    font-size: 22px;
    font-weight: var(--fw-bold);
    gap: 14px;
    height: 70px;
    justify-content: center;
    padding: 0 26px;
    width: auto;
  }

  .installer-faq__tab[data-installer-faq-tab="product"] {
    width: 248px;
  }

  .installer-faq__tab[data-installer-faq-tab="partner"] {
    width: 345px;
  }

  .installer-faq__tab-icon {
    display: block;
    flex: 0 0 auto;
    height: 43px;
    width: auto;
  }

  .installer-faq__tab span {
    white-space: nowrap;
  }

  .installer-faq__tab[data-installer-faq-tab="product"]:not(.is-active) .installer-faq__tab-icon {
    filter: invert(48%) sepia(72%) saturate(1051%) hue-rotate(109deg) brightness(91%);
  }

  .installer-faq__tab[data-installer-faq-tab="partner"].is-active .installer-faq__tab-icon {
    filter: brightness(0) invert(1);
  }

  .installer-faq__grid {
    align-items: start;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .installer-faq__column {
    display: none;
    min-width: 0;
  }

  .installer-faq__column.is-active {
    display: flex;
    flex-direction: row;
    grid-column: 1 / -1;
    gap: 18px;
  }

  .installer-faq__subcolumn {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
  }

  .installer-faq__item {
    border-radius: 14px;
    overflow: hidden;
  }

  .installer-faq__item summary {
    font-size: 21px;
    line-height: 34px;
    min-height: 85px;
    padding: 20px 26px;
  }

  .installer-faq__item p {
    font-size: 18px;
    line-height: 32px;
    padding: 14px 26px 24px;
  }

  .installer-faq__toggle {
    flex-basis: 22px;
    height: 22px;
    width: 22px;
  }

  .installer-faq__toggle::before,
  .installer-faq__toggle::after {
    left: 5px;
    top: 10px;
    width: 12px;
  }
}
