: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;
  }
}
