/**
 * Battery Storage UK — distinct hero + page overrides
 */
.hpuk-wrap.sbsuk-wrap {
  --hpuk-accent: #2a8f7a;
  --hpuk-glow: #7ee8c8;
}

/* ── HERO (Battery Storage only — not Solar + Battery layout) ── */
.hpuk-hero-stack {
  position: relative;
  isolation: isolate;
}

.hpuk-wrap .hpuk-hero {
  position: relative;
  z-index: 2;
  padding: 108px 0 52px;
  overflow: hidden;
  min-height: 0;
}

.hpuk-wrap .hpuk-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.1s ease, transform 1.25s ease;
  filter: brightness(0.92) contrast(1.04);
}

.hpuk-wrap .hpuk-hero-bg.hpuk-bg-ready {
  opacity: 1;
  transform: scale(1);
}

.hpuk-wrap .hpuk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(3, 10, 18, 0.94) 0%,
    rgba(3, 10, 18, 0.82) 42%,
    rgba(3, 10, 18, 0.45) 72%,
    rgba(3, 10, 18, 0.25) 100%
  );
  opacity: 0;
  transition: opacity 0.95s ease 0.1s;
}

.hpuk-wrap .hpuk-hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 52% 50%, transparent 0%, rgba(3, 10, 18, 0.35) 100%);
  pointer-events: none;
}

.hpuk-wrap .hpuk-hero.hpuk-hero-ready .hpuk-hero-overlay {
  opacity: 1;
}

.hpuk-wrap .hpuk-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease 0.15s;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 12%, #000 32%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 12%, #000 32%, #000 100%);
}

.hpuk-wrap .hpuk-hero.hpuk-hero-ready .hpuk-hero-canvas {
  opacity: 0.78;
}

