/*
  PowerHaus full redesign — August 2026
  A restrained, practical visual system for a real local electrical contractor.
  Existing page content and tools are retained; this stylesheet controls the new layout.
*/

:root {
  --ink: #17242c;
  --navy: #152d3d;
  --navy-2: #1d3a4d;
  --blue: #2f718d;
  --blue-dark: #245b72;
  --blue-pale: #dceaf0;
  --cream: #f2efe8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --muted: #5e6b72;
  --line: #d6d7d2;
  --line-dark: rgba(255,255,255,.17);
  --sand: #c9af7a;
  --content: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0 !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

/* No floating cards, staged fades or template motion. */
*, *::before, *::after { animation: none !important; }
.service-card:hover, .svc-card:hover, .reason-card:hover, .qual-card:hover,
.sel-card:hover, .q-sel-card:hover, .service-option:hover, .other-card:hover,
.approval-badge:hover { transform: none !important; }

h1, h2, h3, h4, .page-title, .section-title, .service-title, .svc-title,
.reason-title, .qual-title, .category-title, .step-title, .panel-title,
.q-step-title, .q-estimate-title, .estimate-title, .accreditation-title,
.cta-section h2, .enquire-banner h2, .contact-form h3, .complaint-form h3 {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -.035em !important;
  text-transform: none !important;
  line-height: 1.12 !important;
}

/* Utility strip */
.utility-bar {
  position: relative;
  z-index: 110;
  background: var(--navy);
  color: rgba(255,255,255,.72);
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.utility-inner {
  width: min(var(--content), calc(100% - 48px));
  min-height: 34px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.utility-inner a { color: white; text-decoration: none; }
.utility-inner a:hover { text-decoration: underline; }
.utility-right { display: flex; align-items: center; gap: 16px; }
.utility-social { display: inline-flex; align-items: center; gap: 12px; }
.utility-social a { display: inline-flex; color: rgba(255,255,255,0.75); transition: color 0.2s ease; }
.utility-social a:hover { color: #fff; text-decoration: none; }
.utility-social svg { width: 15px; height: 15px; display: block; }

/* Main navigation */
nav.site-nav {
  position: sticky !important;
  top: 0 !important;
  left: auto !important;
  right: auto !important;
  z-index: 100 !important;
  height: auto !important;
  padding: 0 !important;
  background: rgba(251,250,247,.98) !important;
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.site-nav-inner {
  width: min(var(--content), calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  flex: 0 0 auto;
}
.site-brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid var(--line);
  overflow: hidden;
}
.site-brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.site-brand-copy { display: flex; flex-direction: column; line-height: 1.08; }
.site-brand-copy strong {
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -.035em;
}
.site-brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.site-menu { display: flex; align-items: center; gap: 24px; }
.site-menu-links { display: flex; align-items: center; gap: 20px; }
.site-menu-links a {
  position: relative;
  padding: 30px 0 26px;
  color: #35454d;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}
.site-menu-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--blue);
  transition: right .18s ease;
}
.site-menu-links a:hover::after, .site-menu-links a.is-active::after { right: 0; }
.site-menu-links a.is-active { color: var(--navy); }
.site-quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--navy);
}
.site-quote-link:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.nav-social { display: inline-flex; align-items: center; gap: 12px; }
.nav-social a { display: inline-flex; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-social a:hover { transform: translateY(-2px); opacity: 0.85; }
.nav-social svg { width: 21px; height: 21px; display: block; }
.menu-toggle {
  display: none;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  padding: 9px 0;
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle span { width: 22px; height: 2px; background: currentColor; display: block; }
.menu-toggle b { margin-left: 7px; font-size: 13px; }

/* Shared buttons */
.button, .btn-primary, .btn-outline, .btn-next, .btn-back, .btn-home,
.form-submit, #ph-send, #solar-enquire-btn, .svc-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 12px 22px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-decoration: none !important;
}
.button-primary, .btn-primary, .btn-next, .form-submit, #ph-send, #solar-enquire-btn {
  background: var(--blue) !important;
  color: white !important;
  border: 1px solid var(--blue) !important;
}
.button-primary:hover, .btn-primary:hover, .btn-next:hover, .form-submit:hover,
#ph-send:hover, #solar-enquire-btn:hover {
  background: var(--blue-dark) !important;
  border-color: var(--blue-dark) !important;
}
.button-text {
  background: transparent;
  border: 0;
  color: var(--navy);
  padding-left: 0 !important;
  padding-right: 0 !important;
  min-height: auto !important;
  border-bottom: 1px solid var(--navy);
}
.btn-outline, .btn-back, .btn-home {
  background: transparent !important;
  color: var(--navy) !important;
  border: 1px solid #9ca8ad !important;
}
.section-dark .btn-outline, .page-hero .btn-outline, .cta-section .btn-outline {
  color: white !important;
  border-color: rgba(255,255,255,.56) !important;
}

/* HOME — bespoke split hero */
.home-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.home-hero-inner {
  width: min(1640px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(560px, .88fr) minmax(620px, 1.12fr);
  min-height: 660px;
}
.home-hero-copy {
  padding: 82px 64px 68px clamp(44px, 4.2vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow, .section-label, .section-label-sm, .page-label,
.accreditation-label, .qual-accreditation-label {
  display: block !important;
  margin: 0 0 16px !important;
  color: var(--blue) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}
.home-hero h1 {
  max-width: 760px;
  margin: 0 0 25px;
  color: var(--navy);
  font-size: clamp(52px, 4.7vw, 80px);
  line-height: .99 !important;
  letter-spacing: -.055em !important;
}
.home-hero-lead {
  max-width: 690px;
  margin: 0 0 32px;
  color: #48575f;
  font-size: 19px;
  line-height: 1.65;
}
.home-hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.home-hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 58px 0 0;
  border-top: 1px solid #c9c8c1;
}
.home-hero-points > div { padding: 20px 20px 0 0; border-right: 1px solid #c9c8c1; }
.home-hero-points > div + div { padding-left: 20px; }
.home-hero-points > div:last-child { border-right: 0; }
.home-hero-points dt { color: var(--navy); font-size: 14px; font-weight: 750; }
.home-hero-points dd { margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.home-hero-figure {
  position: relative;
  min-height: 660px;
  margin: 0;
  background: var(--navy);
  overflow: hidden;
}
.home-hero-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; display: block; }
.home-hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(15,35,48,.72));
}
.home-hero-figure figcaption {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 34px 31px;
  color: white;
  border-top: 1px solid rgba(255,255,255,.28);
}
.home-hero-figure figcaption strong { display: block; font-size: 18px; letter-spacing: -.02em; }
.home-hero-figure figcaption span { display: block; margin-top: 6px; color: rgba(255,255,255,.76); font-size: 13px; }

.proof-strip { background: var(--navy); color: white; }
.proof-strip-inner {
  width: min(var(--content), calc(100% - 48px));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.proof-strip span {
  min-height: 28px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid var(--line-dark);
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 600;
}
.proof-strip span::before { content: ""; width: 6px; height: 6px; margin-right: 12px; background: var(--sand); }
.proof-strip span:first-child { padding-left: 0; }
.proof-strip span:last-child { border-right: 0; }

/* Shared content sections */
.section, .services-section, .configurator, .form-area, .payback-section,
.other-services, .content {
  padding-left: max(24px, calc((100vw - var(--content)) / 2)) !important;
  padding-right: max(24px, calc((100vw - var(--content)) / 2)) !important;
}
.section { padding-top: 100px !important; padding-bottom: 100px !important; }
.section-alt { background: var(--cream) !important; }
.section-dark { background: var(--navy) !important; color: white !important; }
.section-header { max-width: 710px !important; margin: 0 0 52px !important; text-align: left !important; }
.section-header.center { margin-left: auto !important; margin-right: auto !important; text-align: center !important; }
.section-title {
  margin: 0 0 18px !important;
  color: var(--navy) !important;
  font-size: clamp(35px, 4vw, 55px) !important;
}
.section-dark .section-title { color: white !important; }
.section-sub { max-width: 690px; margin: 0 !important; color: var(--muted) !important; font-size: 17px !important; line-height: 1.65 !important; }
.section-dark .section-sub { color: rgba(255,255,255,.72) !important; }

/* Homepage service list — deliberately not a card grid. */
.page-home #services { background: var(--paper) !important; }
.page-home #services .section-header {
  display: grid;
  grid-template-columns: 180px 1fr;
  max-width: none !important;
  gap: 46px;
  align-items: start;
  margin-bottom: 40px !important;
}
.page-home #services .section-label { padding-top: 10px; }
.page-home #services .section-title { max-width: 700px; }
.page-home #services .section-sub { grid-column: 2; }
.services-grid {
  display: block !important;
  max-width: none !important;
  counter-reset: home-services;
  border-bottom: 1px solid var(--line);
}
.service-card {
  counter-increment: home-services;
  position: relative;
  display: grid !important;
  grid-template-columns: 68px minmax(190px, .8fr) minmax(260px, 1.25fr) 150px;
  gap: 28px !important;
  align-items: start;
  min-height: 210px;
  padding: 34px 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid var(--line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.service-card::before {
  content: "0" counter(home-services);
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
}
.service-card .service-icon { display: none !important; }
.service-title { margin: 0 !important; color: var(--navy) !important; font-size: 25px !important; }
.service-desc { margin: 0 0 16px !important; color: var(--muted) !important; font-size: 14px !important; line-height: 1.65 !important; }
.service-list {
  grid-column: 3;
  margin: 0 !important;
  padding: 0 !important;
  columns: 2;
  column-gap: 26px;
  list-style: none !important;
}
.service-list li { position: relative; break-inside: avoid; margin: 0 0 7px !important; padding-left: 15px !important; color: #45555e !important; font-size: 13px !important; }
.service-list li::before { content: "" !important; position: absolute; left: 0; top: .72em; width: 6px; height: 1px; background: var(--blue); }
.service-link {
  align-self: start;
  justify-self: end;
  color: var(--navy) !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  text-decoration: none !important;
  border-bottom: 1px solid var(--navy);
}
.service-link:hover { color: var(--blue) !important; border-color: var(--blue); }

/* Why section */
.why-grid { display: grid !important; grid-template-columns: 1.35fr .65fr !important; gap: 70px !important; align-items: stretch !important; }
.why-list { border-top: 1px solid var(--line); }
.why-item {
  display: grid !important;
  grid-template-columns: 58px 1fr !important;
  gap: 20px !important;
  padding: 25px 0 !important;
  border-bottom: 1px solid var(--line) !important;
}
.why-num { color: var(--blue) !important; font-size: 12px !important; font-weight: 750 !important; }
.why-item h3 { margin: 0 0 6px !important; color: var(--navy) !important; font-size: 20px !important; }
.why-item p { margin: 0 !important; color: var(--muted) !important; font-size: 14px !important; }
.why-visual {
  min-height: 100%;
  padding: 50px 42px !important;
  background: var(--navy) !important;
  color: white !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  text-align: left !important;
}
.why-visual-icon { width: 88px !important; height: 88px !important; margin: 0 0 auto !important; padding: 5px !important; background: white !important; border-radius: 0 !important; }
.why-visual h3 { color: white !important; font-size: 27px !important; margin: 42px 0 16px !important; }
.why-visual p { color: rgba(255,255,255,.7) !important; font-size: 14px !important; }
.why-accreditations { display: flex !important; gap: 8px !important; flex-wrap: wrap !important; margin-top: 24px !important; }
.accred-badge { padding: 6px 9px !important; background: transparent !important; border: 1px solid rgba(255,255,255,.3) !important; border-radius: 0 !important; color: white !important; font-size: 11px !important; }

/* Contact */
#contact { border-top: 1px solid rgba(255,255,255,.09); }
.contact-grid { display: grid !important; grid-template-columns: .72fr 1.28fr !important; gap: 70px !important; align-items: start !important; max-width: none !important; }
.contact-info { display: block !important; }
.contact-item {
  display: grid !important;
  grid-template-columns: 44px 1fr !important;
  gap: 14px !important;
  padding: 20px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.16) !important;
  background: transparent !important;
}
.contact-icon { width: auto !important; height: auto !important; background: transparent !important; font-size: 17px !important; }
.contact-item h4 { margin: 0 0 4px !important; color: white !important; font-size: 14px !important; letter-spacing: 0 !important; }
.contact-item p, .contact-item a { margin: 0 !important; color: rgba(255,255,255,.7) !important; font-size: 13px !important; text-decoration: none; }
.contact-form, .complaint-form {
  padding: 40px !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.form-row, .form-grid { gap: 18px !important; }
.form-group, .form-field, .field-group { margin-bottom: 18px !important; }
.form-group label, .form-field label, .field-group label {
  display: block;
  margin-bottom: 7px !important;
  color: #394950 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px !important;
  background: white !important;
  color: var(--ink) !important;
  border: 1px solid #bec5c7 !important;
  border-radius: 0 !important;
  outline: 0;
  box-shadow: none !important;
}
textarea { min-height: 118px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue) !important; box-shadow: 0 0 0 2px rgba(47,113,141,.12) !important; }

/* Internal page heroes — solid copy area with real project image, no gradient or geometric effects. */
.page-hero {
  position: relative !important;
  min-height: 430px !important;
  padding: 92px max(24px, calc((100vw - var(--content)) / 2)) !important;
  background: var(--navy) !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
}
.page-hero::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  width: 43% !important;
  background: url('images/hero-solar-install.jpg') center / cover no-repeat !important;
  opacity: .88 !important;
  clip-path: none !important;
}
.page-hero::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 57% !important;
  right: auto !important;
  width: 1px !important;
  background: rgba(255,255,255,.22) !important;
  clip-path: none !important;
}
.page-domestic .page-hero::before { background-image: url('images/domestic-header.png') !important; background-position: center !important; }
.page-commercial .page-hero::before { background-image: url('images/commercial-header.jpg') !important; background-position: center 42% !important; }
.page-solar .page-hero::before { background-image: url('images/solar-header.png') !important; background-position: center !important; }
.page-ev .page-hero::before { background-image: url('images/hero-solar-install.jpg') !important; background-position: 60% center !important; }
.page-why .page-hero::before, .page-faqs .page-hero::before, .page-quote .page-hero::before,
.page-complaints .page-hero::before, .page-privacy .page-hero::before { opacity: .32 !important; filter: grayscale(1); }
.page-hero-content { position: relative !important; z-index: 1 !important; width: 53% !important; max-width: 670px !important; }
.page-title {
  margin: 0 0 19px !important;
  color: white !important;
  font-size: clamp(44px, 5.5vw, 72px) !important;
  letter-spacing: -.055em !important;
}
.page-title br { display: none; }
.page-title span { color: #b9dce8 !important; }
.page-sub { max-width: 600px !important; margin: 0 !important; color: rgba(255,255,255,.75) !important; font-size: 17px !important; line-height: 1.65 !important; }
.updated-badge { display: inline-block !important; margin-top: 22px !important; padding: 7px 10px !important; border: 1px solid rgba(255,255,255,.32) !important; border-radius: 0 !important; color: white !important; background: transparent !important; font-size: 12px !important; }

/* Domestic, commercial and EV service pages */
.services-section { padding-top: 92px !important; padding-bottom: 92px !important; background: var(--paper) !important; }
.services-intro { max-width: 760px !important; margin: 0 0 52px !important; text-align: left !important; }
.services-intro h2 { margin: 0 0 16px !important; color: var(--navy) !important; font-size: clamp(36px, 4vw, 52px) !important; }
.services-intro p { max-width: 650px !important; margin: 0 !important; color: var(--muted) !important; font-size: 16px !important; }
.service-cards {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 48px !important;
  counter-reset: internal-services;
  border-top: 1px solid var(--line);
}
.svc-card {
  counter-increment: internal-services;
  position: relative;
  min-height: 250px;
  padding: 34px 0 38px 54px !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.svc-card::before {
  content: "0" counter(internal-services);
  position: absolute;
  left: 0;
  top: 39px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
}
.svc-icon { display: none !important; }
.svc-title { margin: 0 0 13px !important; color: var(--navy) !important; font-size: 24px !important; }
.svc-desc { margin: 0 0 17px !important; color: var(--muted) !important; font-size: 14px !important; line-height: 1.65 !important; }
.svc-list { margin: 0 0 20px !important; padding: 0 !important; list-style: none !important; }
.svc-list li { position: relative; margin: 5px 0 !important; padding-left: 15px !important; color: #46565e !important; font-size: 13px !important; }
.svc-list li::before { content: "" !important; position: absolute; left: 0; top: .73em; width: 6px; height: 1px; background: var(--blue); }
.svc-cta { min-height: auto !important; padding: 0 0 3px !important; color: var(--navy) !important; background: transparent !important; border: 0 !important; border-bottom: 1px solid var(--navy) !important; font-size: 13px !important; }
.enquire-banner {
  margin: 0 !important;
  padding: 65px max(24px, calc((100vw - var(--content)) / 2)) !important;
  background: var(--cream) !important;
  color: var(--ink) !important;
  border-top: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  text-align: left !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 44px !important;
  align-items: center !important;
}
.enquire-banner h2 { margin: 0 0 10px !important; color: var(--navy) !important; font-size: 35px !important; }
.enquire-banner p { margin: 0 !important; max-width: 690px; color: var(--muted) !important; }

/* Other-service link panels */
.other-services { padding-top: 82px !important; padding-bottom: 82px !important; background: white !important; }
.other-title { margin-bottom: 34px !important; color: var(--navy) !important; font-size: 35px !important; }
.other-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 0 !important; border-top: 1px solid var(--line); }
.other-card {
  padding: 28px 26px !important;
  background: transparent !important;
  border: 0 !important;
  border-right: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-align: left !important;
}
.other-card:last-child { border-right: 0 !important; }
.other-card-icon { display: none !important; }
.other-card h3 { margin: 0 0 7px !important; color: var(--navy) !important; font-size: 18px !important; }
.other-card p { margin: 0 !important; color: var(--muted) !important; font-size: 13px !important; }

/* Why-us page */
.reasons-grid, .quals-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 48px !important;
  border-top: 1px solid var(--line) !important;
}
.reason-card, .qual-card {
  position: relative;
  min-height: 220px;
  padding: 34px 0 36px 54px !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.reason-num { position: absolute !important; left: 0 !important; top: 39px !important; color: var(--blue) !important; font-size: 12px !important; }
.reason-icon, .qual-icon { display: none !important; }
.reason-title, .qual-title { margin: 0 0 12px !important; color: var(--navy) !important; font-size: 23px !important; }
.reason-desc, .qual-desc { margin: 0 !important; color: var(--muted) !important; font-size: 14px !important; }
.promise-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 64px !important; align-items: start !important; }
.promise-item { display: grid !important; grid-template-columns: 34px 1fr !important; gap: 14px !important; padding: 20px 0 !important; border-bottom: 1px solid var(--line) !important; }
.promise-icon { background: transparent !important; color: var(--blue) !important; }
.promise-visual { padding: 42px !important; background: var(--navy) !important; color: white !important; border-radius: 0 !important; }
.promise-check { border-bottom: 1px solid rgba(255,255,255,.14) !important; }
.qual-accreditation-wrap { margin-top: 62px !important; padding: 38px !important; background: white !important; border: 1px solid var(--line) !important; border-radius: 0 !important; }
.comparison-wrap { overflow-x: auto; border: 1px solid var(--line) !important; border-radius: 0 !important; box-shadow: none !important; }
.comparison-table { border-collapse: collapse !important; }
.comparison-table th, .comparison-table td { border-bottom: 1px solid var(--line) !important; }
.cta-section { padding: 80px max(24px, calc((100vw - var(--content)) / 2)) !important; background: var(--navy) !important; }

/* FAQ page */
.faq-nav {
  display: flex !important;
  gap: 0 !important;
  margin: 0 0 58px !important;
  padding: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  overflow-x: auto;
  background: transparent !important;
  border-radius: 0 !important;
}
.faq-tab {
  min-width: max-content;
  padding: 14px 18px !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 3px solid transparent !important;
  border-radius: 0 !important;
  color: var(--muted) !important;
  font-size: 13px !important;
}
.faq-tab.active { background: #10243e !important; color: #ffffff !important; border-color: #10243e !important; border-bottom-color: var(--blue) !important; }
.faq-category { display: grid !important; grid-template-columns: 300px 1fr !important; gap: 70px !important; align-items: start !important; }
.category-header { position: sticky !important; top: 110px !important; padding: 0 !important; text-align: left !important; }
.category-icon { display: none !important; }
.category-title { margin: 0 0 10px !important; color: var(--navy) !important; font-size: 32px !important; }
.category-sub { margin: 0 !important; color: var(--muted) !important; }
.faq-item { background: transparent !important; border: 0 !important; border-bottom: 1px solid var(--line) !important; border-radius: 0 !important; box-shadow: none !important; }
.faq-item:first-child { border-top: 1px solid var(--line) !important; }
.faq-question { padding: 22px 0 !important; color: var(--navy) !important; font-size: 16px !important; font-weight: 700 !important; }
.faq-chevron { width: 28px !important; height: 28px !important; background: transparent !important; color: var(--blue) !important; }
.faq-answer-inner { padding: 0 45px 24px 0 !important; color: var(--muted) !important; font-size: 14px !important; }

/* Solar configurator and quote wizard: clean, technical and flat. */
.configurator, .form-area { max-width: none !important; padding-top: 88px !important; padding-bottom: 92px !important; }
.config-step, .q-config-step { margin-bottom: 55px !important; }
.step-header, .q-step-header { display: grid !important; grid-template-columns: 42px 1fr !important; gap: 18px !important; align-items: start !important; }
.step-num, .q-step-num {
  width: 36px !important; height: 36px !important; min-width: 36px !important;
  display: grid !important; place-items: center !important;
  background: var(--navy) !important; color: white !important;
  border-radius: 0 !important; font-size: 14px !important;
}
.step-title, .q-step-title { margin: 0 !important; color: var(--navy) !important; font-size: 25px !important; }
.step-sub, .q-step-sub { color: var(--muted) !important; }
.step-divider, .q-step-divider { border-color: var(--line) !important; }
.type-cards, .q-type-cards, .brand-cards, .q-brand-cards, .products-grid, .q-products-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 14px !important;
}
.sel-card, .q-sel-card, .service-option {
  min-height: 150px;
  padding: 25px !important;
  background: white !important;
  border: 1px solid #bcc5c8 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.sel-card.selected, .q-sel-card.selected, .service-option.selected {
  background: #edf5f7 !important;
  border: 2px solid var(--blue) !important;
}
.sel-card.selected::after, .q-sel-card.selected::after {
  top: 12px !important; right: 12px !important; width: 23px !important; height: 23px !important;
  background: var(--blue) !important; border-radius: 0 !important;
}
.card-icon, .q-card-icon, .svc-emoji { font-size: 26px !important; margin-bottom: 12px !important; filter: grayscale(.2); }
.brand-logo, .q-brand-logo { border-radius: 0 !important; }
.brand-tag, .q-brand-tag { border-radius: 0 !important; }
.estimate-box, .q-estimate-box {
  padding: 34px !important;
  background: var(--navy) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.estimate-total, .q-estimate-total { border-radius: 0 !important; }
.estimate-warning, .q-estimate-warning, .q-panel-note {
  border-radius: 0 !important;
  background: rgba(255,255,255,.07) !important;
}
.payback-section { max-width: none !important; background: var(--cream) !important; padding-top: 80px !important; padding-bottom: 80px !important; }
.form-wrap { max-width: var(--content) !important; margin: 0 auto !important; }
.form-layout { display: grid !important; grid-template-columns: minmax(0, 1fr) 330px !important; gap: 48px !important; }
.progress-wrap { background: white !important; border-bottom: 1px solid var(--line) !important; }
.progress-steps { max-width: var(--content) !important; }
.progress-step { color: var(--muted) !important; }
.progress-step.active .step-num, .progress-step.done .step-num { background: var(--blue) !important; }
.step-panel { background: transparent !important; }
.summary-card { position: sticky !important; top: 112px !important; padding: 28px !important; background: var(--cream) !important; border: 1px solid var(--line) !important; border-radius: 0 !important; box-shadow: none !important; }
.trust-strip { background: var(--cream) !important; border-bottom: 1px solid var(--line) !important; }
.trust-strip .trust-item { color: var(--ink) !important; border-right-color: var(--line) !important; }
.upload-slots > * { border-radius: 0 !important; }
.success-screen { padding: 75px 30px !important; background: white !important; border-radius: 0 !important; }

/* Complaints and privacy */
.step-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 0 !important; border-top: 1px solid var(--line) !important; }
.step-card { padding: 32px !important; background: transparent !important; border: 0 !important; border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; border-radius: 0 !important; box-shadow: none !important; }
.step-card:last-child { border-right: 0 !important; }
.step-num { border-radius: 0 !important; }
.content { max-width: none !important; padding-top: 86px !important; padding-bottom: 88px !important; }
.page-privacy .content { display: grid; grid-template-columns: 240px minmax(0, 780px); gap: 65px; align-items: start; }
.page-privacy .content::before { content: "Privacy policy"; position: sticky; top: 120px; color: var(--blue); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.policy-section { margin: 0 !important; padding: 30px 0 !important; background: transparent !important; border: 0 !important; border-bottom: 1px solid var(--line) !important; border-radius: 0 !important; box-shadow: none !important; }
.policy-section h2 { color: var(--navy) !important; font-size: 25px !important; }
.policy-section .icon { display: none !important; }
.highlight, .contact-card { padding: 26px !important; background: var(--cream) !important; border: 0 !important; border-left: 3px solid var(--blue) !important; border-radius: 0 !important; }

/* Accreditation strip — logos shown plainly, not as three matching cards. */
.accreditation-strip {
  padding: 58px max(24px, calc((100vw - var(--content)) / 2)) !important;
  background: white !important;
  border-top: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
}
.accreditation-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .8fr) !important;
  gap: 70px !important;
  align-items: center !important;
  max-width: none !important;
  margin: 0 !important;
}
.accreditation-copy { max-width: 620px !important; }
.accreditation-title { margin: 0 0 10px !important; color: var(--navy) !important; font-size: 31px !important; }
.accreditation-sub { margin: 0 !important; color: var(--muted) !important; font-size: 14px !important; }
.accreditation-badges { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 24px !important; align-items: center !important; }
.approval-badge, .approval-badge-logo {
  min-height: 86px !important;
  padding: 8px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.approval-logo { max-width: 100% !important; max-height: 70px !important; object-fit: contain !important; filter: none !important; }
.approval-logo-mcs { max-height: 74px !important; }
.approval-logo-trustmark { max-height: 54px !important; }

/* Footer */
.site-footer {
  padding: 0 !important;
  background: #102634 !important;
  color: white !important;
  border: 0 !important;
  text-align: left !important;
}
.site-footer-main {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 68px 0 58px;
  display: grid;
  grid-template-columns: 1.35fr .75fr .9fr .9fr;
  gap: 55px;
}
.footer-site-brand { color: white; }
.footer-site-brand .site-brand-copy small { color: rgba(255,255,255,.55); }
.footer-intro p { max-width: 340px; margin: 24px 0 15px; color: rgba(255,255,255,.64); font-size: 13px; }
.footer-email { color: white; font-size: 13px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.5); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social-link { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.75); transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease; }
.footer-social-link:hover { border-color: #2a7fa5; color: #fff; background: rgba(42,127,165,0.25); transform: translateY(-2px); }
.footer-social-link svg { width: 16px; height: 16px; display: block; }
.footer-links h2, .footer-details h2 { margin: 0 0 15px; color: white; font-size: 13px !important; letter-spacing: 0 !important; }
.footer-links a { display: block; margin: 8px 0; color: rgba(255,255,255,.65); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-details h2:not(:first-child) { margin-top: 28px; }
.footer-details p { margin: 0; color: rgba(255,255,255,.63); font-size: 13px; }
.site-footer-bottom {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
}
.site-footer-bottom p { margin: 0; }

/* Thank-you page */
.thanks-main {
  width: min(760px, calc(100% - 48px));
  min-height: 520px;
  margin: 0 auto;
  padding: 110px 0;
}
.thanks-main h1 { margin: 0 0 22px; color: var(--navy); font-size: clamp(42px,6vw,68px); }
.thanks-main p:not(.eyebrow) { max-width: 620px; margin: 0 0 32px; color: var(--muted); font-size: 18px; }

/* Wide desktop refinement */
@media (min-width: 1400px) {
  .site-nav-inner { gap: 38px; }
  .site-menu { gap: 28px; }
  .site-menu-links { gap: 24px; }
  .site-menu-links a { font-size: 13.5px; }
  .home-hero-points { max-width: 720px; }
}

/* Tablet */
@media (max-width: 1100px) {
  .site-menu-links { gap: 13px; }
  .site-menu-links a { font-size: 12px; }
  .site-quote-link { padding-inline: 13px; }
  .home-hero-inner { grid-template-columns: 1fr .8fr; }
  .home-hero-copy { padding-left: 40px; padding-right: 45px; }
  .service-card { grid-template-columns: 48px 1fr 1fr; }
  .service-link { grid-column: 2; justify-self: start; margin-top: -20px; }
  .accreditation-inner { grid-template-columns: 1fr 1fr !important; }
  .site-footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-details { grid-column: 2 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-details h2:not(:first-child) { margin-top: 0; }
}

/* Mobile navigation and layout */
@media (max-width: 920px) {
  .utility-inner { width: min(100% - 32px, var(--content)); }
  .utility-inner span { display: none; }
  .utility-inner { justify-content: center; }
  .site-nav-inner { width: min(100% - 32px, var(--content)); min-height: 72px; }
  .site-brand-mark { width: 46px; height: 46px; }
  .site-brand-copy strong { font-size: 18px; }
  .menu-toggle { display: flex; flex-direction: column; position: relative; padding-right: 48px; }
  .menu-toggle b { position: absolute; right: 0; top: 9px; }
  .site-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    padding: 17px 24px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(20,35,45,.11);
  }
  .site-nav.menu-open .site-menu { display: block; }
  .site-menu-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .site-menu-links a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .site-menu-links a::after { display: none; }
  .site-quote-link { margin-top: 18px; width: 100%; }
  .nav-social { margin-top: 16px; justify-content: center; gap: 20px; }
  .nav-social svg { width: 24px; height: 24px; }

  .home-hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .home-hero-copy { padding: 72px 32px 60px; }
  .home-hero h1 { font-size: clamp(46px, 10vw, 70px); }
  .home-hero-figure { min-height: 520px; }
  .proof-strip-inner { grid-template-columns: 1fr 1fr; }
  .proof-strip span { min-height: 52px; padding: 0 15px; border-bottom: 1px solid var(--line-dark); }
  .proof-strip span:nth-child(2) { border-right: 0; }
  .proof-strip span:nth-child(3), .proof-strip span:nth-child(4) { border-bottom: 0; }
  .proof-strip span:first-child { padding-left: 15px; }

  .page-home #services .section-header { grid-template-columns: 1fr; gap: 0; }
  .page-home #services .section-sub { grid-column: auto; }
  .service-card { grid-template-columns: 45px 1fr; gap: 20px !important; }
  .service-card .service-title, .service-card .service-desc, .service-card .service-list, .service-card .service-link { grid-column: 2; }
  .service-card .service-desc { margin-top: -8px !important; }
  .service-list { columns: 1; }
  .service-link { margin-top: 0; }
  .why-grid, .contact-grid, .promise-grid { grid-template-columns: 1fr !important; }
  .why-visual { min-height: 480px; }

  .page-hero { min-height: auto !important; padding-top: 285px !important; padding-bottom: 64px !important; }
  .page-hero::before { top: 0 !important; left: 0 !important; right: 0 !important; bottom: auto !important; width: 100% !important; height: 230px !important; opacity: .62 !important; }
  .page-hero::after { top: 230px !important; left: 0 !important; width: 100% !important; height: 1px !important; bottom: auto !important; }
  .page-hero-content { width: 100% !important; }

  .service-cards, .reasons-grid, .quals-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .enquire-banner { grid-template-columns: 1fr !important; }
  .other-grid { grid-template-columns: 1fr !important; }
  .other-card { border-right: 0 !important; }
  .faq-category { grid-template-columns: 1fr !important; gap: 30px !important; }
  .category-header { position: static !important; }
  .form-layout { grid-template-columns: 1fr !important; }
  .summary-card { position: static !important; }
  .page-privacy .content { grid-template-columns: 1fr; gap: 0; }
  .page-privacy .content::before { position: static; margin-bottom: 20px; }
  .accreditation-inner { grid-template-columns: 1fr !important; gap: 34px !important; }
  .site-footer-main { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-details { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .utility-bar { display: none; }
  .site-brand-copy small { font-size: 9px; }
  .site-menu { top: 72px; }
  .site-menu-links { grid-template-columns: 1fr; }
  .home-hero-copy { padding: 58px 24px 52px; }
  .home-hero-lead { font-size: 17px; }
  .home-hero-points { grid-template-columns: 1fr; }
  .home-hero-points > div, .home-hero-points > div + div { padding: 14px 0; border-right: 0; border-bottom: 1px solid #c9c8c1; }
  .home-hero-points > div:last-child { border-bottom: 0; }
  .home-hero-figure { min-height: 430px; }
  .home-hero-figure figcaption { padding: 22px 24px; }
  .proof-strip-inner { width: 100%; }
  .proof-strip span { font-size: 12px; }
  .section { padding-top: 74px !important; padding-bottom: 74px !important; }
  .section-title { font-size: 38px !important; }
  .service-card { min-height: 0; padding: 27px 0 !important; }
  .service-title { font-size: 22px !important; }
  .why-visual { min-height: 420px; padding: 36px 28px !important; }
  .contact-form, .complaint-form { padding: 28px 22px !important; }
  .form-row, .form-grid { grid-template-columns: 1fr !important; }
  .page-hero { padding-left: 24px !important; padding-right: 24px !important; }
  .page-title { font-size: 48px !important; }
  .services-section, .configurator, .form-area, .payback-section, .other-services, .content { padding-left: 24px !important; padding-right: 24px !important; }
  .svc-card, .reason-card, .qual-card { padding-left: 42px !important; }
  .type-cards, .q-type-cards, .brand-cards, .q-brand-cards, .products-grid, .q-products-grid { grid-template-columns: 1fr !important; }
  .step-grid { grid-template-columns: 1fr !important; }
  .step-card { border-right: 0 !important; }
  .accreditation-badges { grid-template-columns: 1fr 1fr 1fr !important; gap: 10px !important; }
  .approval-badge, .approval-badge-logo { min-height: 64px !important; padding: 2px !important; }
  .site-footer-main { grid-template-columns: 1fr; gap: 38px; padding-top: 54px; }
  .footer-intro, .footer-details { grid-column: auto; }
  .footer-details { display: block; }
  .footer-details h2:not(:first-child) { margin-top: 25px; }
  .site-footer-bottom { flex-direction: column; gap: 6px; }
}

/* Final layout refinements after cross-page visual QA. */
nav.site-nav { background: var(--paper) !important; }
.service-card::before { grid-column: 1 !important; grid-row: 1 / span 3 !important; }
.service-card .service-title { grid-column: 2 !important; grid-row: 1 !important; align-self: start; }
.service-card .service-desc { grid-column: 2 !important; grid-row: 2 !important; align-self: start; margin-top: 0 !important; }
.service-card .service-list { grid-column: 3 !important; grid-row: 1 / span 3 !important; }
.service-card .service-link { grid-column: 4 !important; grid-row: 1 !important; }
.why-item { background: transparent !important; border-radius: 0 !important; box-shadow: none !important; }
.why-visual::before, .why-visual::after { content: none !important; display: none !important; }

@media (max-width: 1100px) {
  .service-card .service-link { grid-column: 2 !important; grid-row: 3 !important; margin-top: 6px !important; }
}
@media (max-width: 920px) {
  .service-card::before { grid-column: 1 !important; grid-row: 1 / span 4 !important; }
  .service-card .service-title { grid-column: 2 !important; grid-row: 1 !important; }
  .service-card .service-desc { grid-column: 2 !important; grid-row: 2 !important; }
  .service-card .service-list { grid-column: 2 !important; grid-row: 3 !important; }
  .service-card .service-link { grid-column: 2 !important; grid-row: 4 !important; }
}


/* ── SKR-INSPIRED UPDATE ── */
.home-hero { background: #e8ecef !important; }
.home-hero-inner {
  width: min(var(--content), calc(100% - 48px)) !important;
  min-height: 700px !important;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr) !important;
  gap: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: #f3f0e8 !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.06) !important;
}
.home-hero-copy { padding: 72px 58px 54px !important; }
.home-hero h1 { max-width: 560px; font-size: clamp(52px, 6vw, 88px) !important; }
.home-hero-lead { max-width: 580px !important; }
.home-hero-figure { min-height: 700px !important; }
.home-hero-figure img { object-position: center center !important; }
.home-hero-figure figcaption { max-width: 420px; }
.recent-work-section { padding: 84px 0 98px; background: #ffffff; }
.recent-work-inner {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: start;
}
.recent-work-copy { position: sticky; top: 118px; }
.recent-work-copy .button { margin-top: 26px; }
.recent-work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.recent-work-card { margin: 0; background: var(--paper); border: 1px solid var(--line); overflow: hidden; }
.recent-work-card img { width: 100%; height: 280px; display: block; object-fit: cover; }
.recent-work-card-featured { grid-column: 1 / -1; }
.recent-work-card-featured img { height: 500px; object-position: center 34%; }
.recent-work-card figcaption { padding: 18px 20px 20px; }
.recent-work-card figcaption strong { display: block; color: var(--navy); font-size: 19px; line-height: 1.2; }
.recent-work-card figcaption span { display: block; margin-top: 6px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.page-solar .hero-shot-main img { object-position: center 40%; }
@media (max-width: 1200px) {
  .recent-work-inner { grid-template-columns: 1fr; }
  .recent-work-copy { position: static; }
}
@media (max-width: 980px) {
  .home-hero-inner { grid-template-columns: 1fr !important; min-height: auto !important; }
  .home-hero-copy { padding: 54px 34px 42px !important; }
  .home-hero-figure { min-height: 460px !important; }
  .recent-work-grid { grid-template-columns: 1fr; }
  .recent-work-card-featured img,
  .recent-work-card img { height: 360px; }
}
@media (max-width: 640px) {
  .home-hero-copy { padding: 46px 22px 38px !important; }
  .home-hero h1 { font-size: clamp(42px, 12vw, 62px) !important; }
  .home-hero-points { grid-template-columns: 1fr; }
  .recent-work-section { padding: 62px 0 72px; }
  .recent-work-inner { width: calc(100% - 32px); }
  .recent-work-card-featured img,
  .recent-work-card img { height: 250px; }
}


/* ── USER FEEDBACK REFINEMENTS ── */
/* Make the payback calculator readable and intentional */
.payback-section {
  background: #f3f0e8 !important;
  border-top: 1px solid var(--line) !important;
}
.payback-section > div {
  border-top: 0 !important;
  margin-top: 0 !important;
  padding: 38px 36px !important;
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 12px 30px rgba(21,45,61,.05) !important;
}
.payback-section .form-title {
  color: var(--navy) !important;
  font-size: 34px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
}
.payback-section .form-sub {
  color: var(--muted) !important;
  font-size: 15px !important;
}
.payback-section label {
  color: var(--navy) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: -.01em !important;
  text-transform: none !important;
}
.payback-section input,
.payback-section select {
  background: #ffffff !important;
  border: 1px solid #bfc8cc !important;
  color: var(--ink) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}
.payback-section input::placeholder { color: #7b868d !important; opacity: 1 !important; }
.payback-section input:focus,
.payback-section select:focus {
  border-color: var(--blue) !important;
  outline: 2px solid rgba(47,113,141,.12) !important;
  outline-offset: 0 !important;
}
.payback-section select option { color: var(--ink) !important; background: #ffffff !important; }
.payback-section #payback-results > div,
.payback-section #payback-results > div > div[style*="background:rgba(255,255,255,0.04)"],
.payback-section #payback-results > div[style*="background:rgba(255,255,255,0.04)"] {
  color: var(--ink) !important;
}
.payback-section #payback-results > div[style*="background:rgba(42,127,165,0.1)"] {
  background: #eef5f7 !important;
  border: 1px solid #c8d9e0 !important;
  color: #42535c !important;
}
.payback-section #payback-results > div[style*="background:rgba(42,127,165,0.1)"] strong {
  color: var(--navy) !important;
}
.payback-section div[style*="background:rgba(255,255,255,0.04)"] {
  background: #f8fafb !important;
  border: 1px solid #d7e1e5 !important;
}
.payback-section div[style*="color:rgba(248,249,252,0.4)"] {
  color: #687882 !important;
}
.payback-section .payback-stats > div {
  background: var(--navy) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
}
.payback-section .payback-stats > div div[style*="color:rgba(248,249,252,0.4)"] {
  color: rgba(255,255,255,.7) !important;
}

/* Make the homepage services section feel less plain */
.page-home #services {
  background: linear-gradient(180deg, #ffffff 0%, #faf8f2 100%) !important;
}
.services-grid {
  display: grid !important;
  gap: 18px !important;
  border-bottom: 0 !important;
}
.service-card {
  display: grid !important;
  grid-template-columns: 72px minmax(220px, .9fr) minmax(320px, 1.1fr) 140px !important;
  gap: 26px !important;
  align-items: start !important;
  min-height: auto !important;
  margin: 0 !important;
  padding: 30px 28px !important;
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  border-left: 4px solid var(--blue) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 20px rgba(21,45,61,.04) !important;
}
.service-card::before { display: none !important; }
.service-card .service-icon {
  display: flex !important;
  width: 52px !important;
  height: 52px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 2px 0 0 !important;
  background: #e7f0f4 !important;
  border: 1px solid #cadbe2 !important;
  border-radius: 12px !important;
  font-size: 24px !important;
}
.service-title {
  font-size: 24px !important;
  margin-bottom: 10px !important;
}
.service-desc {
  margin: 0 !important;
  max-width: 420px !important;
}
.service-list {
  grid-column: 3 !important;
  margin-top: 2px !important;
}
.service-list li {
  margin-bottom: 10px !important;
}
.service-link {
  align-self: center !important;
  justify-self: end !important;
  padding: 10px 0 !important;
}
.service-card:nth-child(2n) {
  background: #fcfbf8 !important;
}

@media (max-width: 1100px) {
  .service-card {
    grid-template-columns: 72px minmax(0, 1fr) !important;
    gap: 18px 22px !important;
  }
  .service-list {
    grid-column: 2 !important;
    columns: 2;
  }
  .service-link {
    grid-column: 2 !important;
    justify-self: start !important;
    align-self: start !important;
  }
}
@media (max-width: 760px) {
  .payback-section > div {
    padding: 28px 22px !important;
  }
  .payback-section .form-title {
    font-size: 28px !important;
  }
  .service-card {
    grid-template-columns: 1fr !important;
    padding: 24px 20px !important;
  }
  .service-card .service-icon {
    width: 48px !important;
    height: 48px !important;
  }
  .service-list {
    grid-column: auto !important;
    columns: 1 !important;
  }
  .service-link {
    grid-column: auto !important;
  }
}


/* ── ALIGNMENT AND HERO FIXES ── */
/* Homepage hero back to a long header using the supplied photo */
.home-hero {
  background: #dde3e8 !important;
  padding-top: 18px !important;
}
.home-hero-inner {
  position: relative !important;
  width: min(var(--content), calc(100% - 48px)) !important;
  min-height: 660px !important;
  display: block !important;
  background-image:
    linear-gradient(90deg, rgba(243,240,232,.96) 0%, rgba(243,240,232,.93) 34%, rgba(243,240,232,.56) 52%, rgba(243,240,232,.14) 68%, rgba(243,240,232,0) 100%),
    url('images/home-hero-header.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.06) !important;
}
.home-hero-copy {
  max-width: 680px !important;
  padding: 72px 58px 58px !important;
  position: relative !important;
  z-index: 2 !important;
}
.home-hero h1 {
  max-width: 620px !important;
  font-size: clamp(54px, 6.4vw, 92px) !important;
}
.home-hero-lead {
  max-width: 610px !important;
}
.home-hero-figure {
  display: none !important;
}
.home-hero-points {
  max-width: 720px !important;
  background: rgba(255,255,255,.5) !important;
  padding: 16px 20px !important;
  border: 1px solid rgba(21,45,61,.10) !important;
  border-radius: 10px !important;
  backdrop-filter: blur(3px);
}
.home-hero-points > div { border-right-color: rgba(21,45,61,.14) !important; }

/* Center the homepage services heading properly */
.page-home #services .section-header {
  display: block !important;
  max-width: 860px !important;
  margin: 0 auto 46px !important;
  text-align: center !important;
}
.page-home #services .section-label {
  display: block !important;
  padding-top: 0 !important;
  margin-bottom: 12px !important;
}
.page-home #services .section-title {
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.page-home #services .section-sub {
  grid-column: auto !important;
  margin: 0 auto !important;
}

/* Center the logo and content in the Why PowerHaus panel */
.why-visual {
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
.why-visual-icon {
  margin: 0 auto 26px !important;
}
.why-visual h3 {
  margin: 0 0 14px !important;
}
.why-visual p {
  max-width: 280px !important;
  margin: 0 auto !important;
}
.why-accreditations {
  justify-content: center !important;
}

@media (max-width: 980px) {
  .home-hero-inner {
    min-height: 560px !important;
    background-image:
      linear-gradient(180deg, rgba(243,240,232,.95) 0%, rgba(243,240,232,.82) 34%, rgba(243,240,232,.45) 60%, rgba(243,240,232,.12) 100%),
      url('images/home-hero-header.jpg') !important;
    background-position: center center !important;
  }
  .home-hero-copy {
    max-width: 100% !important;
    padding: 50px 34px 40px !important;
  }
}
@media (max-width: 640px) {
  .home-hero {
    padding-top: 10px !important;
  }
  .home-hero-inner {
    width: calc(100% - 24px) !important;
    min-height: 520px !important;
  }
  .home-hero-copy {
    padding: 36px 22px 28px !important;
  }
  .home-hero h1 {
    font-size: clamp(40px, 11vw, 60px) !important;
  }
  .home-hero-points {
    padding: 12px 16px !important;
  }
}


/* ── FULL-WIDTH HOMEPAGE HERO ── */
/* Remove the side borders/margins on the homepage header so it uses the full screen width. */
.page-home .home-hero {
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: #dde3e8 !important;
}
.page-home .home-hero-inner {
  width: 100% !important;
  max-width: none !important;
  min-height: 690px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-image:
    linear-gradient(90deg, rgba(243,240,232,.96) 0%, rgba(243,240,232,.93) 34%, rgba(243,240,232,.56) 52%, rgba(243,240,232,.14) 68%, rgba(243,240,232,0) 100%),
    url('images/home-hero-header.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
}
.page-home .home-hero-copy {
  width: min(100%, 1480px) !important;
  margin: 0 auto !important;
  padding: 72px 58px 58px !important;
}
.page-home .home-hero h1 {
  max-width: 640px !important;
}
.page-home .home-hero-lead {
  max-width: 640px !important;
}
.page-home .home-hero-points {
  max-width: 760px !important;
}
@media (max-width: 980px) {
  .page-home .home-hero-inner {
    min-height: 560px !important;
  }
  .page-home .home-hero-copy {
    width: 100% !important;
    padding: 50px 34px 40px !important;
  }
}
@media (max-width: 640px) {
  .page-home .home-hero-inner {
    min-height: 520px !important;
  }
  .page-home .home-hero-copy {
    padding: 36px 22px 28px !important;
  }
}


/* ── FULL-WIDTH TREATMENT FOR ALL PAGES ── */
/*
  Keep a normal working gutter for the content, but remove the large centred
  maximum-width frames that looked like invisible borders on wide screens.
*/
:root {
  --site-gutter: clamp(24px, 4vw, 76px);
}

html, body {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

/* Header and navigation now use the available browser width. */
.utility-inner,
.site-nav-inner,
.proof-strip-inner,
.site-footer-main,
.site-footer-bottom {
  width: calc(100% - (var(--site-gutter) * 2)) !important;
  max-width: none !important;
  margin-left: var(--site-gutter) !important;
  margin-right: var(--site-gutter) !important;
}

/* Every major page band is edge-to-edge. */
.page-hero,
.section,
.services-section,
.configurator,
.form-area,
.payback-section,
.other-services,
.content,
.accreditation-strip,
.cta-section,
.enquire-banner,
.trust-strip,
.progress-wrap,
.site-footer {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-radius: 0 !important;
}

.section,
.services-section,
.configurator,
.form-area,
.payback-section,
.other-services,
.content,
.accreditation-strip,
.cta-section,
.enquire-banner {
  padding-left: var(--site-gutter) !important;
  padding-right: var(--site-gutter) !important;
}

/* Internal page headers now span the full screen rather than appearing framed. */
.page-hero {
  padding-left: var(--site-gutter) !important;
  padding-right: var(--site-gutter) !important;
}
.page-hero-content {
  max-width: 820px !important;
}
.page-hero::before {
  right: 0 !important;
}

/* Solar has a custom gallery hero; let that use the full available width too. */
.page-solar .page-hero-content.solar-hero-layout {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr) !important;
}

/* Forms, configurators and progress bars should no longer sit in a narrow frame. */
.form-wrap,
.progress-steps,
.configurator > *,
.form-area > * {
  width: 100% !important;
  max-width: none !important;
}

/* Use the wide screen more naturally without making paragraphs unreadably long. */
.services-intro,
.section-header,
.content-header,
.category-header {
  max-width: 900px !important;
}
.services-grid,
.svc-grid,
.reason-grid,
.qual-grid,
.faq-list,
.faq-grid,
.contact-grid,
.why-grid,
.step-grid {
  max-width: none !important;
}

/* Homepage supporting sections use the same wide alignment as the new hero. */
.recent-work-inner {
  width: calc(100% - (var(--site-gutter) * 2)) !important;
  max-width: none !important;
  margin-left: var(--site-gutter) !important;
  margin-right: var(--site-gutter) !important;
}
.page-home .home-hero-copy {
  width: 100% !important;
  max-width: 1760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--site-gutter) !important;
  padding-right: var(--site-gutter) !important;
}

/* Remove any remaining rounded outer-page shells inherited from older versions. */
body > main,
body > .page-wrap,
body > .site-shell,
body > .wrapper {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 920px) {
  :root { --site-gutter: 28px; }
  .page-solar .page-hero-content.solar-hero-layout {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  :root { --site-gutter: 20px; }
  .utility-inner,
  .site-nav-inner,
  .proof-strip-inner,
  .site-footer-main,
  .site-footer-bottom,
  .recent-work-inner {
    width: calc(100% - 40px) !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
}


/* ── HOMEPAGE SERVICE CARD OVERFLOW FIX ── */
/* Keep the service cards inside their borders and stop text/link overflow. */
.page-home #services .services-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}
.page-home #services .service-card {
  display: grid !important;
  grid-template-columns: 56px minmax(0, 1fr) !important;
  grid-template-rows: auto auto 1fr auto !important;
  gap: 16px 18px !important;
  padding: 26px 22px !important;
  min-height: 100% !important;
  overflow: hidden !important;
}
.page-home #services .service-card .service-icon {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 56px !important;
  height: 56px !important;
  margin: 0 !important;
}
.page-home #services .service-title {
  grid-column: 2 !important;
  grid-row: 1 !important;
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1.15 !important;
}
.page-home #services .service-desc {
  grid-column: 2 !important;
  grid-row: 2 !important;
  max-width: none !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}
.page-home #services .service-list {
  grid-column: 2 !important;
  grid-row: 3 !important;
  margin: 0 !important;
  padding: 0 !important;
  columns: 2 !important;
  column-gap: 18px !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}
.page-home #services .service-list li {
  break-inside: avoid !important;
  margin: 0 0 7px !important;
  padding-left: 12px !important;
}
.page-home #services .service-link {
  grid-column: 2 !important;
  grid-row: 4 !important;
  justify-self: start !important;
  align-self: end !important;
  display: inline-block !important;
  white-space: nowrap !important;
  margin-top: 4px !important;
  font-size: 12px !important;
}
@media (max-width: 1600px) {
  .page-home #services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 760px) {
  .page-home #services .services-grid {
    grid-template-columns: 1fr !important;
  }
  .page-home #services .service-card {
    grid-template-columns: 52px minmax(0, 1fr) !important;
    padding: 22px 18px !important;
  }
  .page-home #services .service-list {
    columns: 1 !important;
  }
}


