:root {
  --ink: #061a49;
  --ink-soft: #223863;
  --blue: #0757d8;
  --blue-dark: #00318a;
  --sky: #eef6ff;
  --line: #dce6f4;
  --muted: #6b7b99;
  --green: #54b62c;
  --orange: #ff6b13;
  --shadow: 0 18px 45px rgba(8, 31, 76, 0.12);
  --card-shadow: 0 10px 30px rgba(9, 35, 80, 0.1);
  --max: 1168px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  max-width: 100%;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 1px 0 rgba(8, 31, 76, 0.08);
}

.topbar {
  background: linear-gradient(90deg, #04205d, #061742);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
}

.topbar__inner {
  align-items: center;
  display: flex;
  gap: 18px;
  height: 38px;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 20px;
}

.topbar__item {
  align-items: center;
  display: inline-flex;
  gap: 9px;
  white-space: nowrap;
}

.topbar__item svg {
  height: 17px;
  width: 17px;
}

.topbar__divider {
  background: rgba(255, 255, 255, 0.65);
  height: 16px;
  width: 1px;
}

.navbar {
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr auto;
  height: 104px;
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 20px;
}

.brand {
  align-items: center;
  display: inline-flex;
  min-width: 252px;
}

.brand img {
  display: block;
  height: auto;
  object-fit: contain;
  object-position: left center;
  width: 246px;
}

.navbar__links {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: center;
}

.navbar__links a {
  align-items: center;
  color: #071946;
  display: inline-flex;
  font-size: 16px;
  font-weight: 850;
  gap: 6px;
  height: 104px;
  position: relative;
  white-space: nowrap;
}

.navbar__links a.active {
  color: var(--blue);
}

.navbar__links a.active::after {
  background: var(--blue);
  bottom: 18px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.navbar__links span {
  color: #0b286d;
  font-size: 16px;
  transform: translateY(-1px);
}

.navbar__item {
  align-items: center;
  display: inline-flex;
  height: 104px;
  position: relative;
}

.navbar__dropdown {
  background: #fff;
  border: 1px solid rgba(7, 87, 216, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8, 31, 76, 0.14);
  display: grid;
  gap: 4px;
  left: 0;
  min-width: 286px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 14px);
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  visibility: hidden;
  z-index: 20;
}

.navbar__item:hover .navbar__dropdown,
.navbar__item:focus-within .navbar__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.navbar__dropdown a {
  border-radius: 7px;
  color: #17315d;
  display: flex;
  font-size: 15px;
  font-weight: 850;
  height: auto;
  justify-content: flex-start;
  padding: 12px 14px;
  white-space: normal;
}

.navbar__dropdown a:hover,
.navbar__dropdown a:focus-visible,
.navbar__dropdown a.active {
  background: #eef6ff;
  color: var(--blue);
}

.navbar__dropdown a.active::after {
  display: none;
}

.whatsapp-button,
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
}

.whatsapp-button {
  animation: whatsapp-pulse 2s infinite, whatsapp-glow 3s ease-in-out infinite;
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
  color: #fff;
  font-size: 15px;
  gap: 10px;
  height: 57px;
  letter-spacing: 0.5px;
  overflow: hidden;
  padding: 0 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}

.whatsapp-button::before {
  animation: whatsapp-shine 3s infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.whatsapp-button:hover {
  animation: whatsapp-pulse 1.2s infinite, whatsapp-glow 2s ease-in-out infinite;
  background: linear-gradient(135deg, #20ba5a 0%, #1a9d4a 100%);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5);
  transform: translateY(-3px);
}

.whatsapp-button svg {
  height: 19px;
  width: 19px;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
}

@keyframes whatsapp-glow {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.1);
  }
}

@keyframes whatsapp-shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.menu-button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-button span {
  background: currentColor;
  border-radius: 1px;
  display: block;
  height: 2px;
  margin: 3px 0;
  width: 18px;
}

main {
  overflow: hidden;
}

.hero {
  min-height: 488px;
  position: relative;
}

