:root {
  --ink: #071414;
  --ink-2: #183331;
  --muted: #647675;
  --teal-950: #061f21;
  --teal-900: #092f32;
  --teal-700: #0d6e6b;
  --teal-500: #17a08f;
  --mint: #dff8ef;
  --aqua: #7bf0da;
  --sun: #ffc42d;
  --sun-2: #f5a900;
  --sun-3: #fff1a8;
  --lime: #9fbd3f;
  --paper: #ffffff;
  --soft: #f4f8f5;
  --line: rgba(7, 20, 20, 0.12);
  --shadow: 0 24px 70px rgba(4, 38, 36, 0.14);
  --radius: 8px;
  --header: 72px;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 32px);
  overflow-x: hidden;
}

#quote,
#savings,
#products,
#batteries,
#process,
#heat-check,
#included,
#trust {
  scroll-margin-top: calc(var(--header) + 36px);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 196, 45, 0.15), transparent 28%),
    radial-gradient(circle at 92% 4%, rgba(23, 160, 143, 0.16), transparent 30%),
    linear-gradient(180deg, #fbfdf9 0%, #f2f7f4 42%, #ffffff 100%);
  font-family: var(--font-body);
  font-weight: 650;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only,
.form-honey {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(255, 196, 45, 0.72);
  outline-offset: 3px;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 10px;
  left: clamp(14px, 3vw, 40px);
  right: clamp(14px, 3vw, 40px);
  min-height: var(--header);
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr) minmax(240px, 300px);
  align-items: center;
  gap: 20px;
  padding: 8px 16px 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 52px rgba(5, 33, 31, 0.12);
  backdrop-filter: blur(22px);
}

.brand,
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand img {
  width: 182px;
}

.brand > span,
.footer-brand > span {
  margin-left: 6px;
  color: transparent;
  background: linear-gradient(90deg, var(--teal-700), var(--teal-500), var(--lime));
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand > span span {
  font-weight: 700;
}

.site-header nav {
  min-width: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  color: #405251;
  font-size: clamp(14px, 0.95vw, 16px);
  white-space: nowrap;
}

.site-header nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header nav a:hover {
  color: var(--teal-700);
  background: rgba(13, 110, 107, 0.06);
}

.site-header nav a[aria-current="page"] {
  color: #1c1605;
  border-color: rgba(245, 169, 0, 0.62);
  background: linear-gradient(135deg, #fff4b4 0%, #ffd64d 45%, #f6b900 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 14px 30px rgba(232, 157, 0, 0.22);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(13, 110, 107, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(7, 35, 34, 0.08);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--teal-700);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
}

.phone {
  color: var(--teal-700);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 900;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background-position 260ms ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.button-large {
  min-height: 56px;
  padding-inline: 24px;
  font-size: clamp(16px, 1.4vw, 18px);
}

.button-sun {
  color: #071414;
  background: linear-gradient(135deg, #ffec8a 0%, var(--sun) 44%, var(--sun-2) 100%);
  background-size: 180% 180%;
  box-shadow: 0 18px 38px rgba(232, 157, 0, 0.24);
}

.button-sun:hover {
  background-position: 100% 50%;
  box-shadow: 0 22px 48px rgba(232, 157, 0, 0.31);
}

.button-teal {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  background-size: 180% 180%;
  box-shadow: 0 18px 44px rgba(17, 132, 120, 0.25);
}

.button-teal:hover {
  background-position: 100% 50%;
}

.button-glass,
.button-muted {
  color: #24655f;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(13, 110, 107, 0.17);
  box-shadow: 0 12px 30px rgba(7, 35, 34, 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header) + 30px) clamp(18px, 4vw, 64px) 24px;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 197, 45, 0.52), rgba(255, 197, 45, 0.24) 18%, transparent 38%),
    linear-gradient(90deg, rgba(251,253,249,0.92) 0%, rgba(251,253,249,0.79) 41%, rgba(251,253,249,0.49) 68%, rgba(251,253,249,0.16) 100%),
    linear-gradient(180deg, rgba(255, 248, 220, 0.18), rgba(224, 243, 233, 0.38)),
    url("assets/photos/econexis-hero-home-vibrant.jpg") center / cover no-repeat;
  filter: saturate(1.18) contrast(1.05) brightness(1.04);
  transform: scale(1.03);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  z-index: -2;
  background: linear-gradient(0deg, #f4f8f5, rgba(244, 248, 245, 0));
}

.sun-orbit {
  position: absolute;
  z-index: -1;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  top: 13%;
  right: 5%;
  border: 1px solid rgba(255, 196, 45, 0.4);
  border-radius: 50%;
  opacity: 0.55;
  animation: spinFloat 20s linear infinite;
}

.sun-orbit::before,
.sun-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.sun-orbit::before {
  inset: 11%;
  border: 1px dashed rgba(23, 160, 143, 0.35);
}

.sun-orbit::after {
  width: 18px;
  height: 18px;
  top: 13%;
  left: 18%;
  background: var(--sun);
  box-shadow: 0 0 40px rgba(255, 196, 45, 0.9);
}

.hero-grid {
  width: min(100%, 1720px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 560px);
  gap: clamp(28px, 4.6vw, 68px);
  align-items: center;
  min-width: 0;
}

.hero-copy {
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-500);
  font-family: var(--font-display);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 1050px;
  margin-bottom: 22px;
  font-size: clamp(40px, 4.15vw, 64px);
  line-height: 1;
}

.hero-lede {
  max-width: 830px;
  margin-bottom: 22px;
  color: var(--ink-2);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.38;
}

.hero-points,
.hero-actions,
.accreditation-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  margin-bottom: 14px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
  color: #245c56;
  border: 1px solid rgba(13, 110, 107, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 30px rgba(7, 35, 34, 0.07);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
}

.hero-points svg {
  width: 18px;
  height: 18px;
  color: var(--teal-500);
}

.hero-actions {
  margin-bottom: 14px;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}

.accreditation-strip img,
.trust-wall img {
  width: 148px;
  height: 66px;
  object-fit: contain;
  padding: 9px 13px;
  border: 1px solid rgba(7, 20, 20, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(7, 35, 34, 0.08);
}

.accreditation-strip img[src*="trustmark"],
.trust-wall img[src*="trustmark"] {
  background: #1f61b7;
  border-color: rgba(31, 97, 183, 0.22);
}

.accreditation-strip img[src*="napit"],
.trust-wall img[src*="napit"] {
  padding: 7px 10px;
}

.quote-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  padding: clamp(18px, 2vw, 28px);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.80));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.quote-head h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 2.65vw, 42px);
  line-height: 1;
}