/* ── WHY PANEL LOGO FIT FIX ── */
.why-visual-icon {
  width: 108px !important;
  height: 108px !important;
  padding: 10px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}
.why-visual-icon img,
.why-visual-icon img[style] {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  display: block !important;
}


/* ── OTHER SERVICES END LINES ── */
.other-services { overflow: visible !important; }
.other-grid { position: relative !important; overflow: visible !important; }
.other-grid::before,
.other-grid::after {
  content: "" !important;
  position: absolute !important;
  top: -1px !important;
  width: clamp(48px, 7vw, 90px) !important;
  border-top: 1px solid var(--line) !important;
}
.other-grid::before { right: 100% !important; margin-right: 18px !important; }
.other-grid::after { left: 100% !important; margin-left: 18px !important; }
@media (max-width: 900px) {
  .other-grid::before, .other-grid::after { display: none !important; }
}

/* ── PROMISE AND ACCREDITATION POLISH ── */
.promise-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr) !important;
  gap: 46px !important; align-items: start !important;
}
.promise-item {
  display: grid !important; grid-template-columns: 52px minmax(0, 1fr) !important;
  gap: 16px !important; align-items: start !important;
  padding: 18px 20px !important; margin-bottom: 10px !important;
  background: #ffffff !important; border: 1px solid var(--line) !important;
  border-radius: 10px !important; box-shadow: 0 6px 16px rgba(21,45,61,.04) !important;
}
.promise-item:last-child { margin-bottom: 0 !important; }
.promise-icon {
  width: 42px !important; height: 42px !important; display: flex !important;
  align-items: center !important; justify-content: center !important; font-size: 22px !important;
  background: #eef5f7 !important; border: 1px solid #d3e2e8 !important;
  border-radius: 10px !important; color: var(--blue) !important;
}
.promise-item h3 { margin: 0 0 8px !important; color: var(--navy) !important; font-size: 18px !important; line-height: 1.2 !important; }
.promise-item p { margin: 0 !important; color: var(--muted) !important; font-size: 14px !important; line-height: 1.7 !important; }
.promise-visual { padding: 34px 32px !important; border-radius: 12px !important; box-shadow: 0 10px 24px rgba(0,0,0,.10) !important; }
.promise-check { display: flex !important; align-items: center !important; gap: 12px !important; padding: 14px 0 !important; }
.promise-check span { font-size: 14px !important; line-height: 1.55 !important; color: rgba(255,255,255,.84) !important; }
.accreditation-strip {
  padding-top: 72px !important; padding-bottom: 72px !important;
  background: #f7f4ed !important; border-top: 1px solid #d9dedf !important; border-bottom: 1px solid #d9dedf !important;
}
.accreditation-inner {
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr) !important;
  gap: 42px !important; align-items: center !important;
}
.accreditation-copy { max-width: 480px !important; }
.accreditation-label { color: var(--blue) !important; }
.accreditation-title { font-size: 38px !important; line-height: 1.08 !important; margin-bottom: 14px !important; }
.accreditation-sub { font-size: 16px !important; line-height: 1.65 !important; }
.accreditation-badges { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 20px !important; align-items: stretch !important; }
.approval-badge, .approval-badge-logo {
  min-height: 138px !important; padding: 20px 18px !important; display: flex !important;
  align-items: center !important; justify-content: center !important; background: #ffffff !important;
  border: 1px solid #d6dcde !important; border-radius: 12px !important; box-shadow: 0 10px 24px rgba(21,45,61,.06) !important;
}
.approval-logo { max-width: 100% !important; max-height: 86px !important; object-fit: contain !important; }
.approval-logo-napit { max-height: 102px !important; }
.approval-logo-mcs { max-height: 76px !important; }
.approval-logo-trustmark { max-height: 62px !important; }
.qual-accreditation-wrap {
  margin-top: 54px !important; padding: 34px !important; background: #f9fafb !important;
  border: 1px solid #d6dcde !important; border-radius: 12px !important;
}
.qual-accreditation-intro { margin-bottom: 22px !important; }
.qual-accreditation-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 18px !important; }
.qual-accreditation-grid .approval-badge { min-height: 122px !important; }
@media (max-width: 980px) {
  .promise-grid { grid-template-columns: 1fr !important; gap: 26px !important; }
  .promise-visual { order: -1 !important; }
  .accreditation-inner { grid-template-columns: 1fr !important; gap: 28px !important; }
}
@media (max-width: 700px) {
  .promise-item { grid-template-columns: 44px minmax(0, 1fr) !important; padding: 16px 16px !important; }
  .promise-icon { width: 38px !important; height: 38px !important; font-size: 19px !important; }
  .promise-item h3 { font-size: 16px !important; }
  .promise-item p { font-size: 13px !important; line-height: 1.65 !important; }
  .accreditation-title { font-size: 32px !important; }
  .accreditation-badges, .qual-accreditation-grid { grid-template-columns: 1fr !important; }
  .approval-badge, .approval-badge-logo, .qual-accreditation-grid .approval-badge { min-height: 110px !important; }
}

