:root {
  --green: #1f6b4f;
  --green-dark: #164836;
  --ink: #151a18;
  --muted: #666d69;
  --line: #dce2de;
  --soft: #f3f1ea;
  --soft-2: #e9ece9;
  --white: #ffffff;
  --accent: #b86f42;
  --shadow: 0 18px 48px rgba(21, 26, 24, 0.14);
  --radius: 8px;
  --max: 1180px;
  --header: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  opacity: 0;
  transition: opacity 180ms ease;
  overflow-x: hidden;
}

body.is-loaded {
  opacity: 1;
}

body.nav-open {
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 5.4vw, 4.6rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 226, 222, 0.85);
  backdrop-filter: blur(14px);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-compact {
  min-height: 70px;
  box-shadow: 0 12px 36px rgba(21, 26, 24, 0.08);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: inherit;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-logo-wordmark {
  width: 128px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.brand-logo-full {
  width: clamp(190px, 19vw, 232px);
  max-width: calc(100vw - 112px);
  height: auto;
  display: block;
  flex: 0 1 auto;
}

.site-header.is-compact .brand-logo-full {
  width: clamp(184px, 17vw, 210px);
}

.site-footer .brand-logo-mark {
  width: 46px;
  height: 46px;
}

.site-footer .brand-logo-wordmark {
  width: 156px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
}

.primary-nav li {
  position: relative;
}

.nav-item--services::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
  display: none;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #313936;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.nav-services-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-services-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 20;
  min-width: 220px;
  display: grid !important;
  gap: 4px !important;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 48px rgba(21, 26, 24, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-item--services:hover .nav-services-menu,
.nav-item--services:focus-within .nav-services-menu,
.nav-item--services.is-open .nav-services-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-item--services:hover::after,
.nav-item--services:focus-within::after,
.nav-item--services.is-open::after {
  display: block;
}

.nav-services-menu a {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-bottom: 0;
  border-radius: 6px;
  color: #313936;
  font-size: 0.9rem;
}

.nav-services-menu a:hover,
.nav-services-menu a:focus,
.nav-services-menu a[aria-current="page"] {
  background: #e5f3ed;
  color: var(--green);
  border-bottom-color: transparent;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a[aria-current="page"] {
  color: var(--green);
  border-bottom-color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--green-dark);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: rotate(90deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(31, 107, 79, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--green-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(21, 26, 24, 0.18);
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: var(--green);
  color: var(--green);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
  box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--green);
  color: var(--white);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover,
.btn-dark:focus {
  background: #26302c;
}

.btn.is-disabled {
  opacity: 0.62;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.section {
  padding: 86px 24px;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.dark p,
.section.dark .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading p {
  font-size: 1.07rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  aspect-ratio: 2172 / 724;
  min-height: min(620px, calc(100vw * 724 / 2172));
  padding: 80px 24px 48px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(13, 18, 16, 0.34), rgba(13, 18, 16, 0.24)),
    url("../images/solar-farm-hero-v2.png") center / cover no-repeat;
  background-color: #271b10;
}

.hero-inner {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-6px);
}

.hero h1 {
  max-width: none;
  color: var(--white);
  font-size: clamp(3.6rem, 4.6vw, 4.25rem);
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.hero p {
  max-width: 680px;
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.hero-availability {
  display: flex;
  width: min(620px, 100%);
  min-height: 62px;
  margin: 30px auto 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hero-postcode-field {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  background: var(--white);
  color: #5f6864;
  font-weight: 800;
  text-align: left;
}

.hero-postcode-field label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero-postcode-field input {
  width: 100%;
  min-height: 62px;
  border: 0;
  padding: 0 22px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  outline-offset: -4px;
}

.hero-postcode-field input::placeholder {
  color: #5f6864;
  opacity: 1;
}

.hero-postcode-button {
  flex: 0 0 auto;
  min-width: 210px;
  padding: 0 26px;
  border: 0;
  border-radius: 0;
  background: var(--green);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-postcode-button:hover,
.hero-postcode-button:focus {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.hero p.hero-trust-line {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.4;
}

.service-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.service-labels span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  font-weight: 800;
}

.solar-growth-section {
  width: 100%;
  padding: 76px 0;
  background: #f4f6f5;
}

.solar-growth-container {
  width: min(1180px, calc(100% - 96px));
  margin-inline: auto;
}

.solar-growth-layout {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  gap: 56px;
  align-items: center;
  text-align: left;
}

.solar-growth-content {
  width: 100%;
  max-width: 510px;
  justify-self: start;
}

.solar-growth-content h2 {
  font-size: clamp(1.95rem, 2.65vw, 2.65rem);
  line-height: 1.16;
}

.copy-divider {
  width: 100%;
  height: 1px;
  margin: 16px 0 17px;
  background: var(--line);
}

.solar-growth-content p {
  color: #33415a;
  font-size: 0.98rem;
  line-height: 1.42;
}

.solar-growth-content p + p {
  margin-top: 16px;
}

.solar-growth-content .btn {
  min-height: 42px;
  margin-top: 22px;
  padding-top: 10px;
  padding-bottom: 10px;
  min-width: 204px;
}

.solar-growth-media {
  width: 100%;
  min-height: 0;
  display: grid;
  align-items: center;
  justify-self: stretch;
}

.solar-growth-main {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.45 / 1;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(21, 26, 24, 0.1);
}

.service-benefits {
  background: #f7fbf8;
  padding: 66px 24px 68px;
}

.service-benefits__container {
  max-width: 1180px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
  align-items: start;
  justify-items: center;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  width: 100%;
  max-width: 270px;
}

.benefit-icon-wrapper {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: #006b45;
  transition: transform 200ms ease, color 200ms ease;
}

.benefit-item:hover .benefit-icon-wrapper {
  color: #00583a;
  transform: translateY(-2px);
}

.benefit-icon-wrapper img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
}

.benefit-icon {
  width: 68px;
  height: 68px;
  display: block;
  overflow: visible;
}

.benefit-icon path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.benefit-icon__primary {
  stroke: #0067b1;
}

.benefit-icon__secondary {
  stroke: #00865a;
}

.benefit-icon__accent {
  stroke: #78bd3f;
}

.benefit-icon--quote .benefit-icon__accent {
  fill: #78bd3f;
  stroke: #78bd3f;
}

.benefit-description {
  max-width: 270px;
  margin: 0 auto;
  text-align: center;
  color: #102b26;
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.42;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.media-grid.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.media-grid.reverse .media-copy {
  order: 2;
}

.media-grid.reverse .media-frame {
  order: 1;
}

.media-copy {
  display: grid;
  gap: 20px;
}

.media-frame {
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--soft-2);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.service-list {
  display: grid;
  gap: 20px;
}

.service-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.service-row:first-child {
  border-top: 1px solid var(--line);
}

.service-number {
  color: var(--accent);
  font-weight: 900;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

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

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

.card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  display: grid;
  align-content: start;
  gap: 14px;
}

.card h3 {
  font-size: 1.18rem;
}

.card p {
  font-size: 0.96rem;
}

.icon-square {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--green);
  display: inline-grid;
  place-items: center;
  font-weight: 900;
}

.industry-section {
  padding: 92px 24px 98px;
  background: #f7fbf8;
}

.section.soft.industry-section {
  background: #f7fbf8;
}

.industry-heading {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.industry-heading h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(2.6rem, 3.8vw, 3.15rem);
  line-height: 1.08;
}

.industry-heading h2 span {
  display: block;
}

.industry-heading p {
  max-width: 800px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.66;
}

.industry-container {
  max-width: 1120px;
  margin: 0 auto;
}

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

.industry-card {
  position: relative;
  min-height: 246px;
  overflow: hidden;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  text-align: center;
  isolation: isolate;
  transform: translateZ(0);
}

.industry-card::before,
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 220ms ease, transform 260ms ease;
}

.industry-card::before {
  z-index: 0;
  background-image: var(--card-image);
  background-position: var(--card-position, center);
  background-size: cover;
  background-repeat: no-repeat;
}

.industry-card::after {
  z-index: 1;
  background:
    linear-gradient(to top, rgba(10, 18, 24, 0.62), rgba(10, 18, 24, 0.24) 55%, rgba(10, 18, 24, 0.1)),
    rgba(9, 18, 24, 0.1);
}

.industry-card:hover::before,
.industry-card:focus-visible::before {
  transform: scale(1.045);
}

.industry-card:hover::after,
.industry-card:focus-visible::after {
  opacity: 0.92;
}

.industry-card h3 {
  position: relative;
  z-index: 2;
  max-width: 210px;
  color: var(--white);
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.industry-card-pricing {
  --card-image: url("../images/industry-cards/pricing-quotes.jpg");
  --card-position: center 48%;
}

.industry-card-collect {
  --card-image: url("../images/industry-cards/what-we-collect.jpg");
  --card-position: center 50%;
}

.industry-card-commercial {
  --card-image: url("../images/industry-cards/commercial-services.jpg");
  --card-position: center 52%;
}

.industry-card-utility {
  --card-image: url("../images/industry-cards/utility-scale-solar.jpg");
  --card-position: center 52%;
}

.quote-estimator-section {
  background: var(--green-dark);
  color: var(--white);
  padding-top: 88px;
  padding-bottom: 92px;
}

.quote-estimator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(360px, 0.42fr);
  gap: 72px;
  align-items: center;
  justify-content: space-between;
}

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

.quote-estimator-copy .eyebrow {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.quote-estimator-copy h2 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 3.45rem);
}

.quote-estimator-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.65;
}

.quote-estimator-copy .btn {
  width: fit-content;
  margin-top: 4px;
}

.quote-estimator-copy .btn:hover,
.quote-estimator-copy .btn:focus {
  background: #f4f6f5;
  border-color: #f4f6f5;
  color: var(--green-dark);
  transform: translateY(-2px);
}

.quote-estimator-note {
  font-size: 0.94rem !important;
}

.quote-estimator-preview {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 28px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dfe4e1;
}

.preview-header span,
.preview-field span,
.preview-result span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preview-header strong {
  color: var(--green);
  font-size: 0.92rem;
}

.preview-fields {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.preview-field {
  display: grid;
  gap: 7px;
  padding: 14px 16px;
  border: 1px solid #dfe4e1;
  border-radius: 6px;
  background: #f4f6f5;
}

.preview-field strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.35;
}

.preview-result {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
}

.preview-result span,
.preview-result small {
  color: rgba(255, 255, 255, 0.78);
}

.preview-result strong {
  display: block;
  margin-top: 2px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.preview-result small {
  max-width: 130px;
  text-align: right;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.estimator-page-section {
  min-height: auto;
  padding: clamp(56px, 7vw, 78px) 24px clamp(62px, 7vw, 82px);
  background: var(--green-dark);
  color: var(--white);
}

.estimator-page-container {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(390px, 0.46fr);
  gap: 72px;
  align-items: center;
  justify-content: space-between;
}

.estimator-intro {
  display: grid;
  gap: 22px;
}

.estimator-intro h1 {
  color: var(--white);
  font-size: clamp(2.75rem, 4.8vw, 4.35rem);
}

.estimator-intro p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
}

.estimator-intro .btn {
  width: fit-content;
  margin-top: 4px;
}

.estimator-intro small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.estimator-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
}

.estimator-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dfe4e1;
}

.estimator-card__header span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.estimator-card__header strong {
  color: var(--green);
  font-size: 0.92rem;
}

.estimator-fields {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.estimator-field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.estimator-field label,
.estimator-loading-field legend {
  color: #303834;
  font-weight: 850;
}

.estimator-field input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfd7d2;
  border-radius: 6px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
}

.estimator-field input:focus {
  outline: 3px solid rgba(31, 107, 79, 0.18);
  border-color: var(--green);
}

.estimator-field-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.estimator-field-note--success {
  color: var(--green);
  font-weight: 800;
}

.estimator-field-note--error {
  color: #a3412d;
  font-weight: 800;
}

.estimator-field-note--warning {
  padding: 11px 12px;
  border: 1px solid rgba(184, 111, 66, 0.24);
  border-radius: 6px;
  background: #fff8f1;
  color: #73513d;
}

.postcode-location {
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.postcode-location--success {
  color: var(--green);
  font-weight: 800;
}

.postcode-location--error {
  color: #a3412d;
  font-weight: 800;
}

.estimator-loading-field {
  margin: 0;
  padding: 0;
  border: 0;
}

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

.loading-choice {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f4f6f5;
  cursor: pointer;
}

.loading-choice.is-selected {
  border-color: rgba(31, 107, 79, 0.42);
  background: #edf7f2;
}

.loading-choice input {
  grid-row: 1 / span 2;
  margin-top: 4px;
  accent-color: var(--green);
}

.loading-choice span {
  font-weight: 900;
  line-height: 1.25;
}

.loading-choice small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.estimator-result {
  min-height: 132px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #dfe4e1;
}

.estimator-result > p,
.estimate-error {
  padding: 16px;
  border-radius: 6px;
  background: #f4f6f5;
}

.estimate-error {
  color: #a3412d;
  font-weight: 800;
}

.estimate-breakdown h3,
.estimate-message h3 {
  font-size: 1.24rem;
}

.estimate-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid #e4e9e6;
}

.estimate-row span {
  min-width: 0;
  color: #303834;
  font-weight: 800;
}

.estimate-row small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}

.estimate-row strong {
  flex: 0 0 auto;
  color: var(--ink);
}

.estimate-total {
  margin-top: 16px;
  padding: 18px;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
}

.estimate-total span,
.estimate-total small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.estimate-total strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.estimate-total small {
  margin-top: 8px;
}

.estimate-disclaimer {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.estimate-disclaimer p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.estimate-message {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(184, 111, 66, 0.24);
  border-radius: 6px;
  background: #fff8f1;
}

.estimate-message p {
  color: #5c4739;
}

.estimate-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.estimator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
}

.estimator-actions .btn {
  flex: 1 1 260px;
}

.estimator-reset {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 900;
  cursor: pointer;
}

.estimator-reset:hover,
.estimator-reset:focus {
  color: var(--green-dark);
  text-decoration: underline;
}

.quote-estimate-summary {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(31, 107, 79, 0.22);
  border-radius: var(--radius);
  background: #f4f6f5;
}

.quote-estimate-summary__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.quote-estimate-summary__header span,
.quote-estimate-summary dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-estimate-summary__header strong {
  color: var(--green);
  font-size: 1.45rem;
  line-height: 1;
  text-align: right;
}

.quote-estimate-summary__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.quote-estimate-summary__grid div {
  min-width: 0;
}

.quote-estimate-summary dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.35;
}

.quote-estimate-summary p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.choose-appointment-page {
  background: var(--green-dark);
}

.appointment-page-section {
  min-height: auto;
  padding: clamp(56px, 7vw, 78px) 24px clamp(62px, 7vw, 82px);
  background: var(--green-dark);
  color: var(--white);
}

.appointment-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.47fr) minmax(410px, 0.47fr);
  gap: 72px;
  align-items: center;
  justify-content: space-between;
}