.quote-head p {
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.38;
}

.quote-form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.form-progress {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 8px;
}

.form-progress-meta {
  display: flex;
  justify-content: flex-end;
  color: var(--teal-700);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
}

.form-progress span {
  height: 6px;
  border-radius: 999px;
  background: rgba(13, 110, 107, 0.14);
  overflow: hidden;
}

.form-progress span.is-active {
  background: linear-gradient(90deg, var(--teal-500), var(--sun));
}

.form-step {
  display: none;
  gap: 10px;
}

.form-step.is-active {
  display: grid;
}

.field-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 13px;
}

.field,
.select-field {
  position: relative;
  display: grid;
}

.field input,
.select-field select {
  width: 100%;
  min-height: 52px;
  padding: 19px 15px 7px;
  color: var(--ink);
  border: 1px solid rgba(7, 20, 20, 0.13);
  border-radius: var(--radius);
  outline: none;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.select-field select {
  appearance: none;
  padding-top: 22px;
}

.field input:focus,
.select-field select:focus {
  border-color: rgba(23, 160, 143, 0.55);
  box-shadow: 0 0 0 4px rgba(123, 240, 218, 0.17);
}

.field span,
.select-field span {
  position: absolute;
  top: 16px;
  left: 15px;
  color: #768281;
  pointer-events: none;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  transition: transform 180ms ease, color 180ms ease, font-size 180ms ease;
}

.field input:focus + span,
.field input:not(:placeholder-shown) + span,
.select-field span {
  color: var(--teal-700);
  transform: translateY(-12px);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field small {
  display: none;
  margin-top: 6px;
  color: #b74223;
  font-size: 12px;
}

.field.is-invalid input,
.select-field.is-invalid select {
  border-color: rgba(183, 66, 35, 0.58);
}

.field.is-invalid small {
  display: block;
}

.choice-group {
  display: grid;
  gap: 9px;
}

.choice-group > span {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
}

.choice-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(7, 20, 20, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  color: #33504e;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.choice-group label:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 160, 143, 0.38);
  box-shadow: 0 14px 30px rgba(7, 35, 34, 0.08);
}

.choice-group input {
  accent-color: var(--teal-500);
}

.form-controls {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 12px;
}

.form-controls .button-submit {
  display: none;
  grid-column: 1 / -1;
}

.quote-form.is-final .button-submit {
  display: inline-flex;
}

.quote-form.is-final [data-next] {
  display: none;
}

.quote-form.is-first [data-prev] {
  visibility: hidden;
}

.quote-form.is-success .form-step,
.quote-form.is-success .form-controls,
.quote-form.is-success .privacy,
.quote-form.is-success .form-progress-meta,
.quote-form.is-success .form-progress {
  display: none;
}

.privacy,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-status {
  min-height: 20px;
  color: var(--teal-700);
  font-weight: 900;
}

.quote-form.is-success .form-status {
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(23, 160, 143, 0.2);
  border-radius: var(--radius);
  color: #0b3d39;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 196, 45, 0.2), transparent 28%),
    linear-gradient(180deg, #ffffff, #eef9f5);
  box-shadow: 0 18px 42px rgba(7, 35, 34, 0.09);
  font-size: 16px;
  line-height: 1.45;
}

.quote-card.is-success .quote-head::after {
  content: "Request sent";
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #0b3d39;
  background: linear-gradient(135deg, #fff2aa, #ffc43d);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1400px) and (min-width: 1241px) {
  .site-header {
    grid-template-columns: minmax(210px, 260px) minmax(0, 1fr) auto;
    gap: 12px;
  }

  .site-header nav {
    gap: 4px;
    font-size: 14px;
  }

  .site-header nav a {
    min-height: 36px;
    padding: 8px 9px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-actions .button {
    display: none;
  }

  .brand img {
    width: 170px;
  }

  .brand > span {
    font-size: 10px;
    letter-spacing: 0.17em;
  }
}

.savings-band,
.install-band,
.product-section,
.battery-section,
.process-section,
.trust-section,
.final-cta,
.home-journey,
.warm-audience,
.warm-route-band,
.contact-next {
  width: min(100% - 36px, 1720px);
  margin: 0 auto;
}

.savings-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 470px);
  gap: clamp(26px, 5vw, 90px);
  align-items: center;
  padding: clamp(38px, 5vw, 72px);
  border-radius: var(--radius);
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 196, 45, 0.38), transparent 29%),
    linear-gradient(135deg, #08272a, #0b6764 62%, #169b8b);
  box-shadow: var(--shadow);
}

.savings-band h2,
.install-band h2 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(42px, 5.3vw, 86px);
  line-height: 0.96;
}

.savings-band .eyebrow,
.install-band .eyebrow {
  color: #9af2df;
}

.savings-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  backdrop-filter: blur(14px);
}