/* ── COMPARISON TABLE WIDER LAYOUT ── */
.page-why .comparison-wrap {
  width: 100% !important; max-width: none !important; margin: 34px 0 0 !important;
  overflow-x: auto !important; background: #ffffff !important;
  border: 1px solid #d7dcde !important; border-radius: 12px !important;
  box-shadow: 0 10px 24px rgba(21,45,61,.05) !important;
}
.page-why .comparison-table { width: 100% !important; min-width: 1180px !important; border-collapse: collapse !important; }
.page-why .comparison-table th { padding: 20px 26px !important; font-size: 13px !important; line-height: 1.2 !important; }
.page-why .comparison-table th:first-child { width: 42% !important; }
.page-why .comparison-table td { padding: 18px 26px !important; font-size: 14px !important; line-height: 1.45 !important; }
.page-why .comparison-table td:first-child { font-size: 14px !important; font-weight: 600 !important; }
.page-why .comparison-table td:nth-child(2) { font-size: 16px !important; }
.page-why .comparison-table td:nth-child(3) { font-size: 14px !important; }
.page-why .comparison-table .tick, .page-why .comparison-table .cross { white-space: nowrap !important; }
.page-why .comparison-table .ph-badge {
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  margin-left: 6px !important; padding: 2px 8px !important; border-radius: 999px !important;
  font-size: 10px !important; letter-spacing: .08em !important;
}
@media (max-width: 900px) {
  .page-why .comparison-wrap { margin-top: 26px !important; }
  .page-why .comparison-table { min-width: 920px !important; }
}

