/* Self-hosted fonts */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/dm-serif-display-400-latin.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(/fonts/inter-latin.woff2) format('woff2');
}

/* ═══════════════════════════════════════════════════════════════
   Abode — Heating & Renewables — Design System v3
   Inspired by Spruce.eco — Deep teal, serif + sans, editorial
   ═══════════════════════════════════════════════════════════════ */

:root {
  --teal-deep: #10392F;
  --teal-dark: #0d2e26;
  --teal-mid: #1a4d40;
  --teal-light: #227858;
  --green-accent: #4ade80;
  --green-cta: #22c55e;
  --green-cta-hover: #16a34a;
  --cream: #faf9f7;
  --cream-dark: #f3f1ed;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-body: #4a4a4a;
  --text-muted: #636363;
  --text-light: rgba(255,255,255,0.85);
  --text-light-muted: rgba(255,255,255,0.7);
  --border-light: #e8e6e1;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Commercial overrides */
  --commercial-accent: #10392F;
  --commercial-accent-hover: #0d2e26;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.nav-open { overflow: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 32px; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   NAV
   ══════════════════════════════════════ */
.nav {
  background: var(--teal-deep);
  padding: 16px 0;
  position: relative;
  z-index: 1000;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo svg, .nav-logo img { height: 38px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--green-cta) !important;
  color: var(--teal-deep) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover {
  background: var(--green-cta-hover) !important;
  transform: translateY(-1px);
}
.nav-cta::after { content: ' \2192'; }

.nav-phone {
  font-weight: 600;
  color: var(--white) !important;
  font-size: 0.88rem;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 9px 20px;
  border-radius: 100px;
  transition: all 0.25s;
}
.nav-phone:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Dropdown menus */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  cursor: pointer;
}
.nav-dropdown > a::after {
  content: ' \25BE';
  font-size: 0.65em;
  opacity: 0.6;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  min-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 24px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu .dropdown-heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 0 8px 10px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 8px;
}
.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  text-decoration: none;
}
.nav-dropdown-item:hover {
  background: var(--cream);
}
.nav-dropdown-item .dropdown-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #edf5f2 0%, #d4ebe4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.nav-dropdown-item:hover .dropdown-icon {
  background: var(--teal-deep);
}
.nav-dropdown-item .dropdown-icon svg {
  width: 18px;
  height: 18px;
  color: var(--teal-light);
  transition: color 0.2s;
}
.nav-dropdown-item:hover .dropdown-icon svg {
  color: var(--white);
}
.nav-dropdown-item .dropdown-text {
  flex: 1;
}
.nav-dropdown-item .dropdown-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark) !important;
  margin-bottom: 2px;
}
.nav-dropdown-item .dropdown-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Commercial nav — dark teal nav, same as residential */
.commercial .nav { background: var(--teal-deep); }
.commercial .nav-cta { background: var(--white) !important; color: var(--teal-deep) !important; }
.commercial .nav-cta:hover { background: var(--cream) !important; }
.commercial .nav-cta::after { content: ' \2192'; }

/* ══════════════════════════════════════
   HERO — Dark teal, editorial
   ══════════════════════════════════════ */
.hero {
  background: var(--teal-deep);
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  display: flex;
  align-items: center;
}
.hero.hero-compact {
  min-height: auto;
}
.hero > .container {
  width: 100%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 80%, rgba(74,222,128,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease forwards;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--green-accent); }
.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
}