.hpuk-wrap .hpuk-hero-inner {
  position: relative;
  z-index: 3;
  width: min(1280px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 40px;
  align-items: center;
}

.hpuk-wrap .hpuk-hero-in {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

.hpuk-wrap .hpuk-in-left { transform: translateX(-28px); }
.hpuk-wrap .hpuk-in-right { transform: translateX(28px); }
.hpuk-wrap .hpuk-in-up { transform: translateY(22px); }
.hpuk-wrap .hpuk-in-down { transform: translateY(-18px); }
.hpuk-wrap .hpuk-in-blur { filter: blur(8px); }
.hpuk-wrap .hpuk-in-scale { transform: scale(0.94); }

.hpuk-wrap .hpuk-hero-in.hpuk-visible,
.hpuk-wrap .hpuk-hero-in.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.hpuk-wrap .hpuk-hero-h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.hpuk-wrap .hpuk-hero-line-accent {
  display: block;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #ffffff 0%, #7ee8c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hpuk-wrap .hpuk-hero-lead {
  margin: 0 0 18px;
  max-width: 540px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.hpuk-wrap .hpuk-hero-checks {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hpuk-wrap .hpuk-hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.hpuk-wrap .hpuk-ck {
  color: #a0ffd4;
  font-size: 15px;
  line-height: 1.35;
  flex-shrink: 0;
}

.hpuk-wrap .hpuk-hero-trust {
  margin: 0 0 16px;
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.38);
}

.hpuk-wrap .hpuk-hero-callouts {
  margin: 0 0 22px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hpuk-wrap .hpuk-hero-callout {
  margin: 0;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(126, 232, 200, 0.16);
  background: rgba(31, 111, 92, 0.1);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.hpuk-wrap .hpuk-hero-callout strong {
  color: #a0ffd4;
  font-weight: 700;
}

.hpuk-wrap .hpuk-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hpuk-wrap .hpuk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hpuk-wrap .hpuk-btn-primary {
  background: #a0ffd4;
  color: #0a1a12 !important;
  box-shadow: 0 8px 24px rgba(160, 255, 212, 0.22);
}

.hpuk-wrap .hpuk-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(160, 255, 212, 0.32);
}

.hpuk-wrap .hpuk-btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: #fff !important;
  background: transparent;
}

.hpuk-wrap .hpuk-btn-ghost:hover {
  border-color: #a0ffd4;
  color: #a0ffd4 !important;
}

.hpuk-wrap .hpuk-sec-logo {
  display: block;
  width: auto;
  height: 22px;
  margin: 0 auto 12px;
  opacity: 0.9;
}

.hpuk-wrap .hpuk-sec-logo-dark {
  filter: brightness(0) saturate(100%) invert(27%) sepia(19%) saturate(1297%) hue-rotate(115deg) brightness(93%) contrast(88%);
  opacity: 0.65;
}

/* Tariff engine panel */
.hpuk-wrap .hpuk-tariff-engine {
  background: rgba(8, 20, 32, 0.72);
  border: 1px solid rgba(160, 255, 212, 0.14);
  border-radius: 22px;
  padding: 22px 20px 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hpuk-wrap .hpuk-tariff-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.hpuk-wrap .hpuk-tariff-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hpuk-wrap .hpuk-tariff-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a0ffd4;
  animation: hpukLivePulse 1.8s ease-in-out infinite;
}

@keyframes hpukLivePulse {
  0%, 100% { opacity: 0.45; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hpuk-wrap .hpuk-tariff-logo {
  display: block;
  width: auto;
  height: 22px;
  max-width: 88px;
  object-fit: contain;
  object-position: right center;
  opacity: 0.92;
}

.hpuk-wrap .hpuk-tariff-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
}

.hpuk-wrap .hpuk-tariff-node {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hpuk-wrap .hpuk-tariff-node-featured {
  border-color: rgba(160, 255, 212, 0.28);
  background: rgba(31, 111, 92, 0.15);
}

.hpuk-wrap .hpuk-tariff-node-ico {
  grid-row: 1 / 3;
  align-self: center;
  color: #a0ffd4;
}

.hpuk-wrap .hpuk-tariff-node-ico svg {
  width: 28px;
  height: 28px;
}

.hpuk-wrap .hpuk-batt-bar-1 { animation: hpukBattPulse 1.8s ease-in-out infinite; }
.hpuk-wrap .hpuk-batt-bar-2 { animation: hpukBattPulse 1.8s ease-in-out 0.25s infinite; }
.hpuk-wrap .hpuk-batt-bar-3 { animation: hpukBattPulse 1.8s ease-in-out 0.5s infinite; }

@keyframes hpukBattPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

.hpuk-wrap .hpuk-tariff-node-lbl {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(160, 255, 212, 0.65);
}

.hpuk-wrap .hpuk-tariff-node-val {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.hpuk-wrap .hpuk-tariff-node-val strong {
  color: #a0ffd4;
}

.hpuk-wrap .hpuk-tariff-meter {
  grid-column: 2;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-top: 4px;
}

.hpuk-wrap .hpuk-tariff-meter-fill {
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #1f6f5c, #a0ffd4);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hpuk-wrap .hpuk-tariff-connector {
  position: relative;
  width: 2px;
  height: 18px;
  margin: 0 auto;
  background: rgba(160, 255, 212, 0.2);
  overflow: visible;
}

.hpuk-wrap .hpuk-tariff-connector-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #a0ffd4, #1f6f5c);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.8s ease 0.3s;
}

.hpuk-wrap .hpuk-hero-ready .hpuk-tariff-connector-fill {
  transform: scaleY(1);
}

.hpuk-wrap .hpuk-tariff-connector-pulse {
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: #a0ffd4;
  animation: hpukConnPulse 2s ease-in-out infinite;
}

.hpuk-wrap .hpuk-tariff-connector-pulse-b {
  animation-delay: 0.6s;
}

@keyframes hpukConnPulse {
  0% { top: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: calc(100% - 8px); opacity: 0; }
}

.hpuk-wrap .hpuk-tariff-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.hpuk-wrap .hpuk-tariff-stat {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.hpuk-wrap .hpuk-tariff-stat-val {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hpuk-wrap .hpuk-tariff-stat-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hpuk-wrap .hpuk-tariff-foot {
  margin: 0;
  font-size: 11px;
  text-align: center;
  color: rgba(255, 255, 255, 0.32);
}

/* Band — 4 cards */
.hpuk-wrap .hpuk-band {
  position: relative;
  z-index: 4;
  background: linear-gradient(180deg, #0d2818 0%, #1a3d2e 100%);
  padding: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hpuk-wrap .hpuk-band.hpuk-band-ready {
  opacity: 1;
  transform: none;
}

.hpuk-wrap .hpuk-band-inner {
  width: min(1280px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.hpuk-wrap .hpuk-band-card {
  padding: 22px 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hpuk-wrap .hpuk-band-ready .hpuk-band-card {
  opacity: 1;
  transform: none;
  transition-delay: var(--d, 0ms);
}

.hpuk-wrap .hpuk-band-ico {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  color: #a0ffd4;
}

.hpuk-wrap .hpuk-band-ico svg {
  width: 22px;
  height: 22px;
}

.hpuk-wrap .hpuk-band-val {
  display: block;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.hpuk-wrap .hpuk-band-arrow {
  opacity: 0.5;
  font-weight: 400;
}

.hpuk-wrap .hpuk-band-lbl {
  display: block;
  font-size: 11.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  max-width: 200px;
  margin: 0 auto;
}

.hpuk-wrap .hpuk-band-card:last-child {
  border-right: none;
}

@media (max-width: 1024px) {
  .hpuk-wrap .hpuk-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hpuk-wrap .hpuk-band-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hpuk-wrap .hpuk-band-card:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .hpuk-wrap .hpuk-hero {
    padding: 88px 0 40px;
  }

  .hpuk-wrap .hpuk-band-inner {
    grid-template-columns: 1fr;
  }

  .hpuk-wrap .hpuk-band-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* Hero: battery-first accent (rest of page) */
.hpuk-wrap .sbsuk-ultra-ico-batt {
  border-color: rgba(126, 232, 200, 0.55);
  box-shadow: 0 0 32px rgba(42, 143, 122, 0.35);
}

.hpuk-wrap .sbsuk-ultra-ico-sun {
  opacity: 0.72;
  transform: scale(0.92);
}

.hpuk-wrap .sbsuk-hero-overlay {
  background: linear-gradient(
    108deg,
    rgba(4, 14, 24, 0.94) 0%,
    rgba(4, 14, 24, 0.78) 48%,
    rgba(8, 28, 42, 0.55) 100%
  ) !important;
}

.hpuk-wrap .spuk-hl {
  background: linear-gradient(135deg, #ffffff 0%, #7ee8c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Standalone battery callout under hero checks */
.hpuk-hero-note {
  margin: 14px 0 0;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(126, 232, 200, 0.22);
  background: rgba(31, 111, 92, 0.12);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
}

.hpuk-hero-note strong {
  color: #a0ffd4;
  font-weight: 700;
}

/* ── What Is — dedicated image + flow cards ── */
.hpuk-wrap .hpuk-what {
  position: relative;
  padding: 64px 0 72px;
  background: #f4f8f6;
  overflow: hidden;
}

.hpuk-wrap .hpuk-what-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 15%, rgba(31, 111, 92, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(160, 255, 212, 0.1) 0%, transparent 40%),
    linear-gradient(rgba(31, 111, 92, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 92, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px, 44px 44px;
}

.hpuk-wrap .hpuk-what .spuk-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
}

.hpuk-wrap .hpuk-what .spuk-split-l,
.hpuk-wrap .hpuk-what .spuk-split-r {
  min-width: 0;
  width: 100%;
}

.hpuk-wrap .hpuk-what .spuk-split-l {
  display: block;
  align-items: stretch;
}

.hpuk-wrap .hpuk-what .spuk-split-r {
  padding-left: 0;
}

.hpuk-wrap .hpuk-what-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hpuk-wrap .hpuk-what-copy .spuk-lead {
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.65;
}

.hpuk-wrap .hpuk-what-copy .spuk-body {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.72;
}

.hpuk-wrap .hpuk-what-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 28px 64px rgba(7, 20, 38, 0.16),
    0 0 0 1px rgba(31, 111, 92, 0.12);
  background: #0a1620;
}

.hpuk-wrap .hpuk-what-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hpuk-wrap .hpuk-what.is-inview .hpuk-what-img {
  animation: hpukWhatImgDrift 22s ease-in-out infinite alternate;
}

@keyframes hpukWhatImgDrift {
  0% { transform: scale(1); }
  100% { transform: scale(1.03); }
}

.hpuk-wrap .hpuk-what-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(7, 20, 38, 0.35) 0%,
    rgba(7, 20, 38, 0.12) 45%,
    rgba(31, 111, 92, 0.08) 100%
  );
  pointer-events: none;
}

.hpuk-wrap .hpuk-flow-cards {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hpuk-wrap .hpuk-flow-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  max-width: 200px;
  padding: 11px 13px;
  background: rgba(11, 28, 48, 0.88);
  border: 1px solid rgba(160, 255, 212, 0.22);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--card-d, 0ms);
}

.hpuk-wrap .hpuk-flow-card-text {
  min-width: 0;
}

.hpuk-wrap .hpuk-what.is-inview .hpuk-flow-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hpuk-wrap .hpuk-flow-card-charge {
  top: 10%;
  left: 5%;
}

.hpuk-wrap .hpuk-flow-card-batt {
  top: 38%;
  left: 34%;
  border-color: rgba(160, 255, 212, 0.42);
  box-shadow: 0 20px 48px rgba(31, 111, 92, 0.25);
}

.hpuk-wrap .hpuk-what.is-inview .hpuk-flow-card-batt {
  animation: hpukCardFloat 4.5s ease-in-out infinite;
}

.hpuk-wrap .hpuk-flow-card-home {
  bottom: 10%;
  right: 5%;
}

@keyframes hpukCardFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1); }
}

.hpuk-wrap .hpuk-flow-card-ico {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(31, 111, 92, 0.55) 0%, rgba(15, 53, 40, 0.75) 100%);
  color: #d4ffe8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hpuk-wrap .hpuk-flow-card-ico svg {
  width: 24px;
  height: 24px;
}

.hpuk-wrap .hpuk-flow-card-ico-air {
  color: #fde68a;
  background: linear-gradient(145deg, rgba(253, 224, 71, 0.22) 0%, rgba(31, 111, 92, 0.45) 100%);
}

.hpuk-wrap .hpuk-flow-card-ico-pump {
  color: #a0ffd4;
}

.hpuk-wrap .hpuk-flow-card-ico-home .hpuk-ico-warm {
  color: #fbbf24;
}

.hpuk-wrap .hpuk-flow-card-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.hpuk-wrap .hpuk-flow-card-sub {
  display: block;
  margin-top: 3px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hpuk-wrap .hpuk-flow-link {
  display: none !important;
}

.hpuk-wrap .hpuk-what-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}

.hpuk-wrap .hpuk-what.is-inview .hpuk-what-reveal {
  opacity: 1;
  transform: none;
}

.hpuk-wrap .hpuk-what-visual {
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.85s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hpuk-wrap .hpuk-what.is-inview .hpuk-what-visual {
  opacity: 1;
  transform: none;
}

.hpuk-wrap .hpuk-what-callout {
  margin-top: 8px !important;
  padding: 16px 18px;
  background: linear-gradient(135deg, #e8f5ee 0%, #fff 100%);
  border-left: 4px solid #1f6f5c;
  border-radius: 0 12px 12px 0;
  font-size: 15.5px !important;
  color: #1e3328 !important;
}

.hpuk-wrap .hpuk-what-copy .spuk-h2 {
  margin-top: 0;
}

@media (max-width: 991px) {
  .hpuk-wrap .hpuk-what .spuk-container {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 720px;
  }

  .hpuk-wrap .hpuk-what-copy {
    display: block;
  }
}

@media (max-width: 900px) {
  .hpuk-wrap .hpuk-what {
    padding: 52px 0 60px;
  }

  .hpuk-wrap .hpuk-what-frame {
    min-height: 320px;
    height: auto;
  }

  .hpuk-wrap .hpuk-what-img {
    min-height: 320px;
    height: auto;
  }

  .hpuk-wrap .hpuk-flow-card {
    min-width: 120px;
    padding: 10px 12px;
  }

  .hpuk-wrap .hpuk-flow-card-charge {
    top: 8%;
    left: 4%;
  }

  .hpuk-wrap .hpuk-flow-card-batt {
    top: 34%;
    left: 32%;
  }

  .hpuk-wrap .hpuk-flow-card-home {
    bottom: 8%;
    right: 4%;
  }

  .hpuk-wrap .hpuk-flow-link {
    display: none;
  }
}

/* ── Why UK — dedicated image + stat cards ── */
.hpuk-wrap .hpuk-why {
  padding: 64px 0 72px;
  background: #fff;
}

.hpuk-wrap .hpuk-why .aa-container {
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
}

.hpuk-wrap .hpuk-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.hpuk-wrap .hpuk-why-h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.hpuk-wrap .hpuk-why-accent {
  color: #1f6f5c;
}

.hpuk-wrap .hpuk-why-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hpuk-wrap .hpuk-why-intro {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
}

.hpuk-wrap .hpuk-why-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.hpuk-wrap .hpuk-why-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.hpuk-wrap .hpuk-why-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e8f5ee;
  color: #1f6f5c;
  font-size: 12px;
  font-weight: 800;
}

.hpuk-wrap .hpuk-why-item strong {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.hpuk-wrap .hpuk-why-item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #64748b;
}

.hpuk-wrap .hpuk-why-closer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0fdf8 0%, #f8fafc 100%);
  border: 1px solid rgba(31, 111, 92, 0.15);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  color: #1e3328;
}

.hpuk-wrap .hpuk-why-closer svg {
  flex-shrink: 0;
  color: #1f6f5c;
  margin-top: 2px;
}

.hpuk-wrap .hpuk-why-visual {
  display: flex;
  min-width: 0;
  height: 100%;
}

.hpuk-wrap .hpuk-why-frame {
  position: relative;
  flex: 1;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  min-height: 100%;
  box-shadow:
    0 28px 64px rgba(7, 20, 38, 0.14),
    0 0 0 1px rgba(31, 111, 92, 0.1);
  background: #0a1620;
}

.hpuk-wrap .hpuk-why-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1);
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hpuk-wrap .hpuk-why.is-inview .hpuk-why-img {
  transform: scale(1);
  animation: hpukWhyImgDrift 22s ease-in-out infinite alternate;
}

@keyframes hpukWhyImgDrift {
  0% { transform: scale(1); }
  100% { transform: scale(1.06) translate(-0.5%, 0.5%); }
}

.hpuk-wrap .hpuk-why-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    200deg,
    rgba(7, 20, 38, 0.2) 0%,
    rgba(7, 20, 38, 0.45) 55%,
    rgba(31, 111, 92, 0.12) 100%
  );
  pointer-events: none;
}

.hpuk-wrap .hpuk-why-stat-cards {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hpuk-wrap .hpuk-why-stat-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: 168px;
  padding: 10px 12px;
  background: rgba(11, 28, 48, 0.88);
  border: 1px solid rgba(160, 255, 212, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--card-d, 0ms);
}

.hpuk-wrap .hpuk-why.is-inview .hpuk-why-stat-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hpuk-wrap .hpuk-why.is-inview .hpuk-why-stat-card-featured {
  animation: hpukStatCardPulse 3.2s ease-in-out infinite;
}

@keyframes hpukStatCardPulse {
  0%, 100% { box-shadow: 0 16px 40px rgba(31, 111, 92, 0.2); }
  50% { box-shadow: 0 18px 44px rgba(31, 111, 92, 0.38); }
}

.hpuk-wrap .hpuk-why-stat-ico {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(31, 111, 92, 0.45);
  color: #a0ffd4;
}

.hpuk-wrap .hpuk-why-stat-ico svg {
  width: 18px;
  height: 18px;
}

.hpuk-wrap .hpuk-why-stat-ico-grant {
  background: rgba(160, 255, 212, 0.15);
  color: #d4ffe8;
}

.hpuk-wrap .hpuk-why-stat-ico-clock {
  color: #fde68a;
  background: rgba(253, 224, 71, 0.12);
}

.hpuk-wrap .hpuk-why-stat-ico-life {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.15);
}

.hpuk-wrap .hpuk-why-stat-body {
  min-width: 0;
}

.hpuk-wrap .hpuk-why-stat-card:nth-child(1) {
  top: 10%;
  left: 8%;
}

.hpuk-wrap .hpuk-why-stat-card:nth-child(2) {
  top: 28%;
  right: 8%;
}

.hpuk-wrap .hpuk-why-stat-card-featured {
  border-color: rgba(160, 255, 212, 0.38);
  box-shadow: 0 16px 40px rgba(31, 111, 92, 0.2);
}

.hpuk-wrap .hpuk-why-stat-card:nth-child(3) {
  bottom: 28%;
  left: 10%;
}

.hpuk-wrap .hpuk-why-stat-card:nth-child(4) {
  bottom: 10%;
  right: 10%;
}

.hpuk-wrap .hpuk-why-stat-val {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #a0ffd4;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hpuk-wrap .hpuk-why-stat-lbl {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hpuk-wrap .hpuk-why-visual.hpuk-why-visual {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.85s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hpuk-wrap .hpuk-why.is-inview .hpuk-why-visual.hpuk-why-visual {
  opacity: 1;
  transform: none;
}

.hpuk-wrap .hpuk-why-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}

.hpuk-wrap .hpuk-why.is-inview .hpuk-why-reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 991px) {
  .hpuk-wrap .hpuk-why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 720px;
    margin: 0 auto;
  }

  .hpuk-wrap .hpuk-why-copy {
    display: block;
  }
}

@media (max-width: 900px) {
  .hpuk-wrap .hpuk-why-visual.hpuk-why-visual {
    order: -1;
    transform: translateY(20px);
    height: auto;
  }

  .hpuk-wrap .hpuk-why.is-inview .hpuk-why-visual.hpuk-why-visual {
    transform: none;
  }

  .hpuk-wrap .hpuk-why-frame {
    min-height: 360px;
  }

  .hpuk-wrap .hpuk-why-img {
    min-height: 360px;
    height: auto;
  }

  .hpuk-wrap .sbsuk-energy-steps .hpuk-step-card {
    min-height: 0;
  }
}

/* What Is — plain section label (no pill badge) */
.hpuk-wrap .hpuk-section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1f6f5c;
  margin: 0 0 12px;
  padding: 0;
  background: none;
  border: none;
}