/* ── EV PAGE: TEXT-ONLY HEADER ── */
.page-ev .page-hero {
  min-height: 320px !important;
  background: var(--navy) !important;
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}
.page-ev .page-hero::before,
.page-ev .page-hero::after {
  content: none !important;
  display: none !important;
  background-image: none !important;
}
.page-ev .page-hero-content {
  width: 100% !important;
  max-width: 900px !important;
}
.page-ev .page-title {
  max-width: 820px !important;
}
.page-ev .page-sub {
  max-width: 760px !important;
}
@media (max-width: 920px) {
  .page-ev .page-hero {
    min-height: auto !important;
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
}


/* ── SOLAR MANUFACTURER COMPARISON ── */
.manufacturer-section {
  width: 100%;
  padding: 88px var(--site-gutter, 4vw) 94px;
  background: #f2efe8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manufacturer-inner {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}
.manufacturer-intro {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr);
  gap: 20px 60px;
  align-items: end;
  margin-bottom: 42px;
}
.manufacturer-intro .section-label {
  grid-column: 1;
  margin: 0;
  align-self: start;
  padding-top: 9px;
}
.manufacturer-intro h2 {
  grid-column: 2;
  margin: 0;
  max-width: 880px;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.06 !important;
}
.manufacturer-intro p {
  grid-column: 2;
  margin: 0;
  max-width: 850px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.manufacturer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.manufacturer-card {
  padding: 30px;
  background: #fff;
  border: 1px solid #d5dadc;
  border-top: 4px solid var(--blue);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(21,45,61,.045);
}
.manufacturer-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e4e5;
}
.manufacturer-type {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.manufacturer-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 30px !important;
  line-height: 1.05 !important;
}
.manufacturer-best {
  flex-shrink: 0;
  padding: 7px 10px;
  background: #e8f1f4;
  border: 1px solid #cfdee4;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}
.manufacturer-summary {
  margin: 20px 0 24px;
  max-width: 700px;
  color: #53636b;
  font-size: 14px;
  line-height: 1.7;
}
.manufacturer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.manufacturer-columns > div {
  padding-top: 4px;
}
.manufacturer-columns h4 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
}
.manufacturer-pros h4::before {
  content: "✓";
  display: inline-block;
  margin-right: 8px;
  color: #1f7a55;
}
.manufacturer-cons h4::before {
  content: "–";
  display: inline-block;
  margin-right: 8px;
  color: #a5672d;
}
.manufacturer-columns ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.manufacturer-columns li {
  position: relative;
  margin: 0 0 9px;
  padding-left: 15px;
  color: #53636b;
  font-size: 13px;
  line-height: 1.55;
}
.manufacturer-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 1px;
  background: var(--blue);
}
.manufacturer-note {
  margin-top: 22px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  background: var(--navy);
  color: #fff;
}
.manufacturer-note strong {
  font-size: 17px;
  white-space: nowrap;
}
.manufacturer-note span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}
.manufacturer-note a {
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.55);
  white-space: nowrap;
}
.manufacturer-note a:hover {
  border-color: #fff;
}
@media (max-width: 1080px) {
  .manufacturer-intro {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .manufacturer-intro .section-label,
  .manufacturer-intro h2,
  .manufacturer-intro p {
    grid-column: 1;
  }
  .manufacturer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .manufacturer-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .manufacturer-note strong,
  .manufacturer-note a { white-space: normal; }
}

@media (max-width: 760px) {
  .manufacturer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .manufacturer-section {
    padding: 66px 22px 72px;
  }
  .manufacturer-card {
    padding: 24px 20px;
  }
  .manufacturer-card-head {
    display: block;
  }
  .manufacturer-best {
    display: inline-block;
    margin-top: 14px;
  }
  .manufacturer-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .manufacturer-note {
    padding: 22px 20px;
  }
}


/* ── MANUFACTURER PRODUCT LINKS ── */
.manufacturer-card {
  display: flex !important;
  flex-direction: column !important;
}
.manufacturer-columns {
  flex: 1 1 auto;
}
.manufacturer-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin-top: 22px;
  padding: 13px 15px;
  background: #eef5f7;
  border: 1px solid #cadce3;
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease;
}
.manufacturer-product-link:hover {
  background: #e2eef2;
  border-color: var(--blue);
}
.manufacturer-product-link span {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 16px;
}