.savings-card span,
.savings-card small {
  color: rgba(255, 255, 255, 0.72);
}

.savings-card strong {
  display: block;
  margin: 6px 0;
  color: var(--sun);
  font-family: var(--font-display);
  font-size: clamp(54px, 5.6vw, 82px);
  font-weight: 900;
  line-height: 0.95;
}

.savings-card p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.42;
}

.savings-card small {
  display: block;
  line-height: 1.45;
}

.day-one-band,
.gov-info-card {
  width: min(100% - 36px, 1320px);
  margin: clamp(26px, 4vw, 48px) auto 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(20px, 4vw, 52px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(13, 110, 107, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 196, 45, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff, #eff8f4);
  box-shadow: 0 18px 48px rgba(7, 35, 34, 0.08);
}

.day-one-band h2,
.gov-info-card h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.05;
}

.day-one-band p:not(.eyebrow),
.gov-info-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.48;
}

.gov-info-card .button {
  justify-self: end;
}

.install-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding-block: clamp(70px, 9vw, 128px);
}

.install-copy {
  padding: clamp(34px, 5vw, 62px);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(7,20,20,0.66), rgba(7,20,20,0.48)),
    url("assets/photos/econexis-hero-home-vibrant.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.install-copy p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(19px, 1.9vw, 27px);
  line-height: 1.42;
}

.install-metrics {
  display: grid;
  gap: 16px;
}

.install-metrics article {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(7, 35, 34, 0.08);
}

.install-metrics strong {
  color: var(--teal-700);
  font-family: var(--font-display);
  font-size: clamp(42px, 4.2vw, 62px);
  font-weight: 900;
}

.install-metrics span {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.35;
}

.product-section,
.battery-section,
.process-section,
.trust-section,
.final-cta,
.home-journey,
.warm-audience,
.contact-next {
  padding-block: clamp(62px, 8vw, 112px);
}

.product-section {
  padding-top: clamp(34px, 4vw, 60px);
  padding-bottom: clamp(22px, 2.5vw, 38px);
}

.battery-section {
  padding-top: clamp(22px, 2.6vw, 38px);
}

.section-heading {
  max-width: 1000px;
  margin-bottom: 36px;
}

.section-heading h2,
.trust-copy h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.4vw, 68px);
  line-height: 1;
}

.section-heading p,
.trust-copy p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
}

.panel-grid,
.battery-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

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

.product-card,
.battery-card,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 196, 45, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff, #f8fbf8);
  box-shadow: 0 18px 48px rgba(7, 35, 34, 0.08);
}

.product-card {
  position: relative;
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  padding: clamp(18px, 1.8vw, 24px);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  background: linear-gradient(90deg, var(--teal-500), var(--sun));
}

.product-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.product-top span {
  color: var(--teal-500);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-top strong {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 900;
  line-height: 0.95;
}

.product-photo {
  display: grid;
  place-items: center;
  min-height: 178px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(7, 20, 20, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, rgba(123, 240, 218, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(235, 244, 238, 0.68));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.product-photo img {
  width: 100%;
  height: 176px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(7, 35, 34, 0.16));
}

.product-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.product-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0;
}

.product-card dl div {
  min-height: 58px;
  padding: 10px;
  border: 1px solid rgba(7, 20, 20, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
}

.battery-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  min-height: 0;
  padding: clamp(18px, 2vw, 26px);
  overflow: hidden;
}

.battery-photo {
  display: grid;
  place-items: center;
  width: min(100%, 235px);
  height: 218px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(7, 20, 20, 0.08);
  border-radius: 7px;
  background:
    radial-gradient(circle at 52% 80%, rgba(23, 160, 143, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff, #edf5f2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
  justify-self: center;
}

.battery-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(7, 35, 34, 0.17));
}

.battery-photo img.sigenergy-img {
  object-fit: contain;
  object-position: top center;
  border-radius: 6px;
}

.battery-photo img.tesla-img {
  width: 112%;
  height: 112%;
  object-fit: contain;
  object-position: center;
}

.battery-card h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1;
}

.battery-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.battery-card ul {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.battery-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  font-size: 14px;
}

.battery-grid-four {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.battery-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sun);
}

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

.process-grid article {
  position: relative;
  min-height: 164px;
  padding: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-grid article:hover,
.product-card:hover,
.battery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 62px rgba(7, 35, 34, 0.13);
}

.process-grid article span {
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(23, 160, 143, 0.18);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
}

.process-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
  color: var(--teal-500);
}

.process-grid h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.14;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.compact-process {
  padding-block: clamp(38px, 5vw, 70px);
}

.compact-process .section-heading {
  max-width: none;
  display: block;
  margin-bottom: 22px;
}

.compact-process .section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.04;
}

.compact-process .eyebrow {
  margin-bottom: 12px;
}

.trust-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-wall img {
  width: 100%;
  height: 124px;
  padding: 26px;
}

.final-cta {
  text-align: center;
}

.final-cta p {
  max-width: 720px;
  margin: 0 auto 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(42px, 5vw, 64px) clamp(18px, 4vw, 68px);
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 196, 45, 0.15), transparent 28%),
    linear-gradient(135deg, #061414, #08282b 68%, #063d3a);
}