/* Energy steps: charge / store / use */
.hpuk-wrap .sbsuk-energy-steps-head h2 .hpuk-accent-teal {
  color: #7ee8c8;
  text-shadow: 0 0 28px rgba(126, 232, 200, 0.35);
}

.hpuk-wrap .sbsuk-energy-steps {
  background:
    radial-gradient(ellipse 72% 50% at 16% 8%, rgba(31, 111, 92, 0.26) 0%, transparent 56%),
    radial-gradient(ellipse 68% 48% at 86% 90%, rgba(126, 232, 200, 0.08) 0%, transparent 52%),
    linear-gradient(172deg, #010605 0%, #061425 38%, #0a2520 68%, #071426 100%);
}

.hpuk-wrap .hpuk-energy-steps-grid {
  align-items: stretch;
}

.hpuk-wrap .sbsuk-energy-steps .hpuk-step-card {
  display: flex;
  flex-direction: column;
  min-height: 228px;
  border-radius: 16px;
  border-color: rgba(160, 255, 212, 0.18);
  background: linear-gradient(165deg, rgba(10, 28, 44, 0.92), rgba(8, 21, 34, 0.94));
}

.hpuk-wrap .sbsuk-energy-steps .hpuk-step-card p {
  flex: 1;
  margin-top: auto;
}

.hpuk-wrap .sbsuk-energy-steps .hpuk-step-card-featured {
  background: linear-gradient(165deg, rgba(18, 62, 48, 0.92), rgba(10, 33, 28, 0.96));
  border-color: rgba(160, 255, 212, 0.36);
  box-shadow: 0 14px 40px rgba(31, 111, 92, 0.22);
}

.hpuk-wrap .sbsuk-energy-steps .sbsuk-ultra-ico-sun,
.hpuk-wrap .sbsuk-energy-steps .sbsuk-ultra-ico-air {
  opacity: 1;
  transform: none;
}

.hpuk-wrap .sbsuk-ultra-ico-air {
  background: linear-gradient(145deg, rgba(125, 211, 252, 0.22), rgba(31, 111, 92, 0.35));
  color: #a5f3fc;
  border-color: rgba(160, 255, 212, 0.28);
}

.hpuk-wrap .sbsuk-ultra-ico-air .sbsuk-ultra-ico-glow {
  background: radial-gradient(circle, rgba(125, 211, 252, 0.4) 0%, transparent 70%);
}

.hpuk-wrap .hpuk-ico-air-flow {
  animation: hpukAirFlow 2.8s ease-in-out infinite;
}

@keyframes hpukAirFlow {
  0%, 100% { opacity: 0.65; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(1px); }
}

.hpuk-wrap .sbsuk-ultra-ico-pump {
  background: linear-gradient(145deg, rgba(31, 111, 92, 0.55), rgba(7, 20, 38, 0.65));
  color: #a0ffd4;
  border-color: rgba(160, 255, 212, 0.38);
  box-shadow: 0 0 28px rgba(42, 143, 122, 0.25);
}

.hpuk-wrap .sbsuk-ultra-ico-pump .sbsuk-ultra-ico-glow {
  background: radial-gradient(circle, rgba(160, 255, 212, 0.45) 0%, transparent 70%);
  animation: sbsukIcoGlow 2.4s ease-in-out infinite;
}

.hpuk-wrap .hpuk-ico-fan-spin {
  transform-origin: 12px 11.5px;
  animation: hpukFanSpin 3.5s linear infinite;
}

@keyframes hpukFanSpin {
  to { transform: rotate(360deg); }
}

.hpuk-wrap .sbsuk-energy-steps .hpuk-step-card-featured .hpuk-step-ico {
  animation: hpukStepIcoLift 4s ease-in-out infinite;
}

@keyframes hpukStepIcoLift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.04); }
}

.hpuk-wrap .sbsuk-energy-steps .hpuk-step-ico {
  margin-bottom: 14px;
}

.hpuk-wrap .sbsuk-ultra-ico-home .hpuk-ico-warm {
  color: #fbbf24;
}

.hpuk-wrap .sbsuk-energy-steps .hpuk-step-card:hover .hpuk-step-ico {
  transform: scale(1.06);
}

/* With / without solar split cards */
.hpuk-solar-split {
  padding: 72px 0 80px;
  background: #f8fafb;
}

.hpuk-solar-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.hpuk-solar-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 26px 30px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hpuk-solar-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 111, 92, 0.25);
  box-shadow: 0 16px 40px rgba(31, 111, 92, 0.08);
}

.hpuk-solar-card-featured {
  border-color: rgba(31, 111, 92, 0.35);
  background: linear-gradient(165deg, #f0fdf8 0%, #ffffff 55%);
}

.hpuk-solar-card-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f6f5c;
  margin-bottom: 10px;
}

.hpuk-solar-card h3 {
  margin: 0 0 10px !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.02em;
}

.hpuk-solar-card p {
  margin: 0 0 12px !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: #475569 !important;
}

.hpuk-solar-card p:last-child {
  margin-bottom: 0 !important;
}

/* Worth it — three pillars */
.hpuk-wrap .hpuk-worth {
  padding: 28px 0 64px !important;
  background: #fff;
  border-top: none;
}

.hpuk-wrap .hpuk-worth .aa-section-header {
  margin-bottom: 24px !important;
}

.hpuk-worth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 0;
}

.hpuk-worth-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(165deg, #071426 0%, #0a1e30 100%);
  border: 1px solid rgba(160, 255, 212, 0.12);
  border-radius: 18px;
  padding: 22px 20px 24px;
}

.hpuk-worth-card p {
  flex: 1;
}

.hpuk-worth-card h3 {
  margin: 0 0 8px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #a0ffd4 !important;
}

.hpuk-worth-card p {
  margin: 0 !important;
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.58) !important;
}

.hpuk-wrap .sbsuk-cost-ultra {
  background:
    radial-gradient(ellipse 65% 45% at 12% 12%, rgba(31, 111, 92, 0.24) 0%, transparent 55%),
    linear-gradient(168deg, #030a10 0%, #071426 36%, #102335 64%, #0b1b2a 100%);
}

.hpuk-wrap .sbsuk-cost-ultra .sbsuk-cost-table-card,
.hpuk-wrap .hpuk-numbers .sbsuk-cost-table-card {
  border-radius: 16px;
  border-color: rgba(160, 255, 212, 0.22);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.hpuk-wrap .sbsuk-cost-ultra .sbsuk-cost-table {
  background: rgba(8, 24, 40, 0.82);
}

/* UK Pricing — compact layout, no stretched right column */
.hpuk-wrap .sbsuk-cost-ultra-inner {
  padding: 32px clamp(16px, 2.5vw, 32px) 40px;
}

.hpuk-wrap .sbsuk-cost-ultra-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

.hpuk-wrap .hpuk-cost-aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: stretch;
  min-height: 100%;
  min-width: 0;
}

.hpuk-wrap .sbsuk-cost-ultra-table-col {
  align-self: stretch;
}

.hpuk-wrap .sbsuk-cost-ultra .sbsuk-cost-table-card {
  flex: none;
  height: auto;
}

.hpuk-wrap .sbsuk-cost-ultra .sbsuk-cost-table-card table.sbsuk-cost-table {
  height: auto;
}

.hpuk-wrap .sbsuk-cost-ultra-h2 {
  margin: 4px 0 8px !important;
  font-size: clamp(20px, 2.2vw, 30px) !important;
  line-height: 1.18 !important;
}

.hpuk-wrap .sbsuk-cost-ultra-lead {
  margin: 0 0 10px !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
}

.hpuk-wrap .sbsuk-cost-ultra .sbsuk-cost-factors {
  gap: 5px;
  margin-bottom: 10px;
}

.hpuk-wrap .sbsuk-cost-ultra .sbsuk-cost-factors li {
  padding: 7px 10px;
}

.hpuk-wrap .sbsuk-cost-ultra .sbsuk-cost-factors li strong {
  font-size: 11.5px;
}

.hpuk-wrap .sbsuk-cost-ultra .sbsuk-cost-factors li span {
  font-size: 12.5px !important;
  line-height: 1.5 !important;
}

.hpuk-wrap .sbsuk-cost-guarantee {
  padding: 9px 12px;
}

.hpuk-wrap .sbsuk-cost-guarantee p {
  font-size: 13px !important;
}

.hpuk-wrap .sbsuk-cost-ultra .sbsuk-cost-table th,
.hpuk-wrap .sbsuk-cost-ultra .sbsuk-cost-table td {
  padding: 9px 12px;
  font-size: 13px;
}

.hpuk-wrap .sbsuk-cost-ultra .sbsuk-cost-table .sbsuk-tbl-price {
  font-size: 14px;
}

.hpuk-wrap .sbsuk-cost-ultra .sbsuk-cost-table tbody tr {
  height: auto;
}

.hpuk-wrap .sbsuk-cost-ultra .hpuk-pcount {
  font-variant-numeric: tabular-nums;
  display: inline-block;
  min-width: 2.5ch;
}

.hpuk-wrap .sbsuk-cost-ultra.is-inview .hpuk-pcount-go {
  color: #c8ffe8;
}

/* Cost aside foot — fills right column gap */
.hpuk-wrap .hpuk-cost-table-note {
  margin: 0;
  padding: 9px 12px 11px;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(126, 232, 200, 0.12);
}

.hpuk-wrap .hpuk-cost-foot-panel {
  margin-top: auto;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 16px);
  padding: 12px 14px;
  min-height: clamp(100px, 11vh, 136px);
  border-radius: 14px;
  border: 1px solid rgba(126, 232, 200, 0.22);
  background:
    radial-gradient(circle at 20% 50%, rgba(42, 143, 122, 0.24) 0%, transparent 55%),
    linear-gradient(165deg, rgba(8, 22, 36, 0.88) 0%, rgba(6, 16, 28, 0.96) 100%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  position: relative;
}

.hpuk-wrap .hpuk-cost-pump-viz {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}

.hpuk-wrap .hpuk-cost-pump-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px dashed rgba(126, 232, 200, 0.28);
  animation: hpukCostPumpSpin 16s linear infinite;
}

