:root {
  --wnz-green: #00d061;
  --wnz-blue: #1b70b7;
  --wnz-ink: #0d1714;
  --wnz-muted: #5d6865;
  --wnz-soft: #f5f8f6;
}

body.menu-open {
  overflow: hidden;
}

body.video-modal-open {
  overflow: hidden;
}

@keyframes wnzRevealRise {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wnzRevealScale {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes wnzHeroTextIn {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wnzPhoneWiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }

  8% {
    transform: rotate(-10deg);
  }

  16% {
    transform: rotate(10deg);
  }

  24% {
    transform: rotate(-6deg);
  }

  32% {
    transform: rotate(0deg);
  }
}

@keyframes wnzSoftPulse {
  0%,
  100% {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  }

  50% {
    box-shadow: 0 22px 56px rgba(0, 208, 97, 0.24);
  }
}

.motion-ready .wnz-animate {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--wnz-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .wnz-animate[data-animate="scale"] {
  transform: translate3d(0, 26px, 0) scale(0.96);
}

.motion-ready .wnz-animate[data-animate="left"] {
  transform: translate3d(-34px, 0, 0);
}

.motion-ready .wnz-animate[data-animate="right"] {
  transform: translate3d(34px, 0, 0);
}

.motion-ready .wnz-animate.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.top-navbar a {
  text-decoration: none;
}

.top-navbar ul {
  list-style: none;
  margin: 0;
}

.wnz-logo {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.wnz-logo img {
  display: block;
  max-width: 205px;
  width: 100%;
  height: auto;
}

.footer-top-left-container .wnz-logo-img {
  height: auto;
  max-width: 250px;
  width: 100%;
}

.wnz-footer-license {
  border: 1px solid rgba(0, 208, 97, 0.32);
  border-radius: 999px;
  color: #fff;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 16px;
}

.wnz-footer-license svg {
  color: var(--wnz-green);
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
}

.wnz-footer-license span {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.wnz-footer-license-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.wnz-logo-badges {
  background: #fff;
  border-bottom: 1px solid rgba(13, 23, 20, 0.08);
  border-top: 1px solid rgba(13, 23, 20, 0.08);
  padding: 34px 0;
}

.wnz-logo-badges-grid {
  align-items: center;
  display: grid;
  gap: 24px 34px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.wnz-logo-badge {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 92px;
}

.wnz-logo-badge img {
  display: block;
  height: auto;
  max-height: 72px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.wnz-logo-badge--round img,
.wnz-logo-badge--narrow img {
  max-height: 90px;
}

.wnz-certifications {
  background: var(--wnz-soft);
  padding: 96px 0;
}

.wnz-certifications-header {
  margin: 0 auto 46px;
  max-width: 850px;
  text-align: center;
}

.wnz-certifications-header h2 {
  padding-top: 10px;
}

.wnz-certification-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wnz-certification-panel {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(13, 23, 20, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 28px;
  grid-template-columns: 150px minmax(0, 1fr);
  padding: 34px;
}

.wnz-certification-badge {
  align-items: center;
  display: flex;
  justify-content: center;
}

.wnz-certification-badge img {
  display: block;
  height: auto;
  max-height: 132px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.wnz-certification-badge--wide img {
  max-height: 118px;
}

.wnz-certification-content h3 {
  color: var(--wnz-ink);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 12px;
}

.wnz-certification-content p {
  color: var(--wnz-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.wnz-certification-content ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.wnz-certification-content li {
  align-items: flex-start;
  color: var(--wnz-ink);
  display: flex;
  font-size: 16px;
  font-weight: 600;
  gap: 10px;
  line-height: 1.45;
}

.wnz-certification-content li svg {
  color: var(--wnz-green);
  flex: 0 0 20px;
  height: 20px;
  margin-top: 2px;
  width: 20px;
}

.wnz-warranty-assurance {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.wnz-warranty-card {
  align-items: flex-start;
  background: #07120f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(13, 23, 20, 0.1);
  color: #fff;
  display: grid;
  gap: 18px;
  grid-template-columns: 64px minmax(0, 1fr);
  min-height: 184px;
  overflow: hidden;
  padding: 30px;
  position: relative;
}

.wnz-warranty-card::after {
  background: linear-gradient(90deg, var(--wnz-green), var(--wnz-blue));
  content: "";
  height: 5px;
  inset: auto 0 0;
  position: absolute;
}

.wnz-warranty-icon {
  align-items: center;
  background: rgba(0, 208, 97, 0.14);
  border-radius: 50%;
  color: var(--wnz-green);
  display: flex;
  height: 64px;
  justify-content: center;
  width: 64px;
}

.wnz-warranty-icon svg {
  height: 30px;
  width: 30px;
}

.wnz-warranty-kicker {
  color: var(--wnz-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.wnz-warranty-card h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 10px;
}

.wnz-warranty-card p:not(.wnz-warranty-kicker) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.top-navbar {
  transition: all 0.3s ease;
}

.menu-toggle {
  appearance: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.menu-toggle svg,
.close-icon svg {
  display: block;
}

.wnz-menu-icon {
  height: 28px;
  width: 28px;
}

.wnz-close-icon {
  color: #fff;
  height: 26px;
  width: 26px;
}

.wnz-nav-icon {
  flex-shrink: 0;
  height: 18px;
  width: 18px;
}

@media (min-width: 1200px) {
  .top-navbar .menu {
    gap: 0;
  }

  .top-navbar .dropdown {
    padding: 0;
  }
}

.wnz-icon-button {
  border: 0;
  background: transparent;
  padding: 0;
}

.wnz-help-icon {
  color: #fff;
  height: 24px;
  width: 24px;
}

.contact-wnz-solar-icon svg {
  color: var(--wnz-green);
  height: 26px;
  width: 26px;
}

.contact-wnz-solar-content--call {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 12px 8px 8px;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.contact-wnz-solar-content--call .contact-wnz-solar-icon {
  background: var(--wnz-green);
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(0, 208, 97, 0.24);
  color: #fff;
}

.contact-wnz-solar-content--call .contact-wnz-solar-icon svg,
.contact-wnz-solar-content--call:hover .contact-wnz-solar-icon svg {
  color: #fff;
}

.contact-wnz-solar-content--call .wnz-footer-call-link {
  color: #fff;
  font-weight: 800;
}

.contact-wnz-solar-content--call:hover {
  background: rgba(0, 208, 97, 0.12);
  border-color: rgba(0, 208, 97, 0.38);
  transform: translateY(-2px);
}

.contact-wnz-solar-content--call:hover .wnz-footer-call-link {
  color: #fff;
}

.quick-links-name svg {
  color: rgba(168, 169, 173, 1);
  flex: 0 0 18px;
  height: 18px;
  transition: all 0.3s ease-in-out;
  width: 18px;
}

.quick-links-name:hover svg {
  color: var(--wnz-green);
  transform: translateX(5px);
}

.about-list li,
.solar-benefits-list li {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  padding-left: 0;
}

.about-list li::before,
.solar-benefits-list li::before {
  display: none;
}

.about-list li svg,
.solar-benefits-list li svg {
  color: #000;
  flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.wnz-benefits-top-six .solar-benefits-left-container {
  max-width: 690px;
}

.wnz-benefits-top-six .solar-benefits-list {
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wnz-benefits-top-six .solar-benefits-list li {
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(13, 23, 20, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(13, 23, 20, 0.08);
  display: grid;
  gap: 16px;
  grid-template-columns: 54px minmax(0, 1fr);
  min-height: 164px;
  padding: 24px;
}

.wnz-benefits-top-six .wnz-benefit-icon {
  align-items: center;
  background: rgba(0, 208, 97, 0.12);
  border-radius: 50%;
  color: var(--wnz-green);
  display: flex;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.wnz-benefits-top-six .wnz-benefit-icon svg {
  color: currentColor;
  flex: 0 0 28px;
  height: 28px;
  width: 28px;
}

.wnz-benefits-top-six .solar-benefits-list strong {
  color: var(--wnz-ink);
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.wnz-benefits-top-six .solar-benefits-list small {
  color: var(--wnz-muted);
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.wnz-home-hero .wnz-hero-track {
  height: 100vh;
  height: 100svh;
  min-height: 760px;
}

.wnz-home-hero .hero-slide {
  background-position: center;
  background-size: cover;
  height: 100%;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 2s ease;
  z-index: 1;
}

.wnz-home-hero .hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.wnz-home-hero .hero-slide h1,
.wnz-home-hero .hero-slide h2 {
  color: rgba(255, 255, 255, 1) !important;
  font-size: 80px !important;
  font-weight: 700;
  line-height: 100px !important;
  padding: 10px 0 20px 0;
}

.wnz-home-hero .wnz-hero-slide-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)), url('/assets/images/wnz/hero-background-image1.webp');
}

.wnz-home-hero .wnz-hero-slide-2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.70));
  background-position: center 42%;
}

.wnz-home-hero .wnz-hero-slide-3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72));
  background-position: center;
}

.wnz-home-hero .hero-container {
  line-height: 1.2;
}

.wnz-home-hero .hero-slide.is-active .hero-container-para1 {
  animation: wnzHeroTextIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.wnz-home-hero .hero-slide.is-active h1,
.wnz-home-hero .hero-slide.is-active h2 {
  animation: wnzHeroTextIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.26s both;
}

.wnz-home-hero .hero-slide.is-active .hero-container-para2 {
  animation: wnzHeroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

.wnz-home-hero .hero-slide.is-active .hero-container-button-video {
  animation: wnzRevealScale 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}

.wnz-service-solutions .service-container-main {
  margin-right: -310px;
}

.wnz-service-solutions {
  overflow: hidden;
}

.wnz-service-slider {
  cursor: grab;
  display: flex;
  gap: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}

.wnz-service-slider.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.wnz-service-slider::-webkit-scrollbar {
  display: none;
}

.wnz-service-slider .service-solution-link {
  color: inherit;
  flex: 0 0 410px;
  max-width: 410px;
  min-width: 0;
  scroll-snap-align: start;
}

.wnz-service-solutions .service-solutions-card {
  border-radius: 20px;
  height: 100%;
}

.wnz-service-solutions .service-solutions-top-card-content {
  min-height: 232px;
}

.wnz-service-solutions .service-solutions-bottom-card-content img {
  aspect-ratio: 41 / 28;
  display: block;
  height: 280px;
  object-fit: cover;
  width: 100%;
}

.wnz-service-solutions .learn-more-btn2 {
  border-radius: 0 0 20px 20px !important;
}

.learn-more-btn svg {
  height: 22px;
  transition: transform 0.6s ease-out;
  width: 22px;
}

.service-solutions-card:hover .learn-more-btn svg {
  transform: rotate(42deg);
}

.how-it-works-wrapper {
  overflow: hidden;
}

.how-it-works-left-img,
.how-it-works-right-img {
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}

.wnz-how-it-works-container {
  padding-bottom: 100px;
  padding-top: 250px;
  position: relative;
  z-index: 1;
}

.wnz-counter-wrapper {
  z-index: 2;
}

.wnz-counter-wrapper .counter-container {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.9), rgba(5, 7, 6, 0.7)),
    url('/assets/images/wnz/counter-background.webp') center / cover no-repeat;
  border-radius: 8px;
}

.wnz-counter-wrapper .counter-box h2 {
  font-size: clamp(46px, 5vw, 64px) !important;
  line-height: 1 !important;
}

.wnz-counter-wrapper .counter-box p {
  max-width: 190px;
}

.wnz-how-it-works-container .how-it-works-grid-container {
  align-items: start;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wnz-how-it-works-container .how-it-works-grid-box {
  margin-inline: auto;
}

.wnz-step-icon {
  align-items: center;
  aspect-ratio: 1;
  background: #fff;
  border: 6px solid rgba(0, 208, 97, 0.12);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(13, 23, 20, 0.14);
  color: var(--wnz-green);
  display: inline-flex;
  height: 140px;
  justify-content: center;
  margin-top: 30px;
  transition: color 0.3s ease, transform 0.3s ease;
  width: 140px;
}

.wnz-step-icon svg {
  display: block;
  fill: none;
  height: 62px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 62px;
}

.how-it-works-grid-box:hover .wnz-step-icon {
  color: var(--wnz-blue);
  transform: translateY(-4px);
}

.wnz-projects-section {
  overflow: hidden;
}

.wnz-projects-carousel {
  position: relative;
}

.wnz-projects-slider {
  box-sizing: border-box;
  cursor: grab;
  display: flex;
  gap: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding: 0 30px 12px;
  scroll-behavior: smooth;
  scroll-padding-inline: 30px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.wnz-projects-slider.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.wnz-projects-slider::-webkit-scrollbar {
  display: none;
}

.wnz-projects-slider .projects-card {
  aspect-ratio: 348 / 500;
  background: #07120f;
  display: block;
  flex: 0 0 calc((100% - 120px) / 5);
  line-height: 0;
  min-width: 0;
  outline: 0;
  scroll-snap-align: start;
}

.wnz-projects-slider .project-main-img {
  display: block;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.55s ease;
  user-select: none;
  will-change: transform;
  -webkit-user-drag: none;
}

.wnz-projects-slider .projects-card:hover .project-main-img,
.wnz-projects-slider .projects-card:focus-visible .project-main-img {
  transform: scale(1.08);
}

.wnz-projects-slider .projects-overlay {
  background: linear-gradient(to bottom, rgba(0, 208, 97, 0), rgba(0, 208, 97, 0.6));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.wnz-projects-slider .projects-card:hover .projects-overlay,
.wnz-projects-slider .projects-card:focus-visible .projects-overlay {
  opacity: 1;
}

.wnz-projects-slider .project-card-img {
  bottom: 20px;
  left: 20px;
  line-height: 0;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.35s ease, transform 0.35s ease;
  width: 182px;
  z-index: 2;
}

.wnz-projects-slider .project-card-img > img {
  display: block;
  filter: drop-shadow(0 18px 26px rgba(13, 23, 20, 0.16));
  height: auto;
  max-width: 100%;
  pointer-events: none;
  user-select: none;
  width: 100%;
  -webkit-user-drag: none;
}

.wnz-projects-slider .projects-card:hover .project-card-img,
.wnz-projects-slider .projects-card:focus-visible .project-card-img {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.wnz-projects-slider .projects-card:focus-visible {
  outline: 3px solid var(--wnz-green);
  outline-offset: 4px;
}

.wnz-projects-slider.is-dragging .projects-card:hover .project-main-img {
  transform: scale(1.001);
}

.wnz-projects-slider.is-dragging .projects-card:hover .projects-overlay,
.wnz-projects-slider.is-dragging .projects-card:hover .project-card-img {
  opacity: 0;
}

.wnz-projects-slider .project-card-content {
  inset: 0;
  height: 100%;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

@media (max-width: 1400px) {
  .wnz-projects-slider .projects-card {
    flex-basis: calc((100% - 90px) / 4);
  }
}

@media (max-width: 1199px) {
  .wnz-service-solutions .service-container-main {
    margin-right: 0;
  }

  .wnz-service-slider .service-solution-link {
    flex-basis: calc((100% - 30px) / 2);
    max-width: none;
  }

  .wnz-projects-slider {
    padding: 0 20px 12px;
    scroll-padding-inline: 20px;
  }

  .wnz-projects-slider .projects-card {
    flex-basis: calc((100% - 90px) / 4);
  }

  .wnz-service-solutions .service-solutions-top-card-content {
    min-height: 0;
  }

  .wnz-service-solutions .service-solutions-bottom-card-content img {
    height: 260px;
  }

  .wnz-how-it-works-container {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .wnz-counter-wrapper .counter-container {
    gap: 30px 20px;
    padding-bottom: 64px !important;
    padding-top: 64px !important;
  }

  .wnz-how-it-works-container .how-it-works-grid-container {
    gap: 36px 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .wnz-benefits-top-six .solar-benefits-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wnz-projects-slider {
    gap: 24px;
  }

  .wnz-projects-slider .projects-card {
    flex-basis: calc((100% - 48px) / 3);
  }
}

@media (max-width: 767px) {
  .wnz-service-slider .service-solution-link {
    flex-basis: min(410px, 100%);
  }

  .wnz-projects-slider {
    gap: 20px;
  }

  .wnz-projects-slider .projects-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (max-width: 575px) {
  .wnz-benefits-top-six .solar-benefits-list {
    grid-template-columns: 1fr;
  }

  .wnz-benefits-top-six .solar-benefits-list li {
    min-height: 0;
    padding: 22px;
  }

  .wnz-service-slider {
    gap: 20px;
  }

  .wnz-service-slider .service-solution-link {
    flex-basis: 100%;
  }

  .wnz-projects-slider {
    gap: 20px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }

  .wnz-projects-slider .projects-card {
    flex-basis: 100%;
  }

  .wnz-projects-slider .project-card-img {
    opacity: 1;
    transform: translateY(0);
  }

  .wnz-how-it-works-container {
    padding-bottom: 60px;
    padding-top: 60px;
  }

  .wnz-counter-wrapper .counter-container {
    gap: 28px 14px;
    padding: 42px 16px !important;
  }

  .wnz-counter-wrapper .counter-box h2 {
    font-size: 42px !important;
  }

  .wnz-counter-wrapper .counter-box p {
    font-size: 15px;
    line-height: 1.35;
  }

  .wnz-service-solutions .service-solutions-bottom-card-content img {
    height: 220px;
  }

  .wnz-how-it-works-container .how-it-works-grid-container {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .wnz-step-icon {
    height: 124px;
    margin-top: 18px;
    width: 124px;
  }

  .wnz-step-icon svg {
    height: 54px;
    width: 54px;
  }
}

.wnz-testimonials {
  margin-top: 0;
}

.wnz-testimonials .testimonial-container {
  align-items: stretch !important;
}

.wnz-testimonial-media {
  min-height: 550px;
}

.wnz-testimonial-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.wnz-testimonials .testimonial-right-container {
  display: flex;
  flex-direction: column;
  min-height: 550px;
}

.wnz-testimonial-slides {
  flex: 1;
  min-height: var(--wnz-testimonial-slide-height, 390px);
  position: relative;
}

.wnz-testimonial-slide {
  gap: 98px;
  inset: 0;
  min-height: var(--wnz-testimonial-slide-height, 390px);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.45s ease;
  visibility: hidden;
  width: 100%;
}

.wnz-testimonial-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  z-index: 1;
}

.wnz-testimonial-slide.is-measuring {
  inset: auto;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
  position: static;
  visibility: hidden;
  z-index: -1;
}

.wnz-testimonial-quote {
  background: #fff;
  border: 1px solid rgba(0, 208, 97, 0.16);
  border-radius: 50%;
  color: var(--wnz-green);
  height: 64px;
  width: 64px;
}

.wnz-testimonial-quote svg {
  display: block;
  height: 34px;
  width: 34px;
}

.wnz-testimonial-avatar {
  background: #000;
  color: var(--wnz-green);
  flex: 0 0 80px;
  height: 80px;
  width: 80px;
}

.wnz-testimonial-avatar svg {
  display: block;
  height: 34px;
  width: 34px;
}

.wnz-testimonials .testimonial-arrow {
  overflow: hidden;
  pointer-events: auto;
  z-index: 3;
}

.wnz-testimonial-arrow {
  appearance: none;
  background: transparent;
  border: 0;
  color: #fff;
  height: 48px;
  padding: 0;
  transition: color 0.3s ease;
  width: 48px;
}

.wnz-testimonial-arrow:hover,
.wnz-testimonial-arrow:focus-visible {
  color: var(--wnz-green);
}

.wnz-testimonial-arrow svg {
  display: block;
  height: 22px;
  width: 22px;
}

.wnz-testimonial-divider {
  background: rgba(255, 255, 255, 0.35);
  height: 28px;
  width: 1px;
}

.wnz-solutions-faq {
  background: #fff;
}

.wnz-get-started-solutions {
  padding: 0 0 100px;
}

.wnz-solutions-container {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
}

.wnz-solutions-media {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 0;
  overflow: visible;
  position: relative;
}

.wnz-solutions-media img {
  display: block;
  height: auto;
  max-width: 100%;
  min-height: 0;
  object-fit: contain;
  width: 100%;
}

.wnz-solution-accordion {
  display: grid;
  gap: 14px;
}

.wnz-solution-accordion details {
  background: var(--wnz-soft);
  border: 1px solid rgba(13, 23, 20, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.wnz-solution-accordion details[open] {
  background: rgba(0, 208, 97, 0.08);
  border-color: rgba(0, 208, 97, 0.24);
  box-shadow: 0 14px 28px rgba(13, 23, 20, 0.06);
}

.wnz-solution-accordion summary {
  align-items: center;
  color: #000;
  cursor: pointer;
  display: grid;
  font-size: 18px;
  font-weight: 700;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 34px;
  line-height: 1.35;
  list-style: none;
  padding: 18px 20px;
}

.wnz-solution-accordion summary::-webkit-details-marker {
  display: none;
}

.wnz-solution-accordion summary svg {
  color: var(--wnz-green);
  height: 24px;
  justify-self: end;
  transition: transform 0.25s ease;
  width: 24px;
}

.wnz-solution-accordion details[open] summary svg {
  transform: rotate(180deg);
}

.wnz-solution-accordion details p {
  color: var(--wnz-muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  padding: 0 20px 20px;
}

.wnz-solutions-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

@media (max-width: 991px) {
  .wnz-certifications {
    padding: 80px 0;
  }

  .wnz-certification-grid {
    grid-template-columns: 1fr;
  }

  .wnz-warranty-assurance {
    grid-template-columns: 1fr;
  }

  .wnz-logo-badges-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wnz-testimonials .testimonial-container {
    gap: 30px;
  }

  .wnz-testimonial-media,
  .wnz-testimonials .testimonial-right-container {
    min-height: 420px;
  }

  .wnz-testimonial-slide {
    min-height: var(--wnz-testimonial-slide-height, 280px);
  }

  .wnz-solutions-container {
    grid-template-columns: 1fr;
  }

  .wnz-solutions-media {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 630px;
  }

  .wnz-get-started-solutions {
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .wnz-certifications {
    padding: 64px 0;
  }

  .wnz-certifications-header {
    margin-bottom: 32px;
  }

  .wnz-certifications-header h2 {
    font-size: 34px !important;
    line-height: 1.18 !important;
  }

  .wnz-certification-panel {
    gap: 22px;
    grid-template-columns: 1fr;
    padding: 28px;
    text-align: center;
  }

  .wnz-certification-badge img {
    max-height: 116px;
  }

  .wnz-certification-badge--wide img {
    max-height: 96px;
  }

  .wnz-certification-content h3 {
    font-size: 24px;
  }

  .wnz-certification-content li {
    text-align: left;
  }

  .wnz-warranty-card {
    gap: 18px;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px;
  }

  .wnz-warranty-card h3 {
    font-size: 26px;
  }

  .wnz-logo-badges {
    padding: 28px 0;
  }

  .wnz-logo-badges-grid {
    gap: 18px 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wnz-logo-badge {
    min-height: 78px;
  }

  .wnz-logo-badge img {
    max-height: 62px;
  }

  .wnz-logo-badge--round img,
  .wnz-logo-badge--narrow img {
    max-height: 74px;
  }

  .wnz-error-container h2 {
    font-size: 34px !important;
    line-height: 1.18 !important;
  }

  .wnz-error-container img {
    margin: 18px auto 26px;
  }

  .wnz-error-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .wnz-error-actions .get-a-quote-btn,
  .wnz-error-phone {
    justify-content: center;
    width: 100%;
  }

  .wnz-error-links {
    grid-template-columns: 1fr;
  }

  .wnz-get-started-solutions {
    padding-bottom: 64px;
  }

  .wnz-solutions-content h2 {
    font-size: 34px !important;
    line-height: 1.18 !important;
  }

  .wnz-solution-accordion summary {
    font-size: 16px;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) 28px;
    padding: 16px;
  }

  .wnz-solution-accordion details p {
    padding: 0 16px 16px;
  }

  .wnz-solutions-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wnz-solutions-actions .get-a-quote-btn {
    width: 100%;
  }

  .wnz-testimonial-media,
  .wnz-testimonials .testimonial-right-container {
    min-height: 0;
  }

  .wnz-testimonial-media {
    aspect-ratio: 1;
  }

  .wnz-testimonial-slide {
    gap: 30px;
    min-height: var(--wnz-testimonial-slide-height, 0);
  }

  .wnz-testimonial-quote {
    height: 52px;
    width: 52px;
  }

  .wnz-testimonial-quote svg {
    height: 28px;
    width: 28px;
  }

  .wnz-testimonial-avatar {
    flex-basis: 64px;
    height: 64px;
    width: 64px;
  }

  .wnz-testimonial-avatar svg {
    height: 28px;
    width: 28px;
  }
}

.wnz-clean-energy {
  padding: 100px 0;
}

.wnz-clean-energy-panel {
  align-items: center;
  background: #f5f8f6 url('/assets/images/clean-energy/clean-energy-bg.webp') center / cover no-repeat;
  border-radius: 8px;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  overflow: hidden;
  padding: 56px;
}

.wnz-clean-energy-copy {
  max-width: 660px;
}

.wnz-clean-energy-copy .common-title {
  padding-bottom: 10px;
}

.wnz-clean-energy-copy h2 {
  color: #000;
  font-size: 52px !important;
  line-height: 1.12 !important;
  padding-bottom: 22px;
}

.wnz-clean-energy-copy > p:not(.common-title) {
  color: var(--wnz-muted);
  font-size: 18px;
  line-height: 1.7;
}

.wnz-clean-energy-points {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.wnz-clean-energy-point {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: 56px minmax(0, 1fr);
}

.wnz-feature-icon {
  align-items: center;
  color: var(--wnz-green);
  display: flex;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.wnz-feature-icon svg {
  height: 42px;
  width: 42px;
}

.wnz-clean-energy-point h3 {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  padding-bottom: 8px;
}

.wnz-clean-energy-point p {
  color: var(--wnz-muted);
  font-size: 17px;
  line-height: 1.55;
}

.wnz-clean-energy-media img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.wnz-clean-energy-media--logo {
  align-items: center;
  background: transparent;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 360px;
  padding: 48px;
}

.wnz-clean-energy-media--logo img {
  aspect-ratio: auto;
  border-radius: 0;
  height: auto;
  max-height: 280px;
  max-width: 330px;
  object-fit: contain;
}

.wnz-hero-phone {
  align-items: center;
  animation: wnzSoftPulse 4.8s ease-in-out infinite;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  color: var(--wnz-ink);
  display: inline-flex;
  font-size: 18px;
  gap: 10px;
  font-weight: 800;
  justify-content: center;
  line-height: 24px;
  min-height: 64px;
  padding: 18px 28px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.wnz-hero-phone svg {
  animation: wnzPhoneWiggle 3.6s ease-in-out infinite;
  color: var(--wnz-green);
  flex: 0 0 auto;
  height: 20px;
  stroke-width: 2.4;
  width: 20px;
}

.wnz-hero-phone:hover {
  background: rgba(0, 208, 97, 0.95);
  border-color: rgba(0, 208, 97, 1);
  color: #fff;
  transform: translateY(-2px);
}

.wnz-hero-phone:hover svg {
  color: currentColor;
}

.wnz-hero-phone:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.82);
  outline-offset: 4px;
}

.wnz-call-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 17px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  line-height: 1.2;
  min-height: 58px;
  padding: 15px 24px;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.wnz-call-button svg {
  flex: 0 0 auto;
  height: 20px;
  stroke-width: 2.4;
  width: 20px;
}

.wnz-call-button--dark {
  background: var(--wnz-ink);
  border: 1px solid rgba(13, 23, 20, 0.9);
  box-shadow: 0 16px 30px rgba(13, 23, 20, 0.16);
  color: #fff;
}

.wnz-call-button--dark svg {
  color: var(--wnz-green);
}

.wnz-call-button--dark:hover {
  background: var(--wnz-green);
  border-color: var(--wnz-green);
  box-shadow: 0 18px 34px rgba(0, 208, 97, 0.26);
  color: #fff;
  transform: translateY(-2px);
}

.wnz-call-button--dark:hover svg {
  color: currentColor;
}

.wnz-call-button--light {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  color: var(--wnz-ink);
}

.wnz-call-button--light svg {
  color: var(--wnz-green);
}

.wnz-call-button--light:hover {
  background: var(--wnz-green);
  border-color: var(--wnz-green);
  color: #fff;
  transform: translateY(-2px);
}

.wnz-call-button--light:hover svg {
  color: currentColor;
}

.wnz-call-button:focus-visible {
  outline: 3px solid rgba(0, 208, 97, 0.34);
  outline-offset: 4px;
}

.get-a-quote-btn {
  text-align: center;
}

.get-a-quote-btn span {
  overflow-wrap: anywhere;
}

.wnz-hero-trust,
.wnz-trust-note,
.wnz-cta-trust,
.wnz-form-trust {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
}

.wnz-hero-trust {
  color: rgba(255, 255, 255, 0.84);
  margin-top: 16px;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.wnz-trust-note,
.wnz-form-trust {
  color: var(--wnz-muted);
}

.wnz-cta-trust {
  color: rgba(255, 255, 255, 0.84);
  margin-top: 12px;
  text-align: center;
}

.wnz-estimate-strip {
  background:
    linear-gradient(120deg, rgba(0, 208, 97, 0.13), rgba(27, 112, 183, 0.08)),
    var(--wnz-ink);
  color: #fff;
  overflow: hidden;
  padding: 54px 0;
  position: relative;
}

.wnz-estimate-strip::before {
  background: linear-gradient(90deg, rgba(0, 208, 97, 0.75), rgba(27, 112, 183, 0.65));
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.wnz-estimate-strip-content {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.wnz-estimate-strip-copy {
  max-width: 760px;
}

.wnz-estimate-strip .common-title {
  color: var(--wnz-green);
}

.wnz-estimate-strip h2 {
  color: #fff !important;
  font-size: 42px !important;
  line-height: 1.14 !important;
  margin-top: 10px;
}

.wnz-estimate-strip-copy > p:not(.common-title):not(.wnz-trust-note) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 30px;
  margin-top: 14px;
}

.wnz-estimate-strip .wnz-trust-note {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 14px;
}

.wnz-estimate-strip-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: min(100%, 330px);
}

.wnz-estimate-strip-actions .get-a-quote-btn,
.wnz-estimate-strip-actions .wnz-call-button {
  width: 100%;
}

.wnz-estimate-strip + .wnz-page-section.pt-0 {
  padding-top: 80px !important;
}

.wnz-project-cta-stack {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.need-help-now-btn-container {
  border-color: rgba(13, 23, 20, 0.12);
  box-shadow: 0 16px 34px rgba(13, 23, 20, 0.12);
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  width: min(100%, 272px);
}

.need-help-now-btn-container::after {
  background: linear-gradient(135deg, rgba(0, 208, 97, 0.1), rgba(27, 112, 183, 0.08));
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.25s ease;
}

.need-help-now-btn-container:hover {
  border-color: rgba(0, 208, 97, 0.46);
  box-shadow: 0 18px 38px rgba(13, 23, 20, 0.16);
  transform: translateY(-2px);
}

.need-help-now-btn-container:hover::after {
  opacity: 1;
}

.need-help-now-btn-container .black-fill-circle,
.need-help-now-btn {
  position: relative;
  z-index: 1;
}

.need-help-now-btn-container .black-fill-circle {
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.need-help-now-btn-container:hover .black-fill-circle {
  background: var(--wnz-green);
  transform: scale(1.04);
}

.need-help-now-btn a {
  font-weight: 800;
  white-space: nowrap;
}

.need-help-now-btn-container:focus-within {
  border-color: rgba(0, 208, 97, 0.56);
  box-shadow: 0 0 0 4px rgba(0, 208, 97, 0.16), 0 18px 38px rgba(13, 23, 20, 0.14);
}

.wnz-text-link:hover {
  color: var(--wnz-green);
}

.wnz-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.84), rgba(5, 7, 6, 0.58)),
    linear-gradient(180deg, rgba(5, 7, 6, 0.22), rgba(5, 7, 6, 0.72)),
    url("../assets/images/wnz/section-background-image3.webp") center 58% / cover no-repeat;
  background-color: #050706;
  overflow: hidden;
}

.wnz-page-hero .common-page-container {
  min-height: 420px;
}

.wnz-page-section {
  padding: 100px 0;
}

.wnz-error-section {
  background: #fff;
}

.wnz-error-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
}

.wnz-error-container h2 {
  max-width: 760px;
}

.wnz-error-container .common-para {
  color: var(--wnz-muted);
  max-width: 660px;
}

.wnz-error-container img {
  display: block;
  margin: 24px auto 32px;
  max-width: min(708px, 100%);
}

.wnz-error-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  justify-content: center;
}

.wnz-error-phone {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(13, 23, 20, 0.1);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(13, 23, 20, 0.08);
  color: var(--wnz-ink);
  display: inline-flex;
  font-size: 18px;
  font-weight: 800;
  gap: 10px;
  min-height: 60px;
  padding: 15px 24px;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.wnz-error-phone svg {
  color: var(--wnz-green);
  height: 22px;
  width: 22px;
}

.wnz-error-phone:hover {
  background: var(--wnz-ink);
  border-color: var(--wnz-ink);
  box-shadow: 0 18px 34px rgba(13, 23, 20, 0.16);
  color: #fff;
  transform: translateY(-2px);
}

.wnz-error-phone:focus-visible {
  outline: 3px solid rgba(0, 208, 97, 0.34);
  outline-offset: 4px;
}

.wnz-error-links {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  max-width: 820px;
  width: 100%;
}

.wnz-error-links a {
  align-items: center;
  background: var(--wnz-soft);
  border: 1px solid rgba(13, 23, 20, 0.08);
  border-radius: 8px;
  color: var(--wnz-ink);
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  min-height: 62px;
  padding: 14px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.wnz-error-links svg {
  color: var(--wnz-green);
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
}

.wnz-error-links a:hover {
  background: rgba(0, 208, 97, 0.08);
  border-color: rgba(0, 208, 97, 0.28);
  color: var(--wnz-ink);
  transform: translateY(-2px);
}

.wnz-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 60px;
  align-items: start;
}

.wnz-rich-text {
  padding-top: 26px;
}

.wnz-rich-text p,
.wnz-rich-text li {
  color: var(--wnz-muted);
  font-size: 18px;
  line-height: 1.7;
}

.wnz-rich-text p + p {
  margin-top: 18px;
}

.wnz-rich-text a,
.wnz-text-link {
  color: var(--wnz-blue);
  font-weight: 700;
}

.wnz-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.wnz-side-panel {
  background: var(--wnz-soft);
  border: 1px solid rgba(13, 23, 20, 0.08);
  border-radius: 8px;
  padding: 32px;
}

.wnz-side-panel h3 {
  color: #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
}

.wnz-side-panel ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.wnz-side-panel li {
  color: var(--wnz-muted);
  list-style: disc;
  margin-bottom: 10px;
}

.wnz-contact-panel {
  margin-top: 34px;
}

.wnz-contact-container {
  align-items: start;
  display: grid;
  gap: 24px 42px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
}

.wnz-contact-left {
  padding-right: 18px;
}

.wnz-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 38px;
}

.wnz-contact-method {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(13, 23, 20, 0.08);
  border-radius: 8px;
  color: var(--wnz-ink);
  display: grid;
  gap: 16px;
  grid-template-columns: 60px minmax(0, 1fr);
  min-height: 90px;
  padding: 15px 18px;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.wnz-contact-method:hover {
  border-color: rgba(0, 208, 97, 0.36);
  box-shadow: 0 18px 34px rgba(13, 23, 20, 0.08);
  color: var(--wnz-ink);
  transform: translateY(-3px);
}

.wnz-contact-method-icon {
  align-items: center;
  background: rgba(0, 208, 97, 0.1);
  border-radius: 50%;
  color: var(--wnz-green);
  display: inline-flex;
  height: 60px;
  justify-content: center;
  width: 60px;
}

.wnz-contact-method-icon svg {
  height: 27px;
  width: 27px;
}

.wnz-contact-method-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.wnz-contact-method-label {
  color: var(--wnz-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.wnz-contact-method strong {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.wnz-contact-next-steps {
  background: var(--wnz-ink);
  border-radius: 8px;
  grid-column: 1;
  grid-row: 2;
  padding: 30px;
}

.wnz-contact-next-steps h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
}

.wnz-contact-next-steps ul {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wnz-contact-next-steps li {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: 44px minmax(0, 1fr);
}

.wnz-contact-next-steps li > span {
  align-items: center;
  background: rgba(0, 208, 97, 0.14);
  border-radius: 50%;
  color: var(--wnz-green);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.wnz-contact-next-steps svg {
  height: 22px;
  width: 22px;
}

.wnz-contact-next-steps p {
  margin: 0;
}

.wnz-contact-next-steps strong {
  color: #fff;
  display: block;
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.wnz-contact-next-steps small {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 15px;
  line-height: 1.55;
}

.wnz-form-heading {
  margin-bottom: 28px;
}

.wnz-form-heading .common-title {
  color: var(--wnz-green);
  margin-bottom: 10px !important;
}

.wnz-form-heading h3 {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.18;
}

.wnz-contact-form-card {
  box-shadow: 0 22px 50px rgba(13, 23, 20, 0.08);
  grid-column: 2;
  grid-row: 1 / span 2;
}

.wnz-contact-form-card input,
.wnz-contact-form-card textarea {
  box-shadow: inset 0 0 0 1px transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wnz-contact-form-card input:focus,
.wnz-contact-form-card textarea:focus {
  border-color: rgba(0, 208, 97, 0.6);
  box-shadow: 0 8px 22px rgba(13, 23, 20, 0.08);
  outline: none;
}

.wnz-contact-form-card input::placeholder,
.wnz-contact-form-card textarea::placeholder {
  color: rgba(93, 104, 101, 0.68);
}

.wnz-form.wnz-contact-form-card .get-a-quote-btn {
  align-self: flex-start;
  margin-top: 6px;
  padding: 18px 30px;
  width: auto;
}

.wnz-form {
  background: var(--wnz-soft);
  border: 1px solid rgba(13, 23, 20, 0.08);
  border-radius: 8px;
  padding: 32px;
}

.wnz-form label {
  color: #000;
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.wnz-form input,
.wnz-form select,
.wnz-form textarea {
  background: #fff;
  border: 1px solid rgba(13, 23, 20, 0.18);
  border-radius: 6px;
  color: var(--wnz-ink);
  display: block;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 18px;
  padding: 14px 16px;
  width: 100%;
}

.wnz-form textarea {
  resize: vertical;
}

.wnz-form .get-a-quote-btn {
  width: 100%;
}

.wnz-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.wnz-card {
  background: #fff;
  border: 1px solid rgba(13, 23, 20, 0.08);
  border-radius: 8px;
  padding: 28px;
}

.wnz-card h3 {
  color: #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.wnz-card p {
  color: var(--wnz-muted);
  font-size: 17px;
  line-height: 1.6;
}

.wnz-top-explainer-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
}

.wnz-top-explainer-copy h2 {
  padding: 10px 0 22px;
}

.wnz-top-explainer-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.wnz-top-explainer-actions .get-a-quote-btn {
  width: fit-content;
}

.wnz-top-explainer-actions .wnz-text-link {
  color: var(--wnz-ink);
}

.wnz-top-explainer .wnz-top-video {
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(13, 23, 20, 0.16);
  min-height: 390px;
  overflow: hidden;
}

.wnz-top-explainer .wnz-top-video img {
  opacity: 0.88;
}

.wnz-section-heading {
  margin: 0 auto 54px;
  max-width: 860px;
}

.wnz-section-heading h2 {
  padding: 10px 0 18px;
}

.wnz-section-heading > p:not(.common-title) {
  color: var(--wnz-muted);
  font-size: 18px;
  line-height: 1.7;
}

.wnz-section-heading--left {
  margin-left: 0;
  max-width: 820px;
}

.wnz-section-heading--left h2,
.wnz-section-heading--left > p {
  text-align: left !important;
}

.wnz-step-grid {
  counter-reset: solar-step;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wnz-step-card {
  background: #fff;
  border: 1px solid rgba(13, 23, 20, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(13, 23, 20, 0.08);
  display: grid;
  min-height: 300px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.wnz-step-card::before {
  background: linear-gradient(90deg, var(--wnz-green), var(--wnz-blue));
  content: "";
  height: 5px;
  inset: 0 0 auto;
  position: absolute;
}

.wnz-step-card > span {
  color: rgba(13, 23, 20, 0.1);
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
}

.wnz-step-card > svg {
  align-items: center;
  background: var(--wnz-soft);
  border-radius: 50%;
  color: var(--wnz-green);
  display: flex;
  height: 58px;
  margin-bottom: 46px;
  padding: 15px;
  width: 58px;
}

.wnz-step-card h3 {
  color: #000;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.wnz-step-card p {
  color: var(--wnz-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.wnz-power-story {
  position: relative;
}

.wnz-power-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wnz-power-card {
  background: #fff;
  border: 1px solid rgba(13, 23, 20, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(13, 23, 20, 0.08);
  display: grid;
  overflow: hidden;
}

.wnz-power-card img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  width: 100%;
}

.wnz-power-card > div {
  padding: 30px;
  position: relative;
}

.wnz-power-icon {
  align-items: center;
  background: var(--wnz-soft);
  border-radius: 50%;
  color: var(--wnz-blue);
  display: flex;
  height: 58px;
  justify-content: center;
  margin-bottom: 20px;
  width: 58px;
}

.wnz-power-card--solar .wnz-power-icon {
  background: rgba(0, 208, 97, 0.12);
  color: var(--wnz-green);
}

.wnz-power-icon svg {
  height: 28px;
  width: 28px;
}

.wnz-power-card h3 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.wnz-power-card p {
  color: var(--wnz-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.wnz-net-metering {
  align-items: stretch;
  background: #07120f;
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  margin-top: 28px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.wnz-net-metering::after {
  background: linear-gradient(90deg, rgba(0, 208, 97, 0), rgba(0, 208, 97, 0.34));
  content: "";
  height: 5px;
  inset: auto 0 0;
  position: absolute;
}

.wnz-net-metering .wnz-net-metering-video {
  border-radius: 0;
  height: 100%;
  min-height: 320px;
}

.wnz-net-metering .wnz-net-metering-video img {
  opacity: 0.86;
}

.wnz-net-metering-content {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 74px minmax(0, 1fr);
  padding: 34px;
  position: relative;
  z-index: 1;
}

.wnz-meter-icon {
  align-items: center;
  background: var(--wnz-green);
  border-radius: 50%;
  color: #000;
  display: flex;
  height: 74px;
  justify-content: center;
  width: 74px;
}

.wnz-meter-icon svg {
  height: 34px;
  width: 34px;
}

.wnz-net-metering .common-title {
  color: var(--wnz-green);
  padding-bottom: 10px;
}

.wnz-net-metering h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.wnz-net-metering p:not(.common-title) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.wnz-net-metering-watch {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 8px;
  margin-top: 22px;
  padding: 0;
}

.wnz-net-metering-watch svg {
  color: var(--wnz-green);
  height: 20px;
  width: 20px;
}

.wnz-net-metering-watch:hover,
.wnz-net-metering-watch:focus-visible {
  color: var(--wnz-green);
}

.wnz-why-guidance {
  background:
    linear-gradient(135deg, rgba(6, 15, 13, 0.96), rgba(7, 24, 19, 0.88)),
    url('/assets/images/wnz/section-background-image3.webp') center / cover no-repeat;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(13, 23, 20, 0.18);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  isolation: isolate;
  overflow: hidden;
  padding: 46px;
  position: relative;
}

.wnz-why-guidance::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.wnz-why-guidance > * {
  position: relative;
  z-index: 1;
}

.wnz-why-guidance-copy {
  align-self: center;
  background: linear-gradient(180deg, #fff, #f6faf8);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-top: 6px solid var(--wnz-green);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  padding: 40px;
}

.wnz-why-guidance-copy .common-title,
.wnz-why-video-copy .common-title {
  color: var(--wnz-green);
  padding-bottom: 14px;
}

.wnz-why-guidance-copy h2 {
  color: #000;
  line-height: 1.16;
}

.wnz-guidance-lede {
  color: var(--wnz-muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 24px 0 0;
}

.wnz-guidance-list {
  display: grid;
  margin-top: 30px;
}

.wnz-guidance-item {
  align-items: start;
  border-top: 1px solid rgba(13, 23, 20, 0.1);
  color: var(--wnz-ink);
  display: grid;
  gap: 16px;
  grid-template-columns: 50px minmax(0, 1fr);
  padding: 22px 0;
}

.wnz-guidance-item:last-child {
  padding-bottom: 0;
}

.wnz-guidance-icon {
  align-items: center;
  background: var(--wnz-green);
  border-radius: 50%;
  color: #000;
  display: flex;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.wnz-guidance-icon svg {
  height: 24px;
  width: 24px;
}

.wnz-guidance-item strong {
  color: #000;
  display: block;
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.wnz-guidance-item span:not(.wnz-guidance-icon) {
  color: var(--wnz-muted);
  display: block;
  font-size: 16px;
  line-height: 1.55;
}

.wnz-why-video-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  position: relative;
}

.wnz-why-video-ribbon {
  display: flex;
  gap: 10px;
  left: 20px;
  position: absolute;
  top: 20px;
  z-index: 2;
}

.wnz-why-video-ribbon span {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  color: #000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 11px 14px;
  text-transform: uppercase;
}

.wnz-why-video-ribbon span:last-child {
  background: var(--wnz-green);
}

.wnz-why-video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
  width: 100%;
}

.wnz-why-video-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.wnz-why-video-copy {
  padding: 28px;
}

.wnz-why-video-copy h3 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.wnz-why-video-copy p:not(.common-title) {
  color: var(--wnz-muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.wnz-project-stats {
  border-top: 1px solid rgba(13, 23, 20, 0.1);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
  padding-top: 22px;
}

.wnz-project-stats span {
  display: grid;
  gap: 4px;
}

.wnz-project-stats strong {
  color: #000;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.wnz-project-stats small {
  color: var(--wnz-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

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

.wnz-image-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.wnz-video-gallery {
  background:
    linear-gradient(180deg, rgba(245, 248, 246, 0.92), rgba(255, 255, 255, 1)),
    url('/assets/images/clean-energy/clean-energy-bg.webp') center / cover no-repeat;
}

.wnz-video-gallery-header {
  margin: 0 auto 48px;
  max-width: 820px;
  text-align: center;
}

.wnz-video-gallery-header h2 {
  padding: 10px 0 18px;
}

.wnz-video-gallery-header p:not(.common-title) {
  color: var(--wnz-muted);
  font-size: 18px;
  line-height: 1.7;
}

.wnz-video-stage {
  background: #07120f;
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  overflow: hidden;
}

.wnz-video-feature,
.wnz-video-card {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.wnz-video-feature {
  background: #000;
  display: block;
  line-height: 0;
  min-height: 420px;
  position: relative;
}

.wnz-video-feature img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0.82;
  position: absolute;
  transition: opacity 0.35s ease, transform 0.45s ease;
  width: 100%;
}

.wnz-video-feature::after {
  background: linear-gradient(180deg, rgba(7, 18, 15, 0), rgba(7, 18, 15, 0.38));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.wnz-video-feature:hover img,
.wnz-video-feature:focus-visible img {
  opacity: 0.96;
  transform: scale(1.035);
}

.wnz-video-play {
  align-items: center;
  background: var(--wnz-green);
  border-radius: 50%;
  color: #000;
  display: flex;
  height: 82px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background-color 0.3s ease;
  width: 82px;
  z-index: 2;
}

.wnz-video-feature:hover .wnz-video-play,
.wnz-video-feature:focus-visible .wnz-video-play {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}

.wnz-video-play svg {
  height: 34px;
  margin-left: 4px;
  width: 34px;
}

.wnz-video-feature-copy {
  align-self: center;
  padding: 46px;
}

.wnz-video-feature-copy .common-title {
  color: var(--wnz-green);
  padding-bottom: 12px;
}

.wnz-video-feature-copy h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.16;
  margin: 0 0 18px;
}

.wnz-video-feature-copy p:not(.common-title) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.wnz-video-feature-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.wnz-video-feature-actions .get-a-quote-btn {
  width: fit-content;
}

.wnz-video-feature-actions .wnz-text-link {
  color: #fff;
}

.wnz-video-playlist {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 26px;
}

.wnz-video-card {
  background: #fff;
  border: 1px solid rgba(13, 23, 20, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(13, 23, 20, 0.08);
  color: var(--wnz-ink);
  display: block;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.wnz-video-card:hover,
.wnz-video-card:focus-visible,
.wnz-video-card.is-active {
  border-color: rgba(0, 208, 97, 0.7);
  box-shadow: 0 22px 50px rgba(13, 23, 20, 0.14);
  transform: translateY(-4px);
}

.wnz-video-card-media {
  background: #07120f;
  display: block;
  line-height: 0;
  overflow: hidden;
  position: relative;
}

.wnz-video-card-media img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  opacity: 0.86;
  transition: opacity 0.25s ease, transform 0.35s ease;
  width: 100%;
}

.wnz-video-card:hover .wnz-video-card-media img,
.wnz-video-card:focus-visible .wnz-video-card-media img,
.wnz-video-card.is-active .wnz-video-card-media img {
  opacity: 1;
  transform: scale(1.045);
}

.wnz-video-card-media span {
  align-items: center;
  background: rgba(0, 208, 97, 0.96);
  border-radius: 50%;
  color: #000;
  display: flex;
  height: 44px;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 44px;
}

.wnz-video-card-media svg {
  height: 20px;
  margin-left: 3px;
  width: 20px;
}

.wnz-video-card-copy {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.wnz-video-card-copy small {
  color: var(--wnz-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.wnz-video-card-copy strong {
  color: var(--wnz-ink);
  font-size: 17px;
  line-height: 1.25;
}

.wnz-video-modal {
  align-items: center;
  background: rgba(5, 7, 6, 0.88);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 10002;
}

.wnz-video-modal[hidden] {
  display: none;
}

.wnz-video-modal-dialog {
  max-width: 1080px;
  position: relative;
  width: min(100%, 1080px);
}

.wnz-video-modal-close {
  align-items: center;
  appearance: none;
  background: #fff;
  border: 0;
  border-radius: 50%;
  color: #000;
  display: flex;
  height: 48px;
  justify-content: center;
  position: absolute;
  right: -16px;
  top: -16px;
  transition: background-color 0.25s ease;
  width: 48px;
  z-index: 2;
}

.wnz-video-modal-close:hover,
.wnz-video-modal-close:focus-visible {
  background: var(--wnz-green);
}

.wnz-video-modal-close svg {
  height: 24px;
  width: 24px;
}

.wnz-video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  width: 100%;
}

.wnz-video-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.wnz-project-case-grid,
.wnz-project-proof-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 45px;
}

.wnz-project-case-card,
.wnz-project-proof-card {
  background: #fff;
  border: 1px solid rgba(13, 23, 20, 0.1);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(13, 23, 20, 0.08);
  overflow: hidden;
}

.wnz-project-case-media {
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
}

.wnz-project-case-media img,
.wnz-project-detail-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  width: 100%;
}

.wnz-project-case-card:hover .wnz-project-case-media img {
  transform: scale(1.04);
}

.wnz-project-case-copy {
  padding: 24px;
}

.wnz-project-case-copy h3 {
  font-size: 26px;
  line-height: 34px;
  margin: 8px 0 12px;
}

.wnz-project-case-copy h3 a {
  color: var(--wnz-ink);
  text-decoration: none;
}

.wnz-project-case-copy p:not(.common-title) {
  color: var(--wnz-muted);
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 18px;
}

.wnz-project-detail-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
}

.wnz-project-detail-media {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
}

.wnz-project-detail-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.wnz-project-detail-copy > p:not(.common-title) {
  color: var(--wnz-muted);
  font-size: 18px;
  line-height: 30px;
}

.wnz-project-facts {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.wnz-project-facts div {
  background: var(--wnz-soft);
  border: 1px solid rgba(13, 23, 20, 0.08);
  border-radius: 8px;
  padding: 16px;
}

.wnz-project-facts dt {
  color: var(--wnz-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.wnz-project-facts dd {
  color: var(--wnz-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  margin: 6px 0 0;
}

.wnz-project-story {
  margin-top: 50px;
}

.wnz-project-proof-card {
  padding: 26px;
}

.wnz-project-proof-card span {
  align-items: center;
  background: rgba(0, 208, 97, 0.12);
  border-radius: 50%;
  color: var(--wnz-green);
  display: inline-flex;
  height: 54px;
  justify-content: center;
  margin-bottom: 18px;
  width: 54px;
}

.wnz-project-proof-card svg {
  height: 26px;
  width: 26px;
}

.wnz-project-proof-card h3 {
  font-size: 22px;
  line-height: 30px;
  margin: 0 0 10px;
}

.wnz-project-proof-card p {
  color: var(--wnz-muted);
  font-size: 16px;
  line-height: 27px;
  margin: 0;
}

.wnz-faq-section {
  background: linear-gradient(180deg, #fff 0%, var(--wnz-soft) 100%);
}

.wnz-faq-list {
  display: grid;
  gap: 14px;
  margin: 45px auto 0;
  max-width: 980px;
}

.wnz-faq-item {
  background: #fff;
  border: 1px solid rgba(13, 23, 20, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(13, 23, 20, 0.06);
  overflow: hidden;
}

.wnz-faq-item summary {
  align-items: center;
  color: var(--wnz-ink);
  cursor: pointer;
  display: flex;
  font-size: 20px;
  font-weight: 800;
  gap: 18px;
  justify-content: space-between;
  line-height: 30px;
  list-style: none;
  padding: 22px 26px;
}

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

.wnz-faq-item summary::after {
  align-items: center;
  background: rgba(0, 208, 97, 0.12);
  border-radius: 50%;
  color: var(--wnz-green);
  content: "+";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 24px;
  height: 34px;
  justify-content: center;
  line-height: 1;
  width: 34px;
}

.wnz-faq-item[open] summary::after {
  content: "-";
}

.wnz-faq-item p {
  border-top: 1px solid rgba(13, 23, 20, 0.08);
  color: var(--wnz-muted);
  font-size: 17px;
  line-height: 29px;
  margin: 0;
  padding: 22px 26px 26px;
}

.wnz-location-insight {
  background: var(--wnz-ink);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  padding: 42px;
}

.wnz-location-insight .common-title {
  color: var(--wnz-green);
}

.wnz-location-insight h2 {
  color: #fff !important;
  margin-top: 10px;
}

.wnz-location-insight-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wnz-location-insight article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 24px;
}

.wnz-location-insight span {
  align-items: center;
  background: rgba(0, 208, 97, 0.16);
  border-radius: 50%;
  color: var(--wnz-green);
  display: inline-flex;
  height: 50px;
  justify-content: center;
  margin-bottom: 16px;
  width: 50px;
}

.wnz-location-insight svg {
  height: 24px;
  width: 24px;
}

.wnz-location-insight h3 {
  color: #fff;
  font-size: 22px;
  line-height: 30px;
  margin: 0 0 10px;
}

.wnz-location-insight p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 28px;
  margin: 0;
}

.wnz-cta {
  overflow: hidden;
}

.wnz-cta .free-installation-container {
  isolation: isolate;
  position: relative;
}

.wnz-cta .free-installation-left-container {
  position: relative;
  z-index: 2;
}

.wnz-cta .free-installation-content {
  position: relative;
  z-index: 3;
}

.wnz-cta .free-installation-content > .container,
.wnz-cta-conversion,
.wnz-cta-form {
  position: relative;
  z-index: 4;
}

.wnz-cta .free-installation-right-container {
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.wnz-cta .free-installation-content h2,
.wnz-cta .free-installation-content .free-installation-para1 {
  color: #fff !important;
}

.wnz-cta .free-installation-para1 {
  max-width: 650px;
}

.wnz-cta-conversion {
  gap: 18px;
  max-width: 820px;
}

.wnz-cta-form {
  width: 100%;
}

.wnz-cta-form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  width: 100%;
}

.wnz-cta-form input {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: var(--wnz-ink);
  font-size: 15px;
  font-weight: 500;
  height: 58px;
  min-width: 0;
  outline: 0;
  padding: 0 16px;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.wnz-cta-form input::placeholder {
  color: rgba(13, 23, 20, 0.58);
}

.wnz-cta-form input:focus {
  background: #fff;
  border-color: var(--wnz-green);
  box-shadow: 0 0 0 3px rgba(0, 208, 97, 0.2);
}

.wnz-cta-form .get-a-quote-btn {
  height: 58px;
  padding-left: 30px;
  padding-right: 30px;
  white-space: nowrap;
  width: auto;
}

.wnz-cta .need-help-now-btn-container {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.wnz-cta .black-fill-circle {
  color: #fff;
}

.wnz-cta .need-help-now-btn a,
.wnz-cta .need-help-now-btn p {
  color: var(--wnz-ink);
}

.wnz-cta .free-installation-right-container img {
  display: block;
  width: 100%;
}

.footer-top-left-container .get-a-quote-btn {
  width: fit-content;
}

.wnz-mobile-sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  html {
    overflow-y: auto;
    scrollbar-width: none;
  }

  ::-webkit-scrollbar {
    display: none;
    height: 0;
    width: 0;
  }
}

@media (max-width: 1199px) {
  .top-navbar {
    box-sizing: border-box;
    left: 0;
    max-width: 100%;
    right: auto;
    width: 100%;
    width: 100dvw;
  }

  .top-navbar.sticky {
    right: auto;
  }

  .top-navbar:not(.sticky) {
    background: transparent;
    padding-bottom: 15px;
  }

  .wnz-project-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wnz-home-hero .wnz-hero-track {
    height: 100vh;
    height: 100svh;
    min-height: 680px;
  }

  .wnz-cta-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wnz-cta-form .get-a-quote-btn {
    width: 100%;
  }

  .wnz-estimate-strip-content {
    grid-template-columns: 1fr;
  }

  .wnz-estimate-strip-actions {
    align-items: flex-start;
    min-width: 0;
  }

  .wnz-estimate-strip-actions .get-a-quote-btn,
  .wnz-estimate-strip-actions .wnz-call-button {
    width: fit-content;
  }

  .wnz-home-hero .hero-slide {
    height: 100%;
  }

  .wnz-home-hero .hero-slide h1,
  .wnz-home-hero .hero-slide h2 {
    font-size: 70px !important;
    line-height: 90px !important;
  }
}

@media (max-width: 991px) {
  .wnz-two-col,
  .wnz-contact-container,
  .wnz-top-explainer-grid,
  .wnz-card-grid,
  .wnz-why-guidance,
  .wnz-image-grid {
    grid-template-columns: 1fr;
  }

  .wnz-contact-left {
    padding-right: 0;
  }

  .wnz-contact-container {
    gap: 42px;
  }

  .wnz-contact-next-steps,
  .wnz-contact-form-card {
    grid-column: auto;
    grid-row: auto;
  }

  .wnz-why-guidance {
    padding: 36px;
  }

  .wnz-video-stage {
    grid-template-columns: 1fr;
  }

  .wnz-video-feature {
    min-height: 360px;
  }

  .wnz-top-explainer .wnz-top-video {
    min-height: 360px;
  }

  .wnz-video-feature-copy {
    padding: 36px;
  }

  .wnz-video-playlist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wnz-clean-energy-panel {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .wnz-clean-energy-copy {
    max-width: none;
  }

  .wnz-clean-energy-copy h2 {
    font-size: 42px !important;
  }

  .wnz-page-section,
  .wnz-clean-energy {
    padding: 80px 0;
  }

  .wnz-step-grid,
  .wnz-power-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wnz-step-card {
    min-height: 260px;
  }

  .wnz-net-metering {
    grid-template-columns: 1fr;
  }

  .wnz-net-metering .wnz-net-metering-video {
    min-height: 320px;
  }

  .wnz-net-metering-content {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .wnz-meter-icon {
    height: 60px;
    width: 60px;
  }

  .wnz-meter-icon svg {
    height: 28px;
    width: 28px;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 78px;
  }

  body.menu-open,
  body.video-modal-open {
    padding-bottom: 0;
  }

  body.menu-open .wnz-mobile-sticky-cta,
  body.video-modal-open .wnz-mobile-sticky-cta {
    display: none;
  }

  .wnz-mobile-sticky-cta {
    align-items: center;
    background: rgba(13, 23, 20, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    bottom: 0;
    box-sizing: border-box;
    box-shadow: 0 -14px 34px rgba(13, 23, 20, 0.24);
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    left: 0;
    max-width: 100vw;
    overflow: hidden;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 9997;
  }

  .wnz-mobile-sticky-link {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
    height: 52px;
    justify-content: center;
    min-width: 0;
    text-decoration: none;
  }

  .wnz-mobile-sticky-link span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .wnz-mobile-sticky-link svg {
    height: 20px;
    width: 20px;
  }

  .wnz-mobile-sticky-link--call {
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(13, 23, 20, 0.08);
    color: var(--wnz-ink);
  }

  .wnz-mobile-sticky-link--call svg {
    color: var(--wnz-green);
  }

  .wnz-mobile-sticky-link--estimate {
    background: var(--wnz-green);
    color: #fff;
  }

  .wnz-logo {
    min-width: 160px;
  }

  .wnz-logo img {
    max-width: 185px;
  }

  .wnz-home-hero .wnz-hero-track {
    height: 100vh;
    height: 100svh;
    min-height: 620px;
  }

  .wnz-home-hero .hero-slide h1,
  .wnz-home-hero .hero-slide h2 {
    font-size: 60px !important;
    line-height: 76px !important;
  }

  .wnz-clean-energy {
    padding: 70px 0;
  }

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

  .wnz-cta-form input,
  .wnz-cta-form .get-a-quote-btn {
    height: 58px;
  }

  .wnz-estimate-strip {
    padding: 42px 0;
  }

  .wnz-estimate-strip h2 {
    font-size: 32px !important;
    line-height: 1.18 !important;
  }

  .wnz-estimate-strip-copy > p:not(.common-title):not(.wnz-trust-note) {
    font-size: 16px;
    line-height: 27px;
  }

  .wnz-estimate-strip-actions,
  .wnz-estimate-strip-actions .get-a-quote-btn,
  .wnz-estimate-strip-actions .wnz-call-button,
  .wnz-project-cta-stack .get-a-quote-btn {
    width: 100%;
  }

  .wnz-hero-trust {
    font-size: 13px;
    margin-top: 12px;
  }

  .wnz-project-facts {
    grid-template-columns: 1fr;
  }

  .wnz-faq-item summary {
    font-size: 18px;
    line-height: 27px;
    padding: 20px;
  }

  .wnz-faq-item p {
    font-size: 16px;
    line-height: 27px;
    padding: 20px;
  }

  .wnz-cta .need-help-now-btn-container {
    max-width: 100%;
  }

  .wnz-project-case-grid,
  .wnz-project-proof-grid,
  .wnz-project-detail-grid,
  .wnz-location-insight,
  .wnz-location-insight-grid {
    grid-template-columns: 1fr;
  }

  .wnz-project-detail-copy {
    gap: 18px;
  }

  .wnz-location-insight {
    padding: 30px;
  }

  .wnz-clean-energy-panel {
    gap: 30px;
    padding: 28px;
  }

  .wnz-clean-energy-media--logo {
    min-height: 280px;
    padding: 36px;
  }

  .wnz-clean-energy-media--logo img {
    max-height: 220px;
  }

  .wnz-clean-energy-copy .common-title,
  .wnz-clean-energy-copy h2,
  .wnz-clean-energy-copy > p:not(.common-title) {
    text-align: center;
  }

  .wnz-clean-energy-copy h2 {
    font-size: 34px !important;
    line-height: 1.18 !important;
    padding-bottom: 18px;
  }

  .wnz-clean-energy-points {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .wnz-clean-energy-point {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .wnz-feature-icon {
    height: 48px;
    width: 48px;
  }

  .wnz-feature-icon svg {
    height: 36px;
    width: 36px;
  }

  .wnz-page-hero .common-page-container {
    min-height: 360px;
  }

  .wnz-error-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wnz-video-gallery-header {
    margin-bottom: 34px;
  }

  .wnz-video-gallery-header h2 {
    font-size: 42px !important;
    line-height: 1.18 !important;
  }

  .wnz-video-feature {
    min-height: 280px;
  }

  .wnz-top-explainer .wnz-top-video {
    min-height: 280px;
  }

  .wnz-video-play {
    height: 64px;
    width: 64px;
  }

  .wnz-video-play svg {
    height: 28px;
    width: 28px;
  }

  .wnz-video-feature-copy {
    padding: 28px;
  }

  .wnz-video-feature-copy h3 {
    font-size: 30px;
  }

  .wnz-video-modal {
    padding: 16px;
  }

  .wnz-video-modal-close {
    right: 8px;
    top: 8px;
  }

  .wnz-side-panel,
  .wnz-contact-next-steps,
  .wnz-contact-form-card,
  .wnz-why-guidance,
  .wnz-card,
  .wnz-step-card,
  .wnz-power-card > div,
  .wnz-net-metering-content {
    padding: 24px;
  }

  .wnz-top-explainer-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .wnz-section-heading {
    margin-bottom: 36px;
  }

  .wnz-section-heading h2 {
    font-size: 34px !important;
    line-height: 1.18 !important;
    padding-bottom: 14px;
  }

  .wnz-section-heading > p:not(.common-title) {
    font-size: 16px;
  }

  .wnz-step-card > span {
    font-size: 48px;
  }

  .wnz-power-card h3,
  .wnz-net-metering h3 {
    font-size: 28px;
  }

  .wnz-net-metering-content {
    grid-template-columns: 1fr;
  }

  .wnz-guidance-item {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .wnz-guidance-icon {
    height: 38px;
    width: 38px;
  }

  .wnz-guidance-icon svg {
    height: 19px;
    width: 19px;
  }

  .wnz-why-guidance-copy {
    padding: 24px;
  }

  .wnz-why-video-copy {
    padding: 24px;
  }

  .wnz-why-video-copy h3 {
    font-size: 26px;
  }

  .wnz-contact-method {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 80px;
    padding: 14px;
  }

  .wnz-contact-method-icon {
    height: 52px;
    width: 52px;
  }

  .wnz-contact-method-icon svg {
    height: 24px;
    width: 24px;
  }

  .wnz-form.wnz-contact-form-card .get-a-quote-btn {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .wnz-home-hero .hero-container-para1 {
    letter-spacing: 1.4px;
    line-height: 1.28;
    margin-left: auto;
    margin-right: auto;
    width: min(100%, 320px);
  }

  .wnz-home-hero .hero-slide h1,
  .wnz-home-hero .hero-slide h2 {
    font-size: 42px !important;
    line-height: 50px !important;
    padding: 10px 0 14px;
  }

  .wnz-home-hero .hero-container-button-video {
    gap: 14px;
  }

  .wnz-hero-phone {
    font-size: 16px;
    gap: 8px;
    min-height: 58px;
    padding: 16px 18px;
  }

  .wnz-hero-phone svg {
    height: 18px;
    width: 18px;
  }

  .wnz-video-playlist {
    grid-template-columns: 1fr;
  }

  .wnz-step-grid,
  .wnz-power-grid {
    grid-template-columns: 1fr;
  }

  .wnz-step-card {
    min-height: auto;
  }

  .wnz-top-explainer .wnz-top-video {
    min-height: 230px;
  }

  .wnz-contact-next-steps li {
    grid-template-columns: 1fr;
  }

  .wnz-top-explainer-actions .get-a-quote-btn {
    width: 100%;
  }

  .wnz-video-feature-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wnz-video-feature-actions .get-a-quote-btn {
    width: 100%;
  }

  .wnz-why-video-ribbon {
    flex-wrap: wrap;
    left: 14px;
    right: 14px;
    top: 14px;
  }

  .wnz-why-video-ribbon span {
    font-size: 11px;
    padding: 10px 12px;
  }

  .wnz-project-stats {
    grid-template-columns: 1fr;
  }
}

.wnz-counter-wrapper .counter-box h2 {
  font-variant-numeric: tabular-nums;
}

.wnz-logo-badge img,
.wnz-certification-card,
.wnz-contact-method,
.wnz-video-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

@media (hover: hover) {
  .wnz-logo-badge:hover img {
    transform: translateY(-5px) scale(1.03);
  }

  .wnz-certification-card:hover,
  .wnz-contact-method:hover,
  .wnz-video-card:hover {
    transform: translateY(-5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .motion-ready .wnz-animate {
    opacity: 1;
    transform: none;
  }
}