.footer-disclosure {
  grid-column: 1 / -1;
  padding-top: clamp(18px, 2.5vw, 26px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-disclosure p {
  max-width: 1180px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(12px, 0.92vw, 14px);
  font-weight: 650;
  line-height: 1.65;
}

.footer-brand img {
  width: 170px;
  filter: brightness(1.08);
}

.footer-brand > span {
  font-size: 11px;
}

.site-footer p {
  max-width: 460px;
  margin: 16px 0 0;
  line-height: 1.55;
}

.footer-contact {
  display: grid;
  gap: 12px;
  font-style: normal;
  line-height: 1.45;
}

.footer-contact strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 20px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
}

.footer-contact-item svg {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  color: var(--sun);
}

.site-footer a {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.footer-links a {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
}

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

.heat-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header) + 42px) clamp(18px, 4vw, 64px) 34px;
  isolation: isolate;
}

.heat-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7, 20, 20, 0.74) 0%, rgba(7, 20, 20, 0.54) 42%, rgba(7, 20, 20, 0.22) 76%),
    radial-gradient(circle at 82% 18%, rgba(255, 196, 45, 0.38), transparent 30%),
    url("assets/photos/econexis-home-energy-hero-optimised.jpg") center / cover no-repeat;
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.02);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.heat-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 20%;
  background: linear-gradient(0deg, #f4f8f5, rgba(244, 248, 245, 0));
}

.heat-hero-grid {
  width: min(100%, 1720px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 540px);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-width: 0;
}

.heat-copy {
  max-width: 920px;
}

.heat-copy h1,
.heat-copy .hero-lede {
  color: #ffffff;
}

.heat-copy .eyebrow {
  color: #7bf0da;
}

.heat-copy .hero-points span {
  color: #eafff9;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.heat-copy .hero-points svg {
  color: var(--sun);
}

.heat-form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.84));
}

.heat-stats {
  width: min(100% - 36px, 1720px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-block: clamp(30px, 5vw, 58px);
}

.heat-stats article {
  min-height: 160px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(7, 35, 34, 0.08);
}

.heat-stats strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(42px, 4.8vw, 76px);
  font-weight: 900;
  line-height: 0.95;
}

.heat-stats span {
  max-width: 420px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
}

.heat-split,
.included-section {
  width: min(100% - 36px, 1720px);
  margin: 0 auto;
}

.heat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dark-split,
.fit-split {
  background: var(--teal-950);
}

.heat-split figure {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
}

.heat-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  display: grid;
  align-content: center;
  padding: clamp(36px, 5vw, 82px);
  color: #ffffff;
}

.split-copy h2 {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: clamp(40px, 4.8vw, 78px);
  line-height: 1;
}

.split-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.5;
}

.split-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.split-copy li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.35;
}

.split-copy li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--sun);
}

.fit-split {
  margin-top: clamp(34px, 5vw, 68px);
}

.fit-split .button {
  justify-self: start;
  margin-top: 28px;
}

.heat-process {
  padding-block: clamp(46px, 7vw, 82px);
}

.centered-heading {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.included-section {
  padding-block: clamp(46px, 7vw, 82px);
}

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

.included-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 196, 45, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fbf8);
  box-shadow: 0 18px 48px rgba(7, 35, 34, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.included-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 62px rgba(7, 35, 34, 0.13);
}

.included-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--teal-500);
}

.included-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.included-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.heat-final {
  border-top: 1px solid var(--line);
}

.contact-hero {
  width: min(100% - 36px, 1320px);
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: calc(var(--header) + 52px) 0 64px;
}

.contact-hero .section-heading {
  margin-bottom: 0;
}

.contact-copy {
  display: grid;
  gap: 22px;
}

.contact-detail-grid {
  display: grid;
  gap: 12px;
}

.contact-detail-grid > a,
.contact-detail-grid > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(7, 35, 34, 0.07);
}

.contact-detail-grid svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  color: var(--teal-500);
}

.contact-detail-grid span {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-detail-grid strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  color: #245c56;
  border: 1px solid rgba(13, 110, 107, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
}

.contact-proof-strip svg {
  width: 17px;
  height: 17px;
  color: var(--teal-500);
}

.contact-next {
  border-top: 1px solid var(--line);
}

.contact-trust {
  border-top: 0;
}

.legal-page {
  width: min(100% - 36px, 900px);
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 54px 0 86px;
}

.legal-page .footer-brand img {
  width: 210px;
}

.legal-page h1 {
  margin: 18px 0 4px;
  max-width: 820px;
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.legal-page .legal-intro {
  color: var(--ink-2);
  font-size: 21px;
}

.legal-page section {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.6vw, 34px);
}

.legal-page a:not(.button) {
  color: var(--teal-700);
}

.home-hero {
  position: relative;
  min-height: min(860px, 92svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header) + 44px) clamp(18px, 4vw, 64px) 54px;
  isolation: isolate;
}

.solar-page .hero {
  padding-top: calc(var(--header) + 42px);
}

.home-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 196, 45, 0.44), rgba(255, 196, 45, 0.2) 19%, transparent 39%),
    linear-gradient(90deg, rgba(251,253,249,0.95) 0%, rgba(251,253,249,0.83) 38%, rgba(251,253,249,0.34) 70%, rgba(251,253,249,0.08) 100%),
    linear-gradient(180deg, rgba(255, 249, 224, 0.16), rgba(226, 246, 237, 0.34)),
    url("assets/photos/econexis-home-energy-hero-optimised.jpg") center / cover no-repeat;
  filter: saturate(1.08) contrast(1.02) brightness(1.02);
  transform: scale(1.02);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 23%;
  background: linear-gradient(0deg, #f4f8f5, rgba(244, 248, 245, 0));
}