.hpuk-wrap .hpuk-cost-pump-ring-a {
  width: 72px;
  height: 72px;
}

.hpuk-wrap .hpuk-cost-pump-ring-b {
  width: 52px;
  height: 52px;
  border-style: solid;
  border-color: rgba(126, 232, 200, 0.12);
  animation-direction: reverse;
  animation-duration: 11s;
}

.hpuk-wrap .hpuk-cost-pump-fan {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #7ee8c8;
}

.hpuk-wrap .hpuk-cost-pump-fan svg {
  width: 30px;
  height: 30px;
}

.hpuk-wrap .hpuk-cost-pump-fan .hpuk-ico-fan-spin {
  transform-origin: 12px 12px;
  animation: hpukFanSpin 3.5s linear infinite;
}

.hpuk-wrap .hpuk-cost-pump-wave {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 28px;
  height: 3px;
  margin-left: -14px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(126, 232, 200, 0.55), transparent);
  animation: hpukCostWave 2.4s ease-in-out infinite;
}

.hpuk-wrap .hpuk-cost-pump-wave-2 {
  bottom: 14px;
  width: 20px;
  margin-left: -10px;
  opacity: 0.65;
  animation-delay: 0.6s;
}

@keyframes hpukCostPumpSpin {
  to { transform: rotate(360deg); }
}

@keyframes hpukCostWave {
  0%, 100% { opacity: 0.35; transform: scaleX(0.85); }
  50% { opacity: 1; transform: scaleX(1.15); }
}

.hpuk-wrap .hpuk-cost-foot-body {
  flex: 1;
  min-width: 0;
}

.hpuk-wrap .hpuk-cost-foot-kicker {
  display: block;
  margin: 0 0 8px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(126, 232, 200, 0.78);
}

.hpuk-wrap .hpuk-cost-foot-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hpuk-wrap .hpuk-cost-foot-stat {
  padding: 7px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(126, 232, 200, 0.14);
  text-align: center;
}

.hpuk-wrap .hpuk-cost-foot-val {
  display: block;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 800;
  color: #a0ffd4;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hpuk-wrap .hpuk-cost-foot-lbl {
  display: block;
  margin-top: 3px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.3;
}

@media (max-width: 991px) {
  .hpuk-wrap .sbsuk-cost-ultra-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hpuk-wrap .sbsuk-cost-ultra-inner {
    padding: 28px 4% 36px;
  }

  .hpuk-wrap .hpuk-cost-foot-stats {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hpuk-wrap .hpuk-cost-foot-panel {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
  }
}

/* What Makes AORO Different — compact ultra grid */
.hpuk-wrap .hpuk-diff.aa-diff-v2 {
  padding: 52px 0 60px !important;
  background:
    radial-gradient(ellipse 70% 50% at 12% 0%, rgba(31, 111, 92, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, #f8fbfd 0%, #fff 48%, #f4f9f7 100%) !important;
  border-top: 1px solid rgba(31, 111, 92, 0.1);
  border-bottom: 1px solid rgba(31, 111, 92, 0.08);
}

.hpuk-wrap .hpuk-diff .aa-diff2-header {
  margin-bottom: 28px !important;
}

.hpuk-wrap .hpuk-diff-intro {
  max-width: 640px !important;
  margin: 10px auto 0 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.hpuk-wrap .hpuk-diff .aa-diff2-line,
.hpuk-wrap .hpuk-diff .aa-diff2-dot,
.hpuk-wrap .hpuk-diff .aa-diff2-num {
  display: none !important;
}

.hpuk-wrap .hpuk-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.hpuk-wrap .hpuk-diff-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 100%;
  padding: 16px 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(31, 111, 92, 0.14);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.hpuk-wrap .hpuk-diff-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 111, 92, 0.28);
  box-shadow: 0 16px 40px rgba(31, 111, 92, 0.12);
}

.hpuk-wrap .hpuk-diff-card-featured {
  background: linear-gradient(165deg, #071426 0%, #0f3528 52%, #1a5c4a 100%);
  border-color: rgba(160, 255, 212, 0.28);
  box-shadow: 0 14px 44px rgba(7, 20, 38, 0.18);
}

.hpuk-wrap .hpuk-diff-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-bottom: 12px;
}

.hpuk-wrap .hpuk-diff-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #1f6f5c;
  background: rgba(31, 111, 92, 0.1);
  border: 1px solid rgba(31, 111, 92, 0.2);
}

.hpuk-wrap .hpuk-diff-card-featured .hpuk-diff-num {
  color: #a0ffd4;
  background: rgba(160, 255, 212, 0.12);
  border-color: rgba(160, 255, 212, 0.28);
}

.hpuk-wrap .hpuk-diff-ico {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #1f6f5c;
  background: linear-gradient(145deg, rgba(31, 111, 92, 0.12), rgba(240, 249, 244, 0.9));
  border: 1px solid rgba(31, 111, 92, 0.16);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.hpuk-wrap .hpuk-diff-ico svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
}

.hpuk-wrap .hpuk-diff-ico-glow {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(31, 111, 92, 0.2) 0%, transparent 70%);
  opacity: 0.6;
  animation: hpukDiffIcoGlow 3s ease-in-out infinite;
}

@keyframes hpukDiffIcoGlow {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 0.75; transform: scale(1.05); }
}

.hpuk-wrap .hpuk-diff-card:hover .hpuk-diff-ico {
  transform: scale(1.05);
  background: #1f6f5c;
  color: #fff;
  border-color: #1f6f5c;
}

.hpuk-wrap .hpuk-diff-card-featured .hpuk-diff-ico {
  color: #a0ffd4;
  background: rgba(31, 111, 92, 0.35);
  border-color: rgba(160, 255, 212, 0.25);
}

.hpuk-wrap .hpuk-diff-card-featured:hover .hpuk-diff-ico {
  background: rgba(160, 255, 212, 0.2);
  color: #fff;
}

.hpuk-wrap .hpuk-diff-ico-engineering {
  color: #2563eb;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.14), rgba(239, 246, 255, 0.9));
  border-color: rgba(59, 130, 246, 0.2);
}

.hpuk-wrap .hpuk-diff-ico-pricing {
  color: #1f6f5c;
}

.hpuk-wrap .hpuk-diff-ico-performance {
  color: #1f6f5c;
}

.hpuk-wrap .hpuk-diff-ico-engineers {
  color: #475569;
  background: linear-gradient(145deg, rgba(100, 116, 139, 0.12), rgba(248, 250, 252, 0.95));
}

.hpuk-wrap .hpuk-diff-ico-certified {
  color: #0d4a38;
}

.hpuk-wrap .hpuk-diff-ico-support {
  color: #0d9488;
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.12), rgba(240, 253, 250, 0.95));
}

.hpuk-wrap .hpuk-diff-title {
  margin: 0 0 8px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.02em !important;
  color: #0f172a !important;
}

.hpuk-wrap .hpuk-diff-card-featured .hpuk-diff-title {
  color: #fff !important;
}

.hpuk-wrap .hpuk-diff-text {
  margin: 0 !important;
  flex: 1;
  font-size: 13px !important;
  line-height: 1.58 !important;
  color: #64748b !important;
}

.hpuk-wrap .hpuk-diff-card-featured .hpuk-diff-text {
  color: rgba(255, 255, 255, 0.72) !important;
}

.hpuk-wrap .hpuk-diff .aa-reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}

.hpuk-wrap .hpuk-diff .aa-reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .hpuk-wrap .hpuk-diff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .hpuk-wrap .hpuk-diff-grid {
    grid-template-columns: 1fr;
  }

  .hpuk-wrap .hpuk-diff-card {
    padding: 14px 14px 16px;
  }
}