/* ── BOTTOM SECTION ALIGNMENT FIXES ── */
/* Remove the stray decorative end-lines from other-services sections. */
.other-grid::before,
.other-grid::after {
  display: none !important;
}

/* Make the other-services links feel like complete boxes. */
.other-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  border: 1px solid var(--line) !important;
  border-top: 1px solid var(--line) !important;
}
.other-card {
  min-height: 126px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 24px 20px !important;
  border-right: 1px solid var(--line) !important;
  border-bottom: 0 !important;
}
.other-card:last-child {
  border-right: 0 !important;
}
.other-card h3 {
  margin: 0 !important;
  text-align: center !important;
}

/* Center the enquiry/CTA copy and button consistently across pages. */
.enquire-banner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 18px !important;
}
.enquire-banner h2,
.enquire-banner p {
  text-align: center !important;
}
.enquire-banner p {
  max-width: 760px !important;
}
.enquire-banner .btn-primary {
  margin: 8px auto 0 !important;
}

/* Standardise the legacy bottom service-card sections so 3 items sit in one row. */
.page-commercial section[style*="background: var(--off-white)"],
.page-domestic section[style*="background: var(--off-white)"],
.page-ev section[style*="background: var(--off-white)"] {
  padding-left: var(--site-gutter) !important;
  padding-right: var(--site-gutter) !important;
}
.page-commercial section[style*="background: var(--off-white)"] .services-intro,
.page-domestic section[style*="background: var(--off-white)"] .services-intro,
.page-ev section[style*="background: var(--off-white)"] .services-intro {
  text-align: center !important;
}
.page-commercial section[style*="background: var(--off-white)"] .service-cards,
.page-domestic section[style*="background: var(--off-white)"] .service-cards,
.page-ev section[style*="background: var(--off-white)"] .service-cards {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  border: 1px solid var(--line) !important;
  background: white !important;
}
.page-commercial section[style*="background: var(--off-white)"] .svc-card,
.page-domestic section[style*="background: var(--off-white)"] .svc-card,
.page-ev section[style*="background: var(--off-white)"] .svc-card {
  min-height: 126px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 24px 20px !important;
  text-align: center !important;
  background: transparent !important;
  border: 0 !important;
  border-right: 1px solid var(--line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.page-commercial section[style*="background: var(--off-white)"] .svc-card:last-child,
.page-domestic section[style*="background: var(--off-white)"] .svc-card:last-child,
.page-ev section[style*="background: var(--off-white)"] .svc-card:last-child {
  border-right: 0 !important;
}
.page-commercial section[style*="background: var(--off-white)"] .svc-title,
.page-domestic section[style*="background: var(--off-white)"] .svc-title,
.page-ev section[style*="background: var(--off-white)"] .svc-title {
  margin: 0 !important;
  text-align: center !important;
}

@media (max-width: 900px) {
  .other-grid,
  .page-commercial section[style*="background: var(--off-white)"] .service-cards,
  .page-domestic section[style*="background: var(--off-white)"] .service-cards,
  .page-ev section[style*="background: var(--off-white)"] .service-cards {
    grid-template-columns: 1fr !important;
  }
  .other-card,
  .page-commercial section[style*="background: var(--off-white)"] .svc-card,
  .page-domestic section[style*="background: var(--off-white)"] .svc-card,
  .page-ev section[style*="background: var(--off-white)"] .svc-card {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .other-card:last-child,
  .page-commercial section[style*="background: var(--off-white)"] .svc-card:last-child,
  .page-domestic section[style*="background: var(--off-white)"] .svc-card:last-child,
  .page-ev section[style*="background: var(--off-white)"] .svc-card:last-child {
    border-bottom: 0 !important;
  }
}


/* ── SOLAR QUICK ENQUIRY + QUOTE SUMMARY READABILITY ── */
.solar-enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(16, 38, 52, .94);
  overflow-y: auto;
}
.solar-enquiry-modal.is-open { display: flex; }
.solar-enquiry-dialog {
  position: relative;
  width: min(940px, 100%);
  margin: auto;
  padding: 46px 48px 36px;
  background: #f7f4ed;
  border: 1px solid #d2d9dc;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.solar-enquiry-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #c8d0d3;
  background: #fff;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.solar-enquiry-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}
.solar-enquiry-heading .section-label { margin-bottom: 10px; }
.solar-enquiry-heading h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 50px) !important;
  line-height: 1.08 !important;
}
.solar-enquiry-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.solar-enquiry-form {
  width: 100%;
}
.solar-enquiry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.solar-enquiry-field {
  margin-bottom: 20px;
}
.solar-enquiry-field label {
  display: block;
  margin: 0 0 9px;
  color: #32444e;
  font-size: 14px;
  font-weight: 700;
}
.solar-enquiry-field input,
.solar-enquiry-field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #b9c8ce;
  border-radius: 5px;
  background: #fff;
  color: #21343e;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}
.solar-enquiry-field textarea {
  min-height: 150px;
  resize: vertical;
}
.solar-enquiry-field input:focus,
.solar-enquiry-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47,113,141,.11);
}
.solar-enquiry-submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  background: #337f9e;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 750;
  cursor: pointer;
}
.solar-enquiry-submit:hover { background: #286c88; }
.solar-enquiry-privacy {
  margin: 13px 0 0;
  color: #687880;
  font-size: 12px;
  text-align: center;
}
.solar-enquiry-privacy a { color: #2a7fa5; }

/* Quote summary was changed to a light card by the site redesign, so its old white text became unreadable. */
.page-quote .summary-card {
  background: #f7f4ed !important;
  border: 1px solid #cfd7da !important;
  color: var(--navy) !important;
}
.page-quote .summary-card h3 {
  color: var(--navy) !important;
  border-bottom-color: #d4dcdf !important;
}
.page-quote .summary-label {
  color: #687880 !important;
}
.page-quote .summary-value {
  color: #243842 !important;
}
.page-quote .summary-empty {
  color: #7b898f !important;
}
.page-quote .trust-badges {
  border-top-color: #d4dcdf !important;
}
.page-quote .trust-badge {
  color: #53666f !important;
}

@media (max-width: 700px) {
  .solar-enquiry-modal { padding: 14px; align-items: flex-start; }
  .solar-enquiry-dialog { padding: 42px 20px 26px; }
  .solar-enquiry-row { grid-template-columns: 1fr; gap: 0; }
  .solar-enquiry-close { top: 10px; right: 10px; }
}


/* ── EXPERIENCE LINE ── */
.why-experience {
  margin-top: 28px !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(255,255,255,.22) !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  text-align: center !important;
}


/* ── HOMEPAGE COMPANY PHILOSOPHY ── */
.philosophy-section {
  width: 100%;
  padding: 92px var(--site-gutter, 4vw) 86px;
  background: #102f3e;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.philosophy-inner {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}
.philosophy-heading {
  display: grid;
  grid-template-columns: minmax(180px, .42fr) minmax(0, 1.58fr);
  gap: 12px 56px;
  align-items: start;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.philosophy-heading .section-label {
  grid-column: 1;
  margin: 0;
  padding-top: 9px;
  color: #8bc4d9 !important;
}
.philosophy-heading h2 {
  grid-column: 2;
  margin: 0;
  max-width: 1040px;
  color: #fff;
  font-size: clamp(38px, 4.3vw, 64px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.philosophy-heading p {
  grid-column: 2;
  margin: 8px 0 0;
  max-width: 900px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.75;
}
.philosophy-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 42px;
  border: 1px solid rgba(255,255,255,.18);
}
.philosophy-panel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  min-height: 260px;
  padding: 38px 40px;
  background: #f5f1e9;
  color: #17313f;
}
.philosophy-panel + .philosophy-panel {
  border-left: 1px solid rgba(255,255,255,.18);
}
.philosophy-panel-dark {
  background: #173746;
  color: #fff;
}
.philosophy-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(27,91,116,.28);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.philosophy-panel-dark .philosophy-number {
  border-color: rgba(255,255,255,.28);
  color: #a8d2df;
}
.philosophy-panel h3 {
  margin: 1px 0 16px;
  color: inherit;
  font-size: 27px;
  line-height: 1.15;
}
.philosophy-panel p {
  margin: 0;
  max-width: 650px;
  color: #56666e;
  font-size: 15px;
  line-height: 1.75;
}
.philosophy-panel-dark p {
  color: rgba(255,255,255,.72);
}
.philosophy-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.philosophy-principles span {
  position: relative;
  padding: 18px 24px 18px 40px;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  text-align: center;
}
.philosophy-principles span + span {
  border-left: 1px solid rgba(255,255,255,.18);
}
.philosophy-principles span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 12px 2px 0;
  background: #d7bd76;
}
@media (max-width: 980px) {
  .philosophy-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .philosophy-heading .section-label,
  .philosophy-heading h2,
  .philosophy-heading p {
    grid-column: 1;
  }
  .philosophy-panels {
    grid-template-columns: 1fr;
  }
  .philosophy-panel + .philosophy-panel {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.18);
  }
}
@media (max-width: 640px) {
  .philosophy-section {
    padding: 68px 22px 64px;
  }
  .philosophy-heading h2 {
    font-size: 39px;
  }
  .philosophy-heading p {
    font-size: 15px;
  }
  .philosophy-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 28px 22px;
  }
  .philosophy-panel h3 {
    font-size: 23px;
  }
  .philosophy-principles {
    grid-template-columns: 1fr;
  }
  .philosophy-principles span + span {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.18);
  }
}