.appointment-heading {
  min-width: 0;
  display: grid;
  gap: 20px;
  align-content: center;
}

.appointment-heading h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 4.55rem);
  line-height: 0.98;
}

.appointment-heading p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
}

.appointment-benefits {
  max-width: 650px;
  display: grid;
  gap: 16px;
  padding-top: 4px;
}

.appointment-benefits h2 {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.2;
}

.appointment-benefit-list {
  display: grid;
  gap: 16px;
}

.appointment-benefit {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.appointment-benefit span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: transparent;
  color: #9ad778;
  font-size: 1.3rem;
  font-weight: 950;
}

.appointment-benefit strong {
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 950;
  line-height: 1.25;
}

.appointment-trust-note {
  max-width: 650px;
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.55;
}

.appointment-empty,
.appointment-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
}

.appointment-empty {
  display: grid;
  gap: 16px;
  text-align: left;
}

.appointment-empty h2 {
  font-size: 1.35rem;
  line-height: 1.18;
}

.appointment-card {
  display: grid;
  gap: 18px;
  animation: booking-card-in 220ms ease both;
}

@keyframes booking-card-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.appointment-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dfe4e1;
}

.appointment-card__header span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.appointment-card__header h2 {
  margin-top: 5px;
  color: var(--ink);
  font-size: 1.45rem;
}

.estimate-summary-pill {
  flex: 0 0 auto;
  max-width: none;
  padding: 8px 12px;
  border: 1px solid rgba(31, 107, 79, 0.2);
  border-radius: 999px;
  background: #eef8f3;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.estimate-summary-pill:hover {
  border-color: rgba(31, 107, 79, 0.42);
  background: #e3f2eb;
}

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

.booking-progress span {
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid #dfe4e1;
  border-radius: 6px;
  background: #f8faf8;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.booking-progress span.is-active,
.booking-progress span.is-complete {
  border-color: rgba(31, 107, 79, 0.32);
  background: #edf7f2;
  color: var(--green);
}

.booking-step {
  overflow: hidden;
  border: 1px solid #dfe4e1;
  border-radius: 6px;
  background: var(--white);
}

.booking-step + .booking-step {
  margin-top: -6px;
}

.booking-step.is-active {
  border-color: rgba(31, 107, 79, 0.34);
  box-shadow: 0 10px 24px rgba(21, 26, 24, 0.06);
}

.booking-step h2 {
  font-size: 1rem;
}

.booking-step h2 button {
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: auto minmax(92px, max-content) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 0;
  background: #f8faf8;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.booking-step.is-active h2 button {
  background: var(--white);
}

.booking-step h2 button:focus-visible {
  outline: 3px solid rgba(31, 107, 79, 0.22);
  outline-offset: -3px;
}

.booking-step h2 button:disabled {
  cursor: not-allowed;
}

.booking-step__number {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
}

.booking-step__title {
  min-width: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 950;
}

.booking-step.is-upcoming .booking-step__title,
.booking-step.is-upcoming .booking-step__number {
  color: var(--muted);
}

.booking-step__summary {
  min-width: 0;
  justify-self: end;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: right;
  white-space: nowrap;
}

.booking-step__status {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--green);
  font-weight: 950;
}

.booking-step__body {
  display: grid;
  gap: 16px;
  padding: 0 18px 22px;
}

.booking-step__body h3 {
  color: var(--ink);
  font-size: 1.12rem;
}

.appointment-good-news {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(31, 107, 79, 0.2);
  border-radius: 6px;
  background: #eef8f3;
}

.appointment-good-news strong {
  color: var(--green-dark);
  font-size: 0.95rem;
  line-height: 1.35;
}