.hpuk-wrap .sbsuk-faq-ultra.sbsuk-faq-light {
  background:
    radial-gradient(circle at 10% 10%, rgba(31, 111, 92, 0.08) 0%, transparent 35%),
    linear-gradient(180deg, #f8fbfd 0%, #eef5f2 100%);
}

.hpuk-wrap .sbsuk-faq-ultra-item {
  border-radius: 14px;
  border: 1px solid rgba(31, 111, 92, 0.18);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

/* ── The Numbers — savings (Battery page only) ── */
.hpuk-numbers {
  position: relative;
  overflow: hidden;
}

.hpuk-numbers-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(165deg, #020a08 0%, #071426 38%, #0a2520 62%, #071426 100%);
}

.hpuk-numbers-bg-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(126, 232, 200, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 232, 200, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.55;
  transform: rotate(-8deg);
  animation: hpukNumbersGridDrift 48s linear infinite;
}

.hpuk-numbers-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
}

.hpuk-numbers-orb-a {
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  left: -8%;
  top: 8%;
  background: rgba(31, 111, 92, 0.38);
  animation: hpukNumbersOrbA 22s ease-in-out infinite;
}

.hpuk-numbers-orb-b {
  width: min(40vw, 400px);
  height: min(40vw, 400px);
  right: 5%;
  bottom: 0;
  background: rgba(126, 232, 200, 0.14);
  animation: hpukNumbersOrbB 18s ease-in-out infinite;
}

.hpuk-numbers-orb-c {
  width: min(28vw, 280px);
  height: min(28vw, 280px);
  left: 42%;
  top: 55%;
  background: rgba(42, 143, 122, 0.2);
  animation: hpukNumbersOrbC 14s ease-in-out infinite;
}

.hpuk-numbers-beam {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(160, 255, 212, 0.03) 42%,
    rgba(160, 255, 212, 0.08) 50%,
    rgba(160, 255, 212, 0.03) 58%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: hpukNumbersBeam 12s ease-in-out infinite;
}

@keyframes hpukNumbersGridDrift {
  0% { transform: rotate(-8deg) translate3d(0, 0, 0); }
  100% { transform: rotate(-8deg) translate3d(56px, 56px, 0); }
}

@keyframes hpukNumbersOrbA {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.75; }
  50% { transform: translate3d(4%, 6%, 0) scale(1.08); opacity: 1; }
}

@keyframes hpukNumbersOrbB {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.5; }
  50% { transform: translate3d(-5%, -4%, 0); opacity: 0.85; }
}

@keyframes hpukNumbersOrbC {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-3%, 5%, 0) scale(1.12); }
}

@keyframes hpukNumbersBeam {
  0%, 100% { background-position: 120% 0; opacity: 0.4; }
  50% { background-position: -20% 0; opacity: 0.9; }
}

.hpuk-numbers-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 88px clamp(20px, 4vw, 48px) 96px;
}

.hpuk-numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 5vw, 72px);
  align-items: stretch;
}

.hpuk-numbers-copy,
.hpuk-numbers-aside {
  min-width: 0;
}

.hpuk-wrap .hpuk-section-label-light {
  color: #7ee8c8;
}

.hpuk-numbers-h2 {
  margin: 0 0 14px !important;
  font-size: clamp(26px, 3.2vw, 40px) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
}

.hpuk-numbers-accent {
  color: #7ee8c8;
  -webkit-text-fill-color: #7ee8c8;
}

.hpuk-numbers-kicker {
  margin: 0 0 18px !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.45 !important;
}

.hpuk-numbers-prose {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.hpuk-numbers-prose p {
  margin: 0 !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: rgba(255, 255, 255, 0.58) !important;
}

.hpuk-numbers-prose strong {
  color: #a0ffd4;
  font-weight: 700;
}

.hpuk-numbers-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 14px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(31, 111, 92, 0.18);
  border: 1px solid rgba(160, 255, 212, 0.22);
  border-left: 3px solid #2a8f7a;
}

.hpuk-numbers-callout p {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.hpuk-numbers-callout strong {
  color: #fff;
  font-weight: 700;
}

.hpuk-numbers-callout-ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 22, 36, 0.55);
  border: 1px solid rgba(160, 255, 212, 0.2);
  color: #a0ffd4;
}

.hpuk-numbers-callout-ico svg,
.hpuk-icon-wall-batt {
  display: block;
  width: 26px;
  height: 26px;
  margin: 0 auto;
}

.hpuk-numbers-lifetime {
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hpuk-numbers-lifetime p {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.52) !important;
}

.hpuk-numbers-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  min-height: 100%;
}

.hpuk-numbers-panel {
  padding: 20px 18px;
  border-radius: 16px;
  background: rgba(8, 20, 32, 0.82);
  border: 1px solid rgba(160, 255, 212, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.hpuk-numbers-panel-head {
  display: block;
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.hpuk-numbers-shift {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hpuk-numbers-shift-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hpuk-numbers-shift-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a0ffd4;
  box-shadow: 0 0 10px rgba(160, 255, 212, 0.7);
  animation: hpukNumbersPulse 2s ease-in-out infinite;
}

@keyframes hpukNumbersPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hpuk-numbers-shift-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hpuk-numbers-shift-track::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 52px;
  bottom: 52px;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  pointer-events: none;
}

.hpuk-wrap .hpuk-numbers.is-inview .hpuk-numbers-shift-track::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 52px;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, #2a8f7a, #a0ffd4);
  border-radius: 2px;
  animation: hpukNumbersRailGrow 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

@keyframes hpukNumbersRailGrow {
  to { height: calc(100% - 104px); }
}

.hpuk-numbers-shift-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hpuk-numbers-step-anim {
  opacity: 0;
  transform: translateX(14px);
}

.hpuk-wrap .hpuk-numbers.is-inview .hpuk-numbers-step-anim {
  animation: hpukNumbersStepIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--step-d, 0ms);
}

@keyframes hpukNumbersStepIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hpuk-numbers-shift-ico-air {
  color: #a5f3fc;
  background: rgba(125, 211, 252, 0.12);
}

.hpuk-shift-air-flow {
  animation: hpukAirFlow 2.8s ease-in-out infinite;
}

.hpuk-numbers-shift-ico-pump {
  background: rgba(31, 111, 92, 0.35);
  border: 1px solid rgba(160, 255, 212, 0.22);
}

.hpuk-numbers-shift-ico-home {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
}

.hpuk-numbers-shift-ico-home .hpuk-ico-warm {
  color: #fbbf24;
}

.hpuk-numbers-shift-step-store {
  border-color: rgba(160, 255, 212, 0.28);
  background: rgba(31, 111, 92, 0.2);
  box-shadow: 0 0 24px rgba(31, 111, 92, 0.15);
}

.hpuk-numbers-shift-ico {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  justify-self: center;
  background: rgba(31, 111, 92, 0.25);
  color: #a0ffd4;
}

.hpuk-numbers-shift-ico svg {
  display: block;
  width: 22px;
  height: 22px;
}

.hpuk-numbers-shift-body {
  min-width: 0;
}

.hpuk-numbers-shift-ico-batt {
  background: rgba(8, 22, 36, 0.65);
  border: 1px solid rgba(160, 255, 212, 0.2);
}

.hpuk-numbers-shift-lbl {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2px;
}

.hpuk-numbers-shift-val {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hpuk-numbers-shift-val small {
  font-size: 11px;
  font-weight: 600;
  color: rgba(160, 255, 212, 0.75);
  margin-left: 4px;
}

.hpuk-numbers-shift-val-muted {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.hpuk-num-count {
  display: inline-block;
  min-width: 1.8em;
  color: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  font-variant-numeric: tabular-nums;
}

.hpuk-num-count[aria-busy="true"] {
  opacity: 0.55;
  animation: hpukNumLoading 0.9s ease-in-out infinite;
}

@keyframes hpukNumLoading {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.85; }
}

.hpuk-num-count-go {
  opacity: 1 !important;
  animation: hpukNumPop 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes hpukNumPop {
  0% { opacity: 0.2; transform: translateY(6px) scale(0.92); filter: blur(2px); }
  70% { transform: translateY(-2px) scale(1.04); filter: blur(0); }
  100% { opacity: 1; transform: none; }
}

.hpuk-wrap .hpuk-numbers.is-inview .hpuk-numbers-metric-val .hpuk-num-count-go {
  text-shadow: 0 0 24px rgba(160, 255, 212, 0.45);
}

.hpuk-numbers-metrics-wrap {
  flex-shrink: 0;
}

.hpuk-numbers-metrics {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
  min-height: 96px;
}

.hpuk-numbers-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 96px;
  padding: 14px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.hpuk-numbers-metric-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(31, 111, 92, 0.3);
  color: #a0ffd4;
}

.hpuk-numbers-metric-ico svg {
  width: 20px;
  height: 20px;
}

.hpuk-numbers-metric-highlight .hpuk-numbers-metric-ico {
  background: rgba(160, 255, 212, 0.15);
  color: #d4ffe8;
}

.hpuk-numbers-metric-highlight {
  background: rgba(31, 111, 92, 0.22);
  border-color: rgba(160, 255, 212, 0.25);
}

.hpuk-numbers-metric-val {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #a0ffd4;
  letter-spacing: -0.02em;
}

.hpuk-numbers-metric-highlight .hpuk-numbers-metric-val {
  color: #fff;
}

.hpuk-numbers-metric-lbl {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.45);
}

.hpuk-numbers-metric-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 96px;
  padding: 0 4px;
  background: none;
  border: none;
  font-size: 20px;
  color: rgba(160, 255, 212, 0.55);
}

.hpuk-numbers-return {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 88px;
  flex-shrink: 0;
}

.hpuk-numbers-return-ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(31, 111, 92, 0.3);
  color: #a0ffd4;
}

.hpuk-numbers-return-ico svg {
  display: block;
  width: 22px;
  height: 22px;
}

.hpuk-numbers-return strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 4px;
}

.hpuk-numbers-return span {
  display: block;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
}

.hpuk-wrap .hpuk-numbers-reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  filter: blur(4px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
  transition-delay: var(--d, 0ms);
}

.hpuk-wrap .hpuk-numbers.is-inview .hpuk-numbers-reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.hpuk-wrap .hpuk-numbers-table-wrap .sbsuk-cost-table-card {
  overflow: hidden;
}

.hpuk-wrap .hpuk-numbers-table tbody .hpuk-table-row {
  opacity: 0;
  transform: translateY(10px);
}