.home-energy-line {
  position: absolute;
  z-index: -1;
  width: min(44vw, 680px);
  aspect-ratio: 1;
  top: 16%;
  right: 7%;
  border: 1px solid rgba(255, 196, 45, 0.35);
  border-radius: 50%;
  opacity: 0.48;
  animation: spinFloat 26s linear infinite;
}

.home-energy-line::before {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px dashed rgba(23, 160, 143, 0.28);
  border-radius: 50%;
}

.home-hero-content {
  width: min(100%, 980px);
  min-width: 0;
}

.home-hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 82px);
  line-height: 0.98;
  overflow-wrap: break-word;
}

.home-lede {
  max-width: 780px;
  margin-bottom: 28px;
  color: var(--ink-2);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.42;
}

.home-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 900px;
}

.home-trust-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 13px;
  color: #245c56;
  border: 1px solid rgba(13, 110, 107, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 30px rgba(7, 35, 34, 0.07);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
}

.home-trust-chips svg {
  width: 18px;
  height: 18px;
  color: var(--teal-500);
}

.home-services,
.home-proof,
.home-process,
.home-quote-strip,
.faq-section {
  width: min(100% - 36px, 1720px);
  margin: 0 auto;
  padding-block: clamp(62px, 8vw, 112px);
}

.home-section-heading {
  max-width: 900px;
  margin-bottom: 32px;
}

.home-section-heading h2,
.home-proof h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.08;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-service-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-service-card {
  display: grid;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7, 35, 34, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 68px rgba(7, 35, 34, 0.14);
}

.home-service-card figure {
  position: relative;
  height: 285px;
  margin: 0;
  overflow: hidden;
  background: #dfeee9;
}

.home-service-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 196, 45, 0.34), transparent 31%),
    linear-gradient(180deg, rgba(7, 20, 20, 0), rgba(7, 20, 20, 0.2));
}

.service-solar-card figure::after {
  background:
    radial-gradient(circle at 83% 18%, rgba(255, 196, 45, 0.34), transparent 30%),
    linear-gradient(180deg, rgba(7, 20, 20, 0), rgba(7, 20, 20, 0.1));
}

.home-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.service-solar-card img,
.service-retrofit-card img {
  object-position: center 58%;
}

.home-service-card:hover img {
  transform: scale(1.045);
}

.home-service-card > div {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px;
}

.home-service-card > div > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.home-service-card > div > span svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--teal-500);
}

.home-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.home-service-card strong {
  justify-self: start;
  margin-top: 8px;
  padding: 13px 16px;
  color: #071414;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffe071, var(--sun));
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
}

.home-process {
  padding-top: clamp(42px, 5vw, 76px);
}

.home-quote-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(13, 110, 107, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 196, 45, 0.24), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef8f4);
  box-shadow: 0 22px 62px rgba(7, 35, 34, 0.1);
}

.home-quote-strip h2 {
  max-width: 860px;
  margin-bottom: 12px;
  font-size: clamp(34px, 3.9vw, 62px);
  line-height: 1.02;
}

.home-quote-strip p {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
}

.quote-strip-actions {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.faq-section {
  padding-top: clamp(44px, 6vw, 80px);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(100%, 1060px);
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid rgba(7, 20, 20, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(7, 35, 34, 0.06);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.home-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.home-proof .eyebrow {
  font-size: clamp(13px, 1.1vw, 17px);
  letter-spacing: 0.1em;
}

.home-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-proof-grid article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 196, 45, 0.11), transparent 32%),
    linear-gradient(180deg, #ffffff, #f8fbf8);
  box-shadow: 0 18px 48px rgba(7, 35, 34, 0.08);
}

.home-proof-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--teal-500);
}

.home-proof-grid h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.12;
}

.home-proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.home-journey {
  border-top: 1px solid var(--line);
}

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

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.journey-grid article,
.audience-grid article {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 196, 45, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fbf8);
  box-shadow: 0 18px 48px rgba(7, 35, 34, 0.08);
}

.journey-grid svg,
.audience-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--teal-500);
}

.journey-grid h3,
.audience-grid h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.1;
}

.journey-grid p,
.audience-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.journey-grid a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal-700);
  font-family: var(--font-display);
  font-weight: 900;
}

.warm-audience {
  padding-bottom: 0;
}

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

.measure-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7, 35, 34, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.measure-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 62px rgba(7, 35, 34, 0.13);
}

.measure-grid h3,
.measure-grid p {
  margin-inline: 22px;
}

.measure-grid h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.08;
}

.measure-grid p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.measure-photo {
  position: relative;
  height: 210px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(7,20,20,0.16)),
    linear-gradient(135deg, #c26d42 0 34%, #9e4d33 34% 36%, #d19a6e 36% 62%, #7c3b2c 62%);
}

.measure-photo::before,
.measure-photo::after {
  content: "";
  position: absolute;
}

.measure-photo::before {
  left: 12%;
  right: 12%;
  bottom: 26px;
  height: 118px;
  border: 1px solid rgba(7, 20, 20, 0.12);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.12) 0 12px, transparent 12px 34px) 0 0 / 46px 26px,
    linear-gradient(180deg, #b85f3a, #8d3f2e);
  box-shadow: 0 22px 42px rgba(7, 35, 34, 0.18);
}