/* Postcode CTA */
.postcode-cta {
  display: flex;
  max-width: 460px;
  margin-bottom: 36px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.postcode-cta input {
  flex: 1;
  padding: 18px 22px;
  border: none;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-dark);
  outline: none;
  background: var(--white);
}
.postcode-cta input::placeholder { color: #b0b0b0; font-weight: 400; }
.postcode-cta button {
  padding: 18px 28px;
  background: var(--green-cta);
  color: var(--teal-deep);
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}
.postcode-cta button:hover { background: var(--green-cta-hover); color: #fff; }

/* Postcode Checker (areas-we-cover page) */
.postcode-checker { margin-bottom: 36px; animation: fadeInUp 0.8s ease 0.2s both; }
.postcode-checker-input {
  display: flex;
  max-width: 460px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.postcode-checker-input input {
  flex: 1;
  padding: 18px 22px;
  border: none;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  outline: none;
  background: var(--white);
}
.postcode-checker-input input::placeholder { color: #b0b0b0; font-weight: 400; }
.postcode-checker-input button {
  padding: 18px 28px;
  background: var(--green-cta);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}
.postcode-checker-input button:hover { background: var(--green-cta-hover); color: #fff; }

.postcode-result {
  display: none;
  align-items: flex-start;
  gap: 14px;
  max-width: 460px;
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  line-height: 1.5;
}
.postcode-result svg { flex-shrink: 0; width: 28px; height: 28px; margin-top: 2px; }
.postcode-result div { flex: 1; }
.postcode-result strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.postcode-result span { display: block; opacity: 0.85; }
.postcode-result a { color: inherit; font-weight: 600; text-decoration: underline; }

.postcode-result-success {
  display: flex;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #fff;
}
.postcode-result-success svg { stroke: var(--green-accent); }

.postcode-result-extended {
  display: flex;
  background: rgba(250,204,21,0.15);
  border: 1px solid rgba(250,204,21,0.3);
  color: #fff;
}
.postcode-result-extended svg { stroke: #facc15; }

.postcode-result-no {
  display: flex;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fff;
}
.postcode-result-no svg { stroke: #ef4444; }

/* Area grid (coverage page) */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 16px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: box-shadow 0.25s;
}
.area-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.area-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.area-postcodes {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.area-card-extended {
  border-style: dashed;
  border-color: var(--border-light);
}
.section-alt .area-card { background: var(--white); }

.area-subheading {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-top: 40px;
  margin-bottom: -8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-light);
  display: inline-block;
}

/* Postcode validation feedback on hero inputs */
.postcode-cta-result {
  display: none;
  font-size: 0.85rem;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  max-width: 460px;
}
.postcode-cta-result-success {
  display: block;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #fff;
}
.postcode-cta-result-no {
  display: block;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fff;
}
.postcode-cta-result a { color: inherit; font-weight: 600; text-decoration: underline; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  transition: background 0.2s;
}
.badge:hover { background: rgba(255,255,255,0.14); }
.badge svg { width: 16px; height: 16px; color: var(--green-accent); flex-shrink: 0; }

.btn-primary {
  background: var(--green-cta);
  color: var(--teal-deep);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--green-cta-hover);
  color: #fff;
  transform: translateY(-2px);
}
.btn-primary::after { content: ' \2192'; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }

/* Hero with side image */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--teal-mid);
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Commercial page — white/cream with dark teal accents ── */
.commercial .hero {
  background: var(--white);
  padding: 48px 0 48px;
}
.commercial .hero::after {
  background: radial-gradient(ellipse at 80% 80%, rgba(16,57,47,0.04) 0%, transparent 60%);
}
.commercial .hero h1 { color: var(--text-dark); }
.commercial .hero h1 span { color: var(--teal-light); }
.commercial .hero p { color: var(--text-body); }
.commercial .hero .badge { color: var(--text-body); }
.commercial .hero .badge svg { stroke: var(--teal-light); }
.commercial .btn-primary {
  background: var(--teal-deep);
  color: #fff;
}
.commercial .btn-primary:hover { background: var(--teal-dark); }
.commercial .btn-secondary {
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}
.commercial .btn-secondary:hover {
  background: var(--teal-deep);
  color: var(--white);
}
.commercial .postcode-cta button {
  background: var(--teal-deep);
  color: #fff;
}

/* Commercial trust bar — inverted to light */
.commercial .trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.commercial .trust-item h3, .commercial .trust-value { color: var(--teal-deep); }
.commercial .trust-item p { color: var(--text-muted); }
.commercial .trust-item:not(:last-child)::after { background: var(--border-light); }

/* Commercial sections */
.commercial .section { background: var(--white); }
.commercial .section-alt { background: var(--cream); }

/* Commercial hero form — white card with teal accents */
.commercial .hero-form {
  background: var(--cream);
  border: 1px solid var(--border-light);
}
.commercial .hero-form h3 { color: var(--text-dark); }
.commercial .hero-form label { color: var(--text-body); }
.commercial .hero-form input,
.commercial .hero-form select,
.commercial .hero-form textarea {
  background: var(--white);
  border-color: var(--border-light);
  color: var(--text-dark);
}
.commercial .hero-form input:focus,
.commercial .hero-form select:focus,
.commercial .hero-form textarea:focus {
  border-color: var(--teal-light);
  box-shadow: 0 0 0 3px rgba(16,57,47,0.1);
}
.commercial .hero-form .form-note { color: var(--text-muted); }

/* Commercial CTA section — keep dark teal for contrast */
.commercial .cta-section {
  background: var(--teal-deep);
}
.commercial .cta-section h2 { color: var(--white); }
.commercial .cta-section p { color: var(--text-light-muted); }
.commercial .cta-section .btn-primary {
  background: var(--white);
  color: var(--teal-deep);
}
.commercial .cta-section .btn-primary:hover {
  background: var(--cream);
}
.commercial .cta-section .btn-secondary {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.commercial .cta-section .badge { color: var(--text-light); }

/* Commercial coverage links */
.commercial .coverage-link {
  background: var(--white);
  color: var(--teal-deep);
  border-color: var(--border-light);
}
.commercial .coverage-link:hover {
  background: var(--teal-deep);
  color: var(--white);
}

/* ══════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════ */
.trust-bar {
  background: var(--teal-dark);
  padding: 0;
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  text-align: center;
  padding: 36px 20px;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 30%;
  height: 40%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.trust-item h3, .trust-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
}
.trust-item p {
  color: var(--text-light-muted);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 4px;
}
.trust-item p.trust-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-top: 0;
}

/* ══════════════════════════════════════
   IMAGE BREAK SECTIONS
   ══════════════════════════════════════ */
.image-break {
  padding: 0;
  overflow: hidden;
}
.image-break-single {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.image-break-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* Placeholder state */
.image-placeholder {
  background: linear-gradient(135deg, var(--cream-dark) 0%, #e8e4de 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.image-placeholder::after {
  content: 'Photo: Heat pump installation';
  padding: 12px 24px;
  background: rgba(255,255,255,0.6);
  border-radius: 100px;
  font-size: 0.8rem;
}

/* Two-column image + text */
.image-text-section {
  padding: 100px 0;
}
.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.image-text-grid.reverse { direction: rtl; }
.image-text-grid.reverse > * { direction: ltr; }
.image-text-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.image-text-image img { width: 100%; height: 100%; object-fit: cover; }
.image-text-content h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.image-text-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Image grid — 3 images */
.image-grid-3 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  margin: 48px 0;
}
.image-grid-3 > :first-child {
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.image-grid-3 > :nth-child(2),
.image-grid-3 > :nth-child(3) {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.image-grid-3 img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
.section { padding: 100px 0; }
.section-alt { background: var(--cream); }
.section-dark {
  background: var(--teal-deep);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: var(--text-light-muted); }
.section-dark .section-label { color: var(--green-accent); }
.section-dark .card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}
.section-dark .card h3 { color: var(--white); }
.section-dark .card p { color: var(--text-light); }
.section-dark .card-icon { background: rgba(74,222,128,0.12); }
.section-dark .card-icon svg { color: var(--green-accent); }

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 56px;
  max-width: 580px;
  line-height: 1.7;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-light);
  margin-bottom: 14px;
}

/* Centred headings for specific sections */
.section-centered .section-label { display: block; text-align: center; }
.section-centered .section-title { text-align: center; }
.section-centered .section-subtitle { text-align: center; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 52px;
  right: 0;
  width: 50%;
  height: 1px;
  background: var(--border-light);
}
.step:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 0;
  width: 50%;
  height: 1px;
  background: var(--border-light);
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

.commercial .step-number { background: var(--teal-deep); }

/* ══════════════════════════════════════
   CARDS
   ══════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.35s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.02);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 22px; height: 22px; color: var(--teal-light); }

/* Commercial cards */
.commercial .card-icon { background: linear-gradient(135deg, #edf5f2 0%, #d4ebe4 100%); }
.commercial .card-icon svg { color: var(--teal-light); }
.commercial .card { border: 1px solid var(--border-light); }
.commercial .stat h3 { color: var(--teal-deep); }

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 20px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--teal-light); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  transition: all 0.3s;
}
.faq-item.open .faq-question::after {
  content: '\2212';
  background: var(--teal-deep);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 24px; }

/* ══════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════ */
.cta-section {
  background: var(--teal-deep);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,222,128,0.08) 0%, transparent 70%);
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}
.cta-section p {
  color: var(--text-light-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}
.cta-section .btn-primary {
  background: var(--green-cta);
  color: var(--teal-deep);
}
.cta-section .btn-secondary {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.cta-section .btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.02);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.testimonial-author { font-weight: 700; color: var(--text-dark); font-size: 0.9rem; }
.testimonial-location { color: var(--text-muted); font-size: 0.82rem; margin-top: 2px; }

/* ══════════════════════════════════════
   NEARBY / COVERAGE
   ══════════════════════════════════════ */
.nearby-areas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.nearby-link {
  background: var(--cream);
  color: var(--teal-deep);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s;
  border: 1px solid var(--border-light);
}
.nearby-link:hover {
  background: var(--teal-deep);
  color: var(--white);
  border-color: var(--teal-deep);
}

.coverage-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.coverage-link {
  background: var(--cream);
  color: var(--teal-deep);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s;
  border: 1px solid var(--border-light);
}
.coverage-link:hover {
  background: var(--teal-deep);
  color: var(--white);
  border-color: var(--teal-deep);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: var(--teal-dark);
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand img { height: 38px; width: auto; }
.footer-brand p {
  margin-top: 20px;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}
.footer h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all 0.2s;
  display: block;
  margin-bottom: 12px;
}
.footer a:hover { color: var(--white); transform: translateX(3px); }
.footer-certs {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-cert {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-cert svg { width: 14px; height: 14px; opacity: 0.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 8px;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════
   BLOG / ARTICLE
   ══════════════════════════════════════ */
.breadcrumb { padding: 20px 0; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--teal-light); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 10px; color: #d0d0d0; }

.article-header { padding: 56px 0 40px; max-width: 760px; margin: 0 auto; }
.article-header h1 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.article-meta { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 40px; }

.article-body { max-width: 760px; margin: 0 auto; padding-bottom: 64px; }
.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-dark);
  margin: 48px 0 20px;
}
.article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 36px 0 14px;
}
.article-body p {
  margin-bottom: 20px;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.85;
}
.article-body ul, .article-body ol { margin: 20px 0; padding-left: 28px; }
.article-body li {
  margin-bottom: 12px;
  color: var(--text-body);
  list-style: disc;
  font-size: 1.05rem;
  line-height: 1.75;
}
.article-body ol li { list-style: decimal; }
.article-body strong { font-weight: 700; color: var(--text-dark); }
.article-body a {
  color: var(--teal-light);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--teal-deep); }

.article-cta {
  background: var(--cream);
  border: none;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin: 56px 0;
}
.article-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.article-cta p { color: var(--text-muted); margin-bottom: 24px; }

.related-posts { border-top: 1px solid var(--border-light); padding-top: 48px; margin-top: 48px; }
.related-posts h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.related-posts a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.2s;
}
.related-posts a::after { content: '\2192'; color: var(--teal-light); transition: transform 0.2s; }
.related-posts a:hover { color: var(--teal-light); }
.related-posts a:hover::after { transform: translateX(4px); }

/* ══════════════════════════════════════
   COMPARISON TABLE
   ══════════════════════════════════════ */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}