.hpuk-wrap .hpuk-numbers.is-inview .hpuk-numbers-table tbody .hpuk-table-row {
  animation: hpukTableRowIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hpuk-wrap .hpuk-numbers.is-inview .hpuk-numbers-table tbody .hpuk-table-row:nth-child(1) { animation-delay: 0.42s; }
.hpuk-wrap .hpuk-numbers.is-inview .hpuk-numbers-table tbody .hpuk-table-row:nth-child(2) { animation-delay: 0.52s; }
.hpuk-wrap .hpuk-numbers.is-inview .hpuk-numbers-table tbody .hpuk-table-row:nth-child(3) { animation-delay: 0.62s; }
.hpuk-wrap .hpuk-numbers.is-inview .hpuk-numbers-table tbody .hpuk-table-row:nth-child(4) { animation-delay: 0.72s; }

@keyframes hpukTableRowIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hpuk-wrap .hpuk-numbers-table .sbsuk-tbl-price .hpuk-num-count {
  color: #a0ffd4;
  font-weight: 800;
}

.hpuk-wrap .hpuk-numbers-callout,
.hpuk-wrap .hpuk-numbers-lifetime {
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .hpuk-numbers-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hpuk-numbers-aside {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hpuk-numbers-inner {
    padding: 56px 4% 64px;
  }

  .hpuk-numbers-metrics {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 0;
  }

  .hpuk-numbers-metric,
  .hpuk-numbers-metric-arrow {
    min-height: 72px;
  }

  .hpuk-numbers-metric-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hpuk-numbers-shift-dot,
  .hpuk-numbers-bg-grid,
  .hpuk-numbers-orb,
  .hpuk-numbers-beam,
  .hpuk-num-count-go,
  .hpuk-shift-air-flow,
  .hpuk-ico-fan-spin {
    animation: none !important;
  }

  .hpuk-wrap .hpuk-numbers.is-inview .hpuk-numbers-shift-track::after {
    animation: none;
    height: calc(100% - 104px);
  }

  .hpuk-wrap .hpuk-numbers-reveal,
  .hpuk-numbers-step-anim,
  .hpuk-wrap .hpuk-numbers-table tbody .hpuk-table-row {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
  }

  .hpuk-num-count[aria-busy="true"] {
    animation: none;
    opacity: 1;
  }
}

/* ── Installation process (Battery page only) ── */
.hpuk-process {
  position: relative;
  overflow: hidden;
}

.hpuk-process-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(175deg, #010605 0%, #071426 40%, #0a2520 65%, #071426 100%);
}

.hpuk-process-bg-grid {
  position: absolute;
  inset: -15%;
  background-image:
    linear-gradient(rgba(126, 232, 200, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 232, 200, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.5;
  transform: rotate(-6deg);
  animation: hpukProcessGridDrift 52s linear infinite;
}

.hpuk-process-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hpuk-process-orb-a {
  width: min(48vw, 480px);
  height: min(48vw, 480px);
  left: -12%;
  top: 5%;
  background: rgba(31, 111, 92, 0.34);
  animation: hpukProcessOrbA 24s ease-in-out infinite;
}

.hpuk-process-orb-b {
  width: min(36vw, 360px);
  height: min(36vw, 360px);
  left: 28%;
  bottom: -8%;
  background: rgba(126, 232, 200, 0.1);
  animation: hpukProcessOrbB 19s ease-in-out infinite;
}

.hpuk-process-beam {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(160, 255, 212, 0.04) 38%,
    rgba(160, 255, 212, 0.09) 48%,
    rgba(160, 255, 212, 0.04) 58%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: hpukProcessBeam 14s ease-in-out infinite;
}

@keyframes hpukProcessGridDrift {
  0% { transform: rotate(-6deg) translate3d(0, 0, 0); }
  100% { transform: rotate(-6deg) translate3d(52px, 52px, 0); }
}

@keyframes hpukProcessOrbA {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(5%, 4%, 0) scale(1.06); }
}

@keyframes hpukProcessOrbB {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.6; }
  50% { transform: translate3d(3%, -5%, 0); opacity: 1; }
}

@keyframes hpukProcessBeam {
  0%, 100% { background-position: 110% 0; opacity: 0.45; }
  50% { background-position: -10% 0; opacity: 0.95; }
}

.hpuk-process-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px clamp(20px, 4vw, 48px) 80px;
}

.hpuk-process-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.hpuk-process-h2 {
  margin: 0 !important;
  font-size: clamp(26px, 3.2vw, 40px) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
}

.hpuk-process-accent {
  color: #7ee8c8;
  -webkit-text-fill-color: #7ee8c8;
}

.hpuk-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 16px);
}

.hpuk-process-track::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 36px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(160, 255, 212, 0.15) 15%,
    rgba(160, 255, 212, 0.28) 50%,
    rgba(160, 255, 212, 0.15) 85%,
    transparent 100%
  );
  pointer-events: none;
}

.hpuk-process-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px 16px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(160, 255, 212, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.hpuk-process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(160, 255, 212, 0.32);
  background: rgba(31, 111, 92, 0.12);
}

.hpuk-process-card-featured {
  background: rgba(31, 111, 92, 0.2);
  border-color: rgba(160, 255, 212, 0.32);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(160, 255, 212, 0.12);
}

.hpuk-process-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 52px;
}

.hpuk-process-num {
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(160, 255, 212, 0.22);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  user-select: none;
}

.hpuk-process-card:hover .hpuk-process-num,
.hpuk-process-card-featured .hpuk-process-num {
  color: rgba(160, 255, 212, 0.45);
}

.hpuk-process-ico {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(31, 111, 92, 0.32);
  border: 1px solid rgba(160, 255, 212, 0.22);
  color: #a0ffd4;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.hpuk-process-ico svg {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0;
}

.hpuk-process-card:hover .hpuk-process-ico {
  background: #1f6f5c;
  border-color: #a0ffd4;
  color: #fff;
}

.hpuk-process-step-lbl {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(160, 255, 212, 0.5);
  margin-bottom: 6px;
}

.hpuk-process-title {
  margin: 0 0 8px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em;
}

.hpuk-process-text {
  margin: 0 0 14px !important;
  font-size: 12.5px !important;
  line-height: 1.58 !important;
  color: rgba(255, 255, 255, 0.58) !important;
  flex: 1;
}

.hpuk-process-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  color: #a0ffd4;
  background: rgba(31, 111, 92, 0.35);
  border: 1px solid rgba(160, 255, 212, 0.2);
}

.hpuk-wrap .hpuk-process-reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}

.hpuk-wrap .hpuk-process.is-inview .hpuk-process-reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1200px) {
  .hpuk-process-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hpuk-process-track::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hpuk-process-inner {
    padding: 56px 4% 64px;
  }

  .hpuk-process-track {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hpuk-process-bg-grid,
  .hpuk-process-orb,
  .hpuk-process-beam {
    animation: none !important;
  }
}

/* ── Final CTA — Battery page ultra ── */
.hpuk-cta-ultra {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hpuk-wrap .hpuk-cta-has-photo .hpuk-cta-ultra-photo {
  position: absolute;
  inset: -4%;
  z-index: 0;
  background-size: cover;
  background-position: 58% 42%;
  background-repeat: no-repeat;
  opacity: 0.78;
  transform: scale(1.04);
  animation: hpukCtaPhotoKen 32s ease-in-out infinite alternate;
  will-change: transform;
}

.hpuk-wrap .hpuk-cta-has-photo .hpuk-cta-ultra-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 8, 14, 0.55) 0%,
    transparent 42%,
    transparent 58%,
    rgba(2, 10, 18, 0.35) 100%
  );
  pointer-events: none;
}

@keyframes hpukCtaPhotoKen {
  0% { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.1) translate3d(-1.5%, -0.8%, 0); }
}

.hpuk-cta-ultra-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0.42;
}

.hpuk-wrap .hpuk-cta-has-photo .hpuk-cta-ultra-bg {
  background: linear-gradient(
    102deg,
    rgba(2, 8, 14, 0.88) 0%,
    rgba(4, 16, 28, 0.72) 34%,
    rgba(6, 28, 42, 0.48) 58%,
    rgba(4, 18, 30, 0.62) 100%
  );
}

.hpuk-cta-ultra-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(2, 8, 14, 0.96) 0%,
    rgba(4, 16, 28, 0.9) 42%,
    rgba(6, 28, 42, 0.82) 100%
  );
  overflow: hidden;
}

.hpuk-cta-ultra-beam {
  position: absolute;
  top: -30%;
  right: 12%;
  width: min(42vw, 480px);
  height: 140%;
  background: linear-gradient(
    165deg,
    transparent 0%,
    rgba(126, 232, 200, 0.08) 35%,
    rgba(160, 255, 212, 0.14) 50%,
    transparent 72%
  );
  transform: rotate(8deg);
  animation: hpukCtaBeam 14s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hpukCtaBeam {
  0%, 100% { opacity: 0.45; transform: rotate(8deg) translateX(0); }
  50% { opacity: 0.9; transform: rotate(8deg) translateX(-3%); }
}

.hpuk-cta-ultra-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(126, 232, 200, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 232, 200, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
  animation: hpukCtaGridDrift 56s linear infinite;
}

.hpuk-cta-ultra-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hpuk-cta-ultra-orb-a {
  width: min(50vw, 520px);
  height: min(50vw, 520px);
  left: -10%;
  bottom: -15%;
  background: rgba(31, 111, 92, 0.4);
  animation: hpukCtaOrbA 20s ease-in-out infinite;
}

.hpuk-cta-ultra-orb-b {
  width: min(38vw, 380px);
  height: min(38vw, 380px);
  right: 8%;
  top: 10%;
  background: rgba(126, 232, 200, 0.12);
  animation: hpukCtaOrbB 16s ease-in-out infinite;
}

@keyframes hpukCtaGridDrift {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(48px, 48px, 0); }
}

@keyframes hpukCtaOrbA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(4%, -3%, 0); }
}

@keyframes hpukCtaOrbB {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; transform: translate3d(-3%, 4%, 0); }
}

.hpuk-cta-ultra-inner {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  margin: 0 auto;
  padding: 88px clamp(20px, 4vw, 48px) 92px;
}