.hero::before {
  background: linear-gradient(90deg, #fff 0%, #fff 34%, rgba(255, 255, 255, 0.86) 45%, rgba(255, 255, 255, 0.12) 57%, rgba(255, 255, 255, 0) 72%);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.hero__visual {
  bottom: 0;
  left: 36%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

.hero__visual::before {
  background: linear-gradient(90deg, #fff 0%, #fff 68%, rgba(255, 255, 255, 0) 100%);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 310px;
  z-index: 1;
}

.hero__visual::after {
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 72%, rgba(255, 255, 255, 0) 100%);
  bottom: 0;
  content: "";
  height: 115px;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 116px;
  z-index: 2;
}

.hero__home {
  height: 100%;
  min-width: 780px;
  object-fit: contain;
  object-position: right top;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  z-index: 0;
}

.hero__content {
  margin: 0 auto;
  max-width: var(--max);
  padding: 62px 20px 42px;
  position: relative;
  z-index: 3;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(40px, 5.1vw, 60px);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 0 22px;
  max-width: 500px;
}

.hero h1 span {
  color: var(--blue);
  display: block;
}

.hero p {
  color: #172b55;
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 470px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.button {
  border: 1px solid transparent;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
}

.button svg {
  height: 20px;
  width: 20px;
}

.button--primary {
  background: var(--blue);
  box-shadow: 0 9px 20px rgba(4, 76, 204, 0.2);
  color: #fff;
}

.button--secondary {
  background: #fff;
  border-color: #0b5ee8;
  color: var(--blue);
}

.hero__trust {
  display: flex;
  gap: 42px;
}

.hero__trust div {
  align-items: flex-start;
  display: grid;
  grid-template-columns: 29px auto;
  max-width: 170px;
}

.hero__trust svg {
  color: var(--blue);
  grid-row: span 2;
  height: 28px;
  margin-right: 9px;
  width: 28px;
}

.hero__trust span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
}

.hero__trust small {
  color: #0d214d;
  font-size: 12px;
  line-height: 1.25;
}

.product-strip,
.solution-finder,
.features,
.battery-check,
.bottom-benefits {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
  padding-left: 20px;
  padding-right: 20px;
}

.product-strip {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -12px;
  position: relative;
  z-index: 3;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(6, 26, 73, 0.08);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  display: grid;
  grid-template-columns: 128px 1fr;
  min-height: 250px;
  padding: 26px 18px 16px;
  position: relative;
}

.badge {
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  left: 18px;
  line-height: 1;
  padding: 8px 13px;
  position: absolute;
  top: 22px;
}

.badge--green {
  background: var(--green);
}

.badge--orange {
  background: var(--orange);
}

.badge--blue {
  background: var(--blue);
}

.product-card__image {
  align-items: flex-end;
  display: flex;
  grid-row: 1 / span 2;
  justify-content: center;
  min-height: 150px;
  padding-top: 44px;
}

.product-card__image img {
  max-height: 128px;
  max-width: 120px;
  object-fit: contain;
}

.product-card__copy h2 {
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 10px 0 28px;
}

.product-card__copy p {
  color: #3e527c;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.product-card__footer {
  align-items: end;
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-top: 20px;
}

.product-card__footer span {
  color: #061a49;
  font-size: 15px;
  font-weight: 780;
}

.product-card__footer strong {
  font-size: 24px;
  font-weight: 900;
  margin-left: 6px;
}

.product-card__footer a {
  color: var(--blue-dark);
  font-size: 31px;
  line-height: 1;
}

.product-card--clickable {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card--clickable:hover {
  border-color: rgba(7, 87, 216, 0.28);
  box-shadow: 0 16px 38px rgba(9, 35, 80, 0.16);
  transform: translateY(-3px);
}

.product-strip__note {
  color: #5d6f96;
  font-size: 13px;
  grid-column: 1 / -1;
  line-height: 1.5;
  margin: -4px 4px 0;
  text-align: center;
}

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

.price--orange {
  color: var(--orange);
}

.price--blue {
  color: var(--blue);
}

.solution-finder {
  align-items: stretch;
  background: linear-gradient(135deg, #f4f9ff 0%, #eef6ff 100%);
  border-radius: 10px;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 280px;
  margin-top: 22px;
  padding-bottom: 26px;
  padding-top: 24px;
}

.solution-finder h2 {
  font-size: 27px;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 19px;
}

.solution-options {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  position: relative;
}

.solution-options a,
.solution-options button {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(8, 31, 76, 0.08);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(8, 31, 76, 0.08);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 850;
  gap: 11px;
  justify-content: center;
  min-height: 104px;
  padding: 16px 10px 14px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  z-index: 1;
}

.solution-options a:visited {
  color: var(--ink);
}

.solution-options a:hover,
.solution-options a:focus-visible,
.solution-options button:hover,
.solution-options button:focus-visible {
  border-color: rgba(7, 87, 216, 0.24);
  box-shadow: 0 15px 34px rgba(8, 31, 76, 0.14);
  transform: translateY(-3px);
  z-index: 5;
}

.solution-options__label {
  display: block;
  line-height: 1.2;
}

.solution-options__hint {
  background: #fff;
  border: 1px solid rgba(7, 87, 216, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(8, 31, 76, 0.18);
  color: #53647f;
  display: block;
  font-size: 11px;
  font-weight: 650;
  left: 50%;
  line-height: 1.35;
  max-width: calc(100vw - 44px);
  opacity: 0;
  padding: 12px 13px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 10px);
  transform: translate(-50%, -4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 230px;
  z-index: 12;
}

.solution-options__hint::before {
  background: #fff;
  border-left: 1px solid rgba(7, 87, 216, 0.16);
  border-top: 1px solid rgba(7, 87, 216, 0.16);
  content: "";
  height: 10px;
  left: 50%;
  position: absolute;
  top: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
}

.solution-options a:first-child .solution-options__hint,
.solution-options button:first-child .solution-options__hint {
  left: 0;
  transform: translateY(-4px);
}

.solution-options a:first-child .solution-options__hint::before,
.solution-options button:first-child .solution-options__hint::before {
  left: 32px;
}

.solution-options a:last-child .solution-options__hint,
.solution-options button:last-child .solution-options__hint {
  left: auto;
  right: 0;
  transform: translateY(-4px);
}

.solution-options a:last-child .solution-options__hint::before,
.solution-options button:last-child .solution-options__hint::before {
  left: auto;
  right: 32px;
}

.solution-options a:hover .solution-options__hint,
.solution-options a:focus-visible .solution-options__hint,
.solution-options a:focus-within .solution-options__hint,
.solution-options button:hover .solution-options__hint,
.solution-options button:focus-visible .solution-options__hint,
.solution-options button:focus-within .solution-options__hint {
  opacity: 1;
  transform: translate(-50%, 0);
}

.solution-options a:first-child:hover .solution-options__hint,
.solution-options a:first-child:focus-visible .solution-options__hint,
.solution-options a:first-child:focus-within .solution-options__hint,
.solution-options a:last-child:hover .solution-options__hint,
.solution-options a:last-child:focus-visible .solution-options__hint,
.solution-options a:last-child:focus-within .solution-options__hint,
.solution-options button:first-child:hover .solution-options__hint,
.solution-options button:first-child:focus-visible .solution-options__hint,
.solution-options button:first-child:focus-within .solution-options__hint,
.solution-options button:last-child:hover .solution-options__hint,
.solution-options button:last-child:focus-visible .solution-options__hint,
.solution-options button:last-child:focus-within .solution-options__hint {
  transform: translateY(0);
}

.solution-options svg {
  color: var(--blue-dark);
  height: 38px;
  width: 38px;
}

.solution-finder__aside {
  border-left: 1px solid #d3dfef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 28px;
}

.solution-finder__aside p {
  color: #3e527c;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.solution-finder__aside .button {
  width: 100%;
}

.features {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.features article {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 56px 1fr;
  min-height: 122px;
  padding: 18px 18px;
}

.features svg {
  color: var(--blue);
  height: 54px;
  width: 54px;
}

.features h3 {
  font-size: 16px;
  line-height: 1.15;
  margin: 0 0 8px;
}

.features p {
  color: #526381;
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}

.battery-check {
  display: grid;
  gap: 0;
  grid-template-columns: 2fr 0.92fr;
  margin-top: 18px;
}

.battery-check__form {
  align-items: center;
  background: radial-gradient(circle at 10% 40%, #0c5edb 0%, #053076 42%, #031844 100%);
  border-radius: 8px 0 0 8px;
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: 160px 1fr 296px;
  min-height: 196px;
  padding: 18px 18px 18px 28px;
}

.battery-check__form > img {
  height: auto;
  width: 148px;
}

.battery-check__copy h2 {
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 9px;
}

.battery-check__copy p {
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 12px;
}

.battery-check__copy ul {
  display: grid;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.battery-check__copy li {
  font-size: 13px;
  padding-left: 25px;
  position: relative;
}

.battery-check__copy li::before {
  border: 1.7px solid #fff;
  border-radius: 50%;
  content: "";
  height: 13px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 13px;
}

.battery-check__copy li::after {
  border-bottom: 1.7px solid #fff;
  border-right: 1.7px solid #fff;
  content: "";
  height: 6px;
  left: 5px;
  position: absolute;
  top: 4px;
  transform: rotate(45deg);
  width: 3px;
}

form {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  padding: 12px;
}

form label span {
  height: 1px;
  left: -999px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

input {
  background: #fff;
  border: 1px solid #dce4f0;
  border-radius: 6px;
  color: var(--ink);
  height: 37px;
  outline: 0;
  padding: 0 11px;
  width: 100%;
}

input::placeholder {
  color: #6d7790;
}

.form-wide {
  grid-column: 1 / -1;
}

form .button {
  border: 0;
  cursor: pointer;
  min-height: 40px;
  width: 100%;
}

.reviews {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 196px;
  padding: 26px 24px;
}

.reviews h2 {
  font-size: 17px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.reviews__score {
  align-items: center;
  display: flex;
  gap: 15px;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars span {
  align-items: center;
  background: #18a84d;
  color: #fff;
  display: flex;
  font-size: 16px;
  height: 23px;
  justify-content: center;
  line-height: 1;
  width: 23px;
}

.reviews strong {
  font-size: 25px;
  line-height: 1;
}

.reviews p {
  color: #526381;
  font-size: 13px;
  margin: 12px 0 16px;
}

.review-badges {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.review-badges div {
  align-items: center;
  border: 1px solid #d7e0ed;
  border-radius: 6px;
  color: #24406c;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  justify-content: center;
  min-height: 48px;
  text-align: center;
}

.review-badges strong {
  color: var(--blue-dark);
  font-size: 8px;
  letter-spacing: 0;
  margin-top: 3px;
}

.bottom-benefits {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 24px;
  padding-top: 18px;
}

.bottom-benefits div {
  align-items: center;
  display: flex;
  gap: 13px;
}

.bottom-benefits svg {
  color: var(--blue);
  flex: 0 0 auto;
  height: 32px;
  width: 32px;
}

.bottom-benefits p {
  color: #586781;
  font-size: 12px;
  line-height: 1.35;
  margin: 0;
}

.bottom-benefits strong {
  color: var(--ink);
  font-size: 13px;
}

.flag {
  background: linear-gradient(#c8202f 0 33%, #fff 33% 66%, #174da2 66% 100%);
  border: 1px solid #e5eaf2;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(8, 31, 76, 0.1);
  flex: 0 0 auto;
  height: 32px;
  width: 32px;
}

.main-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #0f172a 100%);
  color: #fff;
  margin-top: 28px;
  max-width: 100vw;
  overflow: hidden;
  padding: 88px 20px;
  position: relative;
  width: 100vw;
}

.main-banner__grid {
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  inset: 0;
  position: absolute;
  z-index: 0;
}

.main-banner__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 900px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.main-banner__chip {
  align-items: center;
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 999px;
  color: #93c5fd;
  display: inline-flex;
  font-size: 13px;
  font-weight: 750;
  gap: 7px;
  margin-bottom: 20px;
  padding: 8px 18px;
}

.main-banner__chip svg,
.main-banner__button svg,
.main-banner__trust svg {
  flex: 0 0 auto;
}

.main-banner__chip svg {
  height: 16px;
  width: 16px;
}

.main-banner h2 {
  color: #fff;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 16px;
}

.main-banner p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto 38px;
  max-width: 650px;
}

.main-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 38px;
}

.main-banner__button {
  align-items: center;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 850;
  gap: 10px;
  justify-content: center;
  min-height: 58px;
  padding: 16px 34px;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.main-banner__button:hover {
  color: #fff;
  transform: translateY(-2px);
}

.main-banner__button svg {
  height: 20px;
  width: 20px;
}

.main-banner__button--whatsapp {
  background: linear-gradient(135deg, #16a34a, #25d366);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.main-banner__button--whatsapp:hover {
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.55);
}

.main-banner__button--phone {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.45);
}

.main-banner__button--phone:hover {
  box-shadow: 0 8px 26px rgba(29, 78, 216, 0.55);
}

.main-banner__button--mail {
  background: linear-gradient(135deg, #334155, #4b6080);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

.main-banner__button--mail:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.36);
}

.main-banner__trust {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.main-banner__trust span {
  align-items: center;
  color: #64748b;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
}

.main-banner__trust svg {
  color: #60a5fa;
  height: 17px;
  width: 17px;
}

.main-banner__trust i {
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  height: 16px;
  width: 1px;
}

.main-banner__company {
  background: rgba(15, 23, 42, 0.36);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 10px;
  margin-top: 28px;
  padding: 18px 22px;
  width: min(100%, 640px);
}

.main-banner__company h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.main-banner__company dl {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.main-banner__company div {
  border-left: 1px solid rgba(96, 165, 250, 0.22);
  padding-left: 14px;
  text-align: left;
}

.main-banner__company dt {
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.main-banner__company dd {
  color: #cbd5e1;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  overflow-wrap: anywhere;
}

.site-footer-bottom {
  background: #0b1220;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #64748b;
  padding: 18px 20px;
}

.site-footer-bottom__inner {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
}

.site-footer-bottom p {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.site-footer-bottom__notice {
  color: #8090a8;
}

.site-footer-bottom strong {
  color: #94a3b8;
}

.site-footer-bottom__links {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
}

.site-footer-bottom__links a {
  color: #64748b;
  font-size: 13px;
  font-weight: 750;
  transition: color 0.2s ease;
}

.site-footer-bottom__links a:hover {
  color: #60a5fa;
}

.site-footer-bottom__links span {
  background: rgba(255, 255, 255, 0.1);
  height: 14px;
  width: 1px;
}

.plugin-page {
  background: #fff;
}

.plugin-hero {
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.plugin-hero__bg,
.plugin-hero__shade {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.plugin-hero__bg {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.plugin-hero__bg--product {
  object-fit: contain;
  object-position: right center;
  opacity: 0.62;
}

.plugin-hero__shade {
  background:
    linear-gradient(90deg, rgba(3, 16, 46, 0.92) 0%, rgba(3, 16, 46, 0.74) 38%, rgba(3, 16, 46, 0.16) 68%, rgba(3, 16, 46, 0.04) 100%),
    linear-gradient(0deg, rgba(3, 16, 46, 0.48) 0%, rgba(3, 16, 46, 0) 40%);
  z-index: 1;
}

.plugin-hero__inner {
  align-items: end;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 420px;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 640px;
  padding: 88px 20px 64px;
  position: relative;
  z-index: 2;
}

.plugin-hero__copy {
  color: #fff;
  max-width: 650px;
  min-width: 0;
}

.section-kicker {
  color: #20d871;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.plugin-hero .section-kicker {
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 16px;
  text-transform: none;
}

.plugin-hero h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 64px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 22px;
  overflow-wrap: break-word;
}

.plugin-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
  overflow-wrap: break-word;
}

.plugin-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.plugin-hero__break {
  flex-basis: 100%;
  height: 0;
}

.plugin-hero__compare {
  flex: 0 0 auto;
  margin-left: auto;
  margin-right: auto;
}

.plugin-hero__product {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 370px;
}

.plugin-hero__product img {
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.35));
  max-height: 360px;
  max-width: 100%;
  object-fit: contain;
}

.product-page {
  --page-accent: #20d871;
  --page-accent-dark: #0b5ee8;
  --page-glow: rgba(32, 216, 113, 0.28);
}

.product-page--enphase {
  --page-accent: #ff8a22;
  --page-accent-dark: #cf5d00;
  --page-glow: rgba(255, 138, 34, 0.28);
}

.product-page--victron {
  --page-accent: #28a8ff;
  --page-accent-dark: #075fb4;
  --page-glow: rgba(40, 168, 255, 0.28);
}

.product-page .plugin-hero__shade {
  background:
    linear-gradient(90deg, rgba(4, 20, 54, 0.95) 0%, rgba(4, 20, 54, 0.74) 48%, rgba(4, 20, 54, 0.24) 100%),
    radial-gradient(circle at 72% 34%, var(--page-glow), transparent 30%);
}

.product-page .section-kicker,
.product-page .plugin-hero .section-kicker {
  color: var(--page-accent);
}

.product-page .button--primary,
.product-page .energy-mode-tabs button.is-active {
  background: linear-gradient(135deg, var(--page-accent), var(--page-accent-dark));
}

.plugin-hero__product--animated {
  position: relative;
}

.plugin-hero__product--animated::before,
.plugin-hero__product--animated::after {
  border: 1px solid color-mix(in srgb, var(--page-accent) 65%, transparent);
  border-radius: 50%;
  content: "";
  height: min(58vw, 420px);
  left: 50%;
  opacity: 0.72;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(58vw, 420px);
}

.plugin-hero__product--animated::after {
  animation: orbit-pulse 4s ease-in-out infinite;
  height: min(44vw, 310px);
  width: min(44vw, 310px);
}

.plugin-hero__product--animated img {
  position: relative;
  z-index: 2;
}

.enphase-showcase {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 72px;
}

.enphase-showcase__frame {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 138, 34, 0.16), transparent 38%),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid rgba(6, 26, 73, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: 28px;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.enphase-showcase__frame picture,
.enphase-showcase__frame img {
  display: block;
  height: 100%;
  width: 100%;
}

.enphase-showcase__frame img {
  min-height: 520px;
  object-fit: contain;
  padding: 42px 340px 42px 36px;
}

.showcase-node {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 138, 34, 0.25);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(6, 26, 73, 0.14);
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  min-height: 38px;
  padding: 0 14px;
  position: absolute;
  z-index: 3;
}

.showcase-node::before {
  background: #ff8a22;
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(255, 138, 34, 0.18);
  content: "";
  height: 8px;
  margin-right: 8px;
  width: 8px;
}

.showcase-node--solar {
  left: 22%;
  top: 16%;
}

.showcase-node--battery {
  left: 49%;
  top: 40%;
}

.showcase-node--home {
  left: 29%;
  top: 68%;
}

.showcase-node--app {
  left: 62%;
  top: 64%;
}

.showcase-flow {
  background:
    linear-gradient(90deg, rgba(255, 138, 34, 0), rgba(255, 138, 34, 0.86), rgba(255, 138, 34, 0)),
    repeating-linear-gradient(90deg, rgba(255, 138, 34, 0.8) 0 12px, transparent 12px 24px);
  border-radius: 999px;
  filter: drop-shadow(0 0 10px rgba(255, 138, 34, 0.42));
  height: 4px;
  opacity: 0;
  position: absolute;
  transform-origin: left center;
  z-index: 2;
}

.showcase-flow--solar {
  left: 27%;
  top: 25%;
  transform: rotate(23deg);
  width: 310px;
}

.showcase-flow--battery {
  left: 45%;
  top: 52%;
  transform: rotate(153deg);
  width: 260px;
}

.showcase-flow--home {
  left: 40%;
  top: 69%;
  transform: rotate(355deg);
  width: 300px;
}

.enphase-showcase__frame--battery .showcase-flow--battery,
.enphase-showcase__frame--home .showcase-flow--home {
  animation: energy-flow 1.35s linear infinite;
  opacity: 1;
}

.enphase-showcase__frame--solar .showcase-node--solar,
.enphase-showcase__frame--battery .showcase-node--battery,
.enphase-showcase__frame--home .showcase-node--home,
.enphase-showcase__frame--app .showcase-node--app {
  background: #fff6ef;
  border-color: rgba(255, 138, 34, 0.56);
}

.enphase-showcase__panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(6, 26, 73, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(6, 26, 73, 0.14);
  max-width: 310px;
  padding: 16px;
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 4;
}

.showcase-tabs {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 16px;
}

.showcase-tabs button {
  background: #f2f6ff;
  border: 1px solid rgba(6, 26, 73, 0.08);
  border-radius: 6px;
  color: #20345f;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  min-height: 38px;
}

.showcase-tabs button.is-active {
  background: linear-gradient(135deg, #ff8a22, #cf5d00);
  border-color: transparent;
  color: #fff;
}

.showcase-copy {
  display: none;
}

.showcase-copy.is-active {
  display: block;
}

.showcase-copy h3 {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.15;
  margin: 0 0 10px;
}

.showcase-copy p {
  color: #53647f;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.signal-chip {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(4, 20, 54, 0.22);
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  position: absolute;
  z-index: 3;
}

.signal-chip::before {
  background: var(--page-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 7px var(--page-glow);
  content: "";
  height: 8px;
  width: 8px;
}

.signal-chip--a {
  animation: chip-float 5s ease-in-out infinite;
  left: 2%;
  top: 22%;
}

.signal-chip--b {
  animation: chip-float 5.5s ease-in-out infinite 0.4s;
  right: 0;
  top: 34%;
}

.signal-chip--c {
  animation: chip-float 6s ease-in-out infinite 0.8s;
  bottom: 18%;
  left: 10%;
}

@keyframes orbit-pulse {
  0%,
  100% {
    opacity: 0.38;
    transform: translate(-50%, -50%) scale(0.94);
  }
  50% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

.system-focus article {
  background: #fff;
  border: 1px solid rgba(6, 26, 73, 0.09);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  min-height: 210px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.system-focus article::before {
  background: linear-gradient(90deg, var(--page-accent), transparent);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.system-focus strong {
  color: var(--page-accent-dark);
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.system-focus h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.12;
  margin: 0 0 12px;
}

.system-focus p {
  color: #53647f;
  font-size: 15px;
  line-height: 1.62;
  margin: 0;
}

.comparison-row--highlight {
  background: color-mix(in srgb, var(--page-accent) 9%, #fff);
}

.plugin-specs,
.power-reality,
.energy-story,
.home-hotspots,
.anker-fit,
.pros-cons,
.system-depth,
.comparison-section,
.choice-path,
.plugin-cta {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
  padding-left: 20px;
  padding-right: 20px;
}

.plugin-specs {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -44px;
  position: relative;
  z-index: 3;
}

.plugin-specs div {
  background: #fff;
  border: 1px solid rgba(6, 26, 73, 0.09);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  min-height: 148px;
  padding: 22px;
}

.plugin-specs strong {
  color: var(--ink);
  display: block;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.plugin-specs span {
  color: #53647f;
  font-size: 14px;
  line-height: 1.5;
}

.plugin-specs small {
  color: #6a7890;
  display: block;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 10px;
}

.power-reality,
.energy-story,
.home-hotspots,
.system-depth {
  padding-top: 72px;
}

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

.power-reality__grid article {
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  padding: 26px;
}

.power-reality__grid strong {
  color: #20ba5a;
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.power-reality__grid h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.power-reality__grid p {
  color: #3e527c;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.energy-story__stage {
  background: #061a49;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.55fr);
  margin-top: 28px;
  overflow: hidden;
}

.energy-story__visual {
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.energy-story__visual img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  transition: opacity 0.28s ease, transform 0.45s ease;
  width: 100%;
}

.energy-story__visual--contain {
  background:
    radial-gradient(circle at 72% 42%, var(--page-glow), transparent 34%),
    linear-gradient(135deg, #061a49 0%, #0b2b70 100%);
}

.energy-story__visual--contain img {
  object-fit: contain;
  padding: 34px;
}

.product-page--enphase .energy-story__visual--evening img {
  object-fit: cover;
  padding: 0;
}

.energy-path {
  --flow-color: 32, 216, 113;
  --flow-angle: 90deg;
  --flow-direction: 1;
  background:
    linear-gradient(var(--flow-angle), rgba(var(--flow-color), 0) 0%, rgba(var(--flow-color), 0.22) 20%, rgba(var(--flow-color), 0.95) 50%, rgba(var(--flow-color), 0.22) 80%, rgba(var(--flow-color), 0) 100%),
    repeating-linear-gradient(var(--flow-angle), rgba(255, 255, 255, 0) 0 26px, rgba(255, 255, 255, 0.95) 26px 38px, rgba(255, 255, 255, 0) 38px 78px);
  background-size: 100% 100%, 160px 100%;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(var(--flow-color), 0.9), 0 0 34px rgba(var(--flow-color), 0.45);
  height: 5px;
  opacity: 0;
  position: absolute;
  transform-origin: left center;
  transition: opacity 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.energy-path::before,
.energy-path::after {
  background: rgba(var(--flow-color), 0.92);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(var(--flow-color), 0.95);
  content: "";
  height: 11px;
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
}

.energy-path::after {
  background: transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid rgba(var(--flow-color), 0.96);
  border-radius: 0;
  border-top: 8px solid transparent;
  box-shadow: none;
  height: 0;
  right: -15px;
  width: 0;
}

.energy-path--solar-a {
  left: 19%;
  top: 28%;
  transform: rotate(26deg);
  width: 360px;
}

.energy-path--solar-b {
  left: 29%;
  top: 38%;
  transform: rotate(17deg);
  width: 310px;
}

.energy-path--home-a {
  --flow-color: 24, 151, 255;
  left: 66%;
  top: 61%;
  transform: rotate(186deg);
  width: 300px;
}

.energy-path--home-b {
  --flow-color: 24, 151, 255;
  left: 70%;
  top: 70%;
  transform: rotate(204deg);
  width: 270px;
}

.energy-story__visual--solar .energy-path--solar-a,
.energy-story__visual--solar .energy-path--solar-b,
.energy-story__visual--evening .energy-path--home-a,
.energy-story__visual--evening .energy-path--home-b {
  animation: energy-flow 1.35s linear infinite;
  opacity: 1;
}

@keyframes energy-flow {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 0, 160px 0;
  }
}

.energy-story__panel {
  background: linear-gradient(180deg, #071f58, #04143b);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.energy-mode-tabs {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
  padding: 6px;
}

.energy-mode-tabs button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-weight: 850;
  min-height: 42px;
}

.energy-mode-tabs button.is-active {
  background: #20ba5a;
  color: #fff;
}

.energy-mode-copy {
  display: none;
}

.energy-mode-copy.is-active {
  display: block;
}

.energy-mode-copy h3,
.hotspot-copy h3,
.system-depth h3 {
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.energy-mode-copy p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.home-hotspots__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  margin-top: 28px;
}

.home-hotspots__image {
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 440px;
  overflow: hidden;
  position: relative;
}

.home-hotspots__image img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.home-hotspots__image--contain {
  background:
    radial-gradient(circle at 70% 30%, var(--page-glow), transparent 34%),
    #f8fbff;
}

.home-hotspots__image--contain img {
  object-fit: contain;
  padding: 34px;
}

.home-hotspots__image--enphase-duo {
  background:
    radial-gradient(circle at 24% 76%, rgba(6, 26, 73, 0.08), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f6f9ff 100%);
}

.home-hotspots__image--enphase-duo img {
  height: auto;
  object-fit: contain;
  padding: 0;
  width: auto;
}

.home-hotspots__image--enphase-duo .enphase-duo__main {
  left: -9%;
  top: -9%;
  width: 76%;
}

.home-hotspots__image--enphase-duo .enphase-duo__side {
  right: -7%;
  top: -8%;
  width: 58%;
}

.product-page--enphase .energy-story__visual--solar .energy-path--solar-a,
.product-page--enphase .energy-story__visual--solar .energy-path--solar-b,
.product-page--enphase .energy-story__visual--evening .energy-path--home-a,
.product-page--enphase .energy-story__visual--evening .energy-path--home-b {
  animation: none;
  opacity: 0;
}

.product-page--victron .energy-path {
  display: none;
}

.product-page--victron .home-hotspots__image .hotspot {
  display: none;
}

.faq-page {
  background:
    linear-gradient(180deg, #f6faff 0%, #fff 34%, #f8fbff 100%);
}

.faq-hero,
.faq-highlight,
.faq-section,
.faq-cta {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
  padding-left: 20px;
  padding-right: 20px;
}

.faq-hero {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 390px;
  min-height: 540px;
  padding-bottom: 58px;
  padding-top: 58px;
}

.faq-hero__copy h1 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 64px);
  letter-spacing: 0;
  line-height: 1;
  margin: 12px 0 18px;
  max-width: 780px;
}

.faq-hero__copy p {
  color: #26395f;
  font-size: 18px;
  line-height: 1.66;
  margin: 0;
  max-width: 720px;
}

.faq-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.faq-hero__panel {
  background:
    radial-gradient(circle at top right, rgba(84, 182, 44, 0.22), transparent 42%),
    linear-gradient(145deg, #071946 0%, #0b3d99 100%);
  border-radius: 18px;
  box-shadow: 0 26px 65px rgba(8, 31, 76, 0.18);
  color: #fff;
  padding: 32px;
}

.faq-hero__panel span {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  margin-bottom: 22px;
  width: 82px;
}

.faq-hero__panel h2 {
  color: #fff;
  font-size: 31px;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 14px;
}

.faq-hero__panel p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin: 0 0 24px;
}

.faq-hero__panel ul {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-hero__panel li {
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
}

.faq-hero__panel li::before {
  background: var(--green);
  border-radius: 999px;
  content: "";
  height: 9px;
  width: 9px;
}

.faq-highlight {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 44px;
}

.faq-highlight article {
  background: #fff;
  border: 1px solid rgba(7, 87, 216, 0.12);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(8, 31, 76, 0.08);
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 24px;
}

.faq-highlight strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.faq-highlight span {
  color: #395078;
  font-size: 15px;
  line-height: 1.55;
}

.faq-section {
  display: grid;
  gap: 28px;
  grid-template-columns: 330px minmax(0, 1fr);
  padding-bottom: 54px;
}

.faq-section__intro {
  position: sticky;
  top: 132px;
  align-self: start;
}

.faq-section__intro h2 {
  color: var(--ink);
  font-size: 34px;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 10px 0 16px;
}

.faq-section__intro p {
  color: #3a5077;
  font-size: 16px;
  line-height: 1.62;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #fff;
  border: 1px solid rgba(7, 87, 216, 0.12);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(8, 31, 76, 0.07);
  overflow: hidden;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  list-style: none;
  padding: 22px 58px 22px 24px;
  position: relative;
}

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

.faq-list summary::after {
  align-items: center;
  background: #eef6ff;
  border-radius: 999px;
  color: var(--blue);
  content: "+";
  display: flex;
  font-size: 20px;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details div {
  border-top: 1px solid rgba(7, 87, 216, 0.1);
  padding: 0 24px 22px;
}

.faq-list p {
  color: #344a70;
  font-size: 15px;
  line-height: 1.72;
  margin: 18px 0 0;
}

.faq-list a {
  color: var(--blue);
  font-weight: 850;
}

.faq-cta {
  align-items: center;
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  border: 1px solid rgba(7, 87, 216, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(8, 31, 76, 0.08);
  display: flex;
  gap: 26px;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 30px;
  padding-top: 30px;
}

.faq-cta h2 {
  color: var(--ink);
  font-size: 31px;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 8px 0 12px;
}

.faq-cta p {
  color: #3a5077;
  line-height: 1.62;
  margin: 0;
  max-width: 760px;
}

@media (max-width: 1060px) {
  .faq-hero,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-section__intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .faq-hero {
    min-height: 0;
    padding-top: 38px;
  }

  .faq-hero__copy h1 {
    font-size: 38px;
  }

  .faq-hero__actions,
  .faq-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-highlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .faq-hero,
  .faq-highlight,
  .faq-section,
  .faq-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-hero__copy h1 {
    font-size: 32px;
  }

  .faq-hero__panel,
  .faq-highlight article,
  .faq-list summary,
  .faq-list details div {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.hotspot {
  align-items: center;
  background: #fff;
  border: 2px solid #20ba5a;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(2, 12, 35, 0.24);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  left: var(--x);
  min-width: 42px;
  padding: 0 13px;
  position: absolute;
  top: var(--y);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hotspot--solar {
  --x: 24%;
  --y: 27%;
}

.hotspot--meter {
  --x: 72%;
  --y: 58%;
}

.hotspot--living {
  --x: 42%;
  --y: 66%;
}

.hotspot--garage {
  --x: 80%;
  --y: 34%;
}

.home-hotspots__image--enphase-duo .hotspot--solar {
  --x: 24%;
  --y: 45%;
}

.home-hotspots__image--enphase-duo .hotspot--meter {
  --x: 66%;
  --y: 78%;
}

.home-hotspots__image--enphase-duo .hotspot--living {
  --x: 34%;
  --y: 80%;
}

.home-hotspots__image--enphase-duo .hotspot--garage {
  --x: 80%;
  --y: 36%;
}

.home-hotspots__image--enphase-duo .hotspot {
  display: none;
}

.hotspot::after {
  animation: hotspot-pulse 2s infinite;
  border: 2px solid rgba(32, 186, 90, 0.65);
  border-radius: inherit;
  bottom: -8px;
  content: "";
  left: -8px;
  position: absolute;
  right: -8px;
  top: -8px;
}

.hotspot.is-active,
.hotspot:hover {
  background: #20ba5a;
  color: #fff;
  transform: translate(-50%, -50%) scale(1.04);
}

@keyframes hotspot-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.82);
  }

  100% {
    opacity: 0;
    transform: scale(1.34);
  }
}

.hotspot-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  min-height: 440px;
  padding: 30px;
}

.home-hotspots__copy .hotspot-copy {
  display: none;
}

.home-hotspots__copy .hotspot-copy.is-active {
  display: block;
}

.hotspot-copy article {
  display: none;
}

.hotspot-copy article.is-active {
  display: block;
}

.hotspot-copy p,
.system-depth p {
  color: #3e527c;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.anker-fit {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) 420px;
  padding-top: 72px;
}

.anker-fit h2,
.section-heading h2,
.plugin-cta h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 18px;
}

.anker-fit p,
.section-heading p,
.plugin-cta p {
  color: #3e527c;
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 14px;
}

.anker-fit__visual {
  align-items: center;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  min-height: 330px;
  overflow: hidden;
  padding: 24px;
}

.anker-fit__visual img {
  filter: drop-shadow(0 18px 28px rgba(3, 20, 56, 0.22));
  max-height: 290px;
  object-fit: contain;
  width: 100%;
}

.pros-cons,
.comparison-section,
.choice-path,
.plugin-cta {
  padding-top: 72px;
}

.section-heading {
  max-width: 720px;
}

.comparison-section .section-heading h2 {
  font-size: clamp(26px, 3vw, 36px);
  max-width: 820px;
}

.pros-cons__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.pros-card,
.cons-card,
.choice-path__steps article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(9, 35, 80, 0.07);
  padding: 28px;
}

.pros-card {
  border-top: 5px solid #20ba5a;
}

.cons-card {
  border-top: 5px solid #f26312;
}

.pros-card h3,
.cons-card h3,
.choice-path__steps h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 18px;
}

.pros-card ul,
.cons-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pros-card li,
.cons-card li {
  color: #34486e;
  font-size: 15px;
  line-height: 1.55;
  padding-left: 28px;
  position: relative;
}

.pros-card li::before,
.cons-card li::before {
  border-radius: 50%;
  color: #fff;
  content: "\2713";
  font-size: 12px;
  font-weight: 900;
  height: 18px;
  left: 0;
  line-height: 18px;
  position: absolute;
  text-align: center;
  top: 3px;
  width: 18px;
}

.pros-card li::before {
  background: #20ba5a;
}

.cons-card li::before {
  background: #f26312;
  content: "!";
}

.system-depth__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.system-depth__grid article {
  background: linear-gradient(180deg, #fff 0%, #f6f9ff 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  padding: 28px;
}

.system-depth__grid img {
  display: block;
  height: 112px;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.system-depth ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.system-depth li {
  color: #34486e;
  font-size: 14px;
  line-height: 1.5;
  padding-left: 23px;
  position: relative;
}

.system-depth li::before {
  background: var(--blue);
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 8px;
}

.comparison-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  margin-top: 28px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.75fr repeat(3, 1fr);
}

.comparison-row > div {
  background: #fff;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: #34486e;
  font-size: 14px;
  line-height: 1.5;
  min-height: 82px;
  padding: 18px;
}

.comparison-row > div:last-child {
  border-right: 0;
}

.comparison-row:first-child > div {
  border-top: 0;
}

.comparison-row--head > div {
  background: #06245f;
  color: #fff;
  font-weight: 900;
  min-height: 58px;
}

.comparison-row:not(.comparison-row--head) > div:first-child {
  color: var(--ink);
  font-weight: 900;
}

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

.choice-path__steps span {
  color: var(--blue);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.choice-path__steps p {
  color: #53647f;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.plugin-cta {
  align-items: center;
  background: linear-gradient(135deg, #061a49 0%, #073a92 100%);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  margin-bottom: 48px;
  margin-top: 72px;
  padding-bottom: 34px;
  padding-top: 34px;
}

.plugin-cta h2,
.plugin-cta p {
  color: #fff;
}

.plugin-cta .section-kicker {
  color: #76e49c;
}

.plugin-cta__actions,
.manufacturer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.plugin-cta__actions {
  justify-content: flex-end;
}

.plugin-cta .button--external {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.plugin-cta .button--external:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.manufacturer-links {
  background: #fff;
  border: 1px solid rgba(7, 87, 216, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 31, 76, 0.07);
  justify-content: center;
  margin-top: 20px;
  padding: 16px;
}

.manufacturer-links span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.manufacturer-links a {
  align-items: center;
  background: #eef6ff;
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  min-height: 38px;
  padding: 0 14px;
}

@media (max-width: 1060px) {
  .topbar__inner {
    justify-content: center;
  }

  .topbar__item:first-child,
  .topbar__divider:first-of-type {
    display: none;
  }

  .navbar {
    grid-template-columns: auto auto 1fr;
  }

  .brand {
    min-width: 0;
  }

  .menu-button {
    display: grid;
    justify-self: end;
    margin-left: auto;
    order: 3;
  }

  .navbar__links {
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--card-shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    grid-column: 1 / -1;
    left: 0;
    padding: 10px 20px 18px;
    position: absolute;
    right: 0;
    top: 142px;
  }

  .navbar__links.is-open {
    display: flex;
  }

  .navbar__links a {
    height: 42px;
  }

  .navbar__item {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
  }

  .navbar__item > a {
    height: 42px;
  }

  .navbar__dropdown {
    background: #f7fbff;
    border: 1px solid rgba(7, 87, 216, 0.1);
    box-shadow: none;
    left: auto;
    min-width: 0;
    opacity: 1;
    padding: 6px;
    pointer-events: auto;
    position: static;
    transform: none;
    visibility: visible;
  }

  .navbar__dropdown a {
    height: auto;
    padding: 10px 12px;
  }

  .navbar__links a.active::after {
    bottom: 4px;
  }

  .whatsapp-button {
    justify-self: end;
    margin-right: 58px;
  }

  .hero__visual {
    left: 42%;
  }

  .product-strip {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .solution-finder {
    grid-template-columns: 1fr;
  }

  .solution-finder__aside {
    border-left: 0;
    border-top: 1px solid #d3dfef;
    padding-left: 0;
    padding-top: 20px;
  }

  .solution-options {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .battery-check {
    grid-template-columns: 1fr;
  }

  .battery-check__form {
    border-radius: 8px 8px 0 0;
    grid-template-columns: 150px 1fr;
  }

  .battery-check__form form {
    grid-column: 1 / -1;
  }

  .reviews {
    border-left: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 14px;
  }

  .topbar__inner {
    gap: 11px;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .topbar__item {
    font-size: 12px;
  }

  .navbar {
    height: 88px;
  }

  .brand img {
    width: 218px;
  }

  .whatsapp-button {
    display: none;
  }

  .menu-button {
    margin-left: 16px;
    order: 2;
  }

  .navbar__links {
    top: 126px;
  }

  .hero {
    background: linear-gradient(#fff 0%, #fff 48%, #eef6ff 100%);
    min-height: 0;
  }

  .hero::before {
    display: none;
  }

  .hero__visual {
    height: 300px;
    left: 0;
    opacity: 1;
    position: relative;
  }

  .hero__visual::before {
    display: none;
  }

  .hero__visual::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, #fff 100%);
    bottom: 0;
    content: "";
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
  }

  .hero__content {
    padding-top: 34px;
  }

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

  .hero p {
    font-size: 16px;
  }

  .hero__actions {
    gap: 12px;
    margin-bottom: 30px;
  }

  .button {
    min-height: 46px;
    width: 100%;
  }

  .hero__trust {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .product-strip {
    margin-top: 18px;
  }

  .product-card {
    grid-template-columns: 110px 1fr;
    padding: 24px 16px 16px;
  }

  .product-card__copy h2 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .solution-options,
  .features,
  .bottom-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .solution-options {
    grid-template-columns: 1fr;
  }

  .solution-finder h2 {
    font-size: 23px;
  }

  .solution-options a,
  .solution-options button {
    align-items: flex-start;
    min-height: 0;
    text-align: left;
  }

  .solution-options svg {
    height: 34px;
    width: 34px;
  }

  .solution-options__hint {
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 12px;
    margin-top: 0;
    max-height: none;
    max-width: none;
    opacity: 1;
    padding: 0;
    pointer-events: auto;
    position: static;
    transform: none;
    width: auto;
  }

  .solution-options__hint::before {
    display: none;
  }

  .battery-check__form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .battery-check__form > img {
    width: 132px;
  }

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

  .review-badges {
    grid-template-columns: 1fr;
  }

  .main-banner {
    padding: 64px 16px;
  }

  .main-banner h2 {
    font-size: 26px;
    max-width: 330px;
    overflow-wrap: anywhere;
    width: min(100%, 330px);
  }

  .main-banner p {
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 330px;
  }

  .main-banner__buttons {
    flex-direction: column;
    margin-bottom: 30px;
    width: min(100%, 330px);
  }

  .main-banner__button {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .main-banner__trust {
    align-items: center;
    flex-direction: column;
    gap: 11px;
  }

  .main-banner__trust i {
    display: none;
  }

  .main-banner__company {
    padding: 18px;
    width: min(100%, 330px);
  }

  .main-banner__company dl {
    grid-template-columns: 1fr;
  }

  .main-banner__company div {
    border-left: 0;
    border-top: 1px solid rgba(96, 165, 250, 0.18);
    padding-left: 0;
    padding-top: 12px;
    text-align: center;
  }

  .main-banner__company div:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .site-footer-bottom__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 460px) {
  .topbar__divider {
    display: none;
  }

  .brand img {
    width: 188px;
  }

  .navbar,
  .hero__content,
  .product-strip,
  .solution-finder,
  .features,
  .battery-check,
  .bottom-benefits {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .product-card,
  .features article {
    grid-template-columns: 1fr;
  }

  .product-card__image {
    align-items: center;
    justify-content: flex-start;
  }

  .solution-options,
  .features,
  .bottom-benefits {
    grid-template-columns: 1fr;
  }

  .main-banner h2 {
    font-size: 23px;
    max-width: 270px;
    width: min(100%, 270px);
  }

  .main-banner p,
  .main-banner__buttons {
    max-width: 270px;
  }
}

.choice-page {
  background:
    linear-gradient(180deg, #f7fbff 0%, #fff 38%),
    #fff;
}

.choice-hero,
.choice-wizard {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
  padding-left: 20px;
  padding-right: 20px;
}

.choice-hero {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 460px;
  min-height: 470px;
  padding-bottom: 54px;
  padding-top: 58px;
}

.choice-hero__copy {
  text-align: center;
}

.choice-hero__copy .section-kicker {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
  text-align: left;
}

.choice-hero__copy h1 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 64px);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 12px auto 22px;
  max-width: 680px;
}

.choice-hero__copy p {
  color: #26395f;
  font-size: 18px;
  line-height: 1.62;
  margin: 0 auto;
  max-width: 680px;
}

.choice-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
}

.choice-hero__trust span {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(7, 87, 216, 0.14);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(9, 35, 80, 0.08);
  color: #173061;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  min-height: 36px;
  padding: 0 14px;
}

.choice-hero__trust-highlight {
  flex-basis: 100%;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: max-content;
}

.choice-hero__visual {
  display: grid;
  gap: 14px;
  position: relative;
}

.choice-hero__visual::before {
  background: linear-gradient(135deg, rgba(7, 87, 216, 0.18), rgba(84, 182, 44, 0.16));
  border-radius: 999px;
  content: "";
  filter: blur(22px);
  inset: 40px 10px;
  position: absolute;
}

.choice-system-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 26, 73, 0.09);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  display: grid;
  gap: 8px 18px;
  grid-template-columns: 112px 1fr;
  min-height: 130px;
  padding: 20px;
  position: relative;
}

.choice-system-card img {
  grid-row: 1 / span 2;
  max-height: 92px;
  max-width: 110px;
  object-fit: contain;
}

.choice-system-card strong {
  color: var(--ink);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0;
}

.choice-system-card span {
  color: #405477;
  font-size: 14px;
  font-weight: 700;
}

.choice-system-card--enphase {
  margin-left: 42px;
}

.choice-system-card--victron {
  margin-left: 86px;
}

.choice-wizard {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr);
  padding-bottom: 54px;
}

.choice-wizard__side,
.choice-wizard__main {
  background: #fff;
  border: 1px solid rgba(6, 26, 73, 0.08);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.choice-wizard__side {
  align-self: start;
  overflow: hidden;
  padding: 28px;
  position: sticky;
  top: 164px;
}

.choice-wizard__side::after {
  background:
    linear-gradient(90deg, rgba(7, 87, 216, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(7, 87, 216, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  bottom: -24px;
  content: "";
  height: 150px;
  left: 0;
  opacity: 0.55;
  position: absolute;
  right: 0;
}

.choice-wizard__side h2 {
  color: var(--ink);
  font-size: 29px;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 10px 0 14px;
  position: relative;
}

.choice-wizard__side p {
  color: #41577f;
  line-height: 1.58;
  margin: 0;
  position: relative;
}

.choice-score-preview {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  position: relative;
}

.choice-score-preview span {
  background: #f4f8ff;
  border: 1px solid rgba(7, 87, 216, 0.12);
  border-radius: 8px;
  color: #0b2a6b;
  font-size: 13px;
  font-weight: 850;
  padding: 12px 13px;
}

.choice-wizard__main {
  min-height: 690px;
  padding: 26px;
}

.choice-progress {
  align-items: center;
  background: linear-gradient(135deg, #f3f8ff, #fff);
  border: 1px solid rgba(7, 87, 216, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 220px 1fr;
  margin-bottom: 24px;
  padding: 18px;
}

.choice-progress span {
  color: var(--blue);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.choice-progress strong {
  color: var(--ink);
  font-size: 19px;
  letter-spacing: 0;
}

.choice-progress__bar {
  background: #dde8f8;
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.choice-progress__bar span {
  background: linear-gradient(90deg, var(--blue), #58c452);
  border-radius: inherit;
  display: block;
  height: 100%;
  margin: 0;
  transition: width 0.28s ease;
  width: 12.5%;
}

.choice-step {
  display: none;
}

.choice-step.is-active {
  animation: choiceStepIn 0.24s ease both;
  display: block;
}

@keyframes choiceStepIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.choice-step__eyebrow {
  color: var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.choice-step h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0 0 12px;
}

.choice-step > p {
  color: #405477;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 720px;
}

.choice-multi-hint {
  align-items: center;
  background: linear-gradient(135deg, rgba(7, 87, 216, 0.08), rgba(84, 182, 44, 0.08));
  border: 1px solid rgba(7, 87, 216, 0.18);
  border-radius: 8px;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 18px;
  padding: 12px 14px;
}

.choice-multi-hint span {
  background: var(--blue);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  padding: 6px 10px;
  text-transform: uppercase;
}

.choice-multi-hint strong {
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

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

.choice-option {
  background: #fff;
  border: 1px solid rgba(6, 26, 73, 0.1);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(9, 35, 80, 0.07);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 18px 52px 18px 18px;
  position: relative;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.choice-option:hover {
  border-color: rgba(7, 87, 216, 0.28);
  box-shadow: 0 14px 30px rgba(9, 35, 80, 0.12);
  transform: translateY(-2px);
}

.choice-option.is-selected {
  background: linear-gradient(135deg, rgba(7, 87, 216, 0.08), rgba(84, 182, 44, 0.06));
  border-color: rgba(7, 87, 216, 0.5);
  box-shadow: 0 16px 32px rgba(7, 87, 216, 0.14);
}

.choice-option__icon {
  align-items: center;
  background: #edf5ff;
  border-radius: 8px;
  color: var(--blue);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.choice-option__icon svg {
  height: 24px;
  width: 24px;
}

.choice-option strong {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.18;
}

.choice-option small {
  color: #506487;
  font-size: 13px;
  line-height: 1.45;
}

.choice-option__info {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(7, 87, 216, 0.25);
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  height: 28px;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 28px;
  z-index: 2;
}

.choice-option__info:hover {
  background: var(--blue);
  color: #fff;
}

.choice-wizard__controls {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 24px;
}

.choice-wizard__controls .button[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
}

.choice-step--result .choice-wizard__controls {
  display: none;
}

.choice-result-card {
  background: linear-gradient(135deg, #061a49, #06379d);
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.choice-result-card::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  inset: 0;
  opacity: 0.26;
  position: absolute;
}

.choice-result-card > * {
  position: relative;
  z-index: 1;
}

.choice-result-card__badge {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  text-transform: uppercase;
}

.choice-result-card h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  margin-top: 18px;
  max-width: 720px;
}

.choice-result-card p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.62;
  max-width: 720px;
}

.choice-result-card ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.choice-result-card li {
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  gap: 10px;
}

.choice-result-card li::before {
  background: #58c452;
  border-radius: 999px;
  content: "";
  flex: 0 0 auto;
  height: 8px;
  margin-top: 7px;
  width: 8px;
}

.choice-result-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.choice-result-card__actions .button--secondary {
  background: #fff;
}

.choice-lead {
  background: #f7fbff;
  border: 1px solid rgba(7, 87, 216, 0.12);
  border-radius: 8px;
  margin-top: 20px;
  padding: 24px;
}

.choice-lead h2 {
  font-size: 30px;
}

.choice-lead p {
  color: #41577f;
  line-height: 1.58;
  margin: 0 0 18px;
}

.choice-required-note {
  background: rgba(7, 87, 216, 0.08);
  border: 1px solid rgba(7, 87, 216, 0.14);
  border-radius: 8px;
  color: var(--blue) !important;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px !important;
  padding: 8px 11px;
}

.choice-privacy-note {
  background: rgba(84, 182, 44, 0.08);
  border: 1px solid rgba(84, 182, 44, 0.18);
  border-radius: 8px;
  color: #29436d !important;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px !important;
  padding: 10px 12px;
}

.choice-lead__form {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-lead__form label {
  display: grid;
  gap: 7px;
}

.choice-lead__form span {
  color: #29436d;
  font-size: 12px;
  font-weight: 900;
}

.choice-lead__form input,
.choice-lead__form textarea {
  background: #fff;
  border: 1px solid #dce6f4;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  outline: none;
  padding: 12px 13px;
  resize: vertical;
}

.choice-lead__form input[type="file"] {
  cursor: pointer;
  display: block;
  line-height: 1.35;
  min-height: 58px;
  padding: 14px 13px;
}

.choice-lead__form input[type="file"]::file-selector-button {
  background: #eef6ff;
  border: 1px solid rgba(7, 87, 216, 0.22);
  border-radius: 8px;
  color: var(--blue);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  margin-right: 12px;
  padding: 9px 12px;
}

.choice-lead__form input:focus,
.choice-lead__form textarea:focus {
  border-color: rgba(7, 87, 216, 0.65);
  box-shadow: 0 0 0 3px rgba(7, 87, 216, 0.1);
}

.choice-lead__wide {
  grid-column: 1 / -1;
}

.choice-upload small {
  color: #506487;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.choice-upload__list {
  display: grid;
  gap: 6px;
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
}

.choice-upload__list:empty {
  display: none;
}

.choice-upload__list li {
  align-items: center;
  background: #fff;
  border: 1px solid #dce6f4;
  border-radius: 8px;
  color: #29436d;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  min-height: 34px;
  padding: 8px 10px;
}

.choice-upload__list li::before {
  background: var(--blue);
  border-radius: 999px;
  content: "";
  flex: 0 0 auto;
  height: 7px;
  width: 7px;
}

.choice-send {
  background: #fff;
  border: 1px solid rgba(84, 182, 44, 0.25);
  border-radius: 8px;
  margin-top: 16px;
  padding: 18px;
}

.choice-send h3 {
  font-size: 20px;
  margin: 0 0 8px;
}

.choice-send div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.choice-info-modal[hidden],
.choice-send[hidden] {
  display: none;
}

.choice-info-modal {
  align-items: center;
  background: rgba(3, 13, 38, 0.58);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 50;
}

.choice-info-modal__panel {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 24px;
  grid-template-columns: 300px minmax(0, 1fr);
  max-width: 830px;
  padding: 24px;
  position: relative;
  width: 100%;
}

.choice-info-modal__close {
  align-items: center;
  background: #eef6ff;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 28px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
}

.choice-info-modal__panel h2 {
  color: var(--ink);
  font-size: 29px;
  line-height: 1.08;
  margin: 9px 46px 12px 0;
}

.choice-info-modal__panel p {
  color: #405477;
  line-height: 1.58;
  margin: 0;
}

.choice-info-modal__panel ul {
  color: #405477;
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.choice-info-modal__visual {
  align-self: stretch;
  background: linear-gradient(135deg, #eaf3ff, #ffffff);
  border: 1px solid rgba(7, 87, 216, 0.12);
  border-radius: 8px;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.info-figure {
  height: 100%;
  min-height: 260px;
  position: relative;
}

.info-photo {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(8, 31, 76, 0.14);
  display: grid;
  gap: 10px;
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  padding: 12px;
}

.info-photo img {
  aspect-ratio: 4 / 3;
  background: #eef4fb;
  border-radius: 6px;
  display: block;
  height: 100%;
  max-height: 260px;
  object-fit: contain;
  width: 100%;
}

.info-photo--cover img {
  object-fit: cover;
}

.info-photo--meter-old img {
  aspect-ratio: 2.05 / 1;
  object-fit: cover;
  object-position: center top;
}

.info-photo--bill img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.info-photo figcaption {
  color: #405477;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.info-phase-card {
  display: grid;
  gap: 12px;
}

.info-phase-card .info-photo {
  min-height: auto;
}

.info-phase-card .info-photo img {
  max-height: 190px;
}

.info-wire-check {
  background: #f8fbff;
  border: 1px solid rgba(7, 87, 216, 0.14);
  border-radius: 8px;
  padding: 12px;
}

.info-wire-check__title {
  color: #061a49;
  display: block;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 10px;
  text-align: center;
}

.info-wire-check__wires {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.info-wire {
  align-items: flex-end;
  border-radius: 999px 999px 8px 8px;
  box-shadow: 0 10px 20px rgba(6, 26, 73, 0.16);
  color: #fff;
  display: flex;
  font-size: 11px;
  font-weight: 950;
  height: 70px;
  justify-content: center;
  min-width: 34px;
  padding: 0 7px 8px;
}

.info-wire--brown {
  background: #7b4a22;
}

.info-wire--black {
  background: #26313d;
}

.info-wire--gray {
  background: #75808c;
}

.info-wire--blue {
  background: #166eb8;
}

.info-wire-check__note {
  color: #405477;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
  margin: 10px 0 0;
  text-align: center;
}

.info-space-plan {
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(7, 87, 216, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(7, 87, 216, 0.08) 1px, transparent 1px),
    #f8fbff;
  background-size: 22px 22px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1.05fr 1fr;
  height: 100%;
  min-height: 260px;
  padding: 22px;
}

.info-space-plan__meter,
.info-space-plan__zone {
  align-items: center;
  border-radius: 8px;
  display: flex;
  font-weight: 950;
  justify-content: center;
  line-height: 1.25;
  padding: 14px;
  text-align: center;
}

.info-space-plan__meter {
  background: #061a49;
  color: #fff;
}

.info-space-plan__zone {
  background: rgba(7, 87, 216, 0.1);
  border: 2px dashed rgba(7, 87, 216, 0.45);
  color: var(--blue);
}

.info-figure::before {
  background: linear-gradient(180deg, #dcecff, #f9fcff);
  content: "";
  inset: 0;
  position: absolute;
}

.info-device,
.info-meter,
.info-phase {
  background: #fff;
  border: 1px solid rgba(6, 26, 73, 0.15);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(9, 35, 80, 0.12);
  position: absolute;
}

.info-device--string {
  height: 170px;
  left: 83px;
  top: 48px;
  width: 135px;
}

.info-device--string::before,
.info-device--string::after {
  background: #dbe7f6;
  content: "";
  left: 24px;
  position: absolute;
  right: 24px;
}

.info-device--string::before {
  height: 12px;
  top: 32px;
}

.info-device--string::after {
  height: 72px;
  top: 66px;
}

.info-device--enphase {
  height: 104px;
  left: 45px;
  top: 82px;
  width: 92px;
}

.info-device--enphase + .info-device--enphase {
  left: 158px;
  top: 58px;
}

.info-device--enphase::before {
  background: var(--blue);
  border-radius: 999px;
  content: "";
  height: 10px;
  left: 40px;
  position: absolute;
  top: 46px;
  width: 10px;
}

.info-meter {
  height: 184px;
  left: 70px;
  top: 38px;
  width: 160px;
}

.info-meter--modern::before,
.info-meter--modern::after {
  background: #12366f;
  border-radius: 4px;
  content: "";
  height: 26px;
  left: 28px;
  position: absolute;
  right: 28px;
}

.info-meter--modern::before {
  top: 46px;
}

.info-meter--modern::after {
  top: 100px;
}

.info-meter--old .info-fuse {
  background: #f4efe3;
  border: 1px solid rgba(6, 26, 73, 0.12);
  border-radius: 999px;
  height: 38px;
  position: absolute;
  top: 52px;
  width: 38px;
}

.info-meter--old .info-fuse:nth-child(1) {
  left: 32px;
}

.info-meter--old .info-fuse:nth-child(2) {
  left: 86px;
}

.info-meter--old .info-fuse:nth-child(3) {
  left: 60px;
  top: 112px;
}

.info-phase {
  height: 160px;
  left: 68px;
  top: 50px;
  width: 164px;
}

.info-phase::before {
  background: #061a49;
  border-radius: 6px;
  content: "3x25A";
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  left: 34px;
  padding: 18px 20px;
  position: absolute;
  top: 52px;
}

.info-label {
  background: var(--blue);
  border-radius: 999px;
  bottom: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  left: 50%;
  padding: 8px 12px;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (max-width: 1060px) {
  .choice-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .choice-hero__visual {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .choice-system-card,
  .choice-system-card--enphase,
  .choice-system-card--victron {
    grid-template-columns: 1fr;
    margin-left: 0;
    min-height: 0;
  }

  .choice-wizard {
    grid-template-columns: 1fr;
  }

  .choice-wizard__side {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .choice-hero {
    padding-top: 34px;
  }

  .choice-hero__copy h1 {
    font-size: 40px;
  }

  .choice-hero__visual,
  .choice-options,
  .choice-lead__form,
  .choice-progress,
  .choice-info-modal__panel {
    grid-template-columns: 1fr;
  }

  .choice-wizard__main,
  .choice-wizard__side,
  .choice-lead,
  .choice-result-card {
    padding: 20px;
  }

  .choice-option {
    min-height: 0;
  }

  .choice-info-modal__panel {
    max-height: calc(100vh - 40px);
    overflow: auto;
  }

  .choice-info-modal__visual,
  .info-figure {
    min-height: 220px;
  }
}

@media (max-width: 460px) {
  .choice-hero,
  .choice-wizard {
    padding-left: 16px;
    padding-right: 16px;
  }

  .choice-hero__copy h1 {
    font-size: 34px;
  }

  .choice-step h2,
  .choice-result-card h2 {
    font-size: 28px;
  }

  .choice-wizard__controls,
  .choice-result-card__actions,
  .choice-send div {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 1060px) {
  .plugin-hero__inner {
    grid-template-columns: 1fr;
  }

  .plugin-hero__product {
    display: none;
  }

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

  .anker-fit {
    grid-template-columns: 1fr;
  }

  .energy-story__stage,
  .home-hotspots__grid,
  .power-reality__grid,
  .system-focus,
  .system-depth__grid {
    grid-template-columns: 1fr;
  }

  .energy-story__visual,
  .home-hotspots__image {
    min-height: 390px;
  }

  .comparison-row {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-row--head {
    display: none;
  }

  .comparison-row > div {
    min-height: 0;
  }

  .comparison-row > div:first-child {
    background: #f2f7ff;
    grid-column: 1 / -1;
  }

  .comparison-row:not(.comparison-row--head) > div:not(:first-child)::before {
    color: var(--ink);
    content: attr(data-label);
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 6px;
    text-transform: uppercase;
  }

  .choice-path__steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .plugin-hero {
    min-height: 570px;
  }

  .plugin-hero__shade {
    background:
      linear-gradient(180deg, rgba(3, 16, 46, 0.86) 0%, rgba(3, 16, 46, 0.68) 48%, rgba(3, 16, 46, 0.24) 100%),
      linear-gradient(0deg, rgba(3, 16, 46, 0.72) 0%, rgba(3, 16, 46, 0) 42%);
  }

  .plugin-hero__inner {
    min-height: 570px;
    padding-bottom: 44px;
    padding-top: 72px;
  }

  .plugin-hero h1 {
    font-size: 39px;
  }

  .product-page .plugin-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .plugin-hero p {
    font-size: 16px;
  }

  .signal-chip {
    font-size: 12px;
    min-height: 34px;
    padding: 0 10px;
  }

  .enphase-showcase__frame {
    min-height: 760px;
  }

  .enphase-showcase__frame img {
    min-height: 390px;
    padding: 26px 18px 330px;
  }

  .enphase-showcase__panel {
    bottom: 18px;
    left: 18px;
    max-width: none;
    right: 18px;
    top: auto;
  }

  .showcase-node {
    font-size: 11px;
    min-height: 32px;
    padding: 0 10px;
  }

  .showcase-node--solar {
    left: 16%;
    top: 12%;
  }

  .showcase-node--battery {
    left: 49%;
    top: 28%;
  }

  .showcase-node--home {
    left: 16%;
    top: 43%;
  }

  .showcase-node--app {
    left: 57%;
    top: 46%;
  }

  .showcase-flow {
    display: none;
  }

  .plugin-specs,
  .power-reality__grid,
  .energy-story__stage,
  .home-hotspots__grid,
  .pros-cons__grid,
  .system-focus,
  .system-depth__grid,
  .comparison-row,
  .plugin-cta {
    grid-template-columns: 1fr;
  }

  .plugin-specs {
    margin-top: 18px;
  }

  .anker-fit,
  .power-reality,
  .energy-story,
  .home-hotspots,
  .pros-cons,
  .system-depth,
  .comparison-section,
  .choice-path,
  .plugin-cta {
    padding-top: 48px;
  }

  .energy-story__visual,
  .home-hotspots__image {
    min-height: 280px;
  }

  .energy-path {
    display: none;
  }

  .hotspot {
    font-size: 10px;
    height: 34px;
    padding: 0 10px;
  }

  .comparison-row > div {
    border-right: 0;
  }

  .plugin-cta {
    margin-top: 48px;
  }
}

@media (max-width: 560px) {
  .product-page .plugin-hero__inner,
  .product-page .plugin-specs,
  .product-page .power-reality,
  .product-page .energy-story,
  .product-page .home-hotspots,
  .product-page .pros-cons,
  .product-page .system-depth,
  .product-page .comparison-section,
  .product-page .choice-path,
  .product-page .plugin-cta {
    margin-left: 0;
    margin-right: auto;
    max-width: min(100%, 390px);
  }
}

@media (max-width: 460px) {
  .plugin-hero__inner,
  .plugin-specs,
  .power-reality,
  .energy-story,
  .home-hotspots,
  .anker-fit,
  .pros-cons,
  .system-depth,
  .comparison-section,
  .choice-path,
  .plugin-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .plugin-hero h1 {
    font-size: 32px;
  }

  .product-page .plugin-hero h1 {
    font-size: 30px;
  }

  .enphase-showcase,
  .pros-card,
  .cons-card,
  .power-reality__grid article,
  .system-depth__grid article,
  .choice-path__steps article {
    padding: 22px;
  }
}

/* MedTech luxury integration */
:root {
  --ink: #ffffff;
  --ink-soft: rgba(255, 255, 255, .78);
  --blue: #0757d8;
  --blue-dark: #063d9d;
  --sky: rgba(112, 214, 255, .12);
  --line: rgba(255, 255, 255, .13);
  --muted: rgba(255, 255, 255, .66);
  --green: #46d18c;
  --orange: #f59a23;
  --lime: #a7d05b;
  --purple: #a36bff;
  --panel: #0a0a0a;
  --panel-soft: #111;
  --page: #050505;
  --shadow: 0 28px 80px rgba(0, 0, 0, .42);
  --card-shadow: 0 22px 58px rgba(0, 0, 0, .35);
  --max: 1420px;
}

body {
  background: var(--page);
  color: #fff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

body::selection {
  background: rgba(245, 154, 35, .38);
  color: #fff;
}

.site-header {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 1px 0 rgba(7, 87, 216, .08), 0 14px 40px rgba(0, 0, 0, .12);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar {
  display: none;
}

.navbar {
  height: 66px;
  max-width: none;
  padding: 0 40px;
  width: 100%;
}

.brand {
  min-width: 0;
}

.brand img {
  max-height: 56px;
  object-fit: contain;
  width: 190px;
}

.navbar__links {
  gap: 18px;
}

.navbar__links a,
.navbar__item {
  height: 66px;
}

.navbar__links a {
  color: #2f6c98;
  font-size: 13px;
  font-weight: 850;
}

.navbar__links a.active,
.navbar__links a:hover {
  color: var(--blue);
}

.navbar__links a.active::after {
  background: var(--blue);
  bottom: 14px;
}

.navbar__links span {
  color: #2f6c98;
  font-size: 13px;
}

.navbar__dropdown {
  background: #fff;
  border: 1px solid rgba(7, 87, 216, .14);
  border-radius: 0;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
  top: calc(100% - 6px);
}

.navbar__dropdown a {
  border-radius: 0;
  color: #2f6c98;
  font-size: 13px;
  min-height: 40px;
  padding: 11px 13px;
}

.navbar__dropdown a:hover,
.navbar__dropdown a:focus-visible,
.navbar__dropdown a.active {
  background: color-mix(in srgb, var(--blue) 9%, #fff);
  color: var(--blue);
}

.whatsapp-button {
  animation: none;
  background: #25d366;
  border: 1px solid #25d366;
  border-radius: 0;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .22);
  color: #fff;
  font-size: 13px;
  height: 42px;
  min-width: 132px;
  padding: 0 18px;
}

.whatsapp-button::before {
  display: none;
}

.whatsapp-button:hover {
  animation: none;
  background: #1ebe5b;
  box-shadow: 0 16px 36px rgba(37, 211, 102, .28);
  transform: translateY(-2px);
}

main,
.plugin-page,
.product-page,
.choice-page,
.faq-page {
  background: var(--page);
  color: #fff;
}

.hero,
.plugin-hero,
.faq-hero,
.choice-hero {
  background: #050505;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .94), rgba(5, 5, 5, .72) 48%, rgba(5, 5, 5, .36)),
    radial-gradient(circle at 12% 82%, rgba(70, 209, 140, .08), transparent 30%);
}

.hero__visual::before,
.hero__visual::after,
.plugin-hero__product--animated::before,
.plugin-hero__product--animated::after,
.choice-hero__visual::before {
  opacity: .18;
}

.hero h1,
.plugin-hero h1,
.choice-hero__copy h1,
.faq-hero__copy h1,
.main-banner h2,
.anker-fit h2,
.section-heading h2,
.plugin-cta h2,
.choice-step h2,
.choice-result-card h2,
.faq-section__intro h2,
.faq-cta h2,
.battery-check__copy h2,
.solution-finder h2,
.reviews h2 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 span,
.section-kicker,
.plugin-hero .section-kicker,
.choice-hero__copy .section-kicker,
.main-banner__chip,
.faq-hero__panel span,
.choice-step__eyebrow {
  color: var(--green);
}

.hero p,
.plugin-hero p,
.choice-hero__copy p,
.faq-hero__copy p,
.battery-check__copy p,
.anker-fit p,
.section-heading p,
.plugin-cta p,
.reviews p,
.product-card__copy p,
.features p,
.bottom-benefits p,
.faq-section__intro p,
.faq-list p,
.choice-step > p,
.choice-result-card p,
.choice-lead p,
.choice-send p,
.energy-mode-copy p,
.hotspot-copy p,
.system-depth p {
  color: var(--ink-soft);
}

.button,
.main-banner__button {
  border-radius: 0;
  min-height: 48px;
}

.button--primary,
.plugin-cta .button--external,
.choice-option.is-selected .choice-option__icon {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 14px 34px rgba(245, 154, 35, .18);
  color: #fff;
}

.button--primary:hover,
.plugin-cta .button--external:hover {
  background: #ff8b22;
  border-color: #ff8b22;
  transform: translateY(-2px);
}

.button--secondary,
.main-banner__button--phone,
.main-banner__button--mail {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
}

.button--secondary:hover,
.main-banner__button--phone:hover,
.main-banner__button--mail:hover {
  background: rgba(7, 87, 216, .16);
  border-color: rgba(112, 214, 255, .44);
  color: #fff;
  transform: translateY(-2px);
}

.main-banner__button--whatsapp {
  background: #25d366;
  color: #fff;
}

.product-strip,
.solution-finder,
.features,
.battery-check,
.bottom-benefits,
.reviews,
.faq-highlight,
.faq-section,
.faq-cta,
.plugin-specs,
.power-reality,
.energy-story,
.home-hotspots,
.anker-fit,
.pros-cons,
.system-depth,
.comparison-section,
.choice-path,
.plugin-cta,
.choice-wizard {
  background:
    radial-gradient(circle at 12% 0, rgba(70, 209, 140, .045), transparent 32%),
    var(--page);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.product-card,
.solution-finder__aside,
.features article,
.battery-check__form,
.reviews,
.review-badges div,
.bottom-benefits div,
.faq-hero__panel,
.faq-highlight article,
.faq-list details,
.choice-system-card,
.choice-wizard__side,
.choice-wizard__main,
.choice-option,
.choice-result-card,
.choice-lead,
.choice-send,
.choice-info-modal__panel,
.plugin-specs div,
.power-reality__grid article,
.energy-story__visual,
.energy-story__panel,
.home-hotspots__image,
.home-hotspots__copy .hotspot-copy,
.anker-fit__visual,
.pros-card,
.cons-card,
.system-depth__grid article,
.comparison-table,
.choice-path__steps article,
.main-banner__company {
  background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.product-card:hover,
.choice-option:hover,
.solution-options a:hover,
.solution-options button:hover,
.faq-list details:hover {
  border-color: rgba(70, 209, 140, .34);
  transform: translateY(-3px);
}

.product-card__copy h2,
.features h3,
.faq-hero__panel h2,
.faq-highlight strong,
.faq-list summary,
.choice-system-card strong,
.choice-option strong,
.choice-lead h2,
.choice-send h3,
.plugin-specs strong,
.power-reality__grid h3,
.energy-mode-copy h3,
.hotspot-copy h3,
.system-depth h3,
.pros-card h3,
.cons-card h3,
.choice-path__steps h3,
.main-banner__company h3 {
  color: #fff;
}

.pros-card li,
.cons-card li,
.system-depth__grid article li {
  color: rgba(255, 255, 255, .88);
}

.system-depth__grid article p {
  color: rgba(255, 255, 255, .82);
}

.choice-path__steps p {
  color: rgba(255, 255, 255, .82);
}

.product-card__image,
.choice-system-card img,
.plugin-hero__product,
.anker-fit__visual,
.energy-story__visual,
.home-hotspots__image {
  background: rgba(0, 0, 0, .28);
}

.product-card__image img,
.choice-system-card img,
.plugin-hero__product img,
.energy-story__visual img,
.home-hotspots__image img,
.anker-fit__visual img,
.system-depth__grid img {
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, .34));
}

.badge,
.signal-chip,
.choice-result-card__badge {
  background: rgba(70, 209, 140, .12);
  border: 1px solid rgba(70, 209, 140, .34);
  color: var(--green);
}

.badge--orange,
.price--orange,
.pros-card li::before {
  color: var(--orange);
}

.badge--blue,
.price--blue {
  color: #70d6ff;
}

.price--green,
.features svg,
.bottom-benefits svg,
.reviews__score,
.stars span,
.plugin-specs strong,
.choice-path__steps span {
  color: var(--green);
}

.solution-options a,
.solution-options button,
.energy-mode-tabs button,
.showcase-tabs button,
.manufacturer-links a,
.hotspot {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
}

.solution-options a:hover,
.solution-options button:hover,
.energy-mode-tabs button.is-active,
.showcase-tabs button.is-active,
.hotspot.is-active,
.hotspot:hover {
  background: rgba(70, 209, 140, .13);
  border-color: rgba(70, 209, 140, .42);
  color: #fff;
}

.battery-check input,
.battery-check select,
.battery-check textarea,
.choice-lead__form input,
.choice-lead__form textarea,
.choice-lead__form input[type="file"],
.choice-info-modal input,
.choice-info-modal textarea {
  background: rgba(0, 0, 0, .38);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 0;
  color: #fff;
}

.battery-check input::placeholder,
.battery-check textarea::placeholder,
.choice-lead__form input::placeholder,
.choice-lead__form textarea::placeholder {
  color: rgba(255, 255, 255, .45);
}

.battery-check input:focus,
.battery-check select:focus,
.battery-check textarea:focus,
.choice-lead__form input:focus,
.choice-lead__form textarea:focus {
  border-color: rgba(112, 214, 255, .52);
  outline: 2px solid rgba(7, 87, 216, .28);
}

.plugin-hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .94), rgba(5, 5, 5, .72) 48%, rgba(5, 5, 5, .22)),
    linear-gradient(180deg, rgba(5, 5, 5, .04), rgba(5, 5, 5, .72));
}

.plugin-hero__bg {
  filter: saturate(.88) brightness(.82) contrast(1.08);
}

.plugin-hero__inner,
.plugin-specs,
.power-reality,
.energy-story,
.home-hotspots,
.anker-fit,
.pros-cons,
.system-depth,
.comparison-section,
.choice-path,
.plugin-cta,
.choice-hero,
.choice-wizard,
.faq-hero,
.faq-highlight,
.faq-section,
.faq-cta {
  max-width: var(--max);
}

.comparison-row {
  border-color: rgba(255, 255, 255, .12);
}

.comparison-table {
  background: #070707;
  border-color: rgba(255, 255, 255, .14);
}

.comparison-row > div {
  background: rgba(255, 255, 255, .035);
  border-color: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .84);
}

.comparison-row:first-child > div,
.comparison-row--head > div,
.comparison-row:not(.comparison-row--head) > div:first-child {
  background: rgba(255, 255, 255, .055);
  color: #fff;
}

.comparison-row--head > div {
  background: linear-gradient(135deg, rgba(7, 87, 216, .34), rgba(255, 255, 255, .06));
}

.comparison-row:not(.comparison-row--head) > div:first-child {
  background: rgba(255, 255, 255, .07);
}

.choice-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .96), rgba(5, 5, 5, .74) 48%, rgba(5, 5, 5, .28)),
    #050505;
}

.choice-progress,
.choice-progress__bar,
.choice-upload__list li,
.info-photo,
.info-phase-card,
.info-wire-check,
.info-space-plan {
  background: rgba(0, 0, 0, .28);
  border-color: rgba(255, 255, 255, .14);
  color: #fff;
}

.choice-progress span,
.choice-progress strong,
.choice-option small,
.choice-privacy-note,
.choice-upload small,
.info-photo figcaption,
.info-wire-check__note {
  color: var(--muted);
}

.choice-option.is-selected {
  background: rgba(70, 209, 140, .12);
  border-color: rgba(70, 209, 140, .5);
}

.choice-option__info {
  background: rgba(7, 87, 216, .16);
  color: #70d6ff;
}

.choice-progress__bar span {
  background: linear-gradient(90deg, var(--green), #70d6ff);
}

.choice-info-modal {
  background: rgba(0, 0, 0, .82);
}

.choice-info-modal__close {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
}

.main-banner {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .94), rgba(5, 5, 5, .72)),
    radial-gradient(circle at 84% 14%, rgba(7, 87, 216, .08), transparent 30%),
    #080808;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.main-banner__grid {
  opacity: .18;
}

.main-banner__inner {
  max-width: var(--max);
}

.main-banner p,
.main-banner__trust,
.main-banner__company dd,
.site-footer-bottom p,
.site-footer-bottom__notice {
  color: var(--ink-soft);
}

.site-footer-bottom {
  background: #040404;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.site-footer-bottom__inner {
  max-width: var(--max);
}

.site-footer-bottom strong,
.site-footer-bottom__links a:hover {
  color: #fff;
}

.site-footer-bottom__links a {
  color: rgba(255, 255, 255, .7);
}

.main-banner--footer-contact {
  background:
    radial-gradient(circle at 8% 0, rgba(245, 154, 35, .09), transparent 26%),
    radial-gradient(circle at 92% 82%, rgba(7, 87, 216, .08), transparent 28%),
    #070707;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 0;
  padding: 62px 20px 28px;
}

.main-banner__footer-inner {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(300px, 1.05fr) minmax(250px, .72fr) minmax(320px, .85fr) minmax(250px, .6fr);
  margin: 0 auto;
  max-width: var(--max);
  position: relative;
  z-index: 1;
}

.main-banner__brand-block {
  text-align: center;
}

.main-banner__brand-block img {
  display: block;
  margin: 0 auto 18px;
  max-width: 280px;
  width: min(100%, 280px);
}

.main-banner__brand-block p,
.main-banner__contact-block li,
.main-banner__details-block dd {
  color: rgba(255, 255, 255, .82);
}

.main-banner__brand-block p {
  font-size: 15px;
  line-height: 1.62;
  margin: 0 auto;
  max-width: 520px;
}

.main-banner__contact-block h2,
.main-banner__details-block h2 {
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .12em;
  line-height: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.main-banner__contact-block ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-banner__contact-block li {
  align-items: start;
  display: grid;
  font-size: 15px;
  font-weight: 750;
  gap: 12px;
  grid-template-columns: 22px 1fr;
  line-height: 1.45;
}

.main-banner__contact-block svg,
.main-banner__advice-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.main-banner__contact-block svg {
  color: #f36f12;
  height: 20px;
  margin-top: 1px;
  width: 20px;
}

.main-banner__contact-block li:last-child svg {
  color: #25d366;
}

.main-banner__contact-block a {
  color: #fff;
  font-weight: 900;
}

.main-banner__contact-block a:hover {
  color: #70d6ff;
}

.main-banner__details-block dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.main-banner__details-block div {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: grid;
  gap: 18px;
  grid-template-columns: 82px 1fr;
  min-height: 42px;
}

.main-banner__details-block dt {
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.main-banner__details-block dd {
  font-size: 13px;
  font-weight: 850;
  margin: 0;
  overflow-wrap: anywhere;
}

.main-banner__action-block {
  align-self: center;
}

.main-banner__advice-button {
  align-items: center;
  background: linear-gradient(135deg, #ff8b20, #f36f12);
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 950;
  gap: 12px;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  width: 100%;
}

.main-banner__advice-button:hover {
  background: linear-gradient(135deg, #f36f12, #d95d08);
  color: #fff;
  transform: translateY(-2px);
}

.main-banner__advice-button svg {
  height: 19px;
  width: 19px;
}

@media (max-width: 1280px) {
  .main-banner__footer-inner {
    grid-template-columns: minmax(280px, 1fr) minmax(240px, 1fr);
  }
}

@media (max-width: 760px) {
  .main-banner--footer-contact {
    padding: 46px 18px 24px;
  }

  .main-banner__footer-inner {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .main-banner__brand-block {
    text-align: left;
  }

  .main-banner__brand-block img {
    margin-left: 0;
  }
}

@media (max-width: 1050px) {
  .navbar {
    grid-template-columns: minmax(0, 1fr) 52px;
    padding: 0 18px;
  }

  .menu-button {
    border: 1px solid rgba(7, 87, 216, .16);
    display: grid;
    height: 52px;
    place-items: center;
    width: 52px;
  }

  .menu-button span {
    background: #0757d8;
  }

  .navbar__links {
    background: #fff;
    border-top: 1px solid rgba(7, 87, 216, .1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
    left: 0;
    right: 0;
    top: 66px;
  }

  .navbar__links a,
  .navbar__item {
    color: #2f6c98;
    height: auto;
  }

  .whatsapp-button {
    display: none;
  }
}

/* MedTech header parity */
html body {
  --mts-header-compact-height: 66px;
  --mts-header-compact-logo-width: 190px;
}

html body .site-header {
  height: 66px;
  max-height: 66px;
  min-height: 66px;
  overflow: visible;
  z-index: 1000;
}

html body .topbar {
  display: none;
  height: 0;
  max-height: 0;
  min-height: 0;
  overflow: hidden;
}

html body .site-header .navbar {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: auto 1fr auto;
  height: var(--mts-header-compact-height);
  max-height: var(--mts-header-compact-height);
  max-width: none;
  min-height: var(--mts-header-compact-height);
  padding: 0 40px;
  position: relative;
  width: 100%;
}

html body .site-header .brand,
html body .site-header .navbar__item,
html body .site-header .navbar__links > a,
html body .site-header .navbar__item > a {
  height: var(--mts-header-compact-height);
  max-height: var(--mts-header-compact-height);
  min-height: 0;
}

html body .site-header .brand {
  min-width: calc(var(--mts-header-compact-logo-width) + 24px);
}

html body .site-header .brand img {
  filter: none;
  max-height: 56px;
  width: var(--mts-header-compact-logo-width);
}

html body .site-header .navbar__links {
  align-items: center;
  align-self: stretch;
  display: flex;
  gap: 18px;
  justify-content: center;
}

html body .site-header .navbar__links > a,
html body .site-header .navbar__item > a {
  align-items: center;
  color: #2f6c98;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

html body .site-header .navbar__links > a.active::after {
  bottom: 12px;
}

.navbar__mobile-login {
  display: none !important;
}

.navbar__dropdown--services {
  gap: 6px;
  grid-template-columns: 1fr;
  left: 0;
  min-width: 0;
  overflow: visible;
  padding: 8px;
  top: calc(100% - 14px);
  width: 310px;
}

.navbar__service-group {
  display: block;
  position: relative;
}

.navbar__service-group::after {
  content: "";
  height: 100%;
  left: 100%;
  position: absolute;
  top: 0;
  width: 12px;
  z-index: 34;
}

.site-header .navbar__dropdown .navbar__service-main {
  align-items: center;
  border-left: 3px solid var(--nav-accent);
  border-radius: 7px;
  color: #071946;
  display: flex;
  font-size: 15px;
  font-weight: 950;
  gap: 10px;
  justify-content: flex-start;
  line-height: 1.2;
  min-height: 0;
  padding: 13px 38px 13px 12px;
  position: relative;
  white-space: normal;
}

.site-header .navbar__dropdown .navbar__service-main::after {
  color: var(--nav-accent);
  content: ">";
  font-size: 18px;
  font-weight: 800;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.site-header .navbar__dropdown .navbar__service-main small {
  color: var(--nav-accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
}

.navbar__service-sublist {
  align-content: start;
  background: #fff;
  border: 1px solid rgba(7, 87, 216, .12);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8, 31, 76, .14);
  display: grid;
  gap: 0;
  grid-auto-rows: max-content;
  left: calc(100% - 1px);
  min-width: 292px;
  opacity: 0;
  overflow: visible;
  padding: 7px;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  visibility: hidden;
  z-index: 35;
}

.navbar__service-group:hover .navbar__service-sublist,
.navbar__service-group:focus-within .navbar__service-sublist {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
}

.site-header .navbar__dropdown .navbar__service-sub {
  align-items: center;
  border-radius: 6px;
  color: #315071;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  height: auto;
  line-height: 1.15;
  min-height: 0;
  padding: 6px 9px;
  white-space: normal;
}

.navbar__service-nested {
  border-left: 1px solid color-mix(in srgb, var(--nav-accent) 42%, #dce6f4);
  display: grid;
  gap: 2px;
  margin: 0 0 0 12px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 0 0 10px;
  pointer-events: none;
  transition: max-height .2s ease, opacity .18s ease, margin .18s ease, padding .18s ease;
}

.site-header .navbar__dropdown .navbar__service-sub--parent {
  color: #071946;
  font-weight: 950;
  padding-right: 28px;
  position: relative;
}

.site-header .navbar__dropdown .navbar__service-sub--parent::after {
  color: var(--nav-accent);
  content: "+";
  display: block !important;
  font-size: 16px;
  font-weight: 950;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.site-header .navbar__dropdown .navbar__service-sub--parent:hover + .navbar__service-nested,
.site-header .navbar__dropdown .navbar__service-sub--parent:focus + .navbar__service-nested,
.site-header .navbar__dropdown .navbar__service-sub--parent:focus-visible + .navbar__service-nested,
.navbar__service-nested:hover,
.navbar__service-nested:focus-within {
  margin: -1px 0 6px 12px;
  max-height: 210px;
  opacity: 1;
  padding: 5px 0 4px 10px;
  pointer-events: auto;
}

.site-header .navbar__dropdown .navbar__service-sub--child {
  color: #46617e;
  font-size: 11.5px;
  padding: 5px 8px;
  position: relative;
}

.site-header .navbar__dropdown .navbar__service-sub--child::before {
  background: var(--nav-accent);
  border-radius: 999px;
  content: "";
  height: 5px;
  left: -13px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
}

.site-header .navbar__dropdown .navbar__service-main:hover,
.site-header .navbar__dropdown .navbar__service-main:focus-visible,
.navbar__service-group:hover .navbar__service-main,
.navbar__service-group:focus-within .navbar__service-main,
.site-header .navbar__dropdown .navbar__service-sub:hover,
.site-header .navbar__dropdown .navbar__service-sub:focus-visible,
.site-header .navbar__dropdown .navbar__service-sub.active {
  background: color-mix(in srgb, var(--nav-accent) 12%, #fff);
  color: #071946;
}

.site-header .navbar__dropdown .navbar__service-sub.active::after {
  display: none;
}

.navbar__actions {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  justify-content: flex-end;
}

.header-login,
.site-header .header-whatsapp,
.site-header .header-cta {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
}

.header-login {
  background: #fff;
  border: 1px solid rgba(7, 87, 216, .22);
  border-radius: 999px;
  color: #17315d;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  height: 42px;
  padding: 0 14px;
  transition: border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.header-login svg {
  color: var(--blue);
  height: 17px;
  width: 17px;
}

.header-login:hover,
.header-login:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(7, 87, 216, .12);
  color: var(--blue);
  transform: translateY(-1px);
}

.site-header .header-whatsapp {
  animation: headerWhatsAppPulse 2.4s ease-in-out infinite;
  background: linear-gradient(135deg, #18b85a 0%, #25d366 100%);
  border: 1px solid rgba(24, 184, 90, .5);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .2);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  gap: 8px;
  height: 42px;
  padding: 0 15px;
}

.site-header .header-whatsapp svg {
  height: 18px;
  width: 18px;
}

.site-header .header-whatsapp:hover {
  box-shadow: 0 10px 26px rgba(37, 211, 102, .34);
  color: #fff;
  transform: translateY(-2px);
}

@keyframes headerWhatsAppPulse {
  0%, 100% {
    box-shadow: 0 8px 20px rgba(37, 211, 102, .22), 0 0 0 0 rgba(37, 211, 102, .35);
  }

  50% {
    box-shadow: 0 8px 20px rgba(37, 211, 102, .22), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

.site-header .header-cta {
  background: linear-gradient(135deg, #ff8b20 0%, #f36f12 100%);
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(244, 122, 31, .22);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
  height: 44px;
  letter-spacing: .5px;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
}

.site-header .header-cta:hover {
  background: linear-gradient(135deg, #f36f12 0%, #d95d08 100%);
  box-shadow: 0 10px 24px rgba(244, 122, 31, .28);
  color: #fff;
  transform: translateY(-3px);
}

.site-header .header-cta svg {
  height: 19px;
  width: 19px;
}

@media (max-width: 1280px) {
  html body .site-header .navbar {
    grid-template-columns: auto auto 1fr;
  }

  .menu-button {
    display: grid;
    justify-self: end;
    margin-left: auto;
    order: 3;
  }

  html body .site-header .navbar__links {
    background: #fff;
    border-top: 1px solid rgba(7, 87, 216, .12);
    box-shadow: 0 18px 45px rgba(8, 31, 76, .14);
    display: none;
    flex-direction: column;
    gap: 0;
    grid-column: 1 / -1;
    left: 0;
    padding: 10px 20px 18px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  html body .site-header .navbar__links.is-open {
    display: flex;
  }

  html body .site-header .navbar__links a,
  html body .site-header .navbar__item > a {
    height: 42px;
  }

  html body .site-header .navbar__item {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
  }

  .navbar__dropdown,
  .navbar__dropdown--services {
    background: #f7fbff;
    border: 1px solid rgba(7, 87, 216, .1);
    box-shadow: none;
    left: auto;
    opacity: 1;
    padding: 8px;
    pointer-events: auto;
    position: static;
    transform: none;
    visibility: visible;
    width: 100%;
  }

  .navbar__service-group {
    border-bottom: 1px solid rgba(8, 31, 76, .08);
    padding: 0 0 8px;
  }

  .navbar__service-group:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .navbar__service-sublist {
    background: rgba(255, 255, 255, .72);
    border: 0;
    border-left: 3px solid var(--nav-accent);
    border-radius: 0 7px 7px 0;
    box-shadow: none;
    left: auto;
    margin: 2px 0 0 13px;
    min-width: 0;
    opacity: 1;
    padding: 4px 0 4px 8px;
    pointer-events: auto;
    position: static;
    transform: none;
    visibility: visible;
  }

  .site-header .navbar__dropdown .navbar__service-main::after {
    display: none;
  }

  .navbar__actions {
    justify-self: end;
    margin-right: 58px;
  }
}

@media (max-width: 760px) {
  html body .site-header,
  html body .site-header .navbar {
    height: 66px;
    max-height: 66px;
    min-height: 66px;
  }

  html body .site-header .navbar {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-left: 14px;
    padding-right: 10px;
  }

  html body .site-header .brand {
    min-width: 0;
  }

  html body .site-header .brand img {
    max-height: 56px;
    width: min(178px, 66vw);
  }

  .site-header .navbar__actions,
  .site-header .header-cta,
  .site-header .header-login,
  .site-header .header-whatsapp {
    display: none !important;
  }

  .site-header .menu-button {
    display: grid !important;
    flex: 0 0 52px;
    height: 52px;
    justify-self: end;
    margin-left: 8px;
    min-width: 52px;
    order: 2;
    width: 52px;
    z-index: 10030;
  }

  html body .site-header .navbar__links {
    display: none !important;
    max-height: calc(100svh - 66px);
    overflow-y: auto;
    padding: 14px 18px 22px;
    position: fixed;
    top: 66px;
    z-index: 10010;
  }

  html body .site-header .navbar__links.is-open {
    display: flex !important;
  }

  html body .site-header .navbar__links a {
    font-size: 15px;
    justify-content: center;
    min-height: 44px;
    width: 100%;
  }

  .navbar__mobile-login {
    border-top: 1px solid rgba(8, 31, 76, .1);
    color: #061a49 !important;
    display: flex !important;
    margin-top: 8px;
    padding-top: 10px;
  }

  .navbar__item--dropdown:not(.is-open) .navbar__dropdown,
  .navbar__service-group:not(.is-open) .navbar__service-sublist {
    display: none;
  }

  .navbar__item--dropdown > a,
  .site-header .navbar__dropdown .navbar__service-main {
    cursor: pointer;
  }
}

/* MedTech thuisbatterij redesign */
.mts-battery-page {
  --battery-blue: #0757d8;
  --battery-orange: #f59a23;
  --battery-green: #46d18c;
  --battery-sky: #70d6ff;
  --battery-purple: #a36bff;
  --battery-line: rgba(255, 255, 255, .12);
  --battery-muted: rgba(255, 255, 255, .72);
  --battery-soft: rgba(255, 255, 255, .055);
  background: #050505;
  color: #fff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  overflow: hidden;
}

.mts-battery-page *,
.mts-battery-page *::before,
.mts-battery-page *::after {
  box-sizing: border-box;
}

.mts-battery-page a {
  color: inherit;
  text-decoration: none;
}

.mts-battery-page svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mts-battery-wrap {
  margin: 0 auto;
  width: min(100% - 96px, 1420px);
}

.mts-battery-label {
  color: var(--battery-green);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .14em;
  line-height: 1.35;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.mts-battery-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .98), rgba(5, 5, 5, .88) 44%, rgba(5, 5, 5, .62)),
    linear-gradient(180deg, rgba(7, 87, 216, .12), rgba(5, 5, 5, 0) 32%),
    #050505;
  border-bottom: 1px solid var(--battery-line);
  min-height: 650px;
  padding: 42px 0 62px;
  position: relative;
}

.mts-battery-hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  opacity: .12;
  pointer-events: none;
  position: absolute;
}

.mts-battery-hero__grid {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(460px, .9fr) minmax(520px, 1.05fr);
  min-height: 546px;
  position: relative;
  z-index: 1;
}

.mts-battery-crumb {
  align-items: center;
  color: rgba(255, 255, 255, .6);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 850;
  gap: 10px;
  margin-bottom: 52px;
}

.mts-battery-crumb a {
  color: rgba(255, 255, 255, .78);
}

.mts-battery-crumb strong {
  color: var(--battery-blue);
}

.mts-battery-hero h1,
.mts-battery-page h2 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.mts-battery-hero h1 {
  font-size: 66px;
  max-width: 790px;
}

.mts-battery-lead {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.72;
  margin: 24px 0 0;
  max-width: 730px;
}

.mts-battery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mts-battery-btn {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 11px;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  white-space: nowrap;
}

.mts-battery-btn svg {
  height: 18px;
  width: 18px;
}

.mts-battery-btn--primary {
  background: linear-gradient(135deg, #ff8b22, #f26f12);
  border-color: #ff8b22;
  box-shadow: 0 16px 38px rgba(245, 154, 35, .22);
}

.mts-battery-btn--ghost {
  background: rgba(255, 255, 255, .045);
  border-color: rgba(112, 214, 255, .32);
}

.mts-battery-btn--whatsapp {
  background: rgba(37, 211, 102, .14);
  border-color: rgba(37, 211, 102, .45);
}

.mts-battery-btn:hover,
.mts-battery-btn:focus-visible {
  border-color: rgba(255, 255, 255, .48);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
  transform: translateY(-3px);
}

.mts-battery-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.mts-battery-hero__signals span {
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 850;
  padding: 10px 12px;
}

.mts-battery-hero__visual {
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .42);
  height: 520px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.mts-battery-hero__visual::before {
  background: linear-gradient(90deg, rgba(5, 5, 5, .05), rgba(5, 5, 5, .28));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.mts-battery-hero__visual img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.mts-battery-hero__visual figcaption {
  background: rgba(5, 5, 5, .82);
  border: 1px solid rgba(255, 255, 255, .13);
  bottom: 22px;
  color: #fff;
  display: grid;
  gap: 5px;
  left: 22px;
  padding: 16px 18px;
  position: absolute;
  width: min(330px, calc(100% - 44px));
  z-index: 2;
}

.mts-battery-hero__visual figcaption strong {
  color: #fff;
  font-size: 16px;
}

.mts-battery-hero__visual figcaption span {
  color: var(--battery-muted);
  font-size: 13px;
  line-height: 1.45;
}

.mts-battery-proof {
  background: #050505;
  border-bottom: 1px solid var(--battery-line);
}

.mts-battery-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.mts-battery-proof article {
  border-left: 1px solid var(--battery-line);
  min-height: 158px;
  padding: 28px 30px;
}

.mts-battery-proof article:last-child {
  border-right: 1px solid var(--battery-line);
}

.mts-battery-proof span {
  color: var(--battery-blue);
  display: block;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.mts-battery-proof strong {
  color: #fff;
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.mts-battery-proof p,
.mts-battery-richtext p,
.mts-battery-sectionhead p,
.mts-battery-choice__copy p,
.mts-battery-advice__panel p,
.mts-battery-note {
  color: var(--battery-muted);
  line-height: 1.72;
}

.mts-battery-section {
  background: #050505;
  border-bottom: 1px solid var(--battery-line);
  padding: 88px 0;
}

.mts-battery-section--intro {
  background: linear-gradient(180deg, #050505, #080808);
}

.mts-battery-two {
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(380px, .72fr) minmax(520px, 1fr);
}

.mts-battery-page h2 {
  font-size: 52px;
  max-width: 760px;
}

.mts-battery-richtext {
  border-left: 2px solid var(--battery-green);
  padding-left: 28px;
}

.mts-battery-richtext p {
  font-size: 17px;
  margin: 0 0 18px;
}

.mts-battery-sectionhead {
  align-items: end;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.mts-battery-system-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.mts-battery-system-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018));
  border: 1px solid var(--battery-line);
  display: grid;
  gap: 20px;
  min-height: 430px;
  padding: 24px;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}

.mts-battery-system-card::before {
  background: var(--system-accent);
  content: "";
  height: 3px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.mts-battery-system-card:hover,
.mts-battery-system-card:focus-visible {
  border-color: color-mix(in srgb, var(--system-accent) 56%, #fff);
  transform: translateY(-5px);
}

.mts-battery-system-card__tag {
  border: 1px solid color-mix(in srgb, var(--system-accent) 44%, transparent);
  color: var(--system-accent);
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  justify-self: start;
  padding: 7px 10px;
}

.mts-battery-system-card img {
  align-self: center;
  display: block;
  height: 190px;
  justify-self: center;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.mts-battery-system-card strong {
  color: #fff;
  display: block;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.mts-battery-system-card small {
  color: var(--battery-muted);
  display: block;
  font-size: 15px;
  line-height: 1.55;
}

.mts-battery-system-card em {
  color: color-mix(in srgb, var(--system-accent) 74%, #fff);
  font-style: normal;
  font-weight: 950;
}

.mts-battery-note {
  font-size: 14px;
  margin: 22px 0 0;
}

.mts-battery-choice {
  background:
    linear-gradient(90deg, rgba(7, 87, 216, .12), transparent 42%),
    #070707;
}

.mts-battery-choice__grid {
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(420px, .8fr) minmax(560px, 1fr);
}

.mts-battery-choice__copy p {
  font-size: 17px;
  margin: 20px 0 0;
  max-width: 650px;
}

.mts-battery-choice__steps {
  display: grid;
  gap: 14px;
}

.mts-battery-choice__steps article {
  align-items: start;
  background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .022));
  border: 1px solid var(--battery-line);
  display: grid;
  gap: 10px;
  grid-template-columns: 44px 1fr;
  padding: 22px;
}

.mts-battery-choice__steps span {
  align-items: center;
  background: rgba(70, 209, 140, .14);
  border: 1px solid rgba(70, 209, 140, .36);
  color: var(--battery-green);
  display: inline-flex;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.mts-battery-choice__steps strong {
  color: #fff;
  font-size: 20px;
}

.mts-battery-choice__steps p {
  color: var(--battery-muted);
  grid-column: 2;
  line-height: 1.6;
  margin: -8px 0 0;
}

.mts-battery-install__grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(420px, .8fr) minmax(520px, 1fr);
}

.mts-battery-install figure {
  background: #0b0b0b;
  border: 1px solid var(--battery-line);
  height: 440px;
  margin: 0;
  overflow: hidden;
}

.mts-battery-install figure img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.mts-battery-checklist {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.mts-battery-checklist li {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.55;
  padding: 0 0 13px 28px;
  position: relative;
}

.mts-battery-checklist li::before {
  color: var(--battery-green);
  content: "+";
  font-size: 20px;
  font-weight: 900;
  left: 0;
  position: absolute;
  top: -2px;
}

.mts-battery-advice {
  background: #080808;
}

.mts-battery-advice__grid {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(460px, .85fr) minmax(560px, 1fr);
}

.mts-battery-advice__panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018));
  border: 1px solid var(--battery-line);
  border-right: 0;
  min-height: 610px;
  padding: 42px;
  position: relative;
}

.mts-battery-advice__panel p {
  font-size: 17px;
  margin-top: 20px;
  max-width: 560px;
}

.mts-battery-advice__image {
  background:
    linear-gradient(180deg, transparent, rgba(5, 5, 5, .62)),
    url("assets/advies-medtech.png?v=20260529-advies-nieuw") center top / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, .12);
  bottom: 42px;
  height: 315px;
  left: 42px;
  position: absolute;
  right: 42px;
}

.mts-battery-form {
  background: #050505;
  border: 1px solid var(--battery-line);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  padding: 42px;
}

.mts-battery-form label {
  color: #70d6ff;
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
}

.mts-battery-form label span {
  display: block;
  letter-spacing: .04em;
}

.mts-battery-form__wide {
  grid-column: 1 / -1;
}

.mts-battery-form input {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  min-height: 48px;
  padding: 0 13px;
}

.mts-battery-form input::placeholder {
  color: rgba(255, 255, 255, .38);
}

.mts-battery-form input:focus {
  border-color: rgba(112, 214, 255, .55);
  outline: 2px solid rgba(7, 87, 216, .28);
}

.mts-battery-form button {
  cursor: pointer;
  margin-top: 8px;
}

.mts-battery-final {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .96), rgba(5, 5, 5, .82) 50%, rgba(5, 5, 5, .58)),
    url("assets/hero-home.png") right center / cover no-repeat;
  padding: 104px 0;
}

.mts-battery-final__inner {
  max-width: 1420px;
}

.mts-battery-final h2 {
  font-size: 48px;
  max-width: 760px;
}

@media (max-width: 1180px) {
  .mts-battery-wrap {
    width: min(100% - 48px, 1420px);
  }

  .mts-battery-hero__grid,
  .mts-battery-two,
  .mts-battery-choice__grid,
  .mts-battery-install__grid,
  .mts-battery-advice__grid {
    grid-template-columns: 1fr;
  }

  .mts-battery-hero h1 {
    font-size: 54px;
  }

  .mts-battery-system-grid,
  .mts-battery-proof__grid {
    grid-template-columns: 1fr;
  }

  .mts-battery-proof article,
  .mts-battery-proof article:last-child {
    border-left: 1px solid var(--battery-line);
    border-right: 1px solid var(--battery-line);
  }

  .mts-battery-advice__panel {
    border-right: 1px solid var(--battery-line);
  }
}

@media (max-width: 760px) {
  .mts-battery-wrap {
    width: min(100% - 32px, 1420px);
  }

  .mts-battery-hero {
    min-height: auto;
    padding: 34px 0 48px;
  }

  .mts-battery-hero h1,
  .mts-battery-page h2,
  .mts-battery-final h2 {
    font-size: 38px;
  }

  .mts-battery-lead,
  .mts-battery-richtext p,
  .mts-battery-choice__copy p,
  .mts-battery-advice__panel p {
    font-size: 16px;
  }

  .mts-battery-hero__visual,
  .mts-battery-install figure {
    height: 340px;
  }

  .mts-battery-section {
    padding: 58px 0;
  }

  .mts-battery-sectionhead {
    align-items: start;
    flex-direction: column;
  }

  .mts-battery-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .mts-battery-advice__panel {
    min-height: 540px;
    padding: 26px;
  }

  .mts-battery-advice__image {
    bottom: 26px;
    left: 26px;
    right: 26px;
  }
}

@media (max-width: 760px) {
  html body .site-header .navbar__links {
    align-items: stretch !important;
    flex-direction: column !important;
    gap: 0 !important;
    height: auto !important;
    left: 0 !important;
    max-height: calc(100svh - 66px) !important;
    overflow-y: auto !important;
    right: 0 !important;
    top: 66px !important;
  }

  html body .site-header .navbar__item {
    align-items: stretch !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    max-height: none !important;
    width: 100% !important;
  }

  html body .site-header .navbar__links > a,
  html body .site-header .navbar__item > a {
    height: auto !important;
    justify-content: center !important;
    max-height: none !important;
    min-height: 46px !important;
    width: 100% !important;
  }

  html body .site-header .navbar__item--dropdown:not(.is-open) .navbar__dropdown,
  html body .site-header .navbar__service-group:not(.is-open) .navbar__service-sublist {
    display: none !important;
  }

  html body .site-header .navbar__item--dropdown.is-open .navbar__dropdown {
    display: grid !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: static !important;
    transform: none !important;
    visibility: visible !important;
  }

  html body .site-header .navbar__service-group.is-open .navbar__service-sublist {
    display: grid !important;
    left: auto !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: static !important;
    transform: none !important;
    visibility: visible !important;
  }

  html body .site-header .navbar__service-nested {
    margin: 0 0 0 12px !important;
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    padding: 0 0 0 10px !important;
    pointer-events: none !important;
  }

  html body .site-header .navbar__service-sub--parent.is-open + .navbar__service-nested {
    margin: 2px 0 8px 12px !important;
    max-height: 260px !important;
    opacity: 1 !important;
    padding: 2px 0 5px 10px !important;
    pointer-events: auto !important;
  }

  html body .site-header .navbar__service-sub--parent.is-open::after {
    content: "-" !important;
  }
}

@media (max-width: 760px), (max-device-width: 1024px), (pointer: coarse) {
  html body .site-header,
  html body .site-header .navbar {
    height: 66px !important;
    max-height: 66px !important;
    min-height: 66px !important;
  }

  html body .site-header .navbar {
    background: #fff !important;
    gap: 10px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    overflow: visible !important;
    padding: 0 10px 0 14px !important;
    position: relative !important;
    z-index: 10022 !important;
  }

  html body .site-header .brand {
    height: 66px !important;
    min-width: 0 !important;
  }

  html body .site-header .brand img,
  html body .site-header .navbar-brand img {
    max-height: 56px !important;
    width: min(178px, 62vw) !important;
  }

  html body .site-header .navbar__actions,
  html body .site-header .header-cta,
  html body .site-header .header-login,
  html body .site-header .header-whatsapp {
    display: none !important;
  }

  html body .site-header .menu-button {
    display: grid !important;
    flex: 0 0 52px !important;
    height: 52px !important;
    justify-self: end !important;
    margin-left: 8px !important;
    min-width: 52px !important;
    opacity: 1 !important;
    order: 2 !important;
    visibility: visible !important;
    width: 52px !important;
    z-index: 10030 !important;
  }

  html body .site-header .navbar__links {
    align-items: stretch !important;
    background: #fff !important;
    box-shadow: 0 18px 42px rgba(8, 31, 76, .18) !important;
    display: none !important;
    flex-direction: column !important;
    gap: 0 !important;
    height: auto !important;
    left: 0 !important;
    max-height: calc(100svh - 66px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    padding: 14px 18px 22px !important;
    position: fixed !important;
    right: 0 !important;
    top: 66px !important;
    z-index: 10010 !important;
  }

  html body .site-header .navbar__links.is-open {
    display: flex !important;
  }

  html body .site-header .navbar__item {
    align-items: stretch !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    max-height: none !important;
    width: 100% !important;
  }

  html body .site-header .navbar__links > a,
  html body .site-header .navbar__item > a {
    display: flex !important;
    font-size: 15px !important;
    height: auto !important;
    justify-content: center !important;
    line-height: 1.1 !important;
    max-height: none !important;
    min-height: 46px !important;
    width: 100% !important;
  }

  html body .site-header .navbar__item--dropdown:not(.is-open) .navbar__dropdown,
  html body .site-header .navbar__service-group:not(.is-open) .navbar__service-sublist {
    display: none !important;
  }

  html body .site-header .navbar__item--dropdown.is-open .navbar__dropdown,
  html body .site-header .navbar__item--dropdown.is-open .navbar__dropdown--services {
    background: #f7fbff !important;
    display: grid !important;
    gap: 8px !important;
    grid-template-columns: 1fr !important;
    left: auto !important;
    max-height: none !important;
    min-width: 0 !important;
    opacity: 1 !important;
    overflow: visible !important;
    padding: 8px !important;
    pointer-events: auto !important;
    position: static !important;
    transform: none !important;
    visibility: visible !important;
    width: 100% !important;
  }

  html body .site-header .navbar__service-group {
    border-bottom: 1px solid rgba(8, 31, 76, .08) !important;
    display: block !important;
    padding: 0 !important;
    width: 100% !important;
  }

  html body .site-header .navbar__service-group:last-child {
    border-bottom: 0 !important;
  }

  html body .site-header .navbar__service-group::after {
    display: none !important;
  }

  html body .site-header .navbar__service-group.is-open .navbar__service-sublist {
    background: rgba(255, 255, 255, .8) !important;
    border: 0 !important;
    border-left: 3px solid var(--nav-accent) !important;
    border-radius: 0 7px 7px 0 !important;
    box-shadow: none !important;
    display: grid !important;
    gap: 2px !important;
    left: auto !important;
    margin: 4px 0 8px 13px !important;
    min-width: 0 !important;
    opacity: 1 !important;
    padding: 4px 0 4px 8px !important;
    pointer-events: auto !important;
    position: static !important;
    transform: none !important;
    visibility: visible !important;
  }

  html body .site-header .navbar__dropdown .navbar__service-main::after {
    display: none !important;
  }

  html body .site-header .navbar__dropdown .navbar__service-sub {
    min-height: 36px !important;
  }

  html body .site-header .navbar__service-sub--parent:not(.is-open) + .navbar__service-nested {
    max-height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  html body .site-header .navbar__service-sub--parent.is-open + .navbar__service-nested {
    margin: 2px 0 8px 12px !important;
    max-height: 260px !important;
    opacity: 1 !important;
    padding: 2px 0 5px 10px !important;
    pointer-events: auto !important;
  }
}