.measure-photo::after {
  left: 8%;
  right: 8%;
  bottom: 136px;
  height: 62px;
  background: linear-gradient(135deg, #2f3434, #121717);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.measure-iwi {
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 196, 45, 0.28), transparent 34%),
    linear-gradient(135deg, #ece2d0, #ffffff 56%, #d9cab3);
}

.measure-iwi::before {
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(13,110,107,0.28) 42% 58%, transparent 58%),
    linear-gradient(180deg, #f7efe4, #d7c8b5);
}

.measure-solar::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.12) 0 12px, transparent 12px 34px) 0 0 / 46px 26px,
    linear-gradient(180deg, #b85f3a, #8d3f2e);
}

.measure-solar::after {
  background:
    repeating-linear-gradient(90deg, #182224 0 32px, #263638 32px 34px),
    linear-gradient(135deg, #1d282a, #070c0d);
  clip-path: polygon(22% 14%, 100% 44%, 82% 100%, 0 70%);
}

.measure-loft::before {
  left: 8%;
  right: 8%;
  bottom: 34px;
  height: 96px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.35) 0 14px, transparent 14px 30px),
    linear-gradient(180deg, #f2cf75, #d8a93d);
}

.measure-loft::after {
  left: 0;
  right: 0;
  bottom: 132px;
  height: 70px;
  background: linear-gradient(135deg, #5c3329, #1f1715);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.measure-cavity::before {
  background:
    radial-gradient(circle at 52% 52%, rgba(255,255,255,0.92) 0 8px, transparent 9px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 0 12px, transparent 12px 34px) 0 0 / 46px 26px,
    linear-gradient(180deg, #b65d39, #8d3f2e);
}

.measure-cavity::after {
  left: 64%;
  right: auto;
  bottom: 50px;
  width: 86px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f6f4ea, #c8c1ad);
  clip-path: none;
  box-shadow: -38px -24px 0 -9px rgba(255,255,255,0.78);
}

.measure-ashp::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.12) 0 12px, transparent 12px 34px) 0 0 / 46px 26px,
    linear-gradient(180deg, #b85f3a, #8d3f2e);
}

.measure-ashp::after {
  left: auto;
  right: 13%;
  bottom: 32px;
  width: 92px;
  height: 80px;
  border: 10px solid #384143;
  border-radius: 8px;
  background:
    radial-gradient(circle, transparent 0 18px, #202829 19px 24px, transparent 25px),
    linear-gradient(180deg, #607074, #2e393b);
  clip-path: none;
}

.warm-route-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(34px, 5vw, 62px);
  border-radius: var(--radius);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 196, 45, 0.36), transparent 30%),
    linear-gradient(135deg, #072023, #0b5653 70%, #0f8d7f);
  box-shadow: var(--shadow);
}

.warm-route-band h2 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1;
}

.warm-route-band .eyebrow {
  color: #9af2df;
}

.route-list {
  display: grid;
  gap: 14px;
}

.route-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.route-list span {
  grid-row: span 2;
  color: var(--sun);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
}

.route-list strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 19px;
}

.route-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.js-enabled [data-reveal],
.js-enabled .reveal-up,
.js-enabled .reveal-scale {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal-scale {
  transform: none;
}

.js-enabled .site-header[data-reveal],
.js-enabled .hero .reveal-up,
.js-enabled .hero .reveal-scale,
.js-enabled .home-hero .reveal-up,
.js-enabled .home-hero .reveal-scale,
.js-enabled .heat-hero .reveal-up,
.js-enabled .heat-hero .reveal-scale {
  opacity: 1;
  transform: none;
}

.is-visible,
.reveal-up.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 650ms ease, transform 650ms ease;
}

.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 150ms; }
.delay-3 { transition-delay: 220ms; }
.delay-4 { transition-delay: 300ms; }
.delay-5 { transition-delay: 380ms; }

@keyframes heroZoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.09) translateX(-1.2%); }
}

@keyframes spinFloat {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: minmax(180px, auto) minmax(0, 1fr) auto;
    gap: 14px;
    padding: 10px 14px 10px 18px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    align-self: center;
    justify-self: end;
  }

  .site-header nav {
    display: grid;
    grid-column: 1 / -1;
    max-height: 0;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    overflow: hidden;
    padding: 0;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open nav {
    max-height: 360px;
    padding: 8px 0 2px;
    opacity: 1;
    transform: translateY(0);
  }

  .site-header nav a {
    justify-content: center;
    min-height: 38px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.62);
  }

  .site-header nav::-webkit-scrollbar {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
  }

  .header-actions .button {
    display: none;
  }

  .phone {
    font-size: clamp(17px, 2.1vw, 21px);
  }

  .hero-grid,
  .heat-hero-grid,
  .contact-hero,
  .savings-band,
  .install-band,
  .day-one-band,
  .gov-info-card,
  .heat-stats,
  .heat-split,
  .trust-section,
  .home-proof,
  .warm-route-band {
    grid-template-columns: 1fr;
  }

  .home-hero {
    justify-items: center;
    text-align: center;
  }

  .home-hero-content {
    width: min(100%, 820px);
    margin-inline: auto;
  }

  .home-lede,
  .home-hero h1 {
    margin-inline: auto;
  }

  .home-hero-actions,
  .home-trust-chips {
    justify-content: center;
  }

  .quote-card {
    max-width: 740px;
  }

  .panel-grid,
  .battery-grid,
  .battery-grid-four,
  .included-grid,
  .measure-grid,
  .home-service-grid,
  .journey-grid,
  .audience-grid,
  .home-quote-strip {
    grid-template-columns: 1fr;
  }

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

  .home-service-card {
    min-height: 0;
    grid-template-columns: 0.82fr 1fr;
  }

  .home-service-card figure {
    height: auto;
    min-height: 300px;
  }
}