.appointment-good-news span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.45;
}

.availability-status {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.45;
}

.availability-status:empty {
  display: none;
}

.availability-status--success {
  color: var(--muted);
}

.availability-status--error {
  padding: 12px;
  border: 1px solid rgba(163, 65, 45, 0.22);
  border-radius: 6px;
  background: #fff6f3;
  color: #8c3c2b;
}

.appointment-selector {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.appointment-selector--slots {
  margin: 0;
  padding: 0;
  border: 0;
}

.appointment-native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.appointment-date-options {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.appointment-date-card,
.appointment-slot-card {
  min-width: 0;
  border: 1px solid #dfe4e1;
  border-radius: 6px;
  background: #f8faf8;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.appointment-date-card {
  min-height: 96px;
  display: grid;
  gap: 5px;
  justify-items: center;
  align-content: center;
  padding: 10px 8px;
  text-align: center;
}

.appointment-date-card:hover,
.appointment-slot-card:hover {
  border-color: rgba(31, 107, 79, 0.3);
  background: #f1f7f4;
}

.appointment-date-card.is-selected,
.appointment-slot-card.is-selected {
  border-color: rgba(31, 107, 79, 0.55);
  background: #edf7f2;
}

.appointment-date-card:disabled,
.appointment-slot-card:disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.6;
}

.appointment-date-card__icon,
.appointment-slot-card__icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.appointment-date-card svg,
.appointment-slot-card svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.appointment-date-card strong {
  color: var(--green-dark);
  font-size: 0.9rem;
  line-height: 1.1;
}

.appointment-date-card span:not(.appointment-date-card__icon) {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
}

.appointment-slot-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.appointment-slot-card {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  text-align: left;
}

.appointment-slot-card > span:last-child {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.appointment-slot-card strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.95rem;
  line-height: 1.2;
}

.appointment-slot-card small {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.booking-note {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.appointment-note {
  display: grid;
  gap: 2px;
  justify-items: center;
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.32;
  text-align: center;
}

.appointment-note strong {
  color: var(--ink);
  font-weight: 950;
}

.appointment-note span {
  color: #303834;
  font-weight: 650;
}

.booking-primary-action {
  width: 100%;
}

.booking-primary-action:disabled,
.pickup-details-form button:disabled {
  opacity: 0.62;
  box-shadow: none;
  cursor: not-allowed;
}

.booking-back-link,
.booking-edit-link {
  width: fit-content;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.booking-back-link {
  justify-self: center;
}

.booking-summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
}

.booking-summary-grid div {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #e0e6e2;
  border-radius: 6px;
  background: #f8faf8;
}

.booking-summary-grid dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-summary-grid dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.28;
}

.pickup-details-form {
  display: grid;
  gap: 18px;
}

.pickup-postcode-field {
  align-self: start;
}

.postcode-readonly {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 13px;
  border: 1px solid rgba(31, 107, 79, 0.2);
  border-radius: 6px;
  background: #eef8f3;
  color: var(--green-dark);
  font-weight: 950;
}

.site-access-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.site-access-field legend {
  margin-bottom: 9px;
  color: #303834;
  font-weight: 850;
}

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

.site-access-option {
  min-width: 0;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid #dfe4e1;
  border-radius: 6px;
  background: #f8faf8;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.site-access-option:hover {
  border-color: rgba(31, 107, 79, 0.32);
  background: #f1f7f4;
}

.site-access-option.is-selected {
  border-color: rgba(31, 107, 79, 0.55);
  background: #edf7f2;
}

.site-access-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.site-access-option span {
  color: #303834;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.25;
}

.site-access-option--wide {
  grid-column: 1 / -1;
}

.field-error {
  min-height: 1.2em;
  color: #a3412d;
  font-size: 0.82rem;
  font-weight: 800;
}

.field input.has-error,
.field select.has-error,
.field textarea.has-error {
  border-color: #a3412d;
}

.photo-preview-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 8px;
}

.photo-preview-list figure {
  max-width: 100%;
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(31, 107, 79, 0.16);
  border-radius: 6px;
  background: #eef8f3;
}

.photo-preview-list img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  object-fit: cover;
}