.hpuk-cta-ultra-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.hpuk-cta-ultra-h2 {
  margin: 0 0 18px !important;
  font-size: clamp(28px, 3.5vw, 44px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  color: #fff !important;
  max-width: 16ch;
}

.hpuk-cta-ultra-subline {
  margin: 0 0 10px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

.hpuk-cta-ultra-lead {
  margin: 0 0 14px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  color: #a0ffd4 !important;
}

.hpuk-wrap .hpuk-numbers-table-wrap {
  margin-bottom: 20px;
}

.hpuk-wrap .hpuk-numbers-table-wrap .sbsuk-cost-table-card {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.hpuk-wrap .hpuk-budget-split.sbsuk-budget-v2 {
  padding: 56px 0 28px !important;
  background: #f8fafb;
  border-top: 1px solid #eef2f6;
}

.hpuk-wrap .hpuk-budget-split .aa-section-header {
  margin-bottom: 28px !important;
}

.hpuk-wrap .hpuk-budget-split .aa-section-sub {
  margin-bottom: 0 !important;
}

.hpuk-wrap .hpuk-budget-split .sbsuk-budget-grid {
  align-items: stretch;
  margin-top: 0;
  gap: 16px;
}

.hpuk-wrap .hpuk-budget-split .sbsuk-budget-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.hpuk-wrap .hpuk-budget-split .sbsuk-budget-card p {
  flex: 1;
  margin-bottom: 0;
}

.hpuk-budget-footer {
  max-width: 720px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hpuk-wrap .hpuk-budget-closer {
  margin: 0 !important;
  padding: 0;
  text-align: center;
  font-size: 15.5px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  color: #475569 !important;
}

.hpuk-budget-closer-sub {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

.hpuk-budget-compare {
  width: 100%;
  margin: 0;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(165deg, #071426 0%, #0a2520 55%, #0f3528 100%);
  border: 1px solid rgba(31, 111, 92, 0.28);
  box-shadow: 0 20px 48px rgba(7, 20, 38, 0.12);
}

.hpuk-budget-compare-head {
  display: block;
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(160, 255, 212, 0.75);
  text-align: center;
}

.hpuk-budget-compare-metrics {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 14px;
}

.hpuk-budget-compare-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.hpuk-budget-compare-metric-highlight {
  background: rgba(31, 111, 92, 0.28);
  border-color: rgba(160, 255, 212, 0.28);
}

.hpuk-budget-compare-val {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #a0ffd4;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hpuk-budget-compare-metric-highlight .hpuk-budget-compare-val {
  color: #fff;
}

.hpuk-budget-compare-lbl {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hpuk-budget-compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(160, 255, 212, 0.55);
}

.hpuk-budget-compare-home {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(160, 255, 212, 0.15);
}

.hpuk-budget-compare-home-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(31, 111, 92, 0.35);
  color: #a0ffd4;
}

.hpuk-budget-compare-home-ico svg {
  width: 24px;
  height: 24px;
}

.hpuk-budget-compare-home-ico .hpuk-ico-warm {
  color: #fbbf24;
}

.hpuk-budget-compare-home-body {
  min-width: 0;
}

.hpuk-budget-compare-home-body strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.hpuk-budget-compare-home-body span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.hpuk-budget-compare-home-body .hpuk-num-count {
  color: #a0ffd4;
}

.hpuk-wrap .hpuk-worth-closer {
  margin: 40px auto 0 !important;
  padding: 20px 0 0;
  text-align: center;
  max-width: 720px;
  font-size: 15px !important;
  line-height: 1.55 !important;
  color: #64748b !important;
  border-top: 1px solid rgba(31, 111, 92, 0.12);
}

.hpuk-cta-ultra-body {
  margin: 0 0 18px !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  max-width: 52ch;
}

.hpuk-cta-ultra-kicker {
  margin: 0 0 12px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75) !important;
}

.hpuk-cta-ultra-points {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hpuk-cta-ultra-points .hpuk-cta-point {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(160, 255, 212, 0.12);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

/* Featured savings — separate ultra AORO block */
.hpuk-cta-save-feature {
  position: relative;
  margin: 16px 0 24px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(160, 255, 212, 0.65) 0%,
    rgba(42, 143, 122, 0.35) 40%,
    rgba(126, 232, 200, 0.5) 100%
  );
  box-shadow:
    0 0 0 1px rgba(160, 255, 212, 0.08),
    0 20px 48px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(31, 111, 92, 0.25);
}

.hpuk-wrap .hpuk-cta-ultra.is-inview .hpuk-cta-save-feature {
  animation: hpukCtaSavePulse 4s ease-in-out 1.2s infinite;
}

@keyframes hpukCtaSavePulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(160, 255, 212, 0.08), 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 32px rgba(31, 111, 92, 0.2); }
  50% { box-shadow: 0 0 0 1px rgba(160, 255, 212, 0.2), 0 24px 56px rgba(0, 0, 0, 0.4), 0 0 56px rgba(126, 232, 200, 0.35); }
}

.hpuk-cta-save-feature-glow {
  position: absolute;
  inset: 8%;
  border-radius: 14px;
  background: radial-gradient(ellipse at 30% 20%, rgba(160, 255, 212, 0.2), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hpuk-cta-save-feature-inner {
  position: relative;
  z-index: 1;
  padding: 18px 18px 16px;
  border-radius: 17px;
  background: linear-gradient(
    145deg,
    rgba(8, 28, 44, 0.95) 0%,
    rgba(6, 22, 36, 0.88) 55%,
    rgba(12, 36, 52, 0.82) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hpuk-cta-save-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a1a14;
  background: linear-gradient(90deg, #a0ffd4, #7ee8c8);
  box-shadow: 0 4px 14px rgba(126, 232, 200, 0.35);
}

.hpuk-cta-save-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 14px;
}

.hpuk-cta-save-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(31, 111, 92, 0.55), rgba(42, 143, 122, 0.25));
  border: 1px solid rgba(160, 255, 212, 0.35);
  color: #a0ffd4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hpuk-cta-save-ico svg {
  width: 26px;
  height: 26px;
}

.hpuk-cta-save-ico .hpuk-ico-warm {
  stroke: #ffb86c;
}

.hpuk-cta-save-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.02em;
}

.hpuk-cta-save-copy span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(160, 255, 212, 0.85);
}

.hpuk-cta-save-stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(160, 255, 212, 0.18);
}

.hpuk-cta-save-stat-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hpuk-cta-save-stat-val {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #a0ffd4;
  font-variant-numeric: tabular-nums;
}

.hpuk-cta-save-stat-sep {
  margin: 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

.hpuk-cta-point-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(31, 111, 92, 0.35);
  color: #a0ffd4;
}

.hpuk-cta-point-ico svg {
  display: block;
  width: 14px;
  height: 14px;
}

.hpuk-cta-ultra-punch {
  margin: 28px 0 10px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  color: #fff !important;
}

.hpuk-cta-ultra-trust {
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-style: italic;
}

.hpuk-cta-ultra-action {
  display: flex;
  justify-content: center;
}

.hpuk-cta-ultra-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 32px 28px 28px;
  border-radius: 22px;
  background: rgba(8, 22, 36, 0.72);
  border: 1px solid rgba(160, 255, 212, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.hpuk-cta-ultra-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(160, 255, 212, 0.35), transparent 45%, rgba(42, 143, 122, 0.25));
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.hpuk-cta-ultra-card > *:not(.hpuk-cta-ultra-card-glow) {
  position: relative;
  z-index: 1;
}

.hpuk-cta-ultra-logo {
  display: block;
  width: auto;
  height: 28px;
  margin: 0 auto 20px;
  opacity: 0.95;
}

.hpuk-cta-ultra-card-lead {
  margin: 0 0 22px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  color: #fff !important;
}

.hpuk-wrap .hpuk-cta-ultra-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 15px;
  margin-bottom: 18px;
}

.hpuk-cta-ultra-micro {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hpuk-cta-ultra-micro li {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(160, 255, 212, 0.65);
}

.hpuk-wrap .hpuk-cta-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}

.hpuk-wrap .hpuk-cta-ultra.is-inview .hpuk-cta-reveal {
  opacity: 1;
  transform: none;
}