.comparison-table th { background: var(--teal-deep); color: var(--white); font-weight: 600; font-size: 0.88rem; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--cream); }

/* ══════════════════════════════════════
   FORMS
   ══════════════════════════════════════ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-group { margin-bottom: 10px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 12px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: all 0.2s;
  background: var(--white);
  color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-light);
  box-shadow: 0 0 0 4px rgba(34,120,88,0.08);
}
.form-group textarea { resize: vertical; min-height: 60px; }

.hero-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 22px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  max-width: 460px;
}
.hero-form h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.hero-form .form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* ══════════════════════════════════════
   SECTORS / STATS
   ══════════════════════════════════════ */
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sector-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.sector-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.sector-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--text-dark); }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin: 48px 0; }
.stat { text-align: center; padding: 24px; }
.stat h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--teal-deep);
}
.stat p { color: var(--text-muted); font-size: 0.88rem; margin-top: 6px; }

/* ══════════════════════════════════════
   PROPERTY FAQ & SAVINGS
   ══════════════════════════════════════ */
.property-faq { margin-top: 48px; }
.property-faq h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.savings-box {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin: 48px 0;
}
.savings-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.savings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.savings-item {
  text-align: center;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
}
.savings-item .amount {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--teal-deep);
}
.savings-item .label { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; }