.photo-preview-list figcaption {
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.booking-success {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(31, 107, 79, 0.2);
  border-radius: var(--radius);
  background: #f8faf8;
}

.booking-success h3 {
  font-size: 1.18rem;
}

.booking-form-message--error {
  background: #fff6f3;
  color: #8c3c2b;
}

.booking-success {
  background: #eef8f3;
}

.booking-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.testimonials-section {
  overflow: hidden;
  background: #f4f6f5;
  padding: 88px 24px 94px;
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-heading {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.testimonials-heading h2 {
  max-width: 680px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.testimonials-heading p {
  max-width: 790px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.62;
}

.testimonials-carousel {
  position: relative;
  padding: 0 52px 34px;
  overflow: hidden;
}

.testimonial-track {
  --testimonial-card-width: calc((100% - 72px) / 3.6);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--testimonial-card-width);
  gap: 24px;
  overflow: visible;
  transition: transform 620ms ease-in-out;
  will-change: transform;
  cursor: grab;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-track.is-instant {
  transition: none;
}

.testimonial-track.is-dragging {
  cursor: grabbing;
}

.testimonial-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 28px;
  border: 1px solid rgba(14, 108, 75, 0.42);
  border-radius: 10px;
  background: var(--white);
}

.testimonial-card p {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
}

.testimonial-meta {
  display: grid;
  gap: 7px;
  margin-top: auto;
}

.testimonial-meta strong {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-top: 8px;
  color: #d9a21b;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.testimonial-nav {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(14, 108, 75, 0.28);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.testimonial-nav:disabled {
  opacity: 0.42;
  cursor: default;
  transform: none;
}

.testimonial-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-nav-prev {
  left: 0;
}

.testimonial-nav-next {
  right: 0;
}

.testimonial-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(14, 108, 75, 0.28);
  cursor: pointer;
  padding: 0;
  transition: width 180ms ease, background 180ms ease;
}

.testimonial-dot.is-active {
  width: 24px;
  background: var(--green);
}

.section.soft.faq-section {
  background: #f4f6f5;
}

.faq-section .section-heading {
  align-items: center;
}

.faq-section .btn-secondary {
  background: var(--white);
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.step {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.step h3 {
  margin-bottom: 14px;
}

.split-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--green);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-strip > div {
  background: var(--white);
  padding: 24px;
}

.notice {
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: #fff7f0;
  color: #4b382f;
}

.area-map {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 68% 43%, rgba(31, 107, 79, 0.26) 0 9%, transparent 10%),
    radial-gradient(circle at 58% 53%, rgba(184, 111, 66, 0.2) 0 6%, transparent 7%),
    linear-gradient(145deg, #f8f7f2, #e5ece8);
  overflow: hidden;
}

.area-map::before {
  content: "";
  position: absolute;
  inset: 44px 72px;
  border: 2px solid rgba(31, 107, 79, 0.24);
  border-radius: 48% 44% 52% 40%;
  transform: rotate(-13deg);
}

.area-map span {
  position: absolute;
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(21, 26, 24, 0.12);
  font-size: 0.86rem;
  font-weight: 900;
}

.area-map span:nth-child(1) {
  right: 18%;
  top: 38%;
}

.area-map span:nth-child(2) {
  right: 28%;
  top: 52%;
}

.area-map span:nth-child(3) {
  left: 17%;
  bottom: 24%;
}

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

.faq-item {
  border: 1px solid #dfe4e1;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(20, 40, 32, 0.03);
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.faq-item:hover,
.faq-item:focus-within {
  border-color: rgba(25, 105, 78, 0.45);
  box-shadow: 0 6px 18px rgba(20, 40, 32, 0.06);
  transform: translateY(-2px);
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-button::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--green);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-button[aria-expanded="true"]::after {
  content: "-";
}

.faq-panel {
  display: none;
  padding: 0 22px 22px;
}

.faq-panel[aria-hidden="false"] {
  display: block;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-band p {
  margin-top: 14px;
  max-width: 700px;
}

.page-hero {
  padding: 84px 24px 72px;
  background:
    linear-gradient(90deg, rgba(21, 26, 24, 0.9), rgba(21, 26, 24, 0.62)),
    url("../images/commercial-project.png") center / cover no-repeat;
  color: var(--white);
}

.page-hero.collection {
  background:
    linear-gradient(90deg, rgba(21, 26, 24, 0.9), rgba(21, 26, 24, 0.62)),
    url("../images/service-panels.png") center / cover no-repeat;
}

.page-hero p {
  margin-top: 20px;
  max-width: 730px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.16rem;
}

.page-hero .btn {
  margin-top: 28px;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 44px;
  align-items: start;
}

.sticky-box {
  position: sticky;
  top: 98px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft);
}

.sticky-box .btn {
  width: 100%;
  margin-top: 18px;
}

.contact-details-card {
  padding: 28px;
  border-color: rgba(31, 107, 79, 0.22);
  background: #f8fbf8;
  box-shadow: 0 16px 34px rgba(21, 26, 24, 0.07);
}

.contact-details-card h3 {
  color: var(--green-dark);
  font-size: 1.45rem;
}

.contact-details-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-details-list li {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid rgba(31, 107, 79, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-details-list strong {
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-details-list a,
.contact-details-list span {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.45;
}

.contact-details-list a:hover,
.contact-details-list a:focus {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact-details-note {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 107, 79, 0.16);
}

.contact-details-note p {
  color: #5d6762;
  font-size: 0.94rem;
  line-height: 1.55;
}

.content-stack {
  display: grid;
  gap: 42px;
}

.content-block {
  display: grid;
  gap: 18px;
}

.content-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline-number {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  display: inline-grid;
  place-items: center;
  font-weight: 900;
}

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

.guideline-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--white);
}

.guideline-card.warning {
  border-color: rgba(184, 111, 66, 0.34);
  background: #fff8f1;
}

.guideline-card.restricted {
  border-color: rgba(31, 107, 79, 0.34);
  background: #f4faf7;
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 18px 42px rgba(21, 26, 24, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 850;
  color: #303834;
}

.field legend {
  padding: 0;
  color: #303834;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd7d2;
  border-radius: 6px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(31, 107, 79, 0.18);
  border-color: var(--green);
}

.field small {
  color: var(--muted);
}

.contact-customer-type {
  margin: 0;
  padding: 0;
  border: 0;
}

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

.contact-type-option {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border: 1px solid #cfd7d2;
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.contact-type-option.is-selected {
  border-color: rgba(31, 107, 79, 0.42);
  background: #edf7f2;
}

.contact-type-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.contact-type-option span {
  color: #303834;
  font-weight: 850;
}

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

.check-field {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.check-field input {
  margin-top: 4px;
  accent-color: var(--green);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.form-message {
  display: none;
  padding: 14px 16px;
  border-radius: 6px;
  background: #eef8f3;
  color: var(--green-dark);
  font-weight: 800;
}

.form-message.is-visible {
  display: block;
}

.launch-placeholder {
  display: inline-flex;
  padding: 4px 7px;
  border-radius: 4px;
  background: #fff1dc;
  color: #7b4a1f;
  font-size: 0.82rem;
  font-weight: 900;
}

.legal-list {
  display: grid;
  gap: 18px;
}

.legal-list li {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  background: #111614;
  color: var(--white);
  padding: 62px 24px 30px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.6fr));
  gap: 34px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.74);
}

.footer-title {
  margin-bottom: 14px;
  color: var(--white);
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--white);
}

.footer-bottom {
  max-width: var(--max);
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 1320px) {
  .primary-nav ul {
    gap: 12px;
  }

  .primary-nav a {
    font-size: 0.87rem;
  }

  .phone-link {
    display: none;
  }

  .header-actions .btn {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 1080px) {
  .primary-nav ul {
    gap: 11px;
  }

  .phone-link {
    display: none;
  }

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

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

  .industry-card {
    min-height: 250px;
  }

  .testimonial-track {
    --testimonial-card-width: calc((100% - 24px) / 2);
  }

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

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

  .header-inner {
    padding: 0 18px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-wrap {
    position: fixed;
    inset: var(--header) 0 auto 0;
    height: calc(100svh - var(--header));
    display: none;
    overflow-y: auto;
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 20px 18px 28px;
  }

  body.nav-open .nav-wrap {
    display: block;
  }

  .primary-nav ul {
    display: grid;
    gap: 0;
  }

  .primary-nav li {
    width: 100%;
  }

  .primary-nav a {
    min-height: 54px;
    border-bottom: 1px solid var(--line);
    font-size: 1.03rem;
  }

  .nav-services-trigger::after {
    display: none;
  }

  .nav-services-menu {
    position: static;
    min-width: 0;
    display: grid !important;
    gap: 6px !important;
    padding: 8px 0 12px 14px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item--services:hover .nav-services-menu,
  .nav-item--services:focus-within .nav-services-menu,
  .nav-item--services.is-open .nav-services-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item--services:hover::after,
  .nav-item--services:focus-within::after,
  .nav-item--services.is-open::after {
    display: none;
  }

  .nav-services-menu a {
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #f8faf9;
    font-size: 0.95rem;
  }

  .header-actions {
    display: grid;
    margin-top: 18px;
  }

  .header-actions .btn {
    width: 100%;
  }

  .phone-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .hero {
    aspect-ratio: auto;
    min-height: calc(78svh - var(--header));
    padding-top: 82px;
    align-items: center;
    background:
      linear-gradient(rgba(13, 18, 16, 0.42), rgba(13, 18, 16, 0.28)),
      url("../images/solar-farm-hero-v2.png") center / cover no-repeat;
  }

  .hero-inner {
    transform: translateY(-4px);
  }

  .section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-heading,
  .quote-estimator-grid,
  .media-grid,
  .media-grid.reverse,
  .page-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .service-benefits {
    padding: 58px 18px 60px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 42px;
    row-gap: 44px;
  }

  .solar-growth-section {
    padding: 64px 0;
  }

  .solar-growth-container {
    width: min(1180px, calc(100% - 48px));
  }

  .solar-growth-layout {
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
    gap: 32px;
    text-align: left;
  }

  .solar-growth-content {
    max-width: 100%;
    justify-self: start;
  }

  .solar-growth-media {
    width: 100%;
    min-height: 0;
  }

  .media-grid.reverse .media-copy,
  .media-grid.reverse .media-frame {
    order: initial;
  }

  .media-frame,
  .media-frame img {
    min-height: 320px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card-grid,
  .feature-strip,
  .guideline-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .industry-section {
    padding-top: 70px;
    padding-bottom: 78px;
  }

  .industry-heading {
    margin-bottom: 34px;
  }

  .industry-grid {
    gap: 22px;
  }

  .industry-card {
    min-height: 240px;
  }

  .quote-estimator-section {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .estimator-page-section {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .quote-estimator-grid {
    gap: 40px;
  }

  .estimator-page-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .appointment-page-section {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .appointment-shell {
    grid-template-columns: 1fr;
    gap: 42px;
    align-items: start;
  }

  .appointment-card,
  .appointment-empty {
    max-width: 680px;
  }

  .quote-estimator-preview {
    max-width: 620px;
  }

  .estimator-card {
    max-width: 680px;
  }

  .testimonials-section {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .testimonials-heading {
    margin-bottom: 34px;
  }

  .testimonials-carousel {
    padding: 0 0 34px;
  }

  .testimonial-nav {
    display: inline-flex;
  }

  .sticky-box {
    position: static;
  }
}

@media (max-width: 768px) {
  .solar-growth-container {
    width: min(1180px, calc(100% - 40px));
  }

  .solar-growth-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .service-benefits {
    padding: 52px 18px 56px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    row-gap: 38px;
  }

  .benefit-item {
    max-width: 300px;
  }

  .benefit-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
  }

  .benefit-icon-wrapper img {
    width: 62px;
    height: 62px;
  }

  .benefit-icon {
    width: 56px;
    height: 56px;
  }

  .benefit-description {
    font-size: 1.08rem;
    line-height: 1.42;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.7rem, 14vw, 4.25rem);
  }

  .hero-actions,
  .form-actions {
    display: grid;
  }

  .hero-actions .btn,
  .form-actions .btn {
    width: 100%;
  }

  .hero {
    padding: 72px 20px 44px;
  }

  .home-page .hero {
    min-height: auto;
    padding: 86px 20px 42px;
    align-items: end;
    background-position: center top;
  }

  .home-page .hero-inner {
    width: min(100%, 390px);
    transform: none;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 2.9rem);
  }

  .home-page .hero h1 {
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.15rem, 9.8vw, 2.75rem);
    line-height: 1.05;
  }

  .hero p {
    font-size: 1rem;
  }

  .home-page .hero p {
    max-width: 33ch;
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .hero-availability {
    display: grid;
    min-height: 0;
    margin-top: 24px;
    border-radius: 6px;
  }

  .home-page .hero-availability {
    width: min(100%, 378px);
    margin-top: 20px;
  }

  .hero-postcode-field,
  .hero-postcode-button {
    width: 100%;
    min-height: 58px;
  }

  .hero-postcode-button {
    min-width: 0;
  }

  .home-page .hero-postcode-field,
  .home-page .hero-postcode-field input,
  .home-page .hero-postcode-button {
    min-height: 54px;
  }

  .home-page .hero p.hero-trust-line {
    max-width: 30ch;
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .home-page .service-benefits {
    display: block;
  }

  .solar-growth-section {
    padding: 54px 0 56px;
  }

  .solar-growth-layout {
    gap: 30px;
  }

  .solar-growth-content h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .solar-growth-content .btn {
    width: 100%;
  }

  .quote-estimator-section {
    padding: 58px 20px 62px;
  }

  .estimator-page-section {
    padding: 58px 20px 64px;
  }

  .quote-estimator-copy h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .estimator-intro h1 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .quote-estimator-copy .btn {
    width: 100%;
  }

  .estimator-intro .btn,
  .estimator-intro small {
    display: none;
  }

  .quote-estimator-preview {
    padding: 20px;
  }

  .estimator-card {
    padding: 20px;
  }

  .testimonials-section {
    padding: 58px 20px 66px;
  }

  .testimonials-heading h2 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .testimonials-heading p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .testimonial-track {
    --testimonial-card-width: 88%;
    gap: 16px;
  }

  .testimonial-card {
    min-height: 340px;
    padding: 24px;
  }

  .preview-header,
  .preview-result,
  .estimator-card__header,
  .quote-estimate-summary__header {
    align-items: start;
    flex-direction: column;
  }

  .preview-result small {
    max-width: none;
    text-align: left;
  }

  .solar-growth-media {
    min-height: 0;
  }

  .solar-growth-main {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    border-radius: 24px;
  }

  .card-grid.four,
  .industry-grid,
  .steps,
  .split-list,
  .form-grid,
  .checkbox-grid,
  .loading-choice-group,
  .quote-estimate-summary__grid {
    grid-template-columns: 1fr;
  }

  .estimate-row {
    display: grid;
    gap: 6px;
  }

  .estimate-row strong {
    justify-self: start;
  }

  .estimator-actions,
  .estimate-message-actions {
    display: grid;
  }

  .estimator-actions .btn,
  .estimate-message-actions .btn {
    width: 100%;
  }

  .appointment-page-section {
    padding: 58px 20px 64px;
  }

  .appointment-heading h1 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .appointment-card,
  .appointment-empty {
    padding: 20px;
  }

  .appointment-card__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .estimate-summary-pill {
    max-width: none;
    text-align: left;
  }

  .booking-progress,
  .booking-summary-grid {
    grid-template-columns: 1fr;
  }

  .booking-step h2 button {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    padding: 15px;
  }

  .booking-step__summary {
    grid-column: 2 / -1;
    justify-self: start;
    text-align: left;
    white-space: normal;
  }

  .booking-step__body {
    padding: 0 14px 18px;
  }

  .appointment-date-options {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .appointment-date-card {
    flex: 0 0 112px;
    scroll-snap-align: start;
  }

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

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

  .appointment-empty,
  .booking-success-actions,
  .booking-success-actions .btn {
    width: 100%;
  }

  .industry-section {
    padding: 58px 20px 64px;
  }

  .industry-heading h2 {
    font-size: clamp(2rem, 11vw, 2.65rem);
  }

  .industry-heading p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .industry-card {
    min-height: 224px;
  }

  .card-grid.four .card {
    min-height: 238px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(31, 107, 79, 0.26);
  outline-offset: 3px;
}

.redirect-page {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 64px 24px;
  background: var(--soft);
}

.redirect-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.redirect-page p {
  margin-top: 16px;
}

.redirect-page a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
}

.collect-hero {
  position: relative;
  min-height: clamp(360px, 31vw, 460px);
  padding: 58px 24px 42px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(13, 18, 16, 0.42), rgba(13, 18, 16, 0.3)),
    url("../images/what-we-collect-hero.png") center 50% / cover no-repeat;
  background-color: var(--green-dark);
}

.collect-hero__content {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-6px);
}

.collect-hero h1 {
  max-width: none;
  color: var(--white);
  font-size: clamp(3.2rem, 4.6vw, 4.25rem);
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.collect-hero p {
  max-width: 680px;
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.hero-postcode-input {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  background: var(--white);
}

.hero-postcode-input label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero-postcode-input input {
  width: 100%;
  min-height: 62px;
  border: 0;
  padding: 0 22px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  outline-offset: -4px;
}

.hero-availability-form .hero-postcode-button {
  min-height: 62px;
}

.what-we-collect-page section[id] {
  scroll-margin-top: calc(var(--header) + 78px);
}

.collect-intro-section {
  padding-top: clamp(90px, 8vw, 120px);
  padding-bottom: clamp(90px, 8vw, 120px);
  background: #f5f8f6;
}

.collect-copy {
  max-width: 1160px;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 52px;
  align-items: center;
}

.collect-specialty-heading {
  min-width: 0;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 18px;
}

.collect-specialty-kicker {
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.collect-copy .collect-specialty-heading h2 {
  max-width: 540px;
  color: #102019;
  font-size: clamp(3.55rem, 5.2vw, 4.25rem);
  font-weight: 900;
  line-height: 0.98;
}

.collect-specialty-rule {
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

.collect-specialty-heading p {
  max-width: 440px;
  color: #5d6762;
  font-size: 1rem;
  line-height: 1.7;
}

.collect-specialty-card {
  min-width: 0;
  display: grid;
  gap: 18px;
  padding: 30px 32px;
  border: 1px solid rgba(31, 107, 79, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(21, 26, 24, 0.08);
}

.collect-specialty-visual {
  min-width: 0;
  display: grid;
  place-items: center end;
  align-self: center;
  position: relative;
  isolation: isolate;
  min-height: 380px;
}

.collect-specialty-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(82%, 520px);
  aspect-ratio: 1.22 / 1;
  right: 6%;
  top: 50%;
  border-radius: 999px;
  background: rgba(35, 120, 80, 0.07);
  transform: translateY(-50%) rotate(-7deg);
}

.collect-specialty-visual img {
  position: relative;
  z-index: 1;
  width: min(85%, 620px);
  height: auto;
  transform: translateX(22px);
  filter: drop-shadow(0 18px 26px rgba(21, 26, 24, 0.1));
}

.collect-specialty-card__top {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.collect-specialty-icon {
  width: 76px;
  height: 76px;
  display: block;
  border-radius: 999px;
  overflow: hidden;
  background: var(--green-dark);
  box-shadow: 0 13px 28px rgba(22, 72, 54, 0.2);
}

.collect-specialty-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collect-specialty-lead {
  color: #303834;
  font-size: clamp(1.08rem, 1.42vw, 1.28rem);
  font-weight: 900;
  line-height: 1.42;
}

.collect-specialty-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.collect-specialty-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(31, 107, 79, 0.2);
  border-radius: 999px;
  background: #eef8f3;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.collect-specialty-points svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.collect-copy h2,
.compact-heading h2,
.other-equipment-panel h2,
.what-collect-cta h2 {
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.collect-copy p,
.compact-heading p,
.other-equipment-panel p {
  font-size: 1rem;
  line-height: 1.65;
}

.compact-heading {
  max-width: 820px;
  display: grid;
  gap: 14px;
}

.panel-conditions-section {
  background: #f4f6f5;
}

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

.condition-item {
  min-height: 122px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 13px;
  padding: 18px;
  border: 1px solid #dfe6e2;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.condition-dot {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(31, 107, 79, 0.1);
}

.condition-dot--accepted {
  background: var(--green);
}

.condition-dot--review {
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(184, 111, 66, 0.14);
}

.condition-item h3 {
  font-size: 1.05rem;
  line-height: 1.25;
}

.condition-item p {
  margin-top: 7px;
  font-size: 0.93rem;
  line-height: 1.5;
}

.process-section {
  padding-top: 64px;
  background: #f4f6f5;
}

.process-heading p {
  max-width: 680px;
  margin-top: 12px;
  color: var(--muted);
}

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

.process-step {
  min-height: 210px;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-step span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-step h3 {
  font-size: 1.16rem;
  line-height: 1.2;
}

.process-step p {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.other-equipment-section {
  padding-top: 0;
  background: #f4f6f5;
}

.other-equipment-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.other-equipment-panel p {
  max-width: 790px;
  margin-top: 12px;
}

.collect-faq-section {
  background: #f4f6f5;
}

.collect-faq-section .faq-list {
  margin-top: 26px;
}

.what-collect-cta {
  background: var(--green-dark);
  color: var(--white);
}

.what-collect-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.what-collect-cta .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.what-collect-cta .btn-secondary:hover,
.what-collect-cta .btn-secondary:focus-visible {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

@media (max-width: 1080px) {
  .condition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .collect-hero {
    min-height: clamp(380px, 54svh, 500px);
    padding: 58px 18px 38px;
    background:
      linear-gradient(rgba(13, 18, 16, 0.48), rgba(13, 18, 16, 0.34)),
      url("../images/what-we-collect-hero.png") center / cover no-repeat;
  }

  .collect-hero h1 {
    font-size: clamp(2.35rem, 7vw, 3.35rem);
  }

  .collection-process,
  .other-equipment-panel {
    grid-template-columns: 1fr;
  }

  .collect-copy {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .collect-copy .collect-specialty-heading h2,
  .collect-specialty-heading p {
    max-width: 680px;
  }

  .collect-specialty-visual {
    place-items: center;
    min-height: 320px;
  }

  .collect-specialty-visual::before {
    right: 50%;
    width: min(84%, 520px);
    transform: translate(50%, -50%) rotate(-7deg);
  }

  .collect-specialty-visual img {
    width: min(100%, 560px);
    transform: none;
  }

  .other-equipment-panel .btn {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .collect-hero {
    min-height: clamp(360px, 52svh, 430px);
    padding: 44px 14px 32px;
    background-position: center;
  }

  .collect-hero h1 {
    font-size: clamp(2.2rem, 9vw, 2.65rem);
  }

  .collect-hero p {
    font-size: 1rem;
    margin-top: 12px;
    line-height: 1.45;
  }

  .collect-hero .hero-availability {
    margin-top: 20px;
  }

  .condition-grid {
    grid-template-columns: 1fr;
  }

  .hero-postcode-input,
  .hero-availability-form .hero-postcode-button {
    width: 100%;
    min-height: 58px;
  }

  .collect-intro-section,
  .panel-conditions-section,
  .process-section,
  .collect-faq-section,
  .what-collect-cta {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .collect-copy .collect-specialty-heading h2 {
    font-size: clamp(2.65rem, 12vw, 3rem);
    line-height: 1;
  }

  .collect-specialty-heading p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .other-equipment-section {
    padding-top: 0;
  }

  .collect-specialty-visual {
    min-height: 260px;
  }

  .collect-specialty-visual::before {
    width: 92%;
  }

  .collect-specialty-visual img {
    width: 100%;
    max-width: 460px;
  }

  .collect-specialty-card {
    padding: 20px;
  }

  .collect-specialty-card__top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .collect-specialty-icon {
    width: 64px;
    height: 64px;
  }

  .collect-specialty-points {
    display: grid;
  }

  .other-equipment-panel {
    padding: 22px;
  }

  .other-equipment-panel .btn {
    width: 100%;
  }
}

.commercial-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(76px, 8vw, 112px) 24px clamp(78px, 8vw, 116px);
  color: var(--ink);
  background: linear-gradient(180deg, #fbfcfa 0%, #f4f8f5 100%);
  border-bottom: 1px solid rgba(220, 226, 222, 0.8);
}

.commercial-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0 56%, rgba(31, 107, 79, 0.08) 56% 100%);
}

.commercial-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
  width: min(44vw, 620px);
  height: 100%;
  background: linear-gradient(180deg, rgba(232, 239, 235, 0.86), rgba(232, 239, 235, 0));
}

.commercial-hero__content {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  grid-template-areas:
    "copy visual"
    "availability visual";
  column-gap: clamp(44px, 6vw, 76px);
  row-gap: 0;
  align-items: center;
}

.commercial-hero__copy {
  grid-area: copy;
  min-width: 0;
  display: grid;
  justify-items: start;
}

.commercial-hero .eyebrow {
  margin-bottom: 18px;
  color: var(--green);
}

.commercial-final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.commercial-hero h1 {
  max-width: 650px;
  color: #101815;
  font-size: clamp(3.55rem, 6.4vw, 5.8rem);
  font-weight: 900;
  line-height: 0.98;
}

.commercial-hero__subtitle {
  max-width: 610px;
  margin-top: 22px;
  color: #4f5b56;
  font-size: clamp(1.12rem, 1.35vw, 1.26rem);
  line-height: 1.58;
}

.commercial-hero__trust-line {
  display: none;
}

.commercial-hero__availability {
  grid-area: availability;
  justify-self: start;
  width: min(640px, 100%);
  margin-top: 32px;
  padding: 10px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(31, 107, 79, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 52px rgba(21, 26, 24, 0.1);
}

.commercial-hero__availability-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.commercial-hero__postcode-field {
  min-width: 0;
  display: flex;
  align-items: center;
  border: 1px solid #d7e0dc;
  border-radius: 6px;
  background: #f8faf9;
}

.commercial-hero__postcode-field label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.commercial-hero__postcode-field input {
  width: 100%;
  min-height: 58px;
  border: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  outline-offset: -4px;
}

.commercial-hero__postcode-field input::placeholder {
  color: #66716c;
  opacity: 1;
}

.commercial-hero__postcode-button {
  min-width: 210px;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 14px 24px rgba(31, 107, 79, 0.22);
}

.commercial-hero__postcode-button:hover,
.commercial-hero__postcode-button:focus {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.commercial-hero__availability-note {
  padding: 0 4px 1px;
  color: #66716c;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.commercial-hero__visual {
  grid-area: visual;
  position: relative;
  min-width: 0;
  padding: 18px 0 28px 24px;
}

.commercial-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0 22px 0 0;
  z-index: -1;
  border: 1px solid rgba(31, 107, 79, 0.16);
  border-radius: 8px;
  background: #e8f1ed;
}

.commercial-hero__image-panel {
  position: relative;
  min-width: 0;
}

.commercial-hero__image-panel img {
  width: 100%;
  height: clamp(380px, 39vw, 528px);
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 28px 64px rgba(21, 26, 24, 0.18);
}

.commercial-hero__image-badge,
.commercial-hero__pickup-note {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(31, 107, 79, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(21, 26, 24, 0.14);
}

.commercial-hero__image-badge {
  top: 18px;
  right: 18px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.commercial-hero__pickup-note {
  left: 18px;
  bottom: 18px;
  max-width: 310px;
  padding: 16px 18px;
  display: grid;
  gap: 5px;
}

.commercial-hero__pickup-note span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.commercial-hero__pickup-note strong {
  color: #18221e;
  font-size: 1rem;
  line-height: 1.35;
}

.commercial-final-cta .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.commercial-final-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.commercial-final-cta .btn-secondary:hover,
.commercial-final-cta .btn-secondary:focus-visible {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.commercial-advantages {
  padding-top: 48px;
  padding-bottom: 54px;
  background: #f4f6f5;
}

.commercial-faq-section {
  background: #f4f6f5;
}

.commercial-section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.commercial-section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.commercial-section-heading--center .eyebrow {
  justify-content: center;
}

.commercial-section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.commercial-section-heading p {
  max-width: 720px;
  margin-top: 14px;
  font-size: 1.03rem;
  line-height: 1.65;
}

.commercial-plan-card,
.commercial-info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.commercial-plans-section {
  background: var(--white);
}

.commercial-plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
  align-items: start;
}

.commercial-plan-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  max-width: 980px;
  margin: 30px auto 0;
  padding-top: 4px;
}

.commercial-plan-benefits li {
  display: grid;
  gap: 5px;
  padding-left: 32px;
}

.commercial-plan-benefits strong {
  color: var(--green-dark);
  font-size: 1rem;
}

.commercial-plan-benefits span {
  color: #5f6864;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.52;
}

.commercial-contact-section {
  background: #f4f6f5;
}

.commercial-contact-container {
  max-width: 940px;
}

.commercial-contact-form {
  padding: clamp(24px, 4vw, 38px);
}

.commercial-contact-form .content-stack {
  gap: 26px;
}

.commercial-contact-form h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.commercial-plan-card {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 28px;
  box-shadow: 0 18px 38px rgba(21, 26, 24, 0.07);
}

.commercial-plan-card--featured {
  border: 2px solid rgba(31, 107, 79, 0.52);
  background:
    linear-gradient(180deg, rgba(229, 243, 237, 0.68), rgba(255, 255, 255, 0.96) 42%),
    var(--white);
  box-shadow: 0 28px 58px rgba(21, 26, 24, 0.13);
}

.commercial-plan-card--featured::before {
  content: "Recommended";
  position: absolute;
  top: -15px;
  right: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(31, 107, 79, 0.22);
}

.commercial-plan-card--secondary {
  margin-top: 22px;
  background: #fbfcfb;
  box-shadow: 0 14px 30px rgba(21, 26, 24, 0.05);
}

.commercial-plan-card__header {
  display: grid;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.commercial-plan-card__header h3 {
  margin-top: 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.commercial-plan-card__header p {
  max-width: 540px;
  font-size: 0.97rem;
  line-height: 1.58;
}

.commercial-plan-card__bullets {
  display: grid;
  gap: 9px;
  margin-top: 2px;
}

.commercial-plan-card__bullets li {
  position: relative;
  padding-left: 26px;
  color: var(--green-dark);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.35;
}

.commercial-plan-card__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #e5f3ed;
}

.commercial-plan-card__bullets li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.55em;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.commercial-plan-card__bullets--muted li {
  color: #59635f;
  font-weight: 780;
}

.commercial-plan-card__bullets--muted li::before {
  background: #eef2f0;
}

.commercial-plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e5f3ed;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.commercial-plan-badge--featured {
  min-height: 34px;
  padding: 8px 12px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(31, 107, 79, 0.18);
}

.commercial-plan-badge--muted {
  background: #f4f6f5;
  color: #59635f;
}

.commercial-plan-savings {
  display: grid;
  gap: 4px;
  max-width: 360px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 107, 79, 0.25);
  border-radius: 8px;
  background: #e5f3ed;
}

.commercial-plan-savings strong {
  color: var(--green-dark);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1;
}

.commercial-plan-savings span {
  color: #466257;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.commercial-price-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.commercial-price-list li {
  display: grid;
  gap: 7px;
  padding: 14px 16px;
  border: 1px solid #dfe4e1;
  border-radius: 6px;
  background: #f4f6f5;
}

.commercial-price-list span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.commercial-price-list strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.commercial-plan-result {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
}

.commercial-plan-result span,
.commercial-plan-result small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.commercial-plan-result strong {
  display: block;
  margin-top: 2px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.commercial-plan-result small {
  max-width: 130px;
  text-align: right;
}

.commercial-plan-result--compact {
  margin-top: 12px;
  padding: 16px;
}

.commercial-plan-result--compact strong {
  font-size: 1.65rem;
}

.commercial-zone-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.commercial-zone-box {
  padding: 18px;
  border: 1px solid #dfe6e2;
  border-radius: 6px;
  background: #f8faf9;
}

.commercial-zone-box h4 {
  font-size: 1.03rem;
}

.commercial-zone-box .commercial-price-list {
  margin-top: 12px;
}

.commercial-estimator-preview {
  display: grid;
  gap: 18px;
  color: var(--ink);
}

.commercial-estimator-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dfe4e1;
}

.commercial-estimator-preview__header span,
.commercial-estimator-preview__field label,
.commercial-estimator-preview__result span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.commercial-estimator-preview__header strong {
  color: var(--green);
  font-size: 0.92rem;
}

.commercial-estimator-preview__field {
  display: grid;
  gap: 8px;
}

.commercial-estimator-preview__field label {
  color: var(--ink);
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: none;
}

.commercial-estimator-preview__field p {
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.45;
}

.commercial-estimator-preview__input {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid #cbd4d0;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.98rem;
}

.commercial-estimator-preview__input--number {
  border-color: rgba(31, 107, 79, 0.62);
  box-shadow: 0 0 0 3px rgba(31, 107, 79, 0.12);
}

.commercial-estimator-preview__input--number span:last-child {
  color: #8b948f;
  font-size: 0.72rem;
  line-height: 0.9;
  text-align: center;
}

.commercial-estimator-breakdown {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #dfe4e1;
}

.commercial-estimator-breakdown h4 {
  font-size: 1.2rem;
}

.commercial-estimator-breakdown dl {
  display: grid;
  margin: 0;
}

.commercial-estimator-breakdown dl > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #dfe4e1;
}

.commercial-estimator-breakdown dt,
.commercial-estimator-breakdown dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 850;
}

.commercial-estimator-breakdown dt small {
  display: block;
  margin-top: 2px;
  color: #68726d;
  font-size: 0.78rem;
  font-weight: 700;
}

.commercial-estimator-breakdown dd {
  text-align: right;
}

.commercial-estimator-preview__result {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
}

.commercial-estimator-preview__result--offer {
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 20px 40px rgba(31, 107, 79, 0.3);
}

.commercial-estimator-preview__result--offer::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  pointer-events: none;
}

.commercial-estimator-preview__result span,
.commercial-estimator-preview__result small {
  color: rgba(255, 255, 255, 0.8);
}

.commercial-estimator-preview__result em {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.commercial-estimator-preview__result strong {
  display: block;
  margin-top: 2px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.45rem);
  line-height: 1;
}

.commercial-estimator-preview__result strong small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

.commercial-estimator-preview__result small {
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.commercial-plan-cta {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  margin-top: 2px;
}

.commercial-zone-grid--summary {
  margin-top: 16px;
}

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

.commercial-step {
  min-height: 198px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  display: grid;
  align-content: start;
}

.commercial-step span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.commercial-step h3 {
  font-size: 1.12rem;
  line-height: 1.25;
}

.commercial-step p {
  margin-top: 10px;
  font-size: 0.94rem;
  line-height: 1.55;
}

.commercial-two-column-section {
  background: var(--white);
}

.commercial-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.commercial-info-panel {
  padding: 30px;
  display: grid;
  align-content: start;
  gap: 16px;
}

.commercial-info-panel h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.45rem);
}

.commercial-info-panel p {
  font-size: 0.99rem;
  line-height: 1.62;
}

.commercial-check-list {
  display: grid;
  gap: 11px;
}

.commercial-check-list li {
  position: relative;
  padding-left: 29px;
  color: #303834;
  font-weight: 800;
  line-height: 1.42;
}

.commercial-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #e5f3ed;
}

.commercial-check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(0.42em + 4px);
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.commercial-check-list--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 18px;
}

.commercial-note {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.commercial-contact-section,
.commercial-bulk-section {
  background: #f4f6f5;
}

.commercial-bulk-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(21, 26, 24, 0.07);
}

.commercial-bulk-panel p {
  color: #5f6864;
}

.commercial-bulk-panel h2 {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.commercial-bulk-panel p {
  max-width: 760px;
  margin-top: 14px;
  line-height: 1.65;
}

.commercial-faq-section .faq-list {
  margin-top: 26px;
}

@media (max-width: 1080px) {
  .commercial-hero__content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "availability"
      "visual";
    gap: 46px;
  }

  .commercial-hero__copy {
    max-width: 760px;
  }

  .commercial-hero__visual {
    width: min(780px, 100%);
    justify-self: center;
  }

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

  .commercial-plan-grid,
  .commercial-two-column,
  .commercial-bulk-panel {
    grid-template-columns: 1fr;
  }

  .commercial-plan-card--secondary {
    margin-top: 0;
  }

  .commercial-bulk-panel .btn {
    width: fit-content;
  }
}

@media (max-width: 900px) {
  .commercial-hero {
    padding: 66px 18px 72px;
  }

  .commercial-hero::before {
    background: linear-gradient(180deg, rgba(31, 107, 79, 0.07), rgba(255, 255, 255, 0));
  }

  .commercial-hero::after {
    width: 100%;
    height: 38%;
  }

  .commercial-hero__content {
    grid-template-areas:
      "copy"
      "availability";
    gap: 28px;
  }

  .commercial-hero h1 {
    max-width: 680px;
    font-size: clamp(3.05rem, 11vw, 4.5rem);
  }

  .commercial-hero__subtitle {
    max-width: 650px;
  }

  .commercial-hero__visual {
    display: none;
  }
}

@media (max-width: 640px) {
  .commercial-hero {
    overflow: hidden;
    padding: 54px 18px 58px;
    background: #f4f8f5;
  }

  .commercial-hero::before,
  .commercial-hero::after {
    display: none;
  }

  .commercial-hero__content {
    width: 100%;
    grid-template-areas:
      "copy"
      "availability";
    gap: 24px;
  }

  .commercial-hero__copy {
    display: grid;
  }

  .commercial-hero .eyebrow {
    margin-bottom: 12px;
    font-size: 0.71rem;
    letter-spacing: 0.08em;
  }

  .commercial-hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.2rem);
    line-height: 1;
  }

  .commercial-hero__subtitle {
    margin-top: 14px;
    font-size: 1.02rem;
    line-height: 1.52;
  }

  .commercial-hero__trust-line {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 18px;
    color: var(--green-dark);
    font-size: 0.92rem;
    font-weight: 850;
    line-height: 1.45;
  }

  .commercial-hero__trust-line::before {
    content: "";
    width: 9px;
    height: 9px;
    margin-top: 0.52em;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(31, 107, 79, 0.12);
    flex: 0 0 auto;
  }

  .commercial-hero__availability {
    width: 100%;
    max-width: 430px;
    margin: 0;
    padding: 18px;
    gap: 12px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 24px 56px rgba(21, 26, 24, 0.16);
  }

  .commercial-hero__availability-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .commercial-hero__postcode-field,
  .commercial-hero__postcode-button {
    width: 100%;
    min-height: 60px;
  }

  .commercial-hero__postcode-field {
    border-color: #c5cfca;
    border-radius: 8px;
    background: var(--white);
  }

  .commercial-hero__postcode-field input {
    min-height: 60px;
    padding: 0 16px;
    font-size: 1.02rem;
  }

  .commercial-hero__postcode-button {
    min-width: 0;
    border-radius: 8px;
    font-size: 0.92rem;
    box-shadow: 0 14px 26px rgba(31, 107, 79, 0.2);
  }

  .commercial-hero__availability-note {
    padding: 0;
    text-align: center;
    font-size: 0.92rem;
  }

  .commercial-hero__visual {
    display: none;
  }

  .commercial-advantages,
  .commercial-plans-section,
  .commercial-contact-section,
  .commercial-two-column-section,
  .commercial-bulk-section,
  .commercial-faq-section,
  .commercial-final-cta {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .commercial-steps,
  .commercial-check-list--split,
  .commercial-plan-benefits {
    grid-template-columns: 1fr;
  }

  .commercial-step,
  .commercial-plan-card,
  .commercial-info-panel,
  .commercial-bulk-panel {
    padding: 20px;
  }

  .commercial-price-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .commercial-bulk-panel .btn {
    width: 100%;
  }
}

.utility-scale-page {
  --utility-green: #007a4d;
  --utility-green-2: #006b45;
  --utility-deep: #003c33;
  --utility-ink: #062b24;
  --utility-muted: #4a5a55;
  background: #f7fbf8;
}

.utility-scale-page .site-header {
  min-height: 72px;
  background: #ffffff;
  border-bottom: 1px solid #e3ece7;
  backdrop-filter: none;
}

.utility-scale-page .site-header.is-compact {
  min-height: 72px;
  box-shadow: 0 8px 24px rgba(6, 43, 36, 0.06);
}

.utility-scale-page .primary-nav a {
  color: #26332f;
}

.utility-scale-page .header-actions .btn-primary {
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 7px;
  background: var(--utility-green);
  box-shadow: none;
}

.utility-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(90deg, #f4f8f5 0%, #eef4f1 50%, #ffffff 50%, #ffffff 100%);
  color: var(--utility-ink);
}

.utility-hero__arc {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 100%;
  height: 620px;
  pointer-events: none;
}

.utility-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 48.5%) minmax(0, 51.5%);
  min-height: 620px;
}

.utility-hero__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  width: 660px;
  margin-left: 86px;
  padding: 64px 38px 54px 0;
}

.utility-hero__copy::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -130px;
  z-index: -1;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(0, 122, 77, 0.045);
  border-radius: 50%;
  box-shadow:
    34px 20px 0 -1px rgba(0, 122, 77, 0.025),
    68px 40px 0 -1px rgba(0, 122, 77, 0.018);
  pointer-events: none;
}

.utility-hero__eyebrow {
  margin-bottom: 30px;
  color: var(--utility-green);
  font-size: 0.78rem;
  letter-spacing: 0.115em;
  white-space: nowrap;
}

.utility-final-cta .eyebrow {
  color: #bfe8d3;
}

.utility-hero h1 {
  max-width: 660px;
  color: var(--utility-ink);
  font-size: clamp(4rem, 5.1vw, 4.55rem);
  font-weight: 900;
  line-height: 0.98;
}

.utility-hero__rule {
  display: block;
  width: 52px;
  height: 2px;
  margin: 30px 0 26px;
  background: var(--utility-green);
}

.utility-hero p {
  max-width: 468px;
  color: #4f5f5a;
  font-size: clamp(1.04rem, 1.18vw, 1.12rem);
  line-height: 1.78;
}

.utility-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.utility-hero__actions .btn {
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 7px;
  box-shadow: none;
}

.utility-hero__actions .btn-primary {
  background: var(--utility-green);
}

.utility-hero__actions .btn-primary:hover,
.utility-hero__actions .btn-primary:focus {
  background: var(--utility-green-2);
}

.utility-hero__actions .btn-secondary {
  background: #ffffff;
  color: var(--utility-green);
  border-color: #8bbba8;
}

.utility-hero__actions .btn-secondary:hover,
.utility-hero__actions .btn-secondary:focus {
  background: #f7fbf8;
  border-color: var(--utility-green);
}

.utility-hero__actions svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-hero__visual {
  position: relative;
  height: 620px;
  min-height: 620px;
  width: 114%;
  margin-left: -14%;
  overflow: hidden;
  background: #dce8e2;
}

.utility-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}

.utility-hero__note {
  position: absolute;
  z-index: 4;
  left: clamp(76px, 9vw, 128px);
  bottom: 44px;
  width: min(350px, calc(100% - 96px));
  min-height: 122px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 11px;
  background: linear-gradient(135deg, #003c33 0%, #004c3f 100%);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(6, 43, 36, 0.16);
}

.utility-hero__note-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #72bd58;
}

.utility-hero__note-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-hero__note-kicker,
.utility-comparison-card--featured span {
  display: block;
  margin-bottom: 7px;
  color: #7bd07d;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-hero__note strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.38;
}

.utility-benefits-strip {
  padding: 30px 24px;
  background: #ffffff;
  border-bottom: 1px solid #edf2ef;
}

.utility-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}

.utility-benefit {
  min-height: 92px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 0 26px;
}

.utility-benefit:first-child {
  padding-left: 0;
}

.utility-benefit + .utility-benefit {
  border-left: 1px solid #d9e5df;
}

.utility-benefit__icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--utility-green);
}

.utility-benefit__icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-benefit__icon img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.utility-benefit h3 {
  color: var(--utility-ink);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.2;
}

.utility-benefit p {
  margin-top: 6px;
  color: #68736f;
  font-size: 0.88rem;
  line-height: 1.45;
}

.utility-final-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.utility-section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.utility-section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.utility-section-heading h2,
.utility-two-column h2,
.utility-quote-copy h2 {
  font-size: clamp(2.15rem, 3.6vw, 3.55rem);
  line-height: 1.04;
}

.utility-section-heading p,
.utility-two-column p,
.utility-quote-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.utility-problem-section,
.utility-support-section,
.utility-comparison-section {
  background: #f6f8f6;
}

.utility-solution-section,
.utility-process-section,
.utility-quote-section,
.utility-faq-section {
  background: var(--white);
}

.utility-card-grid {
  display: grid;
  gap: 18px;
}

.utility-card-grid--three,
.utility-card-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.utility-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(26, 31, 29, 0.06);
}

.utility-card h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.utility-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.62;
}

.utility-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.utility-two-column--wide {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

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

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

.utility-step {
  padding: 26px 22px;
  border: 1px solid #cddbd5;
  border-radius: 8px;
  background: #f9fbfa;
}

.utility-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
}

.utility-step h3 {
  font-size: 1.1rem;
}

.utility-step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

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

.utility-feature-grid span {
  padding: 16px 18px;
  border: 1px solid #cddbd5;
  border-radius: 8px;
  background: #eef7f1;
  color: #123d2d;
  font-weight: 850;
}

.utility-quote-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 40px;
  align-items: start;
}

.utility-quote-copy {
  position: sticky;
  top: calc(var(--header) + 28px);
}

.utility-quote-note {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid #c5dcd0;
  border-radius: 8px;
  background: #ecf7f1;
}

.utility-quote-note strong,
.utility-quote-note span {
  display: block;
}

.utility-quote-note span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.utility-project-form {
  padding: 30px;
}

.utility-comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 20px;
  align-items: stretch;
}

.utility-comparison-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.utility-comparison-card--featured {
  border: 2px solid var(--green);
  background: linear-gradient(180deg, #f0faf5, #ffffff);
  box-shadow: 0 24px 60px rgba(19, 105, 72, 0.16);
}

.utility-comparison-card h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}

.utility-comparison-card p {
  color: var(--muted);
  line-height: 1.62;
}

.utility-comparison-card .btn {
  width: fit-content;
}

.utility-final-cta {
  background:
    linear-gradient(135deg, rgba(10, 54, 38, 0.96), rgba(7, 34, 26, 0.98)),
    url("../images/industry-cards/utility-scale-solar.jpg") center / cover no-repeat;
}

@media (min-width: 1360px) {
  .utility-hero__arc {
    left: 50%;
    width: min(100%, 1360px);
    transform: translateX(-50%);
  }

  .utility-hero__grid {
    width: 100%;
    max-width: 1360px;
    height: 620px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    grid-template-columns: 620px 660px;
    gap: 0;
    overflow: hidden;
  }

  .utility-hero__copy {
    width: 620px;
    max-width: 620px;
    margin-left: 0;
    padding: 64px 0 12px;
  }

  .utility-hero h1 {
    max-width: 620px;
    font-size: 4.25rem;
  }

  .utility-hero__visual {
    width: 732px;
    max-width: none;
    margin-left: -72px;
    justify-self: start;
  }

  .utility-hero__note {
    left: 128px;
  }
}

@media (max-width: 1180px) {
  .utility-two-column,
  .utility-two-column--wide,
  .utility-quote-grid {
    grid-template-columns: 1fr;
  }

  .utility-hero {
    min-height: 520px;
  }

  .utility-hero__arc {
    height: 520px;
  }

  .utility-hero__grid {
    min-height: 520px;
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  }

  .utility-hero__copy {
    width: 430px;
    max-width: none;
    margin-left: 24px;
    padding: 36px 20px 34px 0;
  }

  .utility-hero__eyebrow {
    margin-bottom: 18px;
    font-size: 0.68rem;
  }

  .utility-hero h1 {
    max-width: 430px;
    font-size: clamp(2.35rem, 3.65vw, 2.75rem);
  }

  .utility-hero__rule {
    margin: 18px 0 18px;
  }

  .utility-hero p {
    max-width: 400px;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .utility-hero__actions {
    gap: 10px;
    margin-top: 20px;
  }

  .utility-hero__actions .btn {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .utility-hero__visual,
  .utility-hero__visual img {
    height: 520px;
    min-height: 520px;
  }

  .utility-hero__visual {
    width: 114%;
    margin-left: -14%;
  }

  .utility-hero__note {
    left: clamp(126px, 12vw, 152px);
    bottom: 24px;
    width: min(320px, calc(100% - 64px));
    min-height: 104px;
    padding: 18px 20px;
  }

  .utility-hero__note strong {
    font-size: 0.95rem;
  }

  .utility-quote-copy {
    position: static;
  }

  .utility-card-grid--six,
  .utility-card-grid--three,
  .utility-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .utility-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 22px;
  }

  .utility-benefit:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 1000px) {
  .utility-hero__arc {
    display: none;
  }

  .utility-hero {
    min-height: auto;
    padding: 0 24px 34px;
    background:
      linear-gradient(118deg, #f7fbf8 0%, #eef7f1 47%, #ffffff 100%);
  }

  .utility-hero__grid {
    display: block;
    min-height: auto;
  }

  .utility-hero__copy {
    width: min(100%, 680px);
    max-width: none;
    margin: 0;
    padding: 48px 0 30px;
  }

  .utility-hero h1 {
    font-size: clamp(2.5rem, 7vw, 3rem);
  }

  .utility-hero__visual {
    display: none;
  }

  .utility-benefits-strip {
    padding: 28px 24px;
  }

  .utility-benefit,
  .utility-benefit:first-child,
  .utility-benefit:nth-child(3) {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .utility-hero {
    padding: 0 18px 30px;
  }

  .utility-hero__copy {
    padding-top: 42px;
  }

  .utility-hero__eyebrow {
    white-space: normal;
  }

  .utility-hero h1 {
    font-size: clamp(2.38rem, 10.4vw, 2.75rem);
  }

  .utility-hero__actions,
  .utility-final-cta .hero-actions {
    display: grid;
    gap: 12px;
  }

  .utility-hero__actions .btn,
  .utility-final-cta .btn {
    width: 100%;
  }

  .utility-benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .utility-benefit {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: auto;
  }

  .utility-benefit + .utility-benefit {
    padding-top: 18px;
    border-top: 1px solid #d9e5df;
    border-left: 0;
  }

  .utility-benefit__icon,
  .utility-benefit__icon svg,
  .utility-benefit__icon img {
    width: 40px;
    height: 40px;
  }

  .utility-card-grid--three,
  .utility-card-grid--six,
  .utility-process-grid,
  .utility-feature-grid,
  .utility-check-list,
  .utility-comparison-grid {
    grid-template-columns: 1fr;
  }

  .utility-card,
  .utility-step,
  .utility-project-form,
  .utility-comparison-card {
    padding: 22px;
  }

  .utility-comparison-card .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