.hpuk-wrap .hpuk-cta-ultra.is-inview .hpuk-cta-ultra-card {
  animation: hpukCtaCardIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

@keyframes hpukCtaCardIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .hpuk-cta-ultra-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hpuk-cta-ultra-h2 {
    max-width: none;
  }

  .hpuk-cta-ultra-action {
    justify-content: stretch;
  }

  .hpuk-cta-ultra-card {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hpuk-cta-ultra-inner {
    padding: 64px 4% 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hpuk-cta-ultra-grid,
  .hpuk-cta-ultra-orb,
  .hpuk-cta-ultra-beam,
  .hpuk-wrap .hpuk-cta-has-photo .hpuk-cta-ultra-photo,
  .hpuk-wrap .hpuk-cta-ultra.is-inview .hpuk-cta-save-feature,
  .hpuk-wrap .hpuk-cta-ultra.is-inview .hpuk-cta-ultra-card {
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .hpuk-solar-split-grid,
  .hpuk-budget-compare-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hpuk-budget-compare-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .hpuk-worth-grid {
    grid-template-columns: 1fr;
  }
}

/* The Numbers (#hpuk-numbers) — compact ultra */
.hpuk-wrap #hpuk-numbers.hpuk-numbers-ultra .hpuk-numbers-inner {
  max-width: min(1280px, 100%);
  padding: clamp(40px, 4.5vh, 56px) clamp(18px, 3vw, 36px) clamp(44px, 4.5vh, 60px);
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-h2 {
  margin: 0 0 8px !important;
  font-size: clamp(22px, 2.5vw, 34px) !important;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-kicker {
  margin: 0 0 8px !important;
  font-size: 14px !important;
  line-height: 1.48 !important;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-lead {
  margin: 0 0 10px !important;
  font-size: 13.5px !important;
  line-height: 1.52 !important;
  color: rgba(255, 255, 255, 0.58) !important;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-prose {
  gap: 8px;
  margin-bottom: 10px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-prose p {
  font-size: 13.5px !important;
  line-height: 1.52 !important;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-callout {
  gap: 10px;
  margin: 0 0 8px;
  padding: 12px 14px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-callout p {
  font-size: 12.5px !important;
  line-height: 1.5 !important;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-callout-ico {
  width: 36px;
  height: 36px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-callout-ico svg {
  width: 20px;
  height: 20px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-lifetime {
  padding: 10px 12px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-lifetime p {
  font-size: 12.5px !important;
  line-height: 1.5 !important;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-table-wrap {
  margin-bottom: 10px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-table {
  table-layout: fixed;
  width: 100%;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-table th:first-child,
.hpuk-wrap #hpuk-numbers .hpuk-numbers-table td:first-child {
  width: 52%;
  word-break: break-word;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-table th,
.hpuk-wrap #hpuk-numbers .hpuk-numbers-table td {
  padding: 9px 11px;
  font-size: 12px;
  line-height: 1.35;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-table .sbsuk-tbl-price {
  white-space: normal !important;
  text-align: right !important;
  font-size: 11.5px !important;
}

.hpuk-wrap #hpuk-numbers .hpuk-stat-phrase {
  display: inline;
  white-space: normal;
  letter-spacing: normal;
  word-spacing: normal;
}

.hpuk-wrap #hpuk-numbers .hpuk-stat-phrase .hpuk-num-count {
  display: inline;
  min-width: 0 !important;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-aside {
  gap: 8px;
  min-height: 100%;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-panel {
  padding: 12px 12px 11px;
  border-radius: 14px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-shift {
  flex: 0 0 auto;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-shift-head {
  margin-bottom: 8px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-shift-track {
  gap: 7px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-shift-track::before {
  top: 38px;
  bottom: 38px;
  left: 30px;
}

.hpuk-wrap #hpuk-numbers.is-inview .hpuk-numbers-shift-track::after {
  left: 30px;
  top: 38px;
}

@keyframes hpukNumbersRailGrowCompact {
  to { height: calc(100% - 76px); }
}

.hpuk-wrap #hpuk-numbers.is-inview .hpuk-numbers-shift-track::after {
  animation-name: hpukNumbersRailGrowCompact;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-shift-step {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  min-height: 0;
  padding: 9px 10px;
  border-radius: 10px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-shift-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-shift-ico svg {
  width: 18px;
  height: 18px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-shift-val {
  font-size: 13px;
  line-height: 1.35;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-shift-val small {
  display: inline;
  font-size: 10px;
  margin-left: 0.2em;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-panel-head {
  margin: 0 0 8px;
  font-size: 9px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-metrics {
  gap: 8px;
  min-height: 0;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-metric {
  min-height: 0;
  padding: 10px 8px;
  gap: 5px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-metric-ico {
  width: 30px;
  height: 30px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-metric-val {
  font-size: 14px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-metric-lbl {
  font-size: 9px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-return {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-return-ico {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-return-ico svg {
  width: 18px;
  height: 18px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-return-body {
  min-width: 0;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-return strong {
  display: block;
  font-size: 12.5px;
  line-height: 1.35;
  margin: 0 0 3px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-return span {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.48);
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-foot {
  flex: 1 1 auto;
  margin-top: auto;
  min-height: clamp(96px, 11vh, 128px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(126, 232, 200, 0.22);
  background: linear-gradient(160deg, rgba(42, 143, 122, 0.2) 0%, rgba(8, 18, 28, 0.72) 100%);
  overflow: hidden;
  position: relative;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-copy {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
  max-width: calc(100% - 78px);
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 4px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(126, 232, 200, 0.82);
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ee8c8;
  box-shadow: 0 0 8px rgba(126, 232, 200, 0.75);
  animation: hpukNumbersPulse 2s ease-in-out infinite;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-copy p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 7px 0 0;
  padding: 0;
  list-style: none;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-tags li {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid rgba(126, 232, 200, 0.22);
  color: rgba(160, 255, 212, 0.78);
  animation: hpukCostWave 2.4s ease-in-out infinite;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-tags li:nth-child(2) { animation-delay: 0.55s; }
.hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-tags li:nth-child(3) { animation-delay: 1.1s; }

.hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-viz {
  position: relative;
  flex-shrink: 0;
  width: 68px;
  height: 68px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(126, 232, 200, 0.24);
  animation: hpukCostPumpSpin 14s linear infinite;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-fan {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #7ee8c8;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-fan svg {
  width: 28px;
  height: 28px;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-fan .hpuk-ico-fan-spin {
  transform-origin: 12px 12px;
  animation: hpukFanSpin 3.5s linear infinite;
}

.hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-wave {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 24px;
  height: 3px;
  margin-left: -12px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(126, 232, 200, 0.55), transparent);
  animation: hpukCostWave 2.4s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .hpuk-wrap #hpuk-numbers .hpuk-numbers-grid {
    grid-template-columns: 1fr;
  }

  .hpuk-wrap #hpuk-numbers .hpuk-numbers-aside {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .hpuk-wrap #hpuk-numbers .hpuk-numbers-foot {
    min-height: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-dot,
  .hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-tags li,
  .hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-ring,
  .hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-fan .hpuk-ico-fan-spin,
  .hpuk-wrap #hpuk-numbers .hpuk-numbers-foot-wave {
    animation: none !important;
  }
}

/* Heat Pump CTA (#free-heat-pump-quote) — compact ultra */
.hpuk-wrap #free-heat-pump-quote.hpuk-cta-has-photo .hpuk-cta-ultra-photo::after {
  background: linear-gradient(
    90deg,
    rgba(2, 8, 14, 0.48) 0%,
    rgba(2, 8, 14, 0.16) 38%,
    rgba(2, 10, 18, 0.12) 62%,
    rgba(2, 10, 18, 0.36) 100%
  );
}

.hpuk-wrap #free-heat-pump-quote.hpuk-cta-has-photo .hpuk-cta-ultra-bg {
  background: linear-gradient(
    102deg,
    rgba(2, 8, 14, 0.6) 0%,
    rgba(4, 16, 28, 0.4) 36%,
    rgba(6, 28, 42, 0.24) 58%,
    rgba(4, 18, 30, 0.42) 100%
  );
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-inner {
  max-width: min(1320px, 96vw);
  padding: clamp(32px, 4vh, 44px) clamp(18px, 2.5vw, 32px);
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-layout {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(16px, 2vw, 24px);
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-copy,
.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-action {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-action {
  align-self: stretch;
  justify-content: stretch;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-stack {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  width: 100%;
  max-width: none;
  gap: 10px;
  justify-content: flex-start;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-h2 {
  margin: 0 0 8px !important;
  font-size: clamp(24px, 2.8vw, 38px) !important;
  line-height: 1.12 !important;
  max-width: none;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-subline {
  margin: 0 0 6px !important;
  font-size: 14px !important;
  line-height: 1.48 !important;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-lead {
  margin: 0 0 8px !important;
  font-size: clamp(16px, 1.6vw, 18px) !important;
  line-height: 1.42 !important;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-body {
  margin: 0 0 10px !important;
  font-size: 13.5px !important;
  line-height: 1.52 !important;
  max-width: none;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-kicker {
  margin: 0 0 6px !important;
  font-size: 11.5px !important;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0 0 10px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-points .hpuk-cta-point {
  padding: 9px 10px;
  gap: 7px;
  font-size: 12px;
  line-height: 1.38;
  border-radius: 10px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-point-ico {
  width: 22px;
  height: 22px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-point-ico svg {
  width: 12px;
  height: 12px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-punch {
  margin: auto 0 4px !important;
  font-size: 13.5px !important;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-trust {
  margin: 0 !important;
  font-size: 12px !important;
  opacity: 0.72;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-card {
  max-width: none;
  padding: 14px 14px 12px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-card-lead {
  margin-bottom: 10px !important;
  font-size: 13.5px !important;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-logo {
  height: 20px;
  max-width: 80px;
  margin-bottom: 8px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-micro {
  gap: 5px;
  margin-top: 10px;
  padding-top: 10px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-micro li {
  font-size: 11px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 14px;
  white-space: normal;
  text-align: center;
  line-height: 1.32;
  min-height: 46px;
  padding: 12px 14px;
  font-size: clamp(13px, 1.4vw, 14px);
  margin-bottom: 0;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-save-feature {
  margin: 0;
  flex: 0 0 auto;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-save-feature-inner {
  padding: 11px 11px 10px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-save-badge {
  margin-bottom: 8px;
  padding: 4px 8px;
  font-size: 9px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-save-head {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  margin-bottom: 9px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-save-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-save-ico svg {
  width: 20px;
  height: 20px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-save-copy strong {
  margin-bottom: 2px;
  font-size: 13px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-save-copy span {
  font-size: 11px;
  line-height: 1.42;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-save-stat {
  padding: 8px 10px;
  gap: 6px 10px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-save-stat-lbl {
  font-size: 10px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-save-stat-val {
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: normal;
  word-spacing: normal;
  line-height: 1.3;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-stat-phrase {
  display: inline;
  white-space: normal;
  letter-spacing: normal;
  word-spacing: normal;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-stat-phrase .hpuk-num-count {
  display: inline;
  min-width: 0 !important;
}

/* Energy foot — fills bottom-right gap */
.hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy {
  flex: 1 1 auto;
  margin-top: auto;
  min-height: clamp(112px, 13vh, 150px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  overflow: hidden;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(126, 232, 200, 0.22);
  background: linear-gradient(160deg, rgba(42, 143, 122, 0.2) 0%, rgba(8, 18, 28, 0.72) 100%);
  box-shadow: inset 0 1px 0 rgba(160, 255, 212, 0.08);
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-copy {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
  max-width: calc(100% - 78px);
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 4px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(126, 232, 200, 0.82);
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ee8c8;
  box-shadow: 0 0 8px rgba(126, 232, 200, 0.75);
  animation: hpukNumbersPulse 2s ease-in-out infinite;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-copy p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 7px 0 0;
  padding: 0;
  list-style: none;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-tags li {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid rgba(126, 232, 200, 0.22);
  color: rgba(160, 255, 212, 0.78);
  animation: hpukCostWave 2.4s ease-in-out infinite;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-tags li:nth-child(2) { animation-delay: 0.55s; }
.hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-tags li:nth-child(3) { animation-delay: 1.1s; }

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-viz {
  position: relative;
  flex-shrink: 0;
  width: 68px;
  height: 68px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(126, 232, 200, 0.24);
  animation: hpukCostPumpSpin 14s linear infinite;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-fan {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #7ee8c8;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-fan svg {
  width: 28px;
  height: 28px;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-fan .hpuk-ico-fan-spin {
  transform-origin: 12px 12px;
  animation: hpukFanSpin 3.5s linear infinite;
}

.hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-wave {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 24px;
  height: 3px;
  margin-left: -12px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(126, 232, 200, 0.55), transparent);
  animation: hpukCostWave 2.4s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-stack {
    min-height: 0;
  }

  .hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy {
    min-height: 120px;
  }

  .hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hpuk-wrap #free-heat-pump-quote .hpuk-cta-ultra-inner {
    padding: 28px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-dot,
  .hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-tags li,
  .hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-ring,
  .hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-fan .hpuk-ico-fan-spin,
  .hpuk-wrap #free-heat-pump-quote .hpuk-cta-energy-wave {
    animation: none !important;
  }
}