/* ══════════════════════════════════════
   ADVICE GRID
   ══════════════════════════════════════ */
.advice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.advice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 20px rgba(0,0,0,0.03);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.advice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.advice-card-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--cream-dark);
}
.advice-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.advice-card:hover .advice-card-image img {
  transform: scale(1.04);
}
.advice-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.advice-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}
.advice-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.advice-card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.advice-card:hover .advice-card-link {
  gap: 10px;
  color: var(--teal-deep);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .advice-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 24px; }
  .hero h1 { font-size: 2.75rem; }
  .hero { padding: 72px 0 56px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after, .step:not(:first-child)::before { display: none; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .trust-item:not(:last-child)::after { display: none; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .savings-grid { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .image-text-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--teal-deep);
    flex-direction: column;
    padding: 80px 24px 32px;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; z-index: 1001; }
  .nav .container { position: relative; z-index: 1001; }
  .nav { z-index: 1002; }
  .nav-logo { z-index: 1001; }

  /* Top-level nav links */
  .nav-links > a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1.1rem;
    font-weight: 600;
  }
  .nav-links > a:last-child { border-bottom: none; }

  /* Reset styles on dropdown items — they are NOT top-level links */
  .nav-dropdown-item {
    padding: 12px !important;
    border-bottom: none !important;
    font-size: 0.92rem !important;
    font-weight: 400 !important;
  }

  /* Standalone nav links (Advice) — match dropdown trigger style */
  .nav-link-standalone {
    display: flex !important;
    align-items: center;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
  }

  /* Phone & CTA buttons */
  .nav-phone {
    border: 1.5px solid rgba(255,255,255,0.3) !important;
    padding: 14px 20px !important;
    border-radius: 12px !important;
    text-align: center;
    margin-top: 16px;
    font-size: 1.05rem !important;
  }
  .nav-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
    padding: 16px 24px !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
  }

  /* Mobile dropdown containers */
  .nav-dropdown {
    position: static;
    width: 100%;
  }

  /* Mobile dropdown triggers */
  .nav-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1.1rem;
    font-weight: 600;
  }
  .nav-dropdown > a::after {
    content: '+';
    font-size: 1.2em;
    font-weight: 400;
    opacity: 0.5;
    transition: transform 0.3s;
  }
  .nav-dropdown.open > a::after {
    content: '\2212';
  }

  /* Mobile dropdown panels */
  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    box-shadow: none !important;
    padding: 8px;
    margin: 4px 0 8px;
    min-width: unset !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    left: auto !important;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block !important; }
  .nav-dropdown-menu .dropdown-heading {
    display: block;
    color: rgba(255,255,255,0.6);
    border-bottom-color: rgba(255,255,255,0.08);
    padding: 4px 8px 10px;
    margin-bottom: 4px;
  }

  /* Mobile dropdown items */
  .nav-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 14px;
    border-radius: 10px;
    margin-bottom: 2px;
  }
  .nav-dropdown-item:active {
    background: rgba(255,255,255,0.1);
  }
  .nav-dropdown-item .dropdown-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
  }
  .nav-dropdown-item .dropdown-icon svg {
    color: var(--green-accent);
    width: 18px;
    height: 18px;
  }
  .nav-dropdown-item:hover .dropdown-icon,
  .nav-dropdown-item:active .dropdown-icon {
    background: rgba(255,255,255,0.14);
  }
  .nav-dropdown-item:hover .dropdown-icon svg,
  .nav-dropdown-item:active .dropdown-icon svg {
    color: var(--green-accent);
  }
  .nav-dropdown-item .dropdown-text strong {
    color: var(--white) !important;
    font-size: 0.92rem;
    font-weight: 600;
  }
  .nav-dropdown-item .dropdown-text span {
    color: rgba(255,255,255,0.45);
    font-size: 0.78rem;
  }
  .nav-dropdown-item:hover {
    background: rgba(255,255,255,0.06);
  }

  /* Mobile nav — transparent, overlays hero */
  .nav {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    box-shadow: none !important;
    z-index: 1002;
  }

  /* Mobile hero — full-screen with background image */
  .hero {
    padding: 40px 0 !important;
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
  .hero.has-bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(16,57,47,0.82);
    z-index: 1;
  }
  .hero::after { display: none; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-image { display: none !important; }
  .hero .container { position: relative; z-index: 2; padding-top: 72px; }
  .hero-content { position: relative; z-index: 2; }
  .hero h1 { font-size: 2.1rem; color: var(--white) !important; }
  .hero h1 span { color: var(--green-accent) !important; }
  .hero p { color: var(--text-light) !important; }
  .hero .badge { color: var(--text-light) !important; }
  .hero .badge svg { stroke: var(--green-accent) !important; }

  .section-title { font-size: 1.85rem; }
  .cta-section h2 { font-size: 2rem; }
  .cta-section { padding: 72px 0; }
  .postcode-cta { flex-direction: column; }
  .postcode-checker-input { flex-direction: column; max-width: 100%; }
  .area-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .area-subheading { margin-top: 32px; }
  .trust-item h3, .trust-value { font-size: 1.4rem; }
  .article-header h1 { font-size: 2rem; }
  .image-break-single { aspect-ratio: 16/9; }

  /* Compact hero — for pages that just need a heading, not full-screen */
  .hero-compact { min-height: auto !important; }

  /* Commercial hero on mobile — keep white, no background image */
  .commercial .hero { min-height: auto; padding: 56px 0 48px; }
  .commercial .hero h1 { color: var(--text-dark) !important; }
  .commercial .hero h1 span { color: var(--teal-light) !important; }
  .commercial .hero p { color: var(--text-body) !important; }
  .commercial .hero .badge { color: var(--text-body) !important; }
  .commercial .hero .badge svg { stroke: var(--teal-light) !important; }
  .commercial .nav-links { background: var(--teal-deep); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 640px) {
  .steps-grid, .cards-grid, .advice-grid { grid-template-columns: 1fr; }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 24px 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { text-align: center; justify-content: center; }
  .hero-badges { gap: 8px; }
  .badge { padding: 8px 14px; font-size: 0.78rem; }
  .image-grid-3 { grid-template-columns: 1fr; }
  .image-grid-3 > :first-child { grid-row: auto; aspect-ratio: 16/9; }
  .area-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .animate-on-scroll { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