/* ── HOMEPAGE COMPANY PHILOSOPHY V2 ── */
.philosophy-section {
  padding-top: 104px !important;
  padding-bottom: 92px !important;
}
.philosophy-heading {
  grid-template-columns: minmax(180px, .38fr) minmax(0, 1.62fr) !important;
  padding-bottom: 48px !important;
}
.philosophy-heading h2 {
  max-width: 1180px !important;
}
.philosophy-heading p {
  max-width: 1040px !important;
  font-size: 18px !important;
  line-height: 1.8 !important;
}
.philosophy-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border: 1px solid rgba(255,255,255,.18);
  background: #f5f1e9;
}
.journey-card {
  min-height: 330px;
  padding: 36px 34px 38px;
  color: #17313f;
  background: #f5f1e9;
}
.journey-card + .journey-card {
  border-left: 1px solid #d9d4ca;
}
.journey-number,
.philosophy-number-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  border: 1px solid rgba(27,91,116,.30);
  color: #246e8a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.journey-card h3 {
  margin: 0 0 16px;
  color: #17313f;
  font-size: 27px;
  line-height: 1.15;
}
.journey-card p {
  margin: 0;
  color: #56666e;
  font-size: 15px;
  line-height: 1.78;
}
.philosophy-aftercare {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 50px;
  margin-top: 26px;
  padding: 42px 44px;
  background: #ffffff;
  color: #17313f;
  border-left: 5px solid #2f7896;
}
.aftercare-kicker,
.national-kicker {
  display: block;
  margin-bottom: 12px;
  color: #2f7896;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.aftercare-heading h3,
.philosophy-national h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.aftercare-copy {
  display: grid;
  gap: 16px;
}
.aftercare-copy p {
  margin: 0;
  color: #56666e;
  font-size: 15px;
  line-height: 1.78;
}
.philosophy-national {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 28px;
  margin-top: 26px;
  padding: 42px 44px;
  background: #173746;
  border: 1px solid rgba(255,255,255,.18);
}
.philosophy-number-light {
  margin: 0;
  border-color: rgba(255,255,255,.30);
  color: #a8d2df;
}
.philosophy-national h3 {
  color: #fff;
  max-width: 1050px;
}
.philosophy-national p {
  margin: 16px 0 0;
  max-width: 1160px;
  color: rgba(255,255,255,.74);
  font-size: 15px;
  line-height: 1.78;
}
.philosophy-principles {
  margin-top: 28px !important;
}
.philosophy-principles span {
  font-size: 14px !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
@media (max-width: 1080px) {
  .philosophy-journey {
    grid-template-columns: 1fr;
  }
  .journey-card {
    min-height: 0;
  }
  .journey-card + .journey-card {
    border-left: 0;
    border-top: 1px solid #d9d4ca;
  }
  .philosophy-aftercare {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
@media (max-width: 700px) {
  .philosophy-section {
    padding-top: 72px !important;
    padding-bottom: 68px !important;
  }
  .philosophy-heading p {
    font-size: 15px !important;
  }
  .journey-card,
  .philosophy-aftercare,
  .philosophy-national {
    padding: 28px 22px;
  }
  .journey-card h3 {
    font-size: 23px;
  }
  .philosophy-national {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* ── POWERING YOUR HAUS MOTTO ── */
.brand-motto {
  margin-top: 4px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .015em;
  line-height: 1.1;
  text-transform: none;
  white-space: nowrap;
}
.footer-site-brand .brand-motto {
  color: rgba(255,255,255,.82);
}
.page-home .home-hero .eyebrow {
  margin-bottom: 5px !important;
  color: var(--blue) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: .035em !important;
  text-transform: none !important;
}
.hero-location {
  margin: 0 0 22px !important;
  color: #68787f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-motto {
  margin: 22px 0 8px !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 750 !important;
  letter-spacing: -.01em;
}
.footer-motto + p {
  margin-top: 0 !important;
}
@media (max-width: 620px) {
  .brand-motto {
    font-size: 9px;
  }
  .site-brand-copy small {
    margin-top: 3px !important;
  }
}


.page-home .home-hero .hero-motto {
  margin: 12px 0 24px !important;
  color: var(--blue) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: .01em !important;
  line-height: 1.2;
}
@media (max-width: 620px) {
  .page-home .home-hero .hero-motto {
    font-size: 18px !important;
    margin: 10px 0 20px !important;
  }
}


/* ── PHILOSOPHY HEADING STACKED ABOVE ── */
.page-home .philosophy-heading {
  display: block !important;
  padding-bottom: 42px !important;
}
.page-home .philosophy-heading .section-label {
  display: block !important;
  margin: 0 0 14px !important;
  padding-top: 0 !important;
}
.page-home .philosophy-heading h2 {
  display: block !important;
  margin: 0 !important;
  max-width: 1180px !important;
}
.page-home .philosophy-heading p {
  display: block !important;
  margin: 18px 0 0 !important;
  max-width: 1120px !important;
}
.page-home .philosophy-journey {
  margin-top: 36px !important;
}


/* ── FAQ HEADINGS ABOVE QUESTIONS ── */
/* Only show the FAQ category selected by the tabs. */
.page-faqs .faq-category {
  display: none !important;
}
.page-faqs .faq-category.active {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 54px !important;
  row-gap: 0 !important;
  align-items: start !important;
}

/* Category heading spans above all questions rather than sitting beside them. */
.page-faqs .category-header {
  position: static !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 38px !important;
  padding: 0 0 24px !important;
  text-align: left !important;
  border-bottom: 1px solid var(--line) !important;
}
.page-faqs .category-icon {
  display: none !important;
}
.page-faqs .category-title {
  margin: 0 0 10px !important;
  color: var(--navy) !important;
  font-size: clamp(30px, 3vw, 42px) !important;
  line-height: 1.08 !important;
}
.page-faqs .category-sub {
  margin: 0 !important;
  max-width: 760px !important;
  color: var(--muted) !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

/* Questions form a clean two-column grid beneath the heading. */
.page-faqs .faq-item {
  width: 100% !important;
  margin: 0 !important;
  border-top: 1px solid var(--line) !important;
  border-bottom: 0 !important;
}
.page-faqs .faq-question {
  min-height: 76px !important;
  padding: 22px 0 !important;
}
.page-faqs .faq-question h3 {
  margin: 0 !important;
  padding-right: 28px !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
}
.page-faqs .faq-answer-inner {
  padding: 0 36px 24px 0 !important;
}

/* Keep selected FAQ tab readable. */
.page-faqs .faq-tab.active {
  background: #10243e !important;
  color: #ffffff !important;
  border-color: #10243e !important;
  border-bottom-color: var(--blue) !important;
}

@media (max-width: 900px) {
  .page-faqs .faq-category.active {
    grid-template-columns: 1fr !important;
  }
  .page-faqs .category-header {
    margin-bottom: 24px !important;
  }
}


/* ── FAQ ALL SECTIONS VISIBLE ── */
/* Keep every FAQ category on the page; the top tabs are now jump links. */
.page-faqs .faq-category,
.page-faqs .faq-category.active {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 54px !important;
  row-gap: 0 !important;
  align-items: start !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 72px 0 26px !important;
  scroll-margin-top: 130px !important;
}
.page-faqs .faq-category:first-of-type {
  padding-top: 28px !important;
}
.page-faqs .faq-category + .faq-category {
  border-top: 1px solid var(--line) !important;
}

/* Each category gets a central sub-heading above its questions. */
.page-faqs .category-header {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: 920px !important;
  margin: 0 auto 38px !important;
  padding: 0 20px 8px !important;
  text-align: center !important;
  border-bottom: none !important;
}
.page-faqs .category-title {
  text-align: center !important;
  margin: 0 0 10px !important;
}
.page-faqs .category-sub {
  margin: 0 auto !important;
  max-width: 760px !important;
  text-align: center !important;
}
.page-faqs .faq-item {
  width: 100% !important;
  align-self: start !important;
}

/* Top tabs act as jump-to-section shortcuts. */
.page-faqs .faq-nav {
  position: sticky !important;
  top: 82px !important;
  z-index: 20 !important;
  background: rgba(248,247,243,.96) !important;
  backdrop-filter: blur(10px) !important;
}
.page-faqs .faq-tab.active {
  background: #10243e !important;
  color: #ffffff !important;
  border-color: #10243e !important;
  border-bottom-color: var(--blue) !important;
}

@media (max-width: 900px) {
  .page-faqs .faq-category,
  .page-faqs .faq-category.active {
    grid-template-columns: 1fr !important;
    padding-top: 54px !important;
  }
  .page-faqs .category-header {
    margin-bottom: 24px !important;
  }
  .page-faqs .faq-nav {
    position: static !important;
  }
}


/* ── COMPLAINT FORM CONTRAST FIX ── */
.page-complaints .complaint-form h3 {
  color: var(--navy) !important;
}
.page-complaints .complaint-form > p {
  color: var(--muted) !important;
}
.page-complaints .complaint-form input,
.page-complaints .complaint-form textarea {
  background: #ffffff !important;
  color: var(--ink) !important;
  border: 1px solid #bfc8cc !important;
}
.page-complaints .complaint-form input::placeholder,
.page-complaints .complaint-form textarea::placeholder {
  color: #6f797f !important;
  opacity: 1 !important;
}

/* ── FULL POLICY PAGES ── */
.page-policy {
  background: var(--paper);
}
.policy-doc-hero {
  width: 100%;
  padding: 76px var(--site-gutter) 72px;
  background: var(--navy);
  color: #fff;
}
.policy-doc-hero-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.policy-doc-hero .page-label {
  color: #9dd2e8 !important;
}
.policy-doc-hero h1 {
  max-width: 820px;
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.02;
}
.policy-doc-hero p {
  max-width: 800px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.7;
}
.policy-pdf-button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 13px 18px;
  background: var(--blue);
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}
.policy-doc-wrap {
  width: min(1120px, calc(100% - (var(--site-gutter) * 2)));
  margin: 0 auto;
  padding: 72px 0 92px;
}
.policy-doc-heading {
  text-align: center;
  margin-bottom: 34px;
}
.policy-doc-heading .policy-company {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .025em;
}
.policy-doc-heading > p:not(.policy-company) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.policy-doc-heading h2 {
  margin: 25px 0 0;
  color: var(--navy);
  font-size: 34px;
}
.policy-meta-grid {
  display: grid;
  grid-template-columns: minmax(220px,.36fr) minmax(0,1fr);
  border: 1px solid var(--line);
  margin: 0 0 48px;
  background: #fff;
}
.policy-meta-key,
.policy-meta-val {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.45;
}
.policy-meta-key {
  background: #eef3f5;
  color: var(--navy);
  font-weight: 750;
  border-right: 1px solid var(--line);
}
.policy-meta-val {
  color: var(--ink);
}
.policy-meta-grid > :nth-last-child(-n+2) {
  border-bottom: 0;
}
.policy-doc-body {
  display: grid;
  gap: 0;
}
.policy-doc-section {
  padding: 31px 0 33px;
  border-top: 1px solid var(--line);
}
.policy-doc-section:first-child {
  border-top: 0;
}
.policy-doc-section h2 {
  margin: 0 0 15px;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -.025em;
}
.policy-doc-section h3 {
  margin: 22px 0 8px;
  color: var(--blue);
  font-size: 16px;
  letter-spacing: -.01em;
}
.policy-doc-section p,
.policy-doc-section li {
  color: #42535c;
  font-size: 15px;
  line-height: 1.78;
}
.policy-doc-section p {
  margin: 0;
}
.policy-doc-section ul {
  margin: 3px 0 0;
  padding-left: 22px;
}
.policy-doc-section li {
  padding: 3px 0;
}
.policy-doc-signoff {
  margin-top: 38px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 24px;
  background: var(--navy);
  color: #fff;
}
.policy-doc-signoff span,
.policy-doc-signoff strong {
  display: block;
}
.policy-doc-signoff span {
  margin-bottom: 6px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}
.policy-doc-signoff strong {
  font-size: 15px;
}
.policy-controlled {
  margin: 22px auto 0;
  max-width: 900px;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}
.policy-full-doc-link {
  grid-column: 1 / -1;
  margin: 0 0 34px;
  padding: 24px 26px;
  background: var(--navy);
  color: #fff;
}
.policy-full-doc-link strong,
.policy-full-doc-link span,
.policy-full-doc-link a {
  display: block;
}
.policy-full-doc-link strong {
  margin-bottom: 5px;
  font-size: 17px;
}
.policy-full-doc-link span {
  margin-bottom: 14px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  line-height: 1.55;
}
.policy-full-doc-link a {
  color: #b8e0f1;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
@media (max-width: 760px) {
  .policy-doc-hero {
    padding: 54px 24px 50px;
  }
  .policy-doc-wrap {
    width: calc(100% - 40px);
    padding: 52px 0 70px;
  }
  .policy-meta-grid {
    grid-template-columns: 1fr;
  }
  .policy-meta-key {
    border-right: 0;
    border-bottom: 0;
    padding-bottom: 5px;
  }
  .policy-meta-val {
    padding-top: 4px;
  }
  .policy-meta-grid > :nth-last-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
  .policy-meta-grid > :last-child {
    border-bottom: 0;
  }
  .policy-doc-signoff {
    grid-template-columns: 1fr;
  }
}

/* ── SOLAR PAGE OTHER SERVICES ICONS ── */
.page-solar .other-services .other-card {
  flex-direction: column !important;
  gap: 12px !important;
}
.page-solar .other-services .other-card-icon {
  display: block !important;
  font-size: 28px !important;
  line-height: 1 !important;
  margin: 0 0 2px !important;
}


/* ── MOBILE FIXES (Aug 2026): hero readability + header social icons ── */
@media (max-width: 760px) {
  /* On narrow screens text spans the full width, so the horizontal cream
     fade leaves it sitting on the photo. Swap to a vertical fade: solid
     behind the text, photo showing through at the bottom. */
  .home-hero-inner,
  .page-home .home-hero-inner {
    background-image:
      linear-gradient(180deg, rgba(243,240,232,.97) 0%, rgba(243,240,232,.95) 52%, rgba(243,240,232,.72) 74%, rgba(243,240,232,.22) 100%),
      url('images/home-hero-header.jpg') !important;
  }
}

/* Header-bar social icons: hidden on desktop (icons live in the menu row),
   shown next to the Menu button once the menu collapses. */
.nav-social-bar { display: none; }
@media (max-width: 920px) {
  .nav-social-bar { display: inline-flex; align-items: center; gap: 13px; margin-left: auto; margin-top: 0; align-self: center; }
  .nav-social-bar a { display: inline-flex; }
  .nav-social-bar svg { width: 20px; height: 20px; display: block; }
  .site-nav-inner { gap: 18px; }
  /* icons are in the bar now, no need to repeat them inside the dropdown */
  .site-menu .nav-social { display: none; }
}