@media (min-width: 821px) and (max-width: 1240px) {
  .hero {
    min-height: auto;
    align-items: start;
    padding-top: calc(var(--header) + 92px);
    padding-bottom: 72px;
  }

  .solar-page .hero {
    padding-top: calc(var(--header) + 100px);
  }

  .hero-copy {
    max-width: 860px;
  }

  .hero-copy h1 {
    max-width: 860px;
    font-size: clamp(46px, 6.4vw, 66px);
  }

  .hero-lede {
    max-width: 820px;
  }

  .hero-actions,
  .hero-points,
  .accreditation-strip {
    max-width: 860px;
  }

  .home-hero {
    min-height: auto;
    padding-top: calc(var(--header) + 108px);
    padding-bottom: 84px;
  }

  .home-hero h1 {
    max-width: 760px;
    font-size: clamp(48px, 6.2vw, 70px);
    line-height: 1.03;
  }

  .home-lede {
    max-width: 700px;
  }

  .home-service-card {
    grid-template-columns: 0.72fr 1fr;
    min-height: 0;
  }

  .home-service-card figure {
    min-height: 260px;
  }

  .home-proof {
    text-align: center;
  }

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

@media (max-width: 820px) {
  :root {
    --header: 74px;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 12px 14px 10px;
    border-radius: 0;
    overflow: hidden;
  }

  .site-header,
  .hero,
  .home-hero,
  .heat-hero,
  .contact-hero,
  .legal-page,
  .home-services,
  .product-section,
  .battery-section,
  .process-section,
  .trust-section,
  .final-cta {
    max-width: 100%;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    align-self: center;
    justify-self: end;
  }

  .site-header nav {
    display: grid;
    grid-column: 1 / -1;
    max-height: 0;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    overflow: hidden;
    padding: 0;
    font-size: 13px;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open nav {
    max-height: 360px;
    padding: 6px 0 2px;
    opacity: 1;
    transform: translateY(0);
  }

  .site-header nav a {
    justify-content: center;
    min-height: 36px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.62);
  }

  .brand {
    align-items: flex-start;
  }

  .brand img {
    width: 156px;
  }

  .brand > span {
    margin-left: 2px;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-align: left;
  }

  .header-actions {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-content: center;
    gap: 10px;
  }

  .phone {
    font-size: 15px;
  }

  .header-actions .button {
    min-height: 44px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 40px 16px 48px;
  }

  .heat-hero {
    min-height: auto;
    padding: 42px 16px 48px;
  }

  .solar-page .hero {
    padding-top: 40px;
  }

  .home-hero {
    min-height: auto;
    justify-items: center;
    padding: 38px 16px 24px;
    text-align: center;
  }

  .hero-copy,
  .heat-copy,
  .quote-card {
    width: 100%;
    max-width: min(100%, 360px);
    min-width: 0;
    margin-inline: auto;
  }

  .home-hero-content {
    width: 100%;
    max-width: min(100%, 320px);
    min-width: 0;
    margin-inline: auto;
  }

  .hero-image {
    background:
      radial-gradient(circle at 84% 12%, rgba(255, 197, 45, 0.42), rgba(255, 197, 45, 0.18) 22%, transparent 44%),
      linear-gradient(180deg, rgba(251,253,249,0.91), rgba(251,253,249,0.75) 58%, rgba(251,253,249,0.48)),
      url("assets/photos/econexis-hero-home-vibrant.jpg") center / cover no-repeat;
  }

  .heat-hero-bg {
    background:
      linear-gradient(180deg, rgba(7, 20, 20, 0.78), rgba(7, 20, 20, 0.5) 58%, rgba(7, 20, 20, 0.24)),
      radial-gradient(circle at 78% 14%, rgba(255, 197, 45, 0.34), transparent 42%),
      url("assets/photos/econexis-home-energy-hero-optimised.jpg") 64% center / cover no-repeat;
  }

  .home-hero-image {
    background:
      radial-gradient(circle at 78% 14%, rgba(255, 197, 45, 0.38), rgba(255, 197, 45, 0.16) 24%, transparent 48%),
      linear-gradient(180deg, rgba(251,253,249,0.91), rgba(251,253,249,0.78) 58%, rgba(251,253,249,0.48)),
      url("assets/photos/econexis-home-energy-hero-optimised.jpg") 63% center / cover no-repeat;
  }

  .sun-orbit,
  .home-energy-line {
    display: none;
  }

  h1 {
    font-size: clamp(34px, 10.2vw, 46px);
    line-height: 1;
    text-wrap: balance;
    overflow-wrap: break-word;
  }

  .heat-copy h1,
  .home-hero h1 {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(28px, 7.6vw, 32px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .hero-lede,
  .home-lede,
  .heat-copy .hero-lede {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    overflow-wrap: break-word;
  }

  .hero-lede,
  .home-lede,
  .savings-card p,
  .install-copy p,
  .section-heading p,
  .trust-copy p,
  .final-cta p {
    font-size: 17px;
  }

  .hero-actions,
  .hero-points,
  .accreditation-strip,
  .home-trust-chips,
  .home-hero-actions,
  .contact-proof-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-trust-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .home-trust-chips span {
    min-height: 38px;
    padding: 8px 9px;
    font-size: 11px;
  }

  .home-trust-chips svg {
    width: 16px;
    height: 16px;
  }

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

  .accreditation-strip img {
    width: 100%;
  }

  .quote-head h2,
  .savings-band h2,
  .install-band h2,
  .section-heading h2,
  .home-hero h1,
  .home-section-heading h2,
  .home-proof h2,
  .trust-copy h2,
  .final-cta h2 {
    font-size: clamp(32px, 9.4vw, 44px);
    line-height: 1.06;
  }

  .home-hero h1 {
    font-size: clamp(28px, 7.6vw, 32px);
  }

  .home-hero-actions .button,
  .hero-actions .button,
  .form-controls .button,
  .header-actions .button {
    width: 100%;
    white-space: normal;
    min-width: 0;
  }

  .field-grid,
  .form-controls,
  .install-metrics article,
  .product-card dl,
  .battery-card,
  .process-grid,
  .heat-stats,
  .heat-split,
  .day-one-band,
  .gov-info-card,
  .contact-hero,
  .included-grid,
  .measure-grid,
  .trust-wall,
  .home-service-card,
  .home-proof-grid,
  .journey-grid,
  .audience-grid,
  .warm-route-band,
  .route-list article,
  .contact-detail-grid > a,
  .contact-detail-grid > div,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: auto;
    gap: 34px;
    padding: 68px 0 56px;
  }

  .quote-form.is-first [data-prev] {
    display: none;
  }

  .savings-band,
  .install-copy,
  .product-card,
  .battery-card,
  .process-grid article {
    padding: 22px;
  }

  .install-metrics article {
    min-height: 0;
  }

  .product-photo {
    min-height: 168px;
  }

  .product-photo img {
    height: 160px;
  }

  .battery-photo {
    width: min(100%, 220px);
    height: 190px;
    margin: 0 auto;
  }

  .compact-process .section-heading {
    display: block;
    margin-bottom: 18px;
  }

  .compact-process .section-heading h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .compact-process .eyebrow {
    margin-bottom: 12px;
  }

  .process-grid article {
    min-height: 0;
    padding: 18px;
  }

  .process-grid svg {
    margin-bottom: 18px;
  }

  .product-section,
  .battery-section,
  .process-section,
  .heat-process,
  .included-section,
  .trust-section,
  .home-services,
  .home-proof,
  .home-journey,
  .warm-audience,
  .contact-next,
  .final-cta {
    padding-block: 54px;
  }

  .heat-stats {
    padding-block: 42px;
  }

  .heat-stats article {
    min-height: 0;
  }

  .heat-split figure {
    min-height: 280px;
  }

  .fit-split figure {
    order: 2;
  }

  .fit-split .split-copy {
    order: 1;
  }

  .split-copy {
    padding: 26px;
  }

  .split-copy h2 {
    font-size: clamp(32px, 9.4vw, 44px);
  }

  .split-copy p,
  .split-copy li {
    font-size: 16px;
  }

  .home-services {
    padding-top: 36px;
  }

  .home-service-card figure {
    height: 230px;
    min-height: 0;
  }

  .home-service-card > div,
  .home-proof-grid article {
    padding: 22px;
  }

  .home-service-card > div > span {
    align-items: flex-start;
    font-size: 23px;
  }

  .journey-grid article,
  .audience-grid article {
    min-height: 0;
    padding: 22px;
  }

  .quote-strip-actions {
    min-width: 0;
    width: 100%;
  }

  .warm-route-band {
    padding: 26px;
  }

  .route-list article {
    gap: 8px;
  }

  .route-list span {
    grid-row: auto;
  }

  .contact-detail-grid svg {
    grid-row: auto;
  }

  .contact-detail-grid strong,
  .footer-contact-item span {
    overflow-wrap: anywhere;
  }

  .legal-page {
    padding-block: 30px 64px;
  }

  .legal-page .footer-brand img {
    width: 185px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 142px;
  }

  .brand > span {
    max-width: 220px;
    font-size: 8.5px;
    letter-spacing: 0.14em;
  }

  .phone {
    font-size: 14px;
  }

  .hero,
  .heat-hero,
  .home-hero {
    padding-inline: 18px;
  }

  .hero-copy,
  .heat-copy,
  .quote-card,
  .home-hero-content {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(31px, 10vw, 39px);
    line-height: 1.04;
  }

  .home-hero h1,
  .heat-copy h1 {
    font-size: clamp(28px, 9.2vw, 34px);
  }

  .quote-head h2,
  .savings-band h2,
  .install-band h2,
  .section-heading h2,
  .home-section-heading h2,
  .home-proof h2,
  .trust-copy h2,
  .final-cta h2 {
    font-size: clamp(30px, 9.5vw, 38px);
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .hero-lede,
  .home-lede,
  .heat-copy .hero-lede,
  .section-heading p,
  .trust-copy p,
  .final-cta p {
    font-size: 16px;
  }

  .button {
    padding-inline: 16px;
    white-space: normal;
  }

  .contact-hero {
    padding-top: 56px;
  }

  .contact-detail-grid > a,
  .contact-detail-grid > div {
    gap: 6px 12px;
    padding: 14px;
  }

  .hero-points span,
  .home-trust-chips span {
    min-width: 0;
  }

  .accreditation-strip {
    gap: 10px;
  }

  .accreditation-strip img {
    min-width: 0;
    height: 64px;
    padding: 8px;
  }

  .home-services,
  .home-proof,
  .home-process,
  .home-quote-strip,
  .faq-section,
  .savings-band,
  .install-band,
  .product-section,
  .battery-section,
  .process-section,
  .trust-section,
  .final-cta,
  .home-journey,
  .warm-audience,
  .warm-route-band,
  .contact-next {
    width: min(100% - 32px, 1720px);
  }
}
