/*
Theme Name:        Mt Eden Heat Pumps
Theme URI:         https://heatpumpsmteden.nz
Author:            MoreLeads.nz
Author URI:        https://moreleads.nz
Description:       Custom theme for Mt Eden Heat Pumps — Central Auckland's Local Heat Pump Specialists
Version:           1.0.0
Requires at least: 6.0
Requires PHP:      8.0
License:           Proprietary
Text Domain:       takapuna-hp
*/

/* ==========================================================================
   Fonts — Montserrat self-hosted
   ========================================================================== */

@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/takapuna-hp/fonts/montserrat-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/takapuna-hp/fonts/montserrat-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/takapuna-hp/fonts/montserrat-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/takapuna-hp/fonts/montserrat-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Design Tokens — CSS Custom Properties
   ========================================================================== */

:root {

  /* --- Colours: Primary --- */
  --color-primary:        #2B7BB9;   /* Sky Blue — headers, links, primary buttons */
  --color-primary-dark:   #1E5F8E;   /* Hover state for primary */
  --color-primary-light:  #EDF3F9;   /* Light tint — section backgrounds, highlights */

  /* --- Colours: Accent --- */
  --color-accent:         #F07D28;   /* Warm Orange — CTAs, highlights, badges */
  --color-accent-dark:    #D4661A;   /* Hover state for accent */
  --color-accent-light:   #FEF3EB;   /* Light tint — accent backgrounds */

  /* --- Colours: Trust / Success --- */
  --color-trust:          #2E7D52;   /* Fresh Green — trust badges, ticks, guarantees */
  --color-trust-light:    #EAF4EE;   /* Light tint — trust badge backgrounds */

  /* --- Colours: Backgrounds --- */
  --color-bg-white:       #FFFFFF;   /* Page background, cards */
  --color-bg-off-white:   #F8F9FA;   /* Alternate section background */
  --color-bg-light:       #EDF3F9;   /* Light blue-grey sections */
  --color-bg-footer:      #F0F4F8;   /* Footer background */

  /* --- Colours: Text --- */
  --color-text-primary:   #1E1E1E;   /* Body copy, headings */
  --color-text-secondary: #5A6472;   /* Subtext, meta, captions */
  --color-text-light:     #8A94A0;   /* Placeholder, disabled */
  --color-text-inverse:   #FFFFFF;   /* Text on dark/coloured backgrounds */

  /* --- Colours: Borders --- */
  --color-border:         #DDE3EA;   /* Card borders, dividers, inputs */
  --color-border-focus:   #2B7BB9;   /* Input focus state */

  /* --- Shadows --- */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 24px rgba(0,0,0,0.12);

  /* --- Typography: Family --- */
  --font-family:      'Montserrat', sans-serif;

  /* --- Typography: Scale --- */
  --text-hero:        clamp(2.2rem, 5vw, 3.5rem);    /* Hero H1 */
  --text-h1:          clamp(1.8rem, 4vw, 2.8rem);    /* Page H1 */
  --text-h2:          clamp(1.5rem, 3vw, 2.1rem);    /* Section headings */
  --text-h3:          clamp(1.2rem, 2.5vw, 1.5rem);  /* Card / subsection headings */
  --text-h4:          1.15rem;                         /* Minor headings */
  --text-lg:          1.125rem;                        /* Lead paragraph */
  --text-base:        1rem;                            /* Body copy */
  --text-sm:          0.875rem;                        /* Meta, captions, labels */
  --text-xs:          0.75rem;                         /* Fine print, badges */

  /* --- Typography: Line Heights --- */
  --leading-tight:    1.2;
  --leading-normal:   1.6;
  --leading-relaxed:  1.75;

  /* --- Typography: Letter Spacing --- */
  --tracking-tight:   -0.02em;
  --tracking-normal:  0;
  --tracking-wide:    0.05em;
  --tracking-wider:   0.1em;

  /* --- Spacing (4px base unit) --- */
  --space-1:    0.25rem;   /*  4px */
  --space-2:    0.5rem;    /*  8px */
  --space-3:    0.75rem;   /* 12px */
  --space-4:    1rem;      /* 16px */
  --space-5:    1.25rem;   /* 20px */
  --space-6:    1.5rem;    /* 24px */
  --space-8:    2rem;      /* 32px */
  --space-10:   2.5rem;    /* 40px */
  --space-12:   3rem;      /* 48px */
  --space-16:   4rem;      /* 64px */
  --space-20:   5rem;      /* 80px */
  --space-24:   6rem;      /* 96px */

  /* --- Spacing: Sections & Container --- */
  --section-py:       clamp(3rem, 6vw, 5rem);
  --section-px:       clamp(1rem, 4vw, 2rem);
  --container-max:    1200px;
  --container-wide:   1440px;
  --container-narrow: 768px;

  /* --- Breakpoints (reference values — use literal px in @media queries) --- */
  --bp-sm:   480px;    /* Large phones */
  --bp-md:   768px;    /* Tablets */
  --bp-lg:   1024px;   /* Small desktop */
  --bp-xl:   1280px;   /* Desktop */
  --bp-2xl:  1440px;   /* Wide desktop */
}

/* ==========================================================================
   Base Reset
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Headings --- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
}

h1 {
  font-size: var(--text-h1);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
}

h2 {
  font-size: var(--text-h2);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-h3);
  font-weight: 700;
}

h4 {
  font-size: var(--text-h4);
  font-weight: 600;
}

h5, h6 {
  font-weight: 600;
}

/* --- Body copy --- */

p {
  line-height: var(--leading-normal);
}

p + p {
  margin-top: var(--space-4);
}

/* --- Links --- */

a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
}

a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* --- Lists --- */

ul,
ol {
  list-style: none;
}

/* --- Media --- */

img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* --- Form elements --- */

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Layout utilities --- */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section {
  padding: var(--section-py) var(--section-px);
}

/* ==========================================================================
   Homepage
   ========================================================================== */

/* --- Section variants --- */

.section-white    { background: #FFFFFF; padding: 4rem 1.5rem; }
.section-offwhite { background: #F8F9FA; padding: 4rem 1.5rem; }
.section-light    { background: #EDF3F9; padding: 4rem 1.5rem; }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -0.01em; color: #1E1E1E; margin-bottom: 0.5rem; }
.section-header p { font-size: 0.9rem; color: #5A6472; font-weight: 600; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* --- Buttons --- */

.btn-primary { background: #F07D28; color: #FFFFFF; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.75rem 1.5rem; border-radius: 4px; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-primary:hover { background: #D4661A; }

.btn-phone { display: inline-flex; align-items: center; gap: 0.4rem; background: #2B7BB9; color: #FFFFFF; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem; padding: 0.75rem 1.25rem; border-radius: 4px; text-decoration: none; transition: background 0.2s; }
.btn-phone:hover { background: #1E5F8E; }
.btn-phone svg { width: 15px; height: 15px; fill: #FFFFFF; flex-shrink: 0; }

.btn-green { background: #2E7D52; color: #FFFFFF; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.7rem 1.25rem; border-radius: 4px; text-decoration: none; white-space: nowrap; display: inline-block; transition: background 0.2s; }
.btn-green:hover { background: #245f3e; }

.btn-white { background: #FFFFFF; color: #F07D28; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.75rem 1.5rem; border-radius: 4px; text-decoration: none; display: inline-block; white-space: nowrap; transition: background 0.2s; }
.btn-white:hover { background: #FEF3EB; }

.btn-cta-white { background: #FFFFFF; color: #2B7BB9; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.75rem 1.5rem; border-radius: 4px; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-cta-white:hover { background: #EDF3F9; }

.btn-cta-orange { background: #F07D28; color: #FFFFFF; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem; padding: 0.75rem 1.5rem; border-radius: 4px; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: background 0.2s; }
.btn-cta-orange:hover { background: #D4661A; }
.btn-cta-orange svg { width: 15px; height: 15px; fill: #FFFFFF; }

/* --- Hero --- */

.hero { background: #EDF3F9; padding: 4rem 1.5rem; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-badge { display: inline-block; background: #2B7BB9; color: #FFFFFF; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: 20px; margin-bottom: 1rem; }
.hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; color: #1E1E1E; margin-bottom: 1rem; }
.hero h1 span { color: #2B7BB9; }
.hero-lead { font-size: 0.95rem; font-weight: 600; color: #5A6472; line-height: 1.75; margin-bottom: 1.75rem; max-width: 480px; }
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; }
.trust-item { display: flex; align-items: center; gap: 0.3rem; font-size: 0.75rem; font-weight: 700; color: #2E7D52; }
.trust-item::before { content: '✓'; font-weight: 800; }
.hero-image { border-radius: 8px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.hero-image img { width: 100%; height: 420px; object-fit: cover; }

/* --- Stats bar --- */

.stats-bar { background: #2B7BB9; padding: 2rem 1.5rem; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 0.5rem; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #FFFFFF; line-height: 1; margin-bottom: 0.3rem; }
.stat-number span { color: #F07D28; }
.stat-label { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 0.05em; text-transform: uppercase; }

/* --- Install cards --- */

.install-row-top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 1.25rem; }
.install-row-bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.install-card { display: block; text-decoration: none; background: #FFFFFF; border-radius: 10px; overflow: hidden; border: 1px solid #DDE3EA; box-shadow: 0 2px 8px rgba(0,0,0,0.07); transition: box-shadow 0.25s, transform 0.25s; position: relative; }
.install-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.13); transform: translateY(-4px); }
.card-img { width: 100%; object-fit: cover; display: block; }
.install-row-top .card-img { height: 220px; }
.install-row-bottom .card-img { height: 220px; }
.card-badge { position: absolute; top: 1rem; left: 1rem; background: #F07D28; color: #FFFFFF; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 20px; }
.card-body { padding: 1.5rem 1.75rem 1.75rem; border-top: 3px solid #2B7BB9; }
.install-row-bottom .card-body { padding: 1.25rem 1.5rem 1.5rem; }
.card-type { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #2B7BB9; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.35rem; }
.card-type-dot { width: 5px; height: 5px; border-radius: 50%; background: #2B7BB9; flex-shrink: 0; }
.card-body h3 { font-size: 1rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.install-row-bottom .card-body h3 { font-size: 0.88rem; }
.card-body p { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.65; margin-bottom: 1rem; }
.install-row-bottom .card-body p { font-size: 0.73rem; margin-bottom: 0.85rem; }
.card-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; font-weight: 700; color: #2B7BB9; background: #EDF3F9; padding: 0.4rem 0.85rem; border-radius: 4px; transition: background 0.2s, color 0.2s; }
.card-link:hover { background: #2B7BB9; color: #FFFFFF; }
.card-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.install-row-bottom .card-link { font-size: 0.7rem; }

/* --- Subsidy banner --- */

.subsidy-banner { background: #EAF4EE; border-top: 3px solid #2E7D52; border-bottom: 3px solid #2E7D52; padding: 2.5rem 1.5rem; }
.subsidy-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; }
.subsidy-icon { width: 64px; height: 64px; background: #2E7D52; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.subsidy-icon svg { width: 30px; height: 30px; stroke: #FFFFFF; fill: none; stroke-width: 2; stroke-linecap: round; }
.subsidy-text h3 { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 800; color: #1E1E1E; margin-bottom: 0.4rem; }
.subsidy-text p { font-size: 0.85rem; color: #5A6472; font-weight: 600; line-height: 1.6; }

/* --- About / intro --- */

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.intro-img { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.10); position: relative; }
.intro-img img { width: 100%; height: 380px; object-fit: cover; }
.intro-img-badge { position: absolute; bottom: 1rem; left: 1rem; background: #2B7BB9; color: #FFFFFF; font-size: 0.72rem; font-weight: 800; padding: 0.4rem 0.85rem; border-radius: 4px; }
.intro-content h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 1rem; }
.intro-content p { font-size: 0.88rem; color: #5A6472; font-weight: 600; line-height: 1.75; margin-bottom: 1rem; }
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.trust-list li { display: flex; align-items: flex-start; gap: 0.6rem; }
.trust-check { color: #2E7D52; font-weight: 800; font-size: 0.9rem; flex-shrink: 0; margin-top: 0.1rem; }
.trust-text { display: flex; flex-direction: column; gap: 0.1rem; }
.trust-label { font-size: 0.82rem; font-weight: 700; color: #1E1E1E; }
.trust-desc { font-size: 0.78rem; font-weight: 600; color: #5A6472; line-height: 1.5; }

/* --- Warranty --- */

.warranty-section { background: #EDF3F9; padding: 4rem 1.5rem; }
.warranty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.w-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 8px; overflow: hidden; }
.w-card-accent { height: 4px; background: #2B7BB9; }
.w-card-accent.orange { background: #F07D28; }
.w-card-accent.green { background: #2E7D52; }
.w-card-inner { padding: 1.75rem; }
.w-card-number { font-size: 3.5rem; font-weight: 800; color: #EDF3F9; line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.03em; }
.w-card-number span { color: #2B7BB9; }
.w-years { font-size: 3.5rem; font-weight: 800; color: #FEF3EB; line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.03em; }
.w-years span { color: #F07D28; }
.w-card h3 { font-size: 1rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.6rem; }
.w-card p { font-size: 0.8rem; color: #5A6472; font-weight: 600; line-height: 1.7; }
.w-paths { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.75rem; }
.w-path { background: #F8F9FA; border-radius: 6px; padding: 0.75rem 1rem; border-left: 3px solid #2B7BB9; }
.w-path.orange-path { border-left-color: #F07D28; }
.w-path-label { font-size: 0.72rem; font-weight: 800; color: #2B7BB9; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.w-path.orange-path .w-path-label { color: #F07D28; }
.w-path p { font-size: 0.75rem; color: #5A6472; font-weight: 600; line-height: 1.5; }

/* --- Cost cards --- */

.cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.cost-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 8px; overflow: hidden; }
.cost-card-header { background: #EDF3F9; padding: 1.5rem 1.75rem 1.25rem; border-bottom: 1px solid #DDE3EA; }
.cost-card:nth-child(2) .cost-card-header { background: #FEF3EB; }
.cost-type { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #2B7BB9; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.4rem; }
.cost-card:nth-child(2) .cost-type { color: #F07D28; }
.cost-type-dot { width: 6px; height: 6px; border-radius: 50%; background: #2B7BB9; flex-shrink: 0; }
.cost-card:nth-child(2) .cost-type-dot { background: #F07D28; }
.cost-range { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 800; color: #1E1E1E; letter-spacing: -0.03em; line-height: 1.1; }
.cost-from { font-size: 0.65rem; font-weight: 700; color: #5A6472; letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-bottom: 0.2rem; }
.cost-card-body { padding: 1.25rem 1.75rem 1.5rem; }
.cost-card-name { font-size: 0.88rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.5rem; }
.cost-card-desc { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.65; margin-bottom: 1rem; }
.cost-card-link { font-size: 0.75rem; font-weight: 700; color: #2B7BB9; border-bottom: 1px solid #2B7BB9; padding-bottom: 1px; }
.cost-footer { text-align: center; }
.cost-footer p { font-size: 0.78rem; color: #5A6472; font-weight: 600; margin-bottom: 0.75rem; }
.cost-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.cost-links a { font-size: 0.82rem; font-weight: 700; color: #2B7BB9; border-bottom: 2px solid #2B7BB9; padding-bottom: 1px; }

/* --- Mid-page CTA --- */

.mid-cta { background: #F07D28; padding: 2rem 1.5rem; }
.mid-cta-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.mid-cta-text h3 { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 800; color: #FFFFFF; margin-bottom: 0.25rem; }
.mid-cta-text p { font-size: 0.82rem; color: rgba(255,255,255,0.9); font-weight: 600; max-width: 500px; line-height: 1.6; }

/* --- Process steps --- */

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 36px; left: calc(12.5% + 24px); right: calc(12.5% + 24px); height: 2px; background: linear-gradient(to right, #2B7BB9, #F07D28); z-index: 0; }
.process-step { text-align: center; padding: 0 1rem 1.5rem; position: relative; z-index: 1; }
.step-icon-wrap { width: 72px; height: 72px; background: #FFFFFF; border: 3px solid #2B7BB9; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; position: relative; box-shadow: 0 4px 12px rgba(43,123,185,0.15); }
.step-icon-wrap svg { width: 28px; height: 28px; stroke: #2B7BB9; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.step-number-badge { position: absolute; top: -4px; right: -4px; width: 22px; height: 22px; background: #F07D28; color: #FFFFFF; font-size: 0.65rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.process-step h3 { font-size: 0.9rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.65; }
.process-footer { text-align: center; margin-top: 1.75rem; }
.process-footer a { font-size: 0.82rem; font-weight: 700; color: #2B7BB9; border-bottom: 1px solid #2B7BB9; padding-bottom: 1px; }

/* --- Brands --- */

.brands-intro { text-align: center; margin-bottom: 1.5rem; }
.brands-intro h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -0.01em; color: #1E1E1E; margin-bottom: 0.5rem; }
.brands-intro p { font-size: 0.9rem; color: #5A6472; font-weight: 600; line-height: 1.6; }
.brands-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 1.25rem; }
.brand-pill { display: inline-block; background: #FFFFFF; border: 1.5px solid #2B7BB9; color: #2B7BB9; font-size: 0.82rem; font-weight: 700; padding: 0.5rem 1.25rem; border-radius: 20px; text-decoration: none; transition: all 0.2s; }
.brand-pill:hover { background: #2B7BB9; color: #FFFFFF; }
.brand-pill-dashed { display: inline-block; background: transparent; border: 1.5px dashed #2B7BB9; color: #2B7BB9; font-size: 0.82rem; font-weight: 700; padding: 0.5rem 1.25rem; border-radius: 20px; text-decoration: none; transition: all 0.2s; }
.brand-pill-dashed:hover { background: #2B7BB9; color: #FFFFFF; border-style: solid; }
.brand-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 0; }
.brand-links a { font-size: 0.82rem; font-weight: 700; color: #2B7BB9; border-bottom: 2px solid #2B7BB9; padding-bottom: 1px; }

/* --- Red tape callout --- */

.redtape-callout { background: #FFFFFF; border: 2px solid #2B7BB9; border-radius: 8px; padding: 1.75rem 2rem; max-width: 800px; margin: 2rem auto 0; display: flex; align-items: flex-start; gap: 1.25rem; box-shadow: 0 4px 12px rgba(43,123,185,0.12); }
.redtape-icon-wrap { width: 48px; height: 48px; background: #EDF3F9; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.redtape-icon-wrap svg { width: 24px; height: 24px; stroke: #2B7BB9; fill: none; stroke-width: 2; stroke-linecap: round; }
.redtape-callout h4 { font-size: 0.95rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.4rem; }
.redtape-callout p { font-size: 0.82rem; color: #5A6472; font-weight: 600; line-height: 1.65; }
.redtape-callout a { color: #2B7BB9; font-weight: 700; border-bottom: 1px solid #2B7BB9; }

/* --- Suburb pills --- */

.suburbs-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.suburb-pill { display: inline-block; background: #FFFFFF; border: 1px solid #2B7BB9; color: #2B7BB9; font-size: 0.78rem; font-weight: 600; padding: 0.4rem 1rem; border-radius: 20px; text-decoration: none; transition: all 0.2s; }
.suburb-pill:hover { background: #2B7BB9; color: #FFFFFF; }

/* --- FAQ accordion --- */

.faq-list { max-width: 800px; margin: 0 auto; border-radius: 8px; overflow: hidden; border: 1px solid #DDE3EA; }
.faq-item { border-bottom: 1px solid #DDE3EA; background: #FFFFFF; }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-weight: 700; font-size: 0.9rem; padding: 1.1rem 1.25rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #1E1E1E; user-select: none; transition: color 0.2s; }
.faq-item.open .faq-question { color: #2B7BB9; }
.faq-q-icon { width: 26px; height: 26px; background: #EDF3F9; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #2B7BB9; font-weight: 800; font-size: 1.1rem; flex-shrink: 0; margin-left: 1rem; transition: transform 0.2s, background 0.2s; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: #2B7BB9; color: #FFFFFF; }
.faq-answer { font-size: 0.85rem; color: #5A6472; font-weight: 600; line-height: 1.75; padding: 0 1.25rem 1.1rem; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-answer a { color: #2B7BB9; font-weight: 700; border-bottom: 1px solid #2B7BB9; }

/* --- CTA banner --- */

.cta-banner { background: #2B7BB9; padding: 4rem 1.5rem; text-align: center; }
.cta-banner h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: #FFFFFF; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.cta-banner p { font-size: 0.9rem; color: rgba(255,255,255,0.85); font-weight: 600; margin-bottom: 1.75rem; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Responsive --- */

@media (max-width: 1024px) {
  .warranty-grid { grid-template-columns: repeat(2, 1fr); }
  .cost-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .subsidy-inner { grid-template-columns: 1fr; text-align: center; }
  .subsidy-icon { margin: 0 auto; }
  .intro-grid { grid-template-columns: 1fr; }
  .mid-cta-inner { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}

@media (max-width: 680px) {
  .install-row-top,
  .install-row-bottom { grid-template-columns: 1fr; }
  .install-row-top .card-img { height: 280px; }
  .install-row-bottom .card-img { height: 280px; }
  .warranty-grid,
  .cost-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-phone { justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-cta-orange { justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
  .cost-links,
  .brand-links { flex-direction: column; align-items: center; gap: 0.5rem; }
  .redtape-callout { flex-direction: column; }
}

/* ─── Contact Page ─────────────────────────────────────────────────────────── */

/* Hero */
.page-hero { background: #EDF3F9; padding: 4rem 1.5rem; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.page-hero-badge { display: inline-block; background: #2B7BB9; color: #FFFFFF; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: 20px; margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; color: #1E1E1E; margin-bottom: 0.75rem; }
.page-hero h1 span { color: #2B7BB9; }
.page-hero-lead { font-size: 0.95rem; font-weight: 600; color: #5A6472; line-height: 1.75; margin-bottom: 1.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.page-template-page-contact .hero-trust { gap: 0.75rem 1.25rem; }
.page-template-page-contact .hero-trust > span { display: flex; align-items: center; gap: 0.3rem; font-size: 0.75rem; font-weight: 700; color: #2E7D52; }
.page-template-page-contact .hero-trust > span::before { content: '\2713'; font-weight: 800; }
.hero-img-wrap { border-radius: 10px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.12); width: 100%; }
.hero-img-wrap img { width: 100%; height: 380px; object-fit: cover; display: block; }
.page-template-page-hot-water-heat-pumps-takapuna .hero-img-wrap img { height: 420px; object-position: right center; }

/* Stats override — tighter padding on contact page */
.page-template-page-contact .stats-bar { padding: 1.5rem; }

/* Form */
.form-section { background: #FFFFFF; padding: 4rem 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.form-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-top: 3px solid #2B7BB9; border-radius: 10px; padding: 2.25rem; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.form-card h2 { font-size: 1.3rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.form-subtitle { font-size: 0.82rem; color: #5A6472; font-weight: 600; margin-bottom: 1.75rem; line-height: 1.6; }
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: 0.75rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.35rem; }
.form-input { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #DDE3EA; border-radius: 6px; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600; color: #1E1E1E; background: #FFFFFF; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-input:focus { border-color: #2B7BB9; box-shadow: 0 0 0 3px rgba(43,123,185,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A6472' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.speed-promise { background: #EDF3F9; border-left: 3px solid #2B7BB9; border-radius: 0 6px 6px 0; padding: 0.75rem 1rem; margin-bottom: 1.1rem; font-size: 0.78rem; font-weight: 700; color: #2B7BB9; line-height: 1.6; }
.btn-submit { width: 100%; background: #F07D28; color: #FFFFFF; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.9rem; border-radius: 6px; border: none; cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background: #D4661A; }

/* Form notices */
.form-notice { padding: 1rem 1.25rem; border-radius: 6px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; line-height: 1.6; }
.form-notice-success { background: #EAF4EE; border: 1.5px solid #2E7D52; color: #2E7D52; }
.form-notice-error { background: #FEF3EB; border: 1.5px solid #F07D28; color: #D4661A; }

/* Contact panel */
.contact-panel { display: flex; flex-direction: column; gap: 1.25rem; }
.info-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 10px; padding: 1.5rem 1.75rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.info-card h3 { font-size: 0.95rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.6rem; }
.info-card p { font-size: 0.82rem; color: #5A6472; font-weight: 600; line-height: 1.7; margin-bottom: 0.75rem; }
.info-card p:last-child { margin-bottom: 0; }
.call-btn { display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 1.25rem; border-radius: 6px; font-size: 0.95rem; font-weight: 800; color: #FFFFFF; background: #2B7BB9; text-decoration: none; transition: background 0.2s; }
.call-btn:hover { background: #1E5F8E; }
.call-btn svg { width: 18px; height: 18px; fill: #FFFFFF; flex-shrink: 0; }
.guarantee-badge { display: flex; align-items: center; gap: 0.75rem; background: #EAF4EE; border: 1.5px solid #2E7D52; border-radius: 8px; padding: 0.85rem 1.1rem; margin-top: 0.75rem; }
.guarantee-badge svg { width: 22px; height: 22px; stroke: #2E7D52; fill: none; stroke-width: 2; flex-shrink: 0; }
.guarantee-badge span { font-size: 0.78rem; font-weight: 700; color: #2E7D52; line-height: 1.4; }

/* Gary editorial */
.craig-section { background: #F8F9FA; padding: 4rem 1.5rem; }
.craig-editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.craig-photo-stack { display: flex; flex-direction: column; }
.craig-img { overflow: hidden; position: relative; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.craig-img.top { border-radius: 10px 10px 0 0; }
.craig-img.bottom { border-radius: 0 0 10px 10px; }
.craig-img img { width: 100%; height: 280px; object-fit: cover; display: block; }
.craig-img-badge { position: absolute; bottom: 1rem; left: 1rem; background: #2B7BB9; color: #FFFFFF; font-size: 0.72rem; font-weight: 800; padding: 0.4rem 0.85rem; border-radius: 4px; }
.craig-between-quote { background: #2B7BB9; padding: 1.5rem 2rem; position: relative; }
.craig-between-quote::before { content: '\201C'; font-size: 4rem; font-weight: 800; color: rgba(255,255,255,0.15); line-height: 1; position: absolute; top: 0.5rem; left: 1.25rem; }
.craig-between-quote p { font-size: 0.88rem; font-weight: 600; color: #FFFFFF; line-height: 1.75; font-style: italic; padding-left: 0.5rem; }
.craig-content h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 700; letter-spacing: -0.01em; color: #1E1E1E; margin-bottom: 1.25rem; }
.craig-content p { font-size: 0.88rem; color: #5A6472; font-weight: 600; line-height: 1.8; margin-bottom: 1rem; }
.craig-badges { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.craig-badge-item { display: flex; align-items: center; gap: 0.75rem; background: #EAF4EE; border: 1.5px solid #2E7D52; border-radius: 8px; padding: 0.75rem 1rem; }
.craig-badge-item svg { width: 20px; height: 20px; stroke: #2E7D52; fill: none; stroke-width: 2; flex-shrink: 0; }
.craig-badge-item span { font-size: 0.8rem; font-weight: 700; color: #2E7D52; }

/* Map */
.map-section { background: #FFFFFF; }
.map-header { padding: 3rem 1.5rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.map-header h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -0.01em; color: #1E1E1E; margin-bottom: 0.5rem; }
.map-header p { font-size: 0.9rem; color: #5A6472; font-weight: 600; line-height: 1.7; max-width: 700px; }
.map-embed { width: 100%; height: 440px; border: 0; display: block; }
.suburbs-wrap { background: #EDF3F9; padding: 2rem 1.5rem 2.5rem; }
.page-template-page-contact .suburbs-grid { max-width: 1200px; margin: 0 auto; }

/* Mobile sticky call bar */
.mobile-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #2B7BB9; padding: 0.85rem 1.5rem; z-index: 999; box-shadow: 0 -2px 12px rgba(0,0,0,0.2); }
.mobile-sticky a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: #FFFFFF; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; }
.mobile-sticky svg { width: 18px; height: 18px; fill: #FFFFFF; }

/* Contact page responsive */
@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .craig-editorial { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .mobile-sticky { display: block; }
  body.page-template-page-contact { padding-bottom: 60px; }
}

/* ─── About Page ────────────────────────────────────────────────────────────── */

/* Hero overrides */
.page-template-page-about .hero-trust { flex-direction: column; gap: 0.75rem; }
.page-template-page-about .hero-img-wrap img { height: 420px; }
.hero-img-badge { position: absolute; bottom: 1rem; left: 1rem; background: #2B7BB9; color: #FFFFFF; font-size: 0.72rem; font-weight: 800; padding: 0.4rem 0.85rem; border-radius: 4px; }

/* Trust list */
.trust-item { display: flex; align-items: flex-start; gap: 0.6rem; }
.trust-check { color: #2E7D52; font-weight: 800; font-size: 0.9rem; flex-shrink: 0; margin-top: 0.05rem; }
.trust-text { display: flex; flex-direction: column; gap: 0.1rem; }
.trust-label { font-size: 0.82rem; font-weight: 700; color: #1E1E1E; }
.trust-desc { font-size: 0.75rem; font-weight: 600; color: #5A6472; line-height: 1.5; }

/* Story */
.story-section { background: #FFFFFF; padding: 4rem 1.5rem; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.story-content h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; letter-spacing: -0.01em; color: #1E1E1E; margin-bottom: 1.25rem; line-height: 1.3; }
.story-content h3 { font-size: 1.1rem; font-weight: 700; color: #1E1E1E; margin: 1.75rem 0 0.75rem; }
.story-content p { font-size: 0.9rem; color: #5A6472; font-weight: 600; line-height: 1.85; margin-bottom: 1rem; }
.story-img-stack { display: flex; flex-direction: column; position: sticky; top: 2rem; }
.story-img { overflow: hidden; position: relative; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.story-img.top { border-radius: 10px 10px 0 0; }
.story-img.bottom { border-radius: 0 0 10px 10px; }
.story-img img { width: 100%; height: 260px; object-fit: cover; display: block; }
.story-img-badge { position: absolute; bottom: 1rem; left: 1rem; background: #2B7BB9; color: #FFFFFF; font-size: 0.72rem; font-weight: 800; padding: 0.4rem 0.85rem; border-radius: 4px; }
.story-quote { background: #2B7BB9; padding: 1.5rem 2rem; position: relative; }
.story-quote::before { content: '\201C'; font-size: 4rem; font-weight: 800; color: rgba(255,255,255,0.15); line-height: 1; position: absolute; top: 0.5rem; left: 1.25rem; }
.story-quote p { font-size: 0.88rem; font-weight: 600; color: #FFFFFF; line-height: 1.75; font-style: italic; padding-left: 0.5rem; }

/* Install only */
.install-only { background: #F8F9FA; padding: 4rem 1.5rem; }
.install-only-inner { max-width: 900px; margin: 0 auto; }
.install-only h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -0.01em; color: #1E1E1E; margin-bottom: 0.75rem; text-align: center; }
.install-only-lead { font-size: 0.9rem; color: #5A6472; font-weight: 600; line-height: 1.7; text-align: center; margin-bottom: 2.5rem; max-width: 650px; margin-left: auto; margin-right: auto; }
.install-problems { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.problem-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-top: 3px solid #F07D28; border-radius: 8px; padding: 1.5rem; }
.problem-card h4 { font-size: 0.85rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.5rem; }
.problem-card p { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.65; }
.install-solution { background: #2B7BB9; border-radius: 8px; padding: 1.75rem 2rem; text-align: center; }
.install-solution p { font-size: 0.9rem; font-weight: 700; color: #FFFFFF; line-height: 1.7; margin-bottom: 1rem; }
.install-links { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.install-link { display: inline-block; background: rgba(255,255,255,0.15); color: #FFFFFF; font-size: 0.75rem; font-weight: 700; padding: 0.4rem 1rem; border-radius: 20px; border: 1px solid rgba(255,255,255,0.3); transition: background 0.2s; }
.install-link:hover { background: rgba(255,255,255,0.25); }

/* Servicing */
.servicing-section { background: #FFFFFF; padding: 4rem 1.5rem; }
.servicing-inner { max-width: 800px; margin: 0 auto; }
.servicing-inner h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 700; letter-spacing: -0.01em; color: #1E1E1E; margin-bottom: 1rem; }
.servicing-inner p { font-size: 0.9rem; color: #5A6472; font-weight: 600; line-height: 1.85; margin-bottom: 1rem; }
.servicing-callout { background: #EAF4EE; border: 1.5px solid #2E7D52; border-radius: 8px; padding: 1.5rem 2rem; display: flex; align-items: flex-start; gap: 1rem; margin-top: 1.5rem; }
.servicing-callout svg { width: 28px; height: 28px; stroke: #2E7D52; fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 0.1rem; }
.servicing-callout h4 { font-size: 0.9rem; font-weight: 700; color: #2E7D52; margin-bottom: 0.3rem; }
.servicing-callout p { font-size: 0.82rem; color: #5A6472; font-weight: 600; line-height: 1.65; margin-bottom: 0; }

/* Certifications */
.cert-section { background: #EDF3F9; padding: 4rem 1.5rem; }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.cert-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-top: 3px solid #2B7BB9; border-radius: 10px; padding: 1.75rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.cert-icon { width: 48px; height: 48px; background: #EDF3F9; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.cert-icon svg { width: 24px; height: 24px; stroke: #2B7BB9; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cert-tag { display: inline-block; background: #EDF3F9; color: #2B7BB9; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.75rem; }
.cert-card h3 { font-size: 0.95rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.5rem; }
.cert-card p { font-size: 0.8rem; color: #5A6472; font-weight: 600; line-height: 1.65; }

/* Suburbs section */
.suburbs-section { background: #F8F9FA; padding: 4rem 1.5rem; }

/* About page responsive */
@media (max-width: 900px) {
  .page-template-page-about .page-hero-inner { grid-template-columns: 1fr; }
  .page-template-page-about .hero-img-wrap { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .story-img-stack { position: static; }
  .install-problems { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
}

/* ─── Installation Page ──────────────────────────────────────────────────── */

/* Hero */
.page-template-page-heat-pump-installation-takapuna .hero-img-wrap img { height: 420px; }

/* Specialist section */
.specialist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.specialist-img { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.specialist-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.specialist-content h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 1rem; }
.specialist-content p { font-size: 0.88rem; color: #5A6472; font-weight: 600; line-height: 1.8; margin-bottom: 1rem; }
.specialist-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.specialist-list li { display: flex; align-items: flex-start; gap: 0.6rem; }
.spec-check { color: #2E7D52; font-weight: 800; font-size: 0.9rem; flex-shrink: 0; margin-top: 0.05rem; }
.spec-text { display: flex; flex-direction: column; gap: 0.1rem; }
.spec-label { font-size: 0.82rem; font-weight: 700; color: #1E1E1E; }
.spec-desc { font-size: 0.78rem; font-weight: 600; color: #5A6472; line-height: 1.5; }

/* Install grid — 3-col used on installation page (homepage uses install-row-top/bottom) */
.install-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.install-grid .card-img { height: 220px; }
.install-grid .card-body { padding: 1.25rem 1.5rem 1.5rem; }
.install-grid .card-body h3 { font-size: 0.9rem; }

/* Subsidy banner — amber for install page, overrides homepage green */
.page-template-page-heat-pump-installation-takapuna .subsidy-banner { background: #FFF9E6; border-top-color: #E6A800; border-bottom-color: #E6A800; border-top-width: 4px; border-bottom-width: 4px; }
.page-template-page-heat-pump-installation-takapuna .subsidy-icon { background: #E6A800; }

/* Local section */
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.local-content h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 1rem; }
.local-content p { font-size: 0.88rem; color: #5A6472; font-weight: 600; line-height: 1.8; margin-bottom: 1rem; }
.local-img { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.local-img img { width: 100%; height: 320px; object-fit: cover; display: block; }

/* Quote form */
.quote-form-section { background: #2B7BB9; padding: 4rem 1.5rem; }
.quote-form-inner { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.quote-form-text h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 700; color: #FFFFFF; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.quote-form-text p { font-size: 0.88rem; color: rgba(255,255,255,0.85); font-weight: 600; line-height: 1.7; }
.quote-form-card { background: #FFFFFF; border-radius: 10px; padding: 1.75rem; }

/* CTA banner — dark for install page */
.page-template-page-heat-pump-installation-takapuna .cta-banner { background: #1E2A3A; }

/* Ghost button */
.btn-cta-ghost { background: transparent; color: #FFFFFF; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.85rem 1.75rem; border-radius: 4px; border: 2px solid rgba(255,255,255,0.4); text-decoration: none; display: inline-block; transition: border-color 0.2s; }
.btn-cta-ghost:hover { border-color: #FFFFFF; }

/* Amber button */
.btn-amber { background: #E6A800; color: #1E1E1E; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.7rem 1.25rem; border-radius: 4px; text-decoration: none; white-space: nowrap; display: inline-block; transition: background 0.2s; }
.btn-amber:hover { background: #CC9400; }

@media (max-width: 900px) {
  .specialist-grid { grid-template-columns: 1fr; }
  .specialist-img { display: none; }
  .install-grid { grid-template-columns: repeat(2, 1fr); }
  .local-grid { grid-template-columns: 1fr; }
  .local-img { display: none; }
  .quote-form-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .install-grid { grid-template-columns: 1fr; }
  .install-grid .card-img { height: 280px; }
}

/* ─── Cost Page ──────────────────────────────────────────────────────────── */

/* Hero h2 subtitle */
.page-hero h2 { font-size: clamp(1rem, 1.8vw, 1.3rem); font-weight: 600; color: #5A6472; margin-bottom: 0.75rem; letter-spacing: -0.01em; }

/* Trust items inside cost page hero */
.page-template-page-heat-pump-installation-cost-takapuna .hero-trust .trust-item { align-items: center; font-size: 0.75rem; }

/* Quick answer bar */
.quick-answer { background: #2B7BB9; padding: 2.5rem 1.5rem; }
.quick-answer-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.qa-card { background: rgba(255,255,255,0.12); border-radius: 8px; padding: 1.25rem 1.5rem; border: 1px solid rgba(255,255,255,0.2); }
.qa-type { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 0.4rem; }
.qa-range { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 800; color: #FFFFFF; margin-bottom: 0.2rem; line-height: 1.2; }
.qa-range span { color: #F07D28; }
.qa-note { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.75); line-height: 1.5; }
.qa-incl { font-size: 0.65rem; font-weight: 800; color: #F07D28; margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* Price tables */
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.price-table th { background: #2B7BB9; color: #FFFFFF; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.75rem 1rem; text-align: left; }
.price-table td { padding: 0.85rem 1rem; font-size: 0.82rem; border-bottom: 1px solid #DDE3EA; vertical-align: top; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: #F8F9FA; }
.price-table td:first-child { font-weight: 700; color: #1E1E1E; }
.price-table td:nth-child(2) { color: #5A6472; font-weight: 600; }
.price-table td:nth-child(3) { font-weight: 800; color: #2B7BB9; white-space: nowrap; }
.price-note { font-size: 0.75rem; color: #5A6472; font-weight: 600; line-height: 1.6; }
.price-note strong { color: #1E1E1E; }

/* Price drivers */
.drivers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.driver-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-top: 3px solid #2B7BB9; border-radius: 8px; padding: 1.5rem; }
.driver-number { font-size: 1.75rem; font-weight: 800; color: #EDF3F9; line-height: 1; margin-bottom: 0.5rem; }
.driver-card h3 { font-size: 0.88rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.5rem; }
.driver-card p { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.65; }

/* Extras list */
.extras-list { display: flex; flex-direction: column; border: 1px solid #DDE3EA; border-radius: 8px; overflow: hidden; max-width: 900px; margin: 0 auto; }
.extra-item { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1rem 1.25rem; border-bottom: 1px solid #DDE3EA; background: #FFFFFF; }
.extra-item:last-child { border-bottom: none; }
.extra-item:nth-child(even) { background: #F8F9FA; }
.extra-name { font-size: 0.82rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.2rem; }
.extra-desc { font-size: 0.75rem; color: #5A6472; font-weight: 600; line-height: 1.5; }
.extra-cost { font-size: 0.82rem; font-weight: 800; color: #2B7BB9; white-space: nowrap; text-align: right; }
.extras-footer { font-size: 0.78rem; color: #5A6472; font-weight: 600; margin-top: 1rem; line-height: 1.6; text-align: center; }

/* Timing grid */
.timing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.timing-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 8px; padding: 1.5rem 1.25rem; text-align: center; }
.timing-type { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #2B7BB9; margin-bottom: 0.5rem; }
.timing-hours { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: #1E1E1E; margin-bottom: 0.3rem; }
.timing-hours span { color: #F07D28; font-size: 0.75em; }
.timing-desc { font-size: 0.75rem; color: #5A6472; font-weight: 600; line-height: 1.5; }

/* CTA banner — dark for cost page */
.page-template-page-heat-pump-installation-cost-takapuna .cta-banner { background: #1E2A3A; }

/* Subsidy banner — amber for cost page */
.page-template-page-heat-pump-installation-cost-takapuna .subsidy-banner { background: #FFF9E6; border-top-color: #E6A800; border-bottom-color: #E6A800; border-top-width: 4px; border-bottom-width: 4px; }
.page-template-page-heat-pump-installation-cost-takapuna .subsidy-icon { background: #E6A800; }

/* Speed promise — plain text variant for cost page form */
.quote-form-card .speed-promise { background: none; border: none; padding: 0; margin-bottom: 0.75rem; font-size: 0.72rem; font-weight: 700; color: #2B7BB9; line-height: 1.5; }

@media (max-width: 900px) {
  .quick-answer-inner { grid-template-columns: 1fr; }
  .drivers-grid { grid-template-columns: 1fr; }
  .timing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .extra-item { grid-template-columns: 1fr; }
  .extra-cost { text-align: left; }
  .timing-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Subsidy Page ───────────────────────────────────────────────────────────── */

/* Hero overrides — amber badge and badge pill */
.page-template-page-heat-pump-subsidy-auckland .page-hero-badge { background: #E6A800; color: #1E1E1E; }
.page-template-page-heat-pump-subsidy-auckland .hero-img-badge { background: #E6A800; color: #1E1E1E; }
.page-template-page-heat-pump-subsidy-auckland .cta-banner { background: #1E2A3A; }
.page-template-page-heat-pump-subsidy-auckland .hero-trust .trust-item { align-items: center; font-size: 0.75rem; }

/* Amber CTA buttons */
.btn-amber-large { background: #E6A800; color: #1E1E1E; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.85rem 1.75rem; border-radius: 4px; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-amber-large:hover { background: #CC9400; }
.btn-cta-amber { background: #E6A800; color: #1E1E1E; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem; padding: 0.85rem 1.75rem; border-radius: 4px; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-cta-amber:hover { background: #CC9400; }

/* Hero stat band */
.hero-stat-band { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #DDE3EA; }
.hero-stat-number { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #2B7BB9; line-height: 1; }
.hero-stat-number span { color: #E6A800; }
.hero-stat-label { font-size: 0.7rem; font-weight: 700; color: #5A6472; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.2rem; }

/* Notice bar */
.notice-bar { background: #FFF9E6; border-top: 3px solid #E6A800; border-bottom: 3px solid #E6A800; padding: 1.25rem 1.5rem; text-align: center; }
.notice-bar p { font-size: 0.85rem; font-weight: 700; color: #1E1E1E; }
.notice-bar p span { color: #CC9400; }

/* Quiz section */
.quiz-section { background: #F8F9FA; padding: 4rem 1.5rem; }
.quiz-wrap { max-width: 680px; margin: 0 auto; }
.quiz-section-header { text-align: center; margin-bottom: 2rem; }
.quiz-section-header h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; color: #1E1E1E; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.quiz-section-header p { font-size: 0.88rem; color: #5A6472; font-weight: 600; line-height: 1.6; }

/* Progress bar */
.progress-wrap { margin-bottom: 2rem; }
.progress-labels { display: flex; justify-content: space-between; margin-bottom: 0.4rem; }
.progress-label { font-size: 0.7rem; font-weight: 700; color: #5A6472; text-transform: uppercase; letter-spacing: 0.06em; }
.progress-bar-bg { background: #DDE3EA; border-radius: 4px; height: 6px; overflow: hidden; }
.progress-bar-fill { background: linear-gradient(to right, #2B7BB9, #E6A800); height: 100%; border-radius: 4px; transition: width 0.4s ease; }

/* Question cards */
@keyframes fadeSlide { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.question-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 12px; padding: 2rem; box-shadow: 0 4px 16px rgba(0,0,0,0.07); display: none; }
.question-card.active { display: block; animation: fadeSlide 0.3s ease; }
.question-step { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #E6A800; margin-bottom: 0.6rem; }
.question-text { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 700; color: #1E1E1E; margin-bottom: 0.5rem; line-height: 1.4; }
.question-hint { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.6; margin-bottom: 1.5rem; }

/* Answer buttons */
.answer-options { display: flex; flex-direction: column; gap: 0.75rem; }
.answer-btn { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border: 2px solid #DDE3EA; border-radius: 8px; background: #FFFFFF; cursor: pointer; transition: all 0.2s; text-align: left; font-family: 'Montserrat', sans-serif; width: 100%; }
.answer-btn:hover { border-color: #2B7BB9; background: #EDF3F9; }
.answer-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.answer-icon.yes { background: #EAF4EE; }
.answer-icon.no { background: #FEF3EB; }
.answer-icon.area { background: #EDF3F9; }
.answer-icon.unsure { background: #F8F9FA; }
.answer-text h4 { font-size: 0.88rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.15rem; }
.answer-text p { font-size: 0.72rem; color: #5A6472; font-weight: 600; line-height: 1.4; }
.eeca-link-wrap { background: #EDF3F9; border-radius: 8px; padding: 0.85rem 1.1rem; margin-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.eeca-link-wrap p { font-size: 0.78rem; font-weight: 600; color: #5A6472; line-height: 1.5; }
.eeca-link-wrap a { font-size: 0.75rem; font-weight: 800; color: #2B7BB9; white-space: nowrap; border-bottom: 1px solid #2B7BB9; padding-bottom: 1px; flex-shrink: 0; }
.back-btn { background: none; border: none; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; color: #5A6472; cursor: pointer; padding: 0.5rem 0; margin-top: 1.25rem; display: none; }
.back-btn:hover { color: #2B7BB9; }
.back-btn.show { display: block; }

/* Result cards */
.result-card { background: #FFFFFF; border-radius: 12px; padding: 2rem; box-shadow: 0 4px 16px rgba(0,0,0,0.07); display: none; }
.result-card.show { display: block; animation: fadeSlide 0.3s ease; }
.result-card.eligible { border: 2px solid #2E7D52; }
.result-card.partial { border: 2px solid #E6A800; }
.result-card.ineligible { border: 2px solid #DDE3EA; }
.result-badge { display: inline-block; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: 20px; margin-bottom: 1rem; }
.eligible .result-badge { background: #EAF4EE; color: #2E7D52; }
.partial .result-badge { background: #FFF9E6; color: #CC9400; }
.ineligible .result-badge { background: #F8F9FA; color: #5A6472; }
.result-title { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.eligible .result-title { color: #2E7D52; }
.partial .result-title { color: #CC9400; }
.ineligible .result-title { color: #1E1E1E; }
.result-body { font-size: 0.88rem; color: #5A6472; font-weight: 600; line-height: 1.75; margin-bottom: 1rem; }
.grant-box { background: #EAF4EE; border-radius: 8px; padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.grant-box.amber { background: #FFF9E6; }
.grant-stat { text-align: left; }
.grant-amount { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 800; color: #2E7D52; line-height: 1; }
.grant-box.amber .grant-amount { color: #CC9400; }
.grant-label { font-size: 0.68rem; font-weight: 700; color: #5A6472; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.2rem; }
.eeca-result-link { background: #EDF3F9; border-left: 3px solid #2B7BB9; border-radius: 0 8px 8px 0; padding: 0.85rem 1.1rem; margin-bottom: 1.25rem; }
.eeca-result-link p { font-size: 0.78rem; font-weight: 600; color: #5A6472; line-height: 1.6; margin-bottom: 0.3rem; }
.eeca-result-link a { font-size: 0.78rem; font-weight: 800; color: #2B7BB9; border-bottom: 1px solid #2B7BB9; }
.result-form { background: #F8F9FA; border-radius: 8px; padding: 1.5rem; margin-top: 1rem; }
.result-form h3 { font-size: 0.95rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.3rem; }
.result-form > p { font-size: 0.78rem; color: #5A6472; font-weight: 600; margin-bottom: 1rem; line-height: 1.5; }
.result-form .form-row { margin-bottom: 0.75rem; }
.btn-submit-green { width: 100%; background: #2E7D52; color: #FFFFFF; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.85rem; border-radius: 6px; border: none; cursor: pointer; transition: background 0.2s; margin-top: 0.5rem; }
.btn-submit-green:hover { background: #1E5C3A; }
.btn-submit-amber { width: 100%; background: #E6A800; color: #1E1E1E; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.85rem; border-radius: 6px; border: none; cursor: pointer; transition: background 0.2s; margin-top: 0.5rem; }
.btn-submit-amber:hover { background: #CC9400; }
.btn-submit-blue { width: 100%; background: #2B7BB9; color: #FFFFFF; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.85rem; border-radius: 6px; border: none; cursor: pointer; transition: background 0.2s; margin-top: 0.5rem; }
.btn-submit-blue:hover { background: #1E5F8E; }
.restart-btn { background: none; border: none; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; color: #5A6472; cursor: pointer; padding: 0.75rem 0 0; display: block; }
.restart-btn:hover { color: #2B7BB9; }

/* Speed promise — plain text variant inside result forms */
.page-template-page-heat-pump-subsidy-auckland .speed-promise { background: none; border: none; padding: 0; font-size: 0.7rem; font-weight: 700; color: #5A6472; text-align: center; margin-top: 0.6rem; line-height: 1.5; }

/* Quiz success state */
.quiz-success { background: #FFFFFF; border: 2px solid #2E7D52; border-radius: 12px; padding: 2.5rem 2rem; text-align: center; }
.quiz-success h3 { font-size: 1.3rem; font-weight: 700; color: #2E7D52; margin-bottom: 0.75rem; }
.quiz-success p { font-size: 0.88rem; color: #5A6472; font-weight: 600; line-height: 1.75; }

/* What you pay */
.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.pay-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 10px; overflow: hidden; }
.pay-card-header { padding: 1.25rem 1.5rem 1rem; border-bottom: 1px solid #DDE3EA; }
.pay-card:nth-child(1) .pay-card-header { background: #EAF4EE; }
.pay-card:nth-child(2) .pay-card-header { background: #EDF3F9; }
.pay-card:nth-child(3) .pay-card-header { background: #FFF9E6; }
.pay-type { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #5A6472; margin-bottom: 0.4rem; }
.pay-amount { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: #1E1E1E; line-height: 1.1; margin-bottom: 0.2rem; }
.pay-saving { font-size: 0.72rem; font-weight: 700; color: #2E7D52; }
.pay-card-body { padding: 1rem 1.5rem 1.25rem; }
.pay-card-desc { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.6; }
.pay-note { text-align: center; font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.6; }

/* Gary grid */
.craig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.page-template-page-heat-pump-subsidy-auckland .craig-img { border-radius: 10px; }
.page-template-page-heat-pump-subsidy-auckland .craig-img img { height: 360px; }

/* Process — green icons for subsidy page */
.page-template-page-heat-pump-subsidy-auckland .process-grid::before { background: linear-gradient(to right, #2E7D52, #E6A800); }
.page-template-page-heat-pump-subsidy-auckland .step-icon-wrap { border-color: #2E7D52; box-shadow: 0 4px 12px rgba(46,125,82,0.15); }
.page-template-page-heat-pump-subsidy-auckland .step-icon-wrap svg { stroke: #2E7D52; }
.page-template-page-heat-pump-subsidy-auckland .step-number-badge { background: #E6A800; color: #1E1E1E; }

@media (max-width: 900px) {
  .pay-grid { grid-template-columns: 1fr; }
  .craig-grid { grid-template-columns: 1fr; }
  .page-template-page-heat-pump-subsidy-auckland .craig-img { display: none; }
}
@media (max-width: 600px) {
  .hero-stat-band { gap: 1rem; }
  .grant-box { flex-direction: column; gap: 1rem; }
  .eeca-link-wrap { flex-direction: column; gap: 0.5rem; }
}

/* ─── Ducted Heat Pump Page ──────────────────────────────────────────────── */

/* Is Ducted Right */
.ducted-right-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.ducted-right-grid h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 1rem; }
.ducted-right-grid p { font-size: 0.88rem; color: #5A6472; font-weight: 600; line-height: 1.8; margin-bottom: 1rem; }
.yes-no-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.yes-card { background: #EAF4EE; border: 1.5px solid #2E7D52; border-radius: 8px; padding: 1.25rem; }
.no-card { background: #FEF3EB; border: 1.5px solid #F07D28; border-radius: 8px; padding: 1.25rem; }
.yn-label { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.yes-card .yn-label { color: #2E7D52; }
.no-card .yn-label { color: #F07D28; }
.yn-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.yn-list li { font-size: 0.78rem; font-weight: 600; color: #1E1E1E; display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.5; }
.yn-list li::before { font-weight: 800; flex-shrink: 0; }
.yes-card .yn-list li::before { content: '✓'; color: #2E7D52; }
.no-card .yn-list li::before { content: '✗'; color: #F07D28; }

/* How it works layout */
.ducted-how { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.ducted-how-img { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.ducted-how-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.ducted-how-content h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 1rem; }
.ducted-how-content p { font-size: 0.88rem; color: #5A6472; font-weight: 600; line-height: 1.8; margin-bottom: 1rem; }

/* Central Auckland home types */
.home-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.home-type-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 10px; padding: 1.5rem; }
.home-type-icon { width: 44px; height: 44px; background: #EDF3F9; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.home-type-icon svg { width: 22px; height: 22px; stroke: #2B7BB9; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.home-type-card h3 { font-size: 0.88rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.5rem; }
.home-type-card p { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.65; margin-bottom: 0.75rem; }
.home-type-verdict { display: inline-block; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 4px; }
.verdict-great { background: #EAF4EE; color: #2E7D52; }
.verdict-maybe { background: #FFF9E6; color: #CC9400; }
.verdict-no { background: #FEF3EB; color: #D4661A; }

/* Cost table */
.cost-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.cost-table th { background: #2B7BB9; color: #FFFFFF; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.75rem 1rem; text-align: left; }
.cost-table td { padding: 0.85rem 1rem; font-size: 0.82rem; border-bottom: 1px solid #DDE3EA; vertical-align: top; }
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) td { background: #F8F9FA; }
.cost-table td:first-child { font-weight: 700; color: #1E1E1E; }
.cost-table td:nth-child(2) { color: #5A6472; font-weight: 600; }
.cost-table td:nth-child(3) { font-weight: 800; color: #2B7BB9; white-space: nowrap; }
.cost-note { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.6; text-align: center; }
.cost-note a { color: #2B7BB9; font-weight: 700; border-bottom: 1px solid #2B7BB9; }

/* Brands grid */
.brands-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 1rem; }
.brand-pill { display: inline-block; background: #FFFFFF; border: 1.5px solid #2B7BB9; color: #2B7BB9; font-size: 0.82rem; font-weight: 700; padding: 0.5rem 1.25rem; border-radius: 20px; text-decoration: none; transition: all 0.2s; }
.brand-pill:hover { background: #2B7BB9; color: #FFFFFF; }

/* Scoped overrides */
.page-template-page-ducted-heat-pump-takapuna .cta-banner { background: #1E2A3A; }
.page-template-page-ducted-heat-pump-takapuna .speed-promise { background: none; border: none; padding: 0; font-size: 0.72rem; font-weight: 700; color: #2B7BB9; margin-bottom: 0.75rem; line-height: 1.5; }

@media (max-width: 900px) {
  .ducted-right-grid { grid-template-columns: 1fr; }
  .yes-no-grid { grid-template-columns: 1fr; }
  .ducted-how { grid-template-columns: 1fr; }
  .home-types-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cost-table th, .cost-table td { padding: 0.65rem 0.75rem; font-size: 0.75rem; }
}

/* ─── What to Expect Page ────────────────────────────────────────────────── */

/* Hero trust row */
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; }
.hero-trust-pill { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.75rem; font-weight: 700; color: #2E7D52; }
.hero-trust-pill::before { content: '✓'; font-weight: 800; }

/* Jump links */
.jump-links { background: #2B7BB9; padding: 1rem 1.5rem; }
.jump-links-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.jump-link { color: rgba(255,255,255,0.85); font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.85rem; border-radius: 20px; border: 1px solid rgba(255,255,255,0.25); transition: all 0.2s; text-decoration: none; }
.jump-link:hover { background: rgba(255,255,255,0.15); color: #FFFFFF; }

/* Timeline */
.timeline { max-width: 860px; margin: 0 auto; }
.timeline-step { display: grid; grid-template-columns: 88px 1fr; gap: 0; position: relative; }
.tl-line { position: absolute; left: 43px; top: 76px; bottom: 0; width: 2px; background: linear-gradient(to bottom, #2B7BB9 0%, #EDF3F9 100%); z-index: 0; }
.tl-left { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.tl-icon { width: 76px; height: 76px; background: #FFFFFF; border: 3px solid #2B7BB9; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(43,123,185,0.2); flex-shrink: 0; position: relative; }
.tl-icon svg { width: 30px; height: 30px; stroke: #2B7BB9; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tl-num { position: absolute; top: -4px; right: -4px; width: 24px; height: 24px; background: #F07D28; color: #FFFFFF; font-size: 0.7rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.tl-right { padding: 0 0 3rem 2rem; }
.tl-timing { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #F07D28; margin-bottom: 0.35rem; }
.tl-right h3 { font-size: 1.15rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.tl-right p { font-size: 0.88rem; color: #5A6472; font-weight: 600; line-height: 1.8; margin-bottom: 0.75rem; }
.tl-detail { background: #EDF3F9; border-left: 3px solid #2B7BB9; border-radius: 0 8px 8px 0; padding: 0.85rem 1.1rem; font-size: 0.8rem; font-weight: 600; color: #2B7BB9; line-height: 1.65; }
.tl-you { background: #EAF4EE; border-left: 3px solid #2E7D52; border-radius: 0 8px 8px 0; padding: 0.85rem 1.1rem; font-size: 0.8rem; font-weight: 600; color: #2E7D52; line-height: 1.65; margin-top: 0.6rem; }
.tl-you::before { content: 'What you need to do: '; font-weight: 800; }

/* On the day — tabs */
.tab-wrap { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.tab-buttons { display: grid; grid-template-columns: repeat(3, 1fr); background: #EDF3F9; border-bottom: 3px solid #2B7BB9; }
.tab-btn { padding: 1.25rem 1rem; font-family: 'Montserrat', sans-serif; font-size: 0.88rem; font-weight: 700; color: #5A6472; background: transparent; border: none; cursor: pointer; transition: all 0.2s; display: flex; flex-direction: column; align-items: center; gap: 0.3rem; border-right: 1px solid #DDE3EA; position: relative; }
.tab-btn:last-child { border-right: none; }
.tab-btn-duration { font-size: 0.65rem; font-weight: 700; color: #5A6472; text-transform: uppercase; letter-spacing: 0.05em; }
.tab-btn:hover:not(.active) { background: #FFFFFF; color: #2B7BB9; }
.tab-btn:hover:not(.active) .tab-btn-duration { color: #2B7BB9; }
.tab-btn.active { background: #FFFFFF; color: #2B7BB9; }
.tab-btn.active .tab-btn-duration { color: #F07D28; font-weight: 800; }
.tab-btn.active::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 3px; background: #F07D28; }
.tab-panel { display: none; padding: 2rem; }
.tab-panel.active { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.tab-duration-banner { display: inline-flex; align-items: center; gap: 0.6rem; background: #EDF3F9; border-left: 3px solid #2B7BB9; border-radius: 0 6px 6px 0; padding: 0.65rem 1rem; margin-bottom: 2rem; }
.tab-duration-banner svg { width: 16px; height: 16px; stroke: #2B7BB9; fill: none; stroke-width: 2; flex-shrink: 0; }
.tab-duration-banner span { font-size: 0.8rem; font-weight: 700; color: #2B7BB9; }

/* Day-of timeline inside tabs */
.day-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.day-timeline { display: flex; flex-direction: column; gap: 0; }
.day-item { display: flex; gap: 1.1rem; padding-bottom: 1.75rem; position: relative; }
.day-item:not(:last-child)::before { content: ''; position: absolute; left: 19px; top: 40px; bottom: 0; width: 2px; background: linear-gradient(to bottom, #2B7BB9, #DDE3EA); }
.day-time { width: 40px; height: 40px; background: #2B7BB9; color: #FFFFFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 800; text-align: center; line-height: 1.3; flex-shrink: 0; position: relative; z-index: 1; }
.day-content h4 { font-size: 0.9rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.3rem; }
.day-content p { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.65; }
.day-aside h3 { font-size: 1.1rem; font-weight: 700; color: #1E1E1E; margin-bottom: 1rem; }
.day-aside p { font-size: 0.88rem; color: #5A6472; font-weight: 600; line-height: 1.8; margin-bottom: 1rem; }
.day-img { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.12); margin-top: 1.5rem; }
.day-img img { width: 100%; height: 240px; object-fit: cover; display: block; }

/* Checklist */
.checklist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; margin: 0 auto; }
.checklist-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 10px; padding: 1.75rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.checklist-card h3 { font-size: 0.9rem; font-weight: 700; color: #1E1E1E; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.checklist-card h3 svg { width: 18px; height: 18px; stroke: #2B7BB9; fill: none; stroke-width: 2; flex-shrink: 0; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; font-weight: 600; color: #5A6472; line-height: 1.55; }
.check-list li::before { content: '✓'; font-weight: 800; color: #2E7D52; flex-shrink: 0; }

/* After install */
.after-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.after-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-top: 3px solid #2B7BB9; border-radius: 10px; padding: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.after-icon { width: 44px; height: 44px; background: #EDF3F9; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.after-icon svg { width: 22px; height: 22px; stroke: #2B7BB9; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.after-card h3 { font-size: 0.9rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.5rem; }
.after-card p { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.65; }

/* Gary's real talk */
.real-talk { background: #1E2A3A; border-radius: 10px; padding: 2rem 2.25rem; max-width: 900px; margin: 0 auto; }
.real-talk-label { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #F07D28; margin-bottom: 0.75rem; }
.real-talk p { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.9); line-height: 1.85; font-style: italic; }
.real-talk p::before { content: '\201C'; font-size: 2rem; color: #F07D28; font-style: normal; font-weight: 800; line-height: 0; vertical-align: -0.5rem; margin-right: 0.25rem; }

@media (max-width: 900px) {
  .timeline-step { grid-template-columns: 68px 1fr; }
  .tl-icon { width: 60px; height: 60px; }
  .tl-line { left: 29px; top: 64px; }
  .day-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .after-grid { grid-template-columns: 1fr; }
  .jump-links-inner { justify-content: flex-start; }
  .tab-buttons { grid-template-columns: 1fr; }
  .tab-btn { border-right: none; border-bottom: 1px solid #DDE3EA; }
  .tab-btn:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .hero-trust-row { justify-content: center; }
}

/* ─── Hot Water Heat Pumps Page ──────────────────────────────────────────── */

/* Hero trust note */
.trust-note { font-size: 0.75rem; font-weight: 600; color: #5A6472; padding: 0.6rem 0.9rem; background: #EAF4EE; border-left: 3px solid #2E7D52; border-radius: 0 6px 6px 0; max-width: 480px; line-height: 1.5; margin-top: 0.75rem; }

/* Savings section */
.savings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.savings-content h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 1rem; }
.savings-content p { font-size: 0.88rem; color: #5A6472; font-weight: 600; line-height: 1.8; margin-bottom: 1rem; }
.fridge-quote { background: #1E2A3A; border-radius: 8px; padding: 1.25rem 1.5rem; margin: 1.25rem 0; }
.fridge-quote-label { font-size: 0.62rem; font-weight: 800; color: #F07D28; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.fridge-quote p { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.9); line-height: 1.75; font-style: italic; margin: 0; }
.savings-cards { display: flex; flex-direction: column; gap: 0.85rem; }
.savings-card { display: flex; align-items: center; gap: 1.25rem; background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 10px; padding: 1.25rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.savings-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.savings-icon.green { background: #EAF4EE; }
.savings-icon.blue { background: #EDF3F9; }
.savings-icon.orange { background: #FEF3EB; }
.savings-icon svg { width: 24px; height: 24px; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.savings-icon.green svg { stroke: #2E7D52; }
.savings-icon.blue svg { stroke: #2B7BB9; }
.savings-icon.orange svg { stroke: #F07D28; }
.savings-text h4 { font-size: 0.88rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.2rem; }
.savings-text p { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.5; }
.savings-text strong { color: #2E7D52; }

/* How it works */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.how-img { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.how-img img { width: 100%; height: 340px; object-fit: cover; display: block; }
.how-content h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 1rem; }
.how-content p { font-size: 0.88rem; color: #5A6472; font-weight: 600; line-height: 1.8; }
.how-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.how-type { background: #FFFFFF; border: 1px solid #DDE3EA; border-top: 3px solid #2B7BB9; border-radius: 0 0 8px 8px; padding: 1.25rem; }
.how-type-label { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #2B7BB9; margin-bottom: 0.3rem; }
.how-type h4 { font-size: 0.88rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.5rem; }
.how-type p { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.6; margin: 0; }
.how-type-tag { display: inline-block; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 20px; margin-top: 0.75rem; }
.tag-popular { background: #EAF4EE; color: #2E7D52; }
.tag-flexible { background: #EDF3F9; color: #2B7BB9; }
.tag-budget { background: #FEF3EB; color: #D4661A; }

/* Is it right */
.right-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 900px; margin: 0 auto; }
.right-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 10px; padding: 1.5rem; }
.right-card.yes { border-top: 3px solid #2E7D52; }
.right-card.no { border-top: 3px solid #F07D28; }
.right-label { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.right-card.yes .right-label { color: #2E7D52; }
.right-card.no .right-label { color: #F07D28; }
.right-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.right-list li { font-size: 0.82rem; font-weight: 600; color: #1E1E1E; display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.5; }
.right-card.yes .right-list li::before { content: '✓'; color: #2E7D52; font-weight: 800; flex-shrink: 0; }
.right-card.no .right-list li::before { content: '✗'; color: #F07D28; font-weight: 800; flex-shrink: 0; }

/* Scoped overrides — amber subsidy banner for this page */
.page-template-page-hot-water-heat-pumps-takapuna .subsidy-banner { background: #FFF9E6; border-top-color: #E6A800; border-bottom-color: #E6A800; border-top-width: 4px; border-bottom-width: 4px; }
.page-template-page-hot-water-heat-pumps-takapuna .subsidy-icon { background: #E6A800; }

@media (max-width: 900px) {
  .savings-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-types { grid-template-columns: 1fr; }
  .right-grid { grid-template-columns: 1fr; }
}

/* ─── Ducted Cost Page ───────────────────────────────────────────────────── */

/* Quick answer — 2-col icon + text layout (overrides existing 3-col qa-cards) */
.ducted-cost-qa { grid-template-columns: auto 1fr; max-width: 1200px; gap: 2rem; align-items: center; }
.qa-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qa-icon svg { width: 30px; height: 30px; stroke: #FFFFFF; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.qa-text h3 { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 800; color: #FFFFFF; margin-bottom: 0.4rem; }
.qa-text p { font-size: 0.88rem; color: rgba(255,255,255,0.85); font-weight: 600; line-height: 1.6; }
.qa-text strong { color: #F07D28; }

/* Price cards */
.price-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 1.5rem; }
.price-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 10px; overflow: hidden; }
.price-card-top { padding: 1.25rem; border-bottom: 1px solid #DDE3EA; }
.price-card-top--blue   { background: #EDF3F9; }
.price-card-top--green  { background: #EAF4EE; }
.price-card-top--yellow { background: #FFF9E6; }
.price-card-top--orange { background: #FEF3EB; }
.price-type  { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #5A6472; margin-bottom: 0.4rem; }
.price-range { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 800; color: #1E1E1E; line-height: 1.1; margin-bottom: 0.2rem; }
.price-card-body { padding: 1rem 1.25rem; }
.price-desc { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.6; }

/* Cost estimator calculator */
.calc-wrap { max-width: 800px; margin: 0 auto; background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.calc-header { background: #2B7BB9; padding: 1.5rem 2rem; }
.calc-header h3 { font-size: 1.1rem; font-weight: 700; color: #FFFFFF; margin-bottom: 0.25rem; }
.calc-header p { font-size: 0.82rem; color: rgba(255,255,255,0.8); font-weight: 600; }
.calc-body { padding: 2rem; }
.calc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.calc-field label { display: block; font-size: 0.72rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.4rem; }
.calc-select { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid #DDE3EA; border-radius: 6px; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600; color: #1E1E1E; background: #FFFFFF; outline: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A6472' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; transition: border-color 0.2s; }
.calc-select:focus { border-color: #2B7BB9; }
.calc-result { background: #EDF3F9; border-radius: 8px; padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.calc-result-label { font-size: 0.75rem; font-weight: 700; color: #5A6472; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.calc-result-range { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: #2B7BB9; line-height: 1; }
.calc-result-note { font-size: 0.72rem; color: #5A6472; font-weight: 600; line-height: 1.5; margin-top: 0.25rem; }
.calc-cta { background: #F07D28; color: #FFFFFF; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.75rem 1.25rem; border-radius: 4px; border: none; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.calc-cta:hover { background: #D4661A; }
.calc-disclaimer { font-size: 0.72rem; color: #5A6472; font-weight: 600; line-height: 1.5; margin-top: 1rem; text-align: center; }

/* Driver icon and impact badges (extend existing .driver-card) */
.driver-icon { width: 44px; height: 44px; background: #EDF3F9; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.driver-impact { display: inline-block; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 20px; margin-top: 0.6rem; }
.impact-high { background: #FEF3EB; color: #D4661A; }
.impact-med  { background: #FFF9E6; color: #CC9400; }
.impact-low  { background: #EAF4EE; color: #2E7D52; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; max-width: 860px; margin: 0 auto; }
.compare-table th { font-size: 0.8rem; font-weight: 800; padding: 0.85rem 1rem; text-align: left; }
.compare-table th:first-child { background: #F8F9FA; color: #5A6472; }
.compare-table th:nth-child(2) { background: #2B7BB9; color: #FFFFFF; }
.compare-table th:nth-child(3) { background: #1E2A3A; color: #FFFFFF; }
.compare-table td { padding: 0.85rem 1rem; font-size: 0.82rem; border-bottom: 1px solid #DDE3EA; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 700; color: #1E1E1E; background: #F8F9FA; }
.compare-table td:nth-child(2) { color: #5A6472; font-weight: 600; background: #EDF3F9; }
.compare-table td:nth-child(3) { color: #5A6472; font-weight: 600; }
.tick  { color: #2E7D52; font-weight: 800; }
.cross { color: #D4661A; font-weight: 800; }

/* CTA banner — dark for ducted cost page */
.page-template-page-ducted-heat-pump-cost-takapuna .cta-banner { background: #1E2A3A; }

@media (max-width: 900px) {
  .ducted-cost-qa { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr 1fr; }
  .calc-fields { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .price-cards { grid-template-columns: 1fr; }
  .calc-result { flex-direction: column; align-items: flex-start; }
}

/* ─── Sizing Calculator Page ─────────────────────────────────────────────── */

/* Calculator wrapper */
.calc-section { background: #F8F9FA; padding: 4rem 1.5rem; }
.calc-outer   { max-width: 860px; margin: 0 auto; }
.calc-card    { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

/* Progress bar */
.calc-progress { background: #EDF3F9; padding: 1.25rem 2rem; display: flex; align-items: flex-start; }
.progress-step { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; }
.progress-step:not(:last-child)::after { content: ''; position: absolute; top: 16px; left: 50%; right: -50%; height: 2px; background: #DDE3EA; z-index: 0; }
.progress-step.done:not(:last-child)::after { background: #2B7BB9; }
.progress-dot { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; border: 2px solid #DDE3EA; background: #FFFFFF; color: #5A6472; position: relative; z-index: 1; transition: all 0.3s; }
.progress-step.active .progress-dot { border-color: #2B7BB9; background: #2B7BB9; color: #FFFFFF; }
.progress-step.done   .progress-dot { border-color: #2E7D52; background: #2E7D52; color: #FFFFFF; }
.progress-label { font-size: 0.6rem; font-weight: 700; color: #5A6472; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.4rem; text-align: center; }
.progress-step.active .progress-label { color: #2B7BB9; }
.progress-step.done   .progress-label { color: #2E7D52; }

/* Question body — override global .calc-body (2rem) for this page */
.page-template-page-heat-pump-sizing-calculator .calc-body { padding: 2.5rem; }

/* Individual questions */
.calc-question        { display: none; }
.calc-question.active { display: block; animation: fadeUp 0.3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.calc-q-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #F07D28; margin-bottom: 0.5rem; }
.calc-q-text  { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; color: #1E1E1E; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.calc-q-hint  { font-size: 0.82rem; color: #5A6472; font-weight: 600; line-height: 1.6; margin-bottom: 1.75rem; }

/* Answer grid — override existing row-layout .answer-btn for this page */
.answer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.page-template-page-heat-pump-sizing-calculator .answer-btn { flex-direction: column; align-items: flex-start; }
.page-template-page-heat-pump-sizing-calculator .answer-btn.selected { border-color: #2B7BB9; background: #EDF3F9; }
.answer-btn-title { font-size: 0.9rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.15rem; }
.answer-btn-desc  { font-size: 0.72rem; color: #5A6472; font-weight: 600; line-height: 1.4; }

/* Question navigation */
.calc-nav  { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #DDE3EA; }
.btn-back  { background: none; border: none; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700; color: #5A6472; cursor: pointer; display: none; }
.btn-back.show  { display: block; }
.btn-back:hover { color: #2B7BB9; }
.q-counter { font-size: 0.75rem; font-weight: 700; color: #5A6472; }

/* Result panel (renamed from .calc-result to avoid subsidy-page conflict) */
.sizing-result      { display: none; padding: 2.5rem; }
.sizing-result.show { display: block; animation: fadeUp 0.3s ease; }

/* Scoped result-badge / result-title colours for this page */
.page-template-page-heat-pump-sizing-calculator .result-badge { background: #EAF4EE; color: #2E7D52; margin-bottom: 0; }
.page-template-page-heat-pump-sizing-calculator .result-title { color: #1E1E1E; margin-top: 0.5rem; margin-bottom: 0; }

/* Stat cards inside the result grid */
.result-grid      { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; margin-bottom: 2rem; }
.sizing-stat-card { background: #F8F9FA; border: 1px solid #DDE3EA; border-radius: 10px; padding: 1.25rem; }
.sizing-stat-card.highlight { background: #EDF3F9; border-color: #2B7BB9; }
.sizing-card-label { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #5A6472; margin-bottom: 0.4rem; }
.sizing-stat-card.highlight .sizing-card-label { color: #2B7BB9; }
.sizing-card-value { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 800; color: #1E1E1E; line-height: 1.2; margin-bottom: 0.2rem; }
.sizing-card-note  { font-size: 0.72rem; color: #5A6472; font-weight: 600; line-height: 1.45; }

/* Why explanation box */
.result-explanation       { background: #1E2A3A; border-radius: 10px; padding: 1.5rem; margin-bottom: 2rem; }
.result-explanation-label { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #F07D28; margin-bottom: 0.5rem; }
.result-explanation p     { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.9); line-height: 1.75; }

/* Result form wrap */
.result-form-wrap    { background: #F8F9FA; border-radius: 10px; padding: 1.75rem; }
.result-form-wrap h3 { font-size: 1rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.3rem; }
.result-form-wrap > p { font-size: 0.82rem; color: #5A6472; font-weight: 600; margin-bottom: 1.25rem; line-height: 1.5; }
.btn-submit-result       { width: 100%; background: #F07D28; color: #FFFFFF; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.9rem; border-radius: 6px; border: none; cursor: pointer; transition: background 0.2s; margin-top: 0.5rem; }
.btn-submit-result:hover { background: #D4661A; }

/* Why size matters */
.size-matters-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.size-card    { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 10px; padding: 1.5rem; }
.size-icon    { width: 44px; height: 44px; background: #EDF3F9; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.size-icon svg { width: 22px; height: 22px; }
.size-card h3 { font-size: 0.9rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.4rem; }
.size-card p  { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.65; }

/* Size reference table */
.size-table { width: 100%; border-collapse: collapse; max-width: 800px; margin: 0 auto; }
.size-table th { background: #2B7BB9; color: #FFFFFF; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.75rem 1rem; text-align: left; }
.size-table td { padding: 0.85rem 1rem; font-size: 0.82rem; border-bottom: 1px solid #DDE3EA; }
.size-table tr:last-child td { border-bottom: none; }
.size-table tr:nth-child(even) td { background: #F8F9FA; }
.size-table td:first-child  { font-weight: 700; color: #1E1E1E; }
.size-table td:nth-child(2) { color: #5A6472; font-weight: 600; }
.size-table td:nth-child(3) { font-weight: 800; color: #2B7BB9; }
.size-table td:nth-child(4) { color: #5A6472; font-weight: 600; }

@media (max-width: 900px) {
  .result-grid { grid-template-columns: 1fr; }
  .size-matters-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .answer-grid { grid-template-columns: 1fr; }
  .page-template-page-heat-pump-sizing-calculator .calc-body { padding: 1.5rem; }
  .sizing-result { padding: 1.5rem; }
  .result-form-wrap { padding: 1.25rem; }
}

/* ─── Services Page ──────────────────────────────────────────────────────── */

/* Service cards grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card-label { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #2B7BB9; margin-bottom: 0.4rem; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.service-card p { font-size: 0.82rem; color: #5A6472; font-weight: 600; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.service-card-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 700; color: #2B7BB9; border-bottom: 1px solid #2B7BB9; padding-bottom: 1px; transition: color 0.2s; }
.service-card-link:hover { color: #1E5F8E; border-color: #1E5F8E; }
.service-card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Amber subsidy banner override for services page */
.page-template-page-services .subsidy-banner { background: #FFF9E6; border-top-color: #E6A800; border-bottom-color: #E6A800; border-top-width: 4px; border-bottom-width: 4px; }
.page-template-page-services .subsidy-icon { background: #E6A800; }

/* Tools and guides section */
.tools-section { background: #F8F9FA; padding: 4rem 1.5rem; }
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.tool-card { background: #FFFFFF; border: 2px solid #DDE3EA; border-left: 4px solid #E6A800; border-radius: 0 10px 10px 0; padding: 1.75rem; display: flex; gap: 1.25rem; align-items: flex-start; transition: box-shadow 0.2s; text-decoration: none; color: inherit; }
.tool-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.tool-icon { width: 52px; height: 52px; background: #FFF9E6; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tool-icon svg { width: 24px; height: 24px; }
.tool-content h3 { font-size: 0.95rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.4rem; }
.tool-content p { font-size: 0.82rem; color: #5A6472; font-weight: 600; line-height: 1.6; margin-bottom: 0.75rem; }
.tool-label { display: inline-block; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #CC9400; background: #FFF9E6; padding: 0.2rem 0.6rem; border-radius: 20px; margin-bottom: 0.5rem; }
.tool-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 700; color: #2B7BB9; border-bottom: 1px solid #2B7BB9; }
.tool-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BRANDS PAGE
   ============================================================ */

/* Honest note banner — dark navy */
.honest-note { background: #1E2A3A; padding: 2rem 1.5rem; }
.honest-note-inner { max-width: 900px; margin: 0 auto; display: flex; gap: 1.25rem; align-items: flex-start; }
.honest-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(240,125,40,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-top: 0.1rem; }
.honest-icon svg { width: 22px; height: 22px; stroke: #F07D28; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.honest-text h3 { font-size: 0.72rem; font-weight: 700; color: #F07D28; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }
.honest-text p { font-size: 0.88rem; color: rgba(255,255,255,0.88); font-weight: 600; line-height: 1.75; }

/* Brand cards 2-column grid */
.brand-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.brand-card { background: #FFFFFF; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: box-shadow 0.3s, transform 0.3s; }
.brand-card:hover { box-shadow: 0 20px 48px rgba(43,123,185,0.18); transform: translateY(-6px); }
.brand-card-header { padding: 2rem 2rem 1.5rem; background: linear-gradient(135deg, #1E2A3A 0%, #2B4A6B 100%); position: relative; overflow: hidden; min-height: 110px; display: flex; flex-direction: column; justify-content: flex-end; }
.brand-card-header::before { content: ''; position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; background: rgba(240,125,40,0.12); border-radius: 50%; }
.brand-card-header::after  { content: ''; position: absolute; top: 10px; right: 30px; width: 60px; height: 60px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.brand-name { font-size: 1.3rem; font-weight: 800; color: #FFFFFF; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 0.35rem; position: relative; z-index: 1; }
.brand-tagline { font-size: 0.68rem; font-weight: 700; color: #F07D28; text-transform: uppercase; letter-spacing: 0.1em; position: relative; z-index: 1; }
.brand-card-body { padding: 1.75rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.brand-desc { font-size: 0.82rem; color: #5A6472; font-weight: 600; line-height: 1.75; margin-bottom: 1.1rem; flex: 1; }
.brand-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.brand-tag { font-size: 0.62rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 20px; background: #EDF3F9; color: #2B7BB9; }
.brand-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 700; color: #2B7BB9; text-decoration: underline; text-underline-offset: 3px; align-self: flex-start; transition: color 0.2s; }
.brand-link:hover { color: #1E5F8E; }
.brand-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Compare and guides cards */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 860px; margin: 0 auto 2rem; }
.compare-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 10px; padding: 1.5rem; }
.compare-card h3 { font-size: 0.95rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.5rem; }
.compare-card p { font-size: 0.82rem; color: #5A6472; font-weight: 600; line-height: 1.65; margin-bottom: 1rem; }
.btn-blue { display: inline-flex; align-items: center; gap: 0.35rem; background: #2B7BB9; color: #FFFFFF; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.6rem 1.1rem; border-radius: 4px; text-decoration: none; transition: background 0.2s; }
.btn-blue:hover { background: #1E5F8E; }
.btn-blue svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Gary personal note — dark redesign */
.craig-note { max-width: 860px; margin: 0 auto; background: #1E2A3A; border-radius: 12px; padding: 2rem 2.25rem; position: relative; overflow: hidden; }
.craig-note::before { content: '\201C'; position: absolute; top: -0.5rem; left: 1.25rem; font-size: 8rem; color: rgba(240,125,40,0.15); font-family: Georgia, serif; line-height: 1; pointer-events: none; }
.craig-note-label { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #F07D28; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.craig-note p { font-size: 0.92rem; font-weight: 600; color: rgba(255,255,255,0.9); line-height: 1.8; margin-bottom: 1.25rem; font-style: italic; position: relative; z-index: 1; }
.craig-note p a { color: #F07D28; border-bottom: 1px solid rgba(240,125,40,0.5); font-style: normal; text-decoration: none; }
.craig-sig { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
.craig-sig span { color: #F07D28; font-weight: 800; }

@media (max-width: 900px) {
  .brand-cards-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .honest-note-inner { flex-direction: column; }
}

/* ============================================================
   LOCATIONS PAGE
   ============================================================ */

/* Area group headers */
.area-group { margin-bottom: 3.5rem; }
.area-group:last-child { margin-bottom: 0; }
.area-group-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.75rem; padding-bottom: 1.25rem; border-bottom: 3px solid #DDE3EA; }
.group-inner .area-group-header  { border-color: #2B7BB9; }
.group-central .area-group-header { border-color: #2E7D52; }
.group-upper .area-group-header  { border-color: #F07D28; }
.group-east .area-group-header   { border-color: #1E2A3A; }
.group-hibiscus .area-group-header { border-color: #E6A800; }
.area-group-dot { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.2); background: #DDE3EA; }
.group-inner .area-group-dot    { background: #2B7BB9; }
.group-central .area-group-dot  { background: #2E7D52; }
.group-upper .area-group-dot    { background: #F07D28; }
.group-east .area-group-dot     { background: #1E2A3A; }
.group-hibiscus .area-group-dot { background: #E6A800; }
.area-group-title { font-size: 1.5rem; font-weight: 800; color: #1E1E1E; letter-spacing: -0.02em; flex: 1; }

/* Suburb card grid */
.suburb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* Suburb cards */
.suburb-card { border-radius: 14px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; display: flex; flex-direction: column; box-shadow: 0 4px 16px rgba(0,0,0,0.08); text-decoration: none; color: inherit; }
.suburb-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.15); transform: translateY(-5px); }
.suburb-card-banner { height: 90px; position: relative; display: flex; align-items: flex-end; padding: 1rem 1.25rem 0.75rem; overflow: hidden; }
.suburb-card-banner-circle  { position: absolute; right: -20px; top: -20px; width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.suburb-card-banner-circle2 { position: absolute; right: 20px; top: -40px; width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.suburb-card-area { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8); position: relative; z-index: 1; margin-bottom: 0.2rem; }
.suburb-card h3 { font-size: 1.15rem; font-weight: 800; color: #FFFFFF; letter-spacing: -0.02em; line-height: 1; position: relative; z-index: 1; }
.suburb-card-body { background: #FFFFFF; padding: 1.1rem 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.suburb-card-body p { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.6; flex: 1; margin-bottom: 0.9rem; }
.suburb-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; border-top: 1px solid #F0F3F7; }
.suburb-card-link { font-size: 0.72rem; font-weight: 700; color: #2B7BB9; display: flex; align-items: center; gap: 0.3rem; }
.suburb-card-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.suburb-tag { font-size: 0.58rem; font-weight: 800; padding: 0.2rem 0.55rem; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.06em; }

/* Banner colours per group */
.group-inner .suburb-card-banner   { background: linear-gradient(135deg, #1E3A5F 0%, #2B7BB9 100%); }
.group-inner .suburb-tag           { background: #EDF3F9; color: #2B7BB9; }
.group-central .suburb-card-banner { background: linear-gradient(135deg, #1A3D2B 0%, #2E7D52 100%); }
.group-central .suburb-tag         { background: #EAF4EE; color: #2E7D52; }
.group-upper .suburb-card-banner   { background: linear-gradient(135deg, #7A3010 0%, #F07D28 100%); }
.group-upper .suburb-tag           { background: #FEF3EB; color: #D4661A; }
.group-east .suburb-card-banner    { background: linear-gradient(135deg, #0D1820 0%, #1E2A3A 100%); }
.group-east .suburb-tag            { background: #E8ECF0; color: #1E2A3A; }
.group-hibiscus .suburb-card-banner { background: linear-gradient(135deg, #7A4A00 0%, #E6A800 100%); }
.group-hibiscus .suburb-card h3    { color: #1E1E1E; }
.group-hibiscus .suburb-card-area  { color: rgba(30,30,30,0.7); }
.group-hibiscus .suburb-tag        { background: #FFF9E6; color: #CC9400; }

@media (max-width: 900px) {
  .suburb-grid { grid-template-columns: 1fr 1fr; }
  .area-group-title { font-size: 1.2rem; }
}
@media (max-width: 600px) {
  .suburb-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HIGH WALL HEAT PUMPS PAGE
   ============================================================ */

/* Page-scoped overrides */
.page-template-page-high-wall-heat-pumps-takapuna .quick-answer-inner { grid-template-columns: auto 1fr; gap: 2rem; max-width: 1200px; }
.page-template-page-high-wall-heat-pumps-takapuna .hero-img-wrap { border-radius: 14px; box-shadow: 0 16px 48px rgba(0,0,0,0.16); }
.page-template-page-high-wall-heat-pumps-takapuna .hero-img-wrap img { height: 460px; }
.page-template-page-high-wall-heat-pumps-takapuna .hero-img-badge { background: rgba(30,42,58,0.92); backdrop-filter: blur(4px); border-radius: 8px; padding: 0.75rem 1rem; }
.page-template-page-high-wall-heat-pumps-takapuna .cta-banner { background: #1E2A3A; }
.page-template-page-high-wall-heat-pumps-takapuna .cost-card { border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.page-template-page-high-wall-heat-pumps-takapuna .cost-card:hover { box-shadow: 0 8px 24px rgba(43,123,185,0.12); transform: translateY(-2px); }
.page-template-page-high-wall-heat-pumps-takapuna .cost-card-body { padding: 1rem 1.25rem 1.25rem; }
.page-template-page-high-wall-heat-pumps-takapuna .cost-card-desc { font-size: 0.72rem; margin-bottom: 0; }
.page-template-page-high-wall-heat-pumps-takapuna .check-list li { color: #1E1E1E; font-size: 0.85rem; gap: 0.6rem; line-height: 1.5; }
.page-template-page-high-wall-heat-pumps-takapuna .right-grid { gap: 1.5rem; max-width: 960px; }
.page-template-page-high-wall-heat-pumps-takapuna .right-card { border: none; border-radius: 14px; padding: 0; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: box-shadow 0.2s, transform 0.2s; overflow: hidden; }
.page-template-page-high-wall-heat-pumps-takapuna .right-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.12); transform: translateY(-3px); }
.page-template-page-high-wall-heat-pumps-takapuna .right-card.yes,
.page-template-page-high-wall-heat-pumps-takapuna .right-card.no  { border-top: none; }
.page-template-page-high-wall-heat-pumps-takapuna .right-card.yes .right-label,
.page-template-page-high-wall-heat-pumps-takapuna .right-card.no  .right-label { color: rgba(255,255,255,0.85); }
.page-template-page-high-wall-heat-pumps-takapuna .right-list { gap: 0.7rem; }
.page-template-page-high-wall-heat-pumps-takapuna .right-list li { padding-bottom: 0.7rem; border-bottom: 1px solid #F0F3F7; }
.page-template-page-high-wall-heat-pumps-takapuna .right-list li:last-child { border-bottom: none; padding-bottom: 0; }
.page-template-page-high-wall-heat-pumps-takapuna .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 0.75rem; }
.page-template-page-high-wall-heat-pumps-takapuna .process-step:not(:last-child)::after { content: ''; position: absolute; top: 22px; left: calc(50% + 22px); right: calc(-50% + 22px); height: 2px; background: linear-gradient(90deg, #2B7BB9, #EDF3F9); }
.page-template-page-high-wall-heat-pumps-takapuna .process-step h3 { font-size: 0.88rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.4rem; }
.page-template-page-high-wall-heat-pumps-takapuna .process-step p { font-size: 0.75rem; color: #5A6472; font-weight: 600; line-height: 1.6; }
.page-template-page-high-wall-heat-pumps-takapuna .faq-list { box-shadow: 0 2px 12px rgba(0,0,0,0.06); border-radius: 10px; }
.page-template-page-high-wall-heat-pumps-takapuna .faq-item.open .faq-question { background: #FAFCFF; }

/* Hero image badge overlay content */
.hero-img-badge-label { font-size: 0.6rem; font-weight: 800; color: #F07D28; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.hero-img-badge-value { font-size: 0.95rem; font-weight: 800; color: #FFFFFF; }

/* Two-column content layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.two-col-img { border-radius: 14px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.two-col-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.two-col-content h2 { font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 1rem; }
.two-col-content p { font-size: 0.88rem; color: #5A6472; font-weight: 600; line-height: 1.8; margin-bottom: 1rem; }

/* Cost cards — 4-column pricing grid */
.cost-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 1.5rem; }
.cost-card-top { padding: 1.25rem; background: linear-gradient(135deg, #1E3A5F 0%, #2B7BB9 100%); border-bottom: 1px solid #EDF3F9; }
.cost-card-size { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 0.4rem; }
.cost-card-price { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 800; color: #FFFFFF; line-height: 1.1; }
.cost-card-room { font-size: 0.78rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.3rem; }
.cost-note-wrap { background: #EDF3F9; border-radius: 10px; padding: 1.25rem 1.5rem; }
.cost-note-wrap p { font-size: 0.82rem; color: #5A6472; font-weight: 600; line-height: 1.7; }
.cost-note-wrap a { color: #2B7BB9; font-weight: 700; border-bottom: 1px solid #2B7BB9; }

/* Install type comparison cards */
.install-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.5rem; }
.install-type-card { border-radius: 10px; padding: 1.25rem 1.5rem; }
.install-type-card.standard { background: #EAF4EE; border-left: 4px solid #2E7D52; }
.install-type-card.complex  { background: #FFF9E6; border-left: 4px solid #E6A800; }
.install-type-label { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.35rem; }
.install-type-card.standard .install-type-label { color: #2E7D52; }
.install-type-card.complex  .install-type-label { color: #CC9400; }
.install-type-card h4 { font-size: 0.9rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.3rem; }
.install-type-card p { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.6; }

/* Running costs */
.running-costs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.running-cost-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 12px; padding: 1.75rem; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.running-cost-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.running-cost-icon svg { width: 24px; height: 24px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.running-cost-card:nth-child(1) .running-cost-icon { background: #EDF3F9; }
.running-cost-card:nth-child(1) .running-cost-icon svg { stroke: #2B7BB9; }
.running-cost-card:nth-child(2) .running-cost-icon { background: #EAF4EE; }
.running-cost-card:nth-child(2) .running-cost-icon svg { stroke: #2E7D52; }
.running-cost-card:nth-child(3) .running-cost-icon { background: #FFF9E6; }
.running-cost-card:nth-child(3) .running-cost-icon svg { stroke: #CC9400; }
.running-cost-value { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 800; color: #1E1E1E; margin-bottom: 0.25rem; letter-spacing: -0.01em; }
.running-cost-label { font-size: 0.72rem; font-weight: 700; color: #5A6472; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.running-cost-desc { font-size: 0.75rem; color: #5A6472; font-weight: 600; line-height: 1.55; }

/* Right/wrong cards with gradient headers */
.right-card-header { padding: 1.5rem 1.75rem 1.25rem; }
.right-card.yes .right-card-header { background: linear-gradient(135deg, #1A3D2B 0%, #2E7D52 100%); }
.right-card.no  .right-card-header { background: linear-gradient(135deg, #7A3010 0%, #F07D28 100%); }
.right-card-header-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.right-card-header-icon svg { width: 22px; height: 22px; stroke: #FFFFFF; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.right-card-body { background: #FFFFFF; padding: 1.5rem 1.75rem 1.75rem; }
.right-list-icon { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.05rem; font-size: 0.7rem; font-weight: 800; }
.right-card.yes .right-list-icon { background: #EAF4EE; color: #2E7D52; }
.right-card.no  .right-list-icon { background: #FEF3EB; color: #D4661A; }

/* Process steps — numbered circles with connector lines */
.process-wrap { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.step-num { width: 44px; height: 44px; background: linear-gradient(135deg, #2B7BB9, #1E5F8E); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 800; color: #FFFFFF; margin-bottom: 1rem; box-shadow: 0 4px 12px rgba(43,123,185,0.35); flex-shrink: 0; position: relative; z-index: 1; }
.process-step-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 12px; padding: 1.25rem; width: 100%; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.step-time { display: inline-block; font-size: 0.62rem; font-weight: 800; color: #F07D28; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.6rem; background: #FEF3EB; padding: 0.2rem 0.6rem; border-radius: 20px; }

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col-img { display: none; }
  .cost-cards { grid-template-columns: 1fr 1fr; }
  .running-costs-grid { grid-template-columns: 1fr; }
  .page-template-page-high-wall-heat-pumps-takapuna .right-grid { grid-template-columns: 1fr; }
  .process-wrap { grid-template-columns: 1fr 1fr; }
  .page-template-page-high-wall-heat-pumps-takapuna .process-step:not(:last-child)::after { display: none; }
  .install-type-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cost-cards { grid-template-columns: 1fr; }
  .process-wrap { grid-template-columns: 1fr; }
}

/* =============================================
   Floor Mounted Heat Pumps Page
   ============================================= */
.page-template-page-floor-mounted-heat-pumps-takapuna .quick-answer-inner { grid-template-columns: auto 1fr; gap: 2rem; max-width: 1200px; }
.page-template-page-floor-mounted-heat-pumps-takapuna .hero-img-wrap { border-radius: 14px; box-shadow: 0 16px 48px rgba(0,0,0,0.16); }
.page-template-page-floor-mounted-heat-pumps-takapuna .hero-img-wrap img { height: 460px; }
.page-template-page-floor-mounted-heat-pumps-takapuna .hero-img-badge { background: rgba(30,42,58,0.92); backdrop-filter: blur(4px); border-radius: 8px; padding: 0.75rem 1rem; }
.page-template-page-floor-mounted-heat-pumps-takapuna .cta-banner { background: #1E2A3A; }
.page-template-page-floor-mounted-heat-pumps-takapuna .cost-cards { grid-template-columns: repeat(3, 1fr); }
.page-template-page-floor-mounted-heat-pumps-takapuna .cost-card { border-radius: 12px; transition: box-shadow 0.2s, transform 0.2s; }
.page-template-page-floor-mounted-heat-pumps-takapuna .cost-card:hover { box-shadow: 0 8px 24px rgba(43,123,185,0.12); transform: translateY(-2px); }
.page-template-page-floor-mounted-heat-pumps-takapuna .cost-card-body { padding: 1rem 1.25rem 1.25rem; }
.page-template-page-floor-mounted-heat-pumps-takapuna .cost-card-desc { font-size: 0.72rem; margin-bottom: 0; }
.page-template-page-floor-mounted-heat-pumps-takapuna .check-list li { color: #1E1E1E; font-size: 0.85rem; }
.page-template-page-floor-mounted-heat-pumps-takapuna .faq-list { border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.page-template-page-floor-mounted-heat-pumps-takapuna .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 0.75rem; }
.page-template-page-floor-mounted-heat-pumps-takapuna .process-step:not(:last-child)::after { content: ''; position: absolute; top: 22px; left: calc(50% + 22px); right: calc(-50% + 22px); height: 2px; background: linear-gradient(90deg, #2B7BB9, #EDF3F9); }
.page-template-page-floor-mounted-heat-pumps-takapuna .process-step h3 { font-size: 0.88rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.4rem; }
.page-template-page-floor-mounted-heat-pumps-takapuna .process-step p { font-size: 0.75rem; color: #5A6472; font-weight: 600; line-height: 1.6; }

/* Use case cards */
.use-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.use-case-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.07); transition: box-shadow 0.2s, transform 0.2s; }
.use-case-card:hover { box-shadow: 0 12px 32px rgba(43,123,185,0.12); transform: translateY(-3px); }
.use-case-card-top { padding: 1.5rem 1.5rem 1.1rem; background: linear-gradient(135deg, #1E3A5F 0%, #2B7BB9 100%); }
.use-case-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.use-case-icon svg { width: 22px; height: 22px; stroke: #FFFFFF; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.use-case-card-top h3 { font-size: 0.95rem; font-weight: 800; color: #FFFFFF; letter-spacing: -0.01em; }
.use-case-card-body { padding: 1.1rem 1.5rem 1.5rem; }
.use-case-card-body p { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.65; }

/* VS comparison cards */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 860px; margin: 0 auto; }
.vs-card { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.vs-card-header { padding: 1.5rem 1.75rem 1.25rem; }
.vs-card.floor .vs-card-header { background: linear-gradient(135deg, #1E3A5F 0%, #2B7BB9 100%); }
.vs-card.highwall .vs-card-header { background: linear-gradient(135deg, #3D2010 0%, #7A4A00 100%); }
.vs-card-header h3 { font-size: 1rem; font-weight: 800; color: #FFFFFF; margin-bottom: 0.25rem; }
.vs-card-header p { font-size: 0.75rem; color: rgba(255,255,255,0.8); font-weight: 600; }
.vs-card-body { background: #FFFFFF; padding: 1.25rem 1.75rem 1.75rem; }
.vs-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.vs-list li { font-size: 0.82rem; font-weight: 600; color: #1E1E1E; display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; padding-bottom: 0.6rem; border-bottom: 1px solid #F0F3F7; }
.vs-list li:last-child { border-bottom: none; padding-bottom: 0; }
.vs-list li span { font-size: 0.72rem; font-weight: 800; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.05rem; }
.vs-card.floor .vs-list li span { background: #EDF3F9; color: #2B7BB9; }
.vs-card.highwall .vs-list li span { background: #FFF9E6; color: #CC9400; }

@media (max-width: 900px) {
  .page-template-page-floor-mounted-heat-pumps-takapuna .hero-img-wrap { display: none; }
  .use-cases-grid { grid-template-columns: 1fr 1fr; }
  .vs-grid { grid-template-columns: 1fr; }
  .page-template-page-floor-mounted-heat-pumps-takapuna .cost-cards { grid-template-columns: 1fr 1fr; }
  .page-template-page-floor-mounted-heat-pumps-takapuna .process-step:not(:last-child)::after { display: none; }
}
@media (max-width: 600px) {
  .use-cases-grid { grid-template-columns: 1fr; }
  .page-template-page-floor-mounted-heat-pumps-takapuna .cost-cards { grid-template-columns: 1fr; }
}

/* =============================================
   Ceiling Cassette Heat Pumps Page
   ============================================= */
.page-template-page-ceiling-cassette-heat-pumps-takapuna .quick-answer-inner { grid-template-columns: auto 1fr; gap: 2rem; max-width: 1200px; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .hero-img-wrap { border-radius: 14px; box-shadow: 0 16px 48px rgba(0,0,0,0.16); }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .hero-img-wrap img { height: 460px; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .hero-img-badge { background: rgba(30,42,58,0.92); backdrop-filter: blur(4px); border-radius: 8px; padding: 0.75rem 1rem; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .cta-banner { background: #1E2A3A; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .cost-cards { grid-template-columns: repeat(3, 1fr); }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .cost-card { border-radius: 12px; transition: box-shadow 0.2s, transform 0.2s; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .cost-card:hover { box-shadow: 0 8px 24px rgba(43,123,185,0.12); transform: translateY(-2px); }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .cost-card-body { padding: 1rem 1.25rem 1.25rem; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .cost-card-desc { font-size: 0.72rem; margin-bottom: 0; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .check-list li { color: #1E1E1E; font-size: 0.85rem; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .faq-list { border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 0.75rem; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .process-step:not(:last-child)::after { content: ''; position: absolute; top: 22px; left: calc(50% + 22px); right: calc(-50% + 22px); height: 2px; background: linear-gradient(90deg, #2B7BB9, #EDF3F9); }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .process-step h3 { font-size: 0.88rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.4rem; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .process-step p { font-size: 0.75rem; color: #5A6472; font-weight: 600; line-height: 1.6; }
/* VS grid: 3-column, full-width layout for cassette comparison */
.page-template-page-ceiling-cassette-heat-pumps-takapuna .vs-grid { grid-template-columns: repeat(3, 1fr); max-width: 960px; gap: 1.25rem; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .vs-card { overflow: visible; display: flex; flex-direction: column; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .vs-card-header { padding: 1.25rem 1.5rem 1rem; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .vs-card-body { padding: 1.25rem 1.5rem 2rem; border-radius: 0 0 14px 14px; flex: 1; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .vs-card-header h3 { font-size: 0.95rem; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .vs-card-header p { font-size: 0.72rem; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .vs-list li { font-size: 0.78rem; color: #5A6472; gap: 0.5rem; padding-bottom: 0.5rem; }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .vs-list li::before { content: '\2713'; color: #2E7D52; font-weight: 800; flex-shrink: 0; }
/* Card header colours for cassette comparison */
.page-template-page-ceiling-cassette-heat-pumps-takapuna .vs-card.cassette .vs-card-header { background: linear-gradient(135deg, #1E3A5F 0%, #2B7BB9 100%); }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .vs-card.ducted .vs-card-header { background: linear-gradient(135deg, #1A3D2B 0%, #2E7D52 100%); }
.page-template-page-ceiling-cassette-heat-pumps-takapuna .vs-card.highwall .vs-card-header { background: linear-gradient(135deg, #7A3010 0%, #F07D28 100%); }

/* Airflow compare diagram */
.airflow-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.5rem; align-items: center; max-width: 960px; margin: 0 auto; }
.airflow-panel { display: flex; flex-direction: column; gap: 0.75rem; }
.airflow-panel-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; padding: 0.4rem 0.85rem; border-radius: 20px; display: inline-block; }
.airflow-label-good { background: #EAF4EE; color: #2E7D52; }
.airflow-label-bad { background: #FEF3EB; color: #D4661A; }
.airflow-vs-divider { font-size: 1.1rem; font-weight: 800; color: #5A6472; text-align: center; }

@media (max-width: 900px) {
  .page-template-page-ceiling-cassette-heat-pumps-takapuna .hero-img-wrap { display: none; }
  .page-template-page-ceiling-cassette-heat-pumps-takapuna .cost-cards { grid-template-columns: 1fr 1fr; }
  .page-template-page-ceiling-cassette-heat-pumps-takapuna .vs-grid { grid-template-columns: 1fr; }
  .page-template-page-ceiling-cassette-heat-pumps-takapuna .process-step:not(:last-child)::after { display: none; }
  .airflow-compare { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-template-page-ceiling-cassette-heat-pumps-takapuna .cost-cards { grid-template-columns: 1fr; }
}

/* =============================================
   Multi-Room Heat Pumps Page
   ============================================= */
.page-template-page-multi-room-heat-pumps-takapuna .quick-answer-inner { grid-template-columns: auto 1fr; gap: 2rem; max-width: 1200px; }
.page-template-page-multi-room-heat-pumps-takapuna .hero-img-wrap { border-radius: 14px; box-shadow: 0 16px 48px rgba(0,0,0,0.16); }
.page-template-page-multi-room-heat-pumps-takapuna .hero-img-wrap img { height: 460px; }
.page-template-page-multi-room-heat-pumps-takapuna .hero-img-badge { background: rgba(30,42,58,0.92); backdrop-filter: blur(4px); border-radius: 8px; padding: 0.75rem 1rem; }
.page-template-page-multi-room-heat-pumps-takapuna .cta-banner { background: #1E2A3A; }
.page-template-page-multi-room-heat-pumps-takapuna .check-list li { color: #1E1E1E; font-size: 0.85rem; }
.page-template-page-multi-room-heat-pumps-takapuna .faq-list { border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.page-template-page-multi-room-heat-pumps-takapuna .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 0.75rem; }
.page-template-page-multi-room-heat-pumps-takapuna .process-step:not(:last-child)::after { content: ''; position: absolute; top: 22px; left: calc(50% + 22px); right: calc(-50% + 22px); height: 2px; background: linear-gradient(90deg, #2B7BB9, #EDF3F9); }
.page-template-page-multi-room-heat-pumps-takapuna .process-step h3 { font-size: 0.88rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.4rem; }
.page-template-page-multi-room-heat-pumps-takapuna .process-step p { font-size: 0.75rem; color: #5A6472; font-weight: 600; line-height: 1.6; }
/* VS grid: 3-column layout */
.page-template-page-multi-room-heat-pumps-takapuna .vs-grid { grid-template-columns: repeat(3, 1fr); max-width: 960px; gap: 1.25rem; }
.page-template-page-multi-room-heat-pumps-takapuna .vs-card { overflow: visible; display: flex; flex-direction: column; }
.page-template-page-multi-room-heat-pumps-takapuna .vs-card-header { padding: 1.25rem 1.5rem 1rem; }
.page-template-page-multi-room-heat-pumps-takapuna .vs-card-body { padding: 1.25rem 1.5rem 2rem; border-radius: 0 0 14px 14px; flex: 1; }
.page-template-page-multi-room-heat-pumps-takapuna .vs-card-header h3 { font-size: 0.95rem; }
.page-template-page-multi-room-heat-pumps-takapuna .vs-card-header p { font-size: 0.72rem; }
.page-template-page-multi-room-heat-pumps-takapuna .vs-list li { font-size: 0.78rem; color: #5A6472; gap: 0.6rem; padding-bottom: 0.6rem; }
.page-template-page-multi-room-heat-pumps-takapuna .vs-list li:last-child { padding-bottom: 0.25rem; }
.page-template-page-multi-room-heat-pumps-takapuna .vs-list li::before { content: '\2713'; color: #2E7D52; font-weight: 800; flex-shrink: 0; }
.page-template-page-multi-room-heat-pumps-takapuna .vs-card.multiroom .vs-card-header { background: linear-gradient(135deg, #1E3A5F 0%, #2B7BB9 100%); border-radius: 14px 14px 0 0; }
.page-template-page-multi-room-heat-pumps-takapuna .vs-card.ducted .vs-card-header { background: linear-gradient(135deg, #1A3D2B 0%, #2E7D52 100%); border-radius: 14px 14px 0 0; }
.page-template-page-multi-room-heat-pumps-takapuna .vs-card.singlewall .vs-card-header { background: linear-gradient(135deg, #7A3010 0%, #F07D28 100%); border-radius: 14px 14px 0 0; }

/* How it works diagram */
.system-diagram { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 14px; padding: 2.5rem; max-width: 860px; margin: 0 auto; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.diagram-wrap { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.diagram-outdoor { background: #2B7BB9; border-radius: 10px; padding: 1.25rem 1.5rem; text-align: center; min-width: 140px; }
.diagram-outdoor-label { font-size: 0.6rem; font-weight: 800; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.diagram-outdoor-title { font-size: 0.9rem; font-weight: 800; color: #FFFFFF; margin-bottom: 0.25rem; }
.diagram-outdoor-note { font-size: 0.7rem; color: rgba(255,255,255,0.75); font-weight: 600; }
.diagram-pipe { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.diagram-pipe-line { width: 40px; height: 2px; background: #F07D28; }
.diagram-pipe-label { font-size: 0.58rem; font-weight: 700; color: #5A6472; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.diagram-indoor-stack { display: flex; flex-direction: column; gap: 0.75rem; }
.diagram-indoor { background: #F8F9FA; border: 1px solid #DDE3EA; border-radius: 8px; padding: 0.75rem 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.diagram-indoor-dot { width: 10px; height: 10px; border-radius: 50%; background: #F07D28; flex-shrink: 0; }
.diagram-indoor-text { font-size: 0.78rem; font-weight: 700; color: #1E1E1E; }
.diagram-indoor-sub { font-size: 0.65rem; color: #5A6472; font-weight: 600; }

/* Configuration cards */
.config-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.config-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.07); transition: box-shadow 0.2s, transform 0.2s; }
.config-card:hover { box-shadow: 0 12px 32px rgba(43,123,185,0.12); transform: translateY(-3px); }
.config-card-top { padding: 1.5rem 1.5rem 1.1rem; background: linear-gradient(135deg, #1E3A5F 0%, #2B7BB9 100%); }
.config-card-rooms { font-size: 2rem; font-weight: 800; color: #F07D28; line-height: 1; margin-bottom: 0.25rem; }
.config-card-top h3 { font-size: 0.9rem; font-weight: 800; color: #FFFFFF; }
.config-card-body { padding: 1.1rem 1.5rem 1.5rem; }
.config-card-price { font-size: 1rem; font-weight: 800; color: #2B7BB9; margin-bottom: 0.5rem; }
.config-card-body p { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.65; }
.config-tag { display: inline-block; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 20px; background: #EDF3F9; color: #2B7BB9; margin-top: 0.75rem; }

@media (max-width: 900px) {
  .page-template-page-multi-room-heat-pumps-takapuna .hero-img-wrap { display: none; }
  .page-template-page-multi-room-heat-pumps-takapuna .vs-grid { grid-template-columns: 1fr; }
  .page-template-page-multi-room-heat-pumps-takapuna .process-step:not(:last-child)::after { display: none; }
  .config-cards { grid-template-columns: 1fr 1fr; }
  .diagram-wrap { flex-direction: column; }
  .diagram-pipe { flex-direction: row; }
  .diagram-pipe-line { width: 2px; height: 30px; }
}
@media (max-width: 600px) {
  .config-cards { grid-template-columns: 1fr; }
  .page-template-page-multi-room-heat-pumps-takapuna .vs-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Single Room Heat Pump Page
   ========================================================================== */

/* Page-scoped overrides */
.page-template-page-single-room-heat-pump-takapuna .quick-answer-inner { grid-template-columns: auto 1fr; gap: 2rem; max-width: 1200px; }
.page-template-page-single-room-heat-pump-takapuna .hero-img-wrap { border-radius: 14px; box-shadow: 0 16px 48px rgba(0,0,0,0.16); }
.page-template-page-single-room-heat-pump-takapuna .hero-img-wrap img { height: 460px; }
.page-template-page-single-room-heat-pump-takapuna .hero-img-badge { background: rgba(30,42,58,0.92); backdrop-filter: blur(4px); border-radius: 8px; padding: 0.75rem 1rem; }
.page-template-page-single-room-heat-pump-takapuna .cta-banner { background: #1E2A3A; }
.page-template-page-single-room-heat-pump-takapuna .cost-cards { grid-template-columns: repeat(3, 1fr); }
.page-template-page-single-room-heat-pump-takapuna .check-list li { color: #1E1E1E; font-size: 0.85rem; }
.page-template-page-single-room-heat-pump-takapuna .faq-list { border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.page-template-page-single-room-heat-pump-takapuna .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 0.75rem; }

/* Room cards */
.room-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.room-card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.07); transition: box-shadow 0.2s, transform 0.2s; }
.room-card:hover { box-shadow: 0 12px 32px rgba(43,123,185,0.12); transform: translateY(-3px); }
.room-card-top { padding: 1.5rem 1.5rem 1.1rem; background: linear-gradient(135deg, #1E3A5F 0%, #2B7BB9 100%); display: flex; flex-direction: column; align-items: flex-start; gap: 0.4rem; }
.room-card-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.25rem; }
.room-card-icon svg { width: 20px; height: 20px; stroke: #FFFFFF; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.room-card-top h3 { font-size: 0.95rem; font-weight: 800; color: #FFFFFF; margin: 0; }
.room-price { font-size: 1rem; font-weight: 800; color: #F07D28; }
.room-card-body { padding: 1.1rem 1.5rem 1.5rem; }
.room-card-body p { font-size: 0.78rem; color: #5A6472; font-weight: 600; line-height: 1.65; margin-bottom: 0.75rem; }
.room-tag { display: inline-block; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 20px; background: #EDF3F9; color: #2B7BB9; }

/* Grant banner */
.grant-banner { background: #FFFFFF; border-top: 3px solid #F07D28; border-bottom: 3px solid #F07D28; padding: 2.5rem 1.5rem; }
.grant-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; max-width: 960px; margin: 0 auto; }
.grant-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #F07D28 0%, #E06010 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.grant-icon svg { width: 26px; height: 26px; stroke: #FFFFFF; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.grant-text h3 { font-size: 1rem; font-weight: 800; color: #1E1E1E; margin-bottom: 0.4rem; }
.grant-text p { font-size: 0.82rem; color: #5A6472; font-weight: 600; line-height: 1.65; margin: 0; }

@media (max-width: 900px) {
  .page-template-page-single-room-heat-pump-takapuna .hero-img-wrap { display: none; }
  .room-cards { grid-template-columns: 1fr 1fr; }
  .grant-inner { grid-template-columns: auto 1fr; }
  .grant-inner .btn-amber { grid-column: 1 / -1; text-align: center; }
  .page-template-page-single-room-heat-pump-takapuna .process-step:not(:last-child)::after { display: none; }
}
@media (max-width: 600px) {
  .room-cards { grid-template-columns: 1fr; }
  .grant-inner { grid-template-columns: 1fr; text-align: center; }
  .grant-icon { margin: 0 auto; }
}

/* ==========================================================================
   Ducted Whole-Home Heat Pumps Page
   ========================================================================== */

/* Page-scoped overrides */
.page-template-page-ducted-whole-home-heat-pumps-takapuna .quick-answer-inner { grid-template-columns: auto 1fr; gap: 2rem; max-width: 1200px; }
.page-template-page-ducted-whole-home-heat-pumps-takapuna .hero-img-wrap { border-radius: 14px; box-shadow: 0 16px 48px rgba(0,0,0,0.16); }
.page-template-page-ducted-whole-home-heat-pumps-takapuna .hero-img-wrap img { height: 460px; }
.page-template-page-ducted-whole-home-heat-pumps-takapuna .hero-img-badge { background: rgba(30,42,58,0.92); backdrop-filter: blur(4px); border-radius: 8px; padding: 0.75rem 1rem; }
.page-template-page-ducted-whole-home-heat-pumps-takapuna .cta-banner { background: #1E2A3A; }
.page-template-page-ducted-whole-home-heat-pumps-takapuna .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 0.75rem; }
.page-template-page-ducted-whole-home-heat-pumps-takapuna .process-step:not(:last-child)::after { content: ''; position: absolute; top: 22px; left: calc(50% + 22px); right: calc(-50% + 22px); height: 2px; background: linear-gradient(90deg, #2B7BB9, #EDF3F9); }

/* Right-card overrides: gradient header variant */
.page-template-page-ducted-whole-home-heat-pumps-takapuna .right-grid { gap: 1.5rem; max-width: 960px; }
.page-template-page-ducted-whole-home-heat-pumps-takapuna .right-card { border: none; border-radius: 14px; padding: 0; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: box-shadow 0.2s, transform 0.2s; }
.page-template-page-ducted-whole-home-heat-pumps-takapuna .right-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.12); transform: translateY(-3px); }
.page-template-page-ducted-whole-home-heat-pumps-takapuna .right-card.yes,
.page-template-page-ducted-whole-home-heat-pumps-takapuna .right-card.no { border-top: none; }
.page-template-page-ducted-whole-home-heat-pumps-takapuna .right-card.yes .right-label,
.page-template-page-ducted-whole-home-heat-pumps-takapuna .right-card.no .right-label { color: rgba(255,255,255,0.85); }
.page-template-page-ducted-whole-home-heat-pumps-takapuna .right-list { gap: 0.7rem; }
.page-template-page-ducted-whole-home-heat-pumps-takapuna .right-list li { padding-bottom: 0.7rem; border-bottom: 1px solid #F0F3F7; }
.page-template-page-ducted-whole-home-heat-pumps-takapuna .right-list li:last-child { border-bottom: none; padding-bottom: 0; }

@media (max-width: 900px) {
  .page-template-page-ducted-whole-home-heat-pumps-takapuna .hero-img-wrap { display: none; }
  .page-template-page-ducted-whole-home-heat-pumps-takapuna .right-grid { grid-template-columns: 1fr; }
  .page-template-page-ducted-whole-home-heat-pumps-takapuna .process-step:not(:last-child)::after { display: none; }
}
@media (max-width: 600px) {
  .page-template-page-ducted-whole-home-heat-pumps-takapuna .process-wrap { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Daikin Heat Pump Page
   ========================================================================== */

/* Hero */
.page-hero { background: #EDF3F9; padding: 4rem 1.5rem; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; text-align: left; }
.page-hero-badge { display: inline-block; background: #2B7BB9; color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: 20px; margin-bottom: 1.1rem; }
.page-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; color: #1E2A3A; line-height: 1.15; margin: 0 0 1rem; letter-spacing: -0.02em; }
.page-hero h1 span { color: #2B7BB9; }
.page-hero-lead { font-size: 1rem; color: #4A5568; line-height: 1.65; margin: 0 0 1.75rem; }
.hero-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.btn-cta-orange { background: #F07D28; color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem; padding: 0.85rem 1.75rem; border-radius: 4px; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: background 0.2s; }
.btn-cta-orange:hover { background: #D4661A; }
.btn-cta-ghost { background: transparent; color: #2B7BB9; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.85rem 1.75rem; border-radius: 4px; border: 2px solid #2B7BB9; text-decoration: none; display: inline-block; transition: border-color 0.2s, background 0.2s; }
.btn-cta-ghost:hover { background: #2B7BB9; color: #fff; }

/* Trust bar */
.trust-bar { background: #2B7BB9; padding: 0.9rem 1.5rem; }
.trust-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.trust-bar-item { display: flex; align-items: center; gap: 0.5rem; color: #fff; font-size: 0.82rem; font-weight: 600; }
.trust-bar-item svg { flex-shrink: 0; }

/* Sections */
.section { padding: 4rem 1.5rem; }
.section-white { background: #fff; }
.section-light { background: #F8F9FA; }
.section-blue { background: #EDF3F9; }
.inner { max-width: 1100px; margin: 0 auto; }
.inner-narrow { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #F07D28; margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: #1E2A3A; line-height: 1.2; margin: 0 0 0.85rem; }
.section-title span { color: #2B7BB9; }
.section-lead { font-size: 0.97rem; color: #4A5568; line-height: 1.7; margin-bottom: 2.5rem; }

/* Why grid */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.why-card { background: #fff; border-radius: 6px; padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.07); border-top: 3px solid #2B7BB9; }
.why-card-pill { display: inline-block; background: #EDF3F9; color: #2B7BB9; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 20px; margin-bottom: 0.85rem; }
.why-card h3 { font-size: 0.97rem; font-weight: 700; color: #1E2A3A; margin: 0 0 0.6rem; }
.why-card p { font-size: 0.88rem; color: #4A5568; line-height: 1.65; margin: 0; }

/* Range cards */
.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.range-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.range-card-head { background: #1E2A3A; padding: 1.1rem 1.25rem; }
.range-card-head h3 { font-size: 1rem; font-weight: 800; color: #fff; margin: 0 0 0.2rem; }
.range-card-tag { font-size: 0.72rem; font-weight: 700; color: #F07D28; text-transform: uppercase; letter-spacing: 0.06em; }
.range-card-body { padding: 1.1rem 1.25rem; }
.range-card-body ul { margin: 0; padding: 0; list-style: none; }
.range-card-body ul li { font-size: 0.86rem; color: #4A5568; padding: 0.45rem 0; border-bottom: 1px solid #F0F0F0; display: flex; gap: 0.6rem; align-items: flex-start; line-height: 1.5; }
.range-card-body ul li:last-child { border-bottom: none; }
.range-card-body ul li::before { content: ''; width: 7px; height: 7px; background: #2E7D52; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.range-ideal { margin-top: 0.85rem; font-size: 0.8rem; font-weight: 600; color: #2B7BB9; background: #EDF3F9; padding: 0.5rem 0.75rem; border-radius: 4px; }

/* Check list */
.check-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.check-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.93rem; color: #4A5568; margin-bottom: 0.85rem; line-height: 1.55; }
.check-list li svg { margin-top: 2px; flex-shrink: 0; }

/* Stats strip */
.stats-strip { background: #1E2A3A; padding: 2.75rem 1.5rem; }
.stats-inner { max-width: 900px; margin: 0 auto; display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.stat-box { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 1.1rem 1.5rem; text-align: center; min-width: 130px; }
.stat-num { font-size: 1.6rem; font-weight: 800; color: #F07D28; display: block; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.72); font-weight: 600; }

/* Subsidy callout */
.subsidy-callout { background: #FFF9E6; border: 2px solid #E6A800; border-radius: 8px; padding: 2rem 1.75rem; max-width: 820px; margin: 0 auto; }
.subsidy-inner-row { display: flex; gap: 1rem; align-items: flex-start; flex-wrap: wrap; }
.subsidy-icon { font-size: 2.2rem; line-height: 1; }
.subsidy-text { flex: 1; min-width: 220px; }
.subsidy-text h3 { font-size: 1.1rem; font-weight: 800; color: #1E2A3A; margin: 0 0 0.6rem; }
.subsidy-text p { font-size: 0.9rem; color: #4A5568; line-height: 1.7; margin: 0 0 1rem; }
.btn-amber { display: inline-block; background: #E6A800; color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; padding: 0.65rem 1.3rem; border-radius: 4px; text-decoration: none; transition: background 0.2s; }
.btn-amber:hover { background: #C98F00; }

/* FAQ */
.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid #E2E8F0; padding: 1.25rem 0; }
.faq-item:first-child { border-top: 1px solid #E2E8F0; }
.faq-q { font-size: 0.97rem; font-weight: 700; color: #1E2A3A; margin: 0 0 0.6rem; }
.faq-a { font-size: 0.9rem; color: #4A5568; line-height: 1.7; margin: 0; }

/* Brands nav */
.brands-nav { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.5rem; }
.brand-pill { background: #fff; border: 1.5px solid #D1D9E0; border-radius: 20px; padding: 0.45rem 1rem; font-size: 0.82rem; font-weight: 600; color: #1E2A3A; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.brand-pill:hover { border-color: #2B7BB9; color: #2B7BB9; }
.brand-pill.active { border-color: #2B7BB9; background: #EDF3F9; color: #2B7BB9; }
.compare-link { display: inline-block; margin-top: 1rem; color: #2B7BB9; font-weight: 600; font-size: 0.88rem; text-decoration: none; border-bottom: 1px solid #2B7BB9; }
.compare-link:hover { color: #1E5F8E; border-color: #1E5F8E; }

/* CTA banner */
.cta-banner { background: #1E2A3A; padding: 4rem 1.5rem; text-align: center; }
.cta-banner h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.cta-banner p { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 600; margin-bottom: 1.75rem; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone-link { display: block; margin-top: 1rem; color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 600; text-decoration: none; }
.cta-phone-link:hover { color: #fff; }

/* Page-scoped hero: single-column, no image */
.page-template-page-daikin-heat-pump-takapuna .page-hero-inner { display: block !important; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .range-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .range-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .stats-inner { gap: 1rem; }
}

/* ==========================================================================
   Mitsubishi Electric Heat Pump Page
   ========================================================================== */

/* --- New global classes --- */
.section-blue { background: #EDF3F9; }
.range-note { margin-top: 0.6rem; font-size: 0.8rem; color: #4A5568; line-height: 1.55; border-top: 1px solid #F0F0F0; padding-top: 0.65rem; }
.range-note strong { color: #1E2A3A; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.pricing-card { background: #F8F9FA; border-radius: 6px; padding: 1.5rem; border-top: 3px solid #2B7BB9; }
.pricing-num { font-size: 1.4rem; font-weight: 800; color: #1E2A3A; margin-bottom: 0.35rem; }
.pricing-label { font-size: 0.82rem; font-weight: 700; color: #F07D28; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.pricing-card p { font-size: 0.88rem; color: #4A5568; line-height: 1.6; margin: 0; }

/* --- Page-scoped overrides --- */
/* Single-column hero (no image) */
.page-template-page-mitsubishi-heat-pump-takapuna .page-hero-inner { display: block !important; }
/* Ghost button on light blue background */
.page-template-page-mitsubishi-heat-pump-takapuna .btn-cta-ghost { color: #2B7BB9; border-color: #2B7BB9; }
.page-template-page-mitsubishi-heat-pump-takapuna .btn-cta-ghost:hover { background: #2B7BB9; color: #fff; border-color: #2B7BB9; }
/* Check-list: suppress global ::before tick — SVG icons are inside the li elements */
.page-template-page-mitsubishi-heat-pump-takapuna .check-list li::before { content: none; }
/* FAQ: plain line-separated, not the accordion card variant */
.page-template-page-mitsubishi-heat-pump-takapuna .faq-list { border: none; border-radius: 0; overflow: visible; max-width: none; margin: 2rem 0 0; }
.page-template-page-mitsubishi-heat-pump-takapuna .faq-item { padding: 1.25rem 0; border-bottom: 1px solid #E2E8F0; background: transparent; }
.page-template-page-mitsubishi-heat-pump-takapuna .faq-item:first-child { border-top: 1px solid #E2E8F0; }
/* Brand pills: inactive gray, active blue */
.page-template-page-mitsubishi-heat-pump-takapuna .brand-pill { border-color: #D1D9E0; color: #1E2A3A; background: #fff; }
.page-template-page-mitsubishi-heat-pump-takapuna .brand-pill:hover { border-color: #2B7BB9; color: #2B7BB9; background: #fff; }
.page-template-page-mitsubishi-heat-pump-takapuna .brand-pill.active { border-color: #2B7BB9; background: #EDF3F9; color: #2B7BB9; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Fujitsu Heat Pump Page */
.page-template-page-fujitsu-heat-pump-takapuna .page-hero-inner { display: block !important; }

/* Panasonic Heat Pump Page */
.page-template-page-panasonic-heat-pump-takapuna .page-hero-inner { display: block !important; }

/* LG Heat Pump Page */
.page-template-page-lg-heat-pump-takapuna .page-hero-inner { display: block !important; }

/* Samsung Heat Pump Page */
.page-template-page-samsung-heat-pump-takapuna .page-hero-inner { display: block !important; }

/* Toshiba Heat Pump Page */
.page-template-page-toshiba-heat-pump-takapuna .page-hero-inner { display: block !important; }

/* Haier Heat Pump Page */
.page-template-page-haier-heat-pump-takapuna .page-hero-inner { display: block !important; }

/* Heat Pump Brands Comparison Page */
.page-template-page-heat-pump-brands-comparison .page-hero-inner { display: block !important; }
.page-template-page-heat-pump-brands-comparison .inner-narrow { max-width: 860px; }

/* Brand cards grid */
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2rem; }
.brand-card { background: #fff; border-radius: 8px; padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.07); border-top: 4px solid #2B7BB9; display: flex; flex-direction: column; }
.brand-card-name { font-size: 1.3rem; font-weight: 800; color: #1E2A3A; margin: 0 0 0.5rem; letter-spacing: -0.02em; }
.brand-card-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #F07D28; margin-bottom: 0.85rem; }
.brand-card-best { font-size: 0.82rem; font-weight: 700; color: #2E7D52; background: #E8F5E9; padding: 0.35rem 0.7rem; border-radius: 4px; margin-bottom: 0.85rem; display: inline-block; }
.brand-card-list { list-style: none; padding: 0; margin: 0 0 1rem; flex: 1; }
.brand-card-list li { font-size: 0.83rem; color: #4A5568; padding: 0.35rem 0; border-bottom: 1px solid #F0F0F0; display: flex; gap: 0.5rem; align-items: flex-start; line-height: 1.45; }
.brand-card-list li:last-child { border-bottom: none; }
.brand-card-list li::before { content: ''; width: 6px; height: 6px; background: #2B7BB9; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.brand-card a { font-size: 0.82rem; font-weight: 700; color: #2B7BB9; text-decoration: none; border-bottom: 1px solid #2B7BB9; display: inline-flex; align-items: center; gap: 0.3rem; margin-top: auto; }
.brand-card a:hover { color: #1E5F8E; }

/* Comparison table */
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 6px; }
.compare-table { width: 100%; min-width: 760px; border-collapse: collapse; margin-top: 2rem; font-size: 0.88rem; }
.compare-table th { background: #1E2A3A; color: #fff; padding: 0.85rem 1rem; text-align: left; font-weight: 700; font-size: 0.82rem; }
.compare-table th:first-child { width: 180px; }
.compare-table td { padding: 0.75rem 1rem; border-bottom: 1px solid #E2E8F0; color: #4A5568; vertical-align: top; line-height: 1.5; }
.compare-table tr:nth-child(even) td { background: #F8F9FA; }
.compare-table td:first-child { font-weight: 700; color: #1E2A3A; background: #EDF3F9 !important; }
.compare-table .best { color: #2E7D52; font-weight: 700; }
.compare-table .note { font-size: 0.78rem; color: #718096; display: block; margin-top: 0.2rem; }

/* Winner table */
.winner-table { margin-top: 1.5rem; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.09); }
.winner-header { display: grid; grid-template-columns: 1.2fr 1.2fr 2fr 1.4fr; background: #1E2A3A; color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
.winner-header > div { padding: 0.85rem 1rem; }
.winner-row { display: grid; grid-template-columns: 1.2fr 1.2fr 2fr 1.4fr; border-bottom: 1px solid #E2E8F0; background: #fff; }
.winner-row:last-child { border-bottom: none; }
.winner-row:nth-child(even) { background: #F8F9FA; }
.winner-priority { padding: 1rem; font-size: 0.88rem; font-weight: 700; color: #1E2A3A; display: flex; align-items: center; border-right: 1px solid #E2E8F0; }
.winner-brand { padding: 1rem; font-size: 0.92rem; font-weight: 800; color: #2B7BB9; display: flex; align-items: center; border-right: 1px solid #E2E8F0; }
.winner-why { padding: 1rem; font-size: 0.86rem; color: #1E2A3A; line-height: 1.55; display: flex; align-items: center; border-right: 1px solid #E2E8F0; }
.winner-runner { padding: 1rem; font-size: 0.82rem; color: #4A5568; line-height: 1.55; display: flex; align-items: center; font-style: italic; }

/* Fine print box */
.fine-print-box { margin-top: 1.5rem; background: #fff; border-radius: 8px; padding: 1.5rem; border-left: 4px solid #2B7BB9; }
.fine-print-title { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #2B7BB9; margin-bottom: 0.85rem; }
.fine-print-list { list-style: none; padding: 0; margin: 0; }
.fine-print-list li { font-size: 0.86rem; color: #4A5568; line-height: 1.65; padding: 0.4rem 0 0.4rem 1.1rem; border-bottom: 1px solid #F0F0F0; position: relative; }
.fine-print-list li:last-child { border-bottom: none; }
.fine-print-list li::before { content: '\2192'; position: absolute; left: 0; color: #2B7BB9; font-weight: 700; }

/* Scenario cards */
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.scenario-card { background: #fff; border-radius: 8px; padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.07); border-left: 4px solid #2B7BB9; }
.scenario-card h3 { font-size: 0.97rem; font-weight: 800; color: #1E2A3A; margin: 0 0 0.5rem; }
.scenario-card .scenario-pick { font-size: 0.82rem; font-weight: 700; color: #F07D28; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.6rem; }
.scenario-card p { font-size: 0.86rem; color: #4A5568; line-height: 1.6; margin: 0; }

@media (max-width: 1000px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 0.6rem 0.7rem; }
}
@media (max-width: 750px) {
  .winner-header { display: none; }
  .winner-row { grid-template-columns: 1fr; border-bottom: 3px solid #EDF3F9; }
  .winner-priority { background: #1E2A3A; color: #fff; border-right: none; padding: 0.7rem 1rem; font-size: 0.82rem; }
  .winner-brand { border-right: none; padding: 0.75rem 1rem 0.25rem; font-size: 1rem; }
  .winner-why { border-right: none; padding: 0.25rem 1rem 0.75rem; }
  .winner-runner { padding: 0.5rem 1rem 0.85rem; border-top: 1px solid #E2E8F0; }
}
@media (max-width: 700px) {
  .brand-grid { grid-template-columns: 1fr; }
  .scenario-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* Best Heat Pump NZ Page */
.page-template-page-best-heat-pump-nz .page-hero-inner { display: block !important; }

/* Summary table */
.summary-table { margin-top: 1.5rem; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.summary-header { display: grid; grid-template-columns: 1fr 2fr; background: #1E2A3A; color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
.summary-header > div { padding: 0.85rem 1.25rem; }
.summary-row { display: grid; grid-template-columns: 1fr 2fr; border-bottom: 1px solid #E2E8F0; background: #fff; }
.summary-row:last-child { border-bottom: none; }
.summary-row:nth-child(even) { background: #F8F9FA; }
.summary-q { padding: 1rem 1.25rem; font-size: 0.9rem; font-weight: 700; color: #1E2A3A; border-right: 1px solid #E2E8F0; display: flex; align-items: center; }
.summary-a { padding: 1rem 1.25rem; font-size: 0.88rem; color: #4A5568; line-height: 1.55; display: flex; align-items: center; }

/* Price grid */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.price-card { background: #EDF3F9; border-radius: 8px; padding: 1.75rem; border-top: 4px solid #2B7BB9; }
.price-card-dark { background: #1E2A3A; border-top-color: #F07D28; }
.price-card-dark p { color: rgba(255,255,255,0.75) !important; }
.price-range { font-size: 1.3rem; font-weight: 800; color: #2B7BB9; margin-bottom: 0.3rem; letter-spacing: -0.02em; }
.price-card-dark .price-range { color: #F07D28; }
.price-type { font-size: 0.88rem; font-weight: 800; color: #1E2A3A; margin-bottom: 0.75rem; }
.price-card-dark .price-type { color: #fff; }
.price-card p { font-size: 0.86rem; color: #4A5568; line-height: 1.6; margin: 0; }

/* Step guide — connected timeline */
.step-list { margin-top: 2.5rem; position: relative; }
.step-list::before { content: ''; position: absolute; left: 27px; top: 36px; bottom: 36px; width: 3px; background: linear-gradient(to bottom, #2B7BB9, #EDF3F9); z-index: 0; }
.step-item { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; position: relative; z-index: 1; align-items: flex-start; }
.step-item:last-child { margin-bottom: 0; }
.step-num { width: 56px; height: 56px; background: #2B7BB9; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; flex-shrink: 0; box-shadow: 0 0 0 5px #EDF3F9, 0 0 0 7px #2B7BB9; }
.step-body { background: #fff; border-radius: 8px; padding: 1.25rem 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.07); flex: 1; margin-top: 0.5rem; }
.step-title { font-size: 1rem; font-weight: 800; color: #1E2A3A; margin: 0 0 0.4rem; }
.step-body p { font-size: 0.88rem; color: #4A5568; line-height: 1.65; margin: 0; }
.step-body p strong { color: #1E2A3A; }

/* Brand link grid */
.brand-link-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 1.5rem; }
.brand-link-card { background: #fff; border: 1.5px solid #D1D9E0; border-radius: 8px; padding: 1rem; text-align: center; text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s; }
.brand-link-card:hover { border-color: #2B7BB9; box-shadow: 0 2px 10px rgba(43,123,185,0.15); }
.brand-link-name { font-size: 0.9rem; font-weight: 800; color: #1E2A3A; display: block; margin-bottom: 0.3rem; }
.brand-link-best { font-size: 0.75rem; color: #2E7D52; font-weight: 600; }

/* FAQ */
.faq-item { border-bottom: 1px solid #E2E8F0; padding: 1.25rem 1.25rem; }
.faq-item:first-child { border-top: 1px solid #E2E8F0; }
.faq-q { font-size: 0.97rem; font-weight: 700; color: #1E2A3A; margin: 0 0 0.5rem; }
.faq-a { font-size: 0.9rem; color: #4A5568; line-height: 1.7; margin: 0; }

@media (max-width: 900px) {
  .brand-link-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
}
@media (max-width: 750px) {
  .summary-header { display: none; }
  .summary-row { grid-template-columns: 1fr; }
  .summary-q { border-right: none; background: #EDF3F9; border-bottom: 1px solid #E2E8F0; padding: 0.6rem 1rem; font-size: 0.85rem; }
  .summary-a { padding: 0.75rem 1rem; }
}
@media (max-width: 600px) {
  .step-list::before { left: 20px; }
  .step-num { width: 42px; height: 42px; font-size: 1rem; box-shadow: 0 0 0 4px #EDF3F9, 0 0 0 6px #2B7BB9; }
  .brand-link-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Heat Pump Boundary Rules Page */
.page-template-page-heat-pump-boundary-rules-consent-nz .page-hero-inner { display: block !important; }

.section-title-white { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: #fff; line-height: 1.2; margin: 0 0 0.85rem; }
.section-title-white span { color: #F07D28; }
.section-lead-white { font-size: 0.97rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 2rem; }

/* Answer table */
.answer-table { margin-top: 1.5rem; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.answer-header { display: grid; grid-template-columns: 1fr 1fr 1.5fr; background: #1E2A3A; color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
.answer-header > div { padding: 1rem 1.5rem; }
.answer-row-3 { display: grid; grid-template-columns: 1fr 1fr 1.5fr; border-bottom: 1px solid #E2E8F0; background: #fff; transition: background 0.15s; }
.answer-row-3:hover { background: #F0F7FF; }
.answer-row-3:last-child { border-bottom: none; }
.answer-row-3:nth-child(even) { background: #F8FAFB; }
.answer-row-3:nth-child(even):hover { background: #F0F7FF; }
.answer-q { padding: 1.1rem 1.5rem; font-size: 0.9rem; font-weight: 700; color: #1E2A3A; border-right: 1px solid #E2E8F0; display: flex; align-items: center; }
.answer-a { padding: 1.1rem 1.5rem; font-size: 0.88rem; color: #4A5568; display: flex; align-items: center; border-right: 1px solid #E2E8F0; }
.answer-detail { padding: 1.1rem 1.5rem; font-size: 0.86rem; color: #4A5568; line-height: 1.55; display: flex; align-items: center; }
.badge-green { background: #E8F5E9; color: #2E7D52; font-size: 0.75rem; font-weight: 800; padding: 0.25rem 0.65rem; border-radius: 20px; white-space: nowrap; }
.badge-blue { background: #E3F0FB; color: #2B7BB9; font-size: 0.75rem; font-weight: 800; padding: 0.25rem 0.65rem; border-radius: 20px; white-space: nowrap; }
.badge-amber { background: #FFF3CD; color: #92650A; font-size: 0.75rem; font-weight: 800; padding: 0.25rem 0.65rem; border-radius: 20px; white-space: nowrap; }
.badge-red { background: #FEE2E2; color: #C53030; font-size: 0.75rem; font-weight: 800; padding: 0.25rem 0.65rem; border-radius: 20px; white-space: nowrap; }

/* dB stat cards */
.db-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0 1rem; }
.db-card { background: #1E2A3A; border-radius: 10px; padding: 1.5rem; text-align: center; }
.db-num { font-size: 2.2rem; font-weight: 800; color: #F07D28; letter-spacing: -0.03em; display: block; }
.db-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 600; margin-top: 0.3rem; display: block; line-height: 1.4; }

/* Rule cards */
.rule-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }
.rule-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-top: 4px solid #2B7BB9; }
.rule-card.warn { border-top-color: #E6A800; }
.rule-card.danger { border-top-color: #C53030; }
.rule-card-body { padding: 1.5rem; }
.rule-card-title { font-size: 1rem; font-weight: 800; color: #1E2A3A; margin: 0 0 0.75rem; }
.rule-card-body p { font-size: 0.92rem; color: #2D3748; line-height: 1.7; margin: 0; }
.rule-card-body p strong { color: #1E2A3A; }
.rule-card-body ul { list-style: none; padding: 0; margin: 0; }

/* Process — connected timeline */
.process-list { margin-top: 2.5rem; position: relative; }
.process-list::before { content: ''; position: absolute; left: 27px; top: 36px; bottom: 36px; width: 3px; background: linear-gradient(to bottom, #2B7BB9, rgba(43,123,185,0.1)); z-index: 0; }
.process-item { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; position: relative; z-index: 1; align-items: flex-start; }
.process-item:last-child { margin-bottom: 0; }
.process-num { width: 56px; height: 56px; background: #2B7BB9; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; flex-shrink: 0; box-shadow: 0 0 0 5px #EDF3F9, 0 0 0 7px #2B7BB9; }
.process-body { background: #fff; border-radius: 10px; padding: 1.25rem 1.5rem; box-shadow: 0 2px 16px rgba(0,0,0,0.07); flex: 1; margin-top: 0.4rem; }
.process-body h3 { font-size: 1rem; font-weight: 800; color: #1E2A3A; margin: 0 0 0.4rem; }
.process-body p { font-size: 0.88rem; color: #4A5568; line-height: 1.65; margin: 0; }

@media (max-width: 750px) {
  .answer-header { display: none; }
  .answer-row-3 { grid-template-columns: 1fr; }
  .answer-q { border-right: none; background: #EDF3F9; border-bottom: 1px solid #E2E8F0; padding: 0.6rem 1rem; }
  .answer-a { border-right: none; padding: 0.5rem 1rem; }
  .answer-detail { padding: 0.5rem 1rem 0.85rem; }
  .db-grid { grid-template-columns: 1fr; }
  .rule-grid { grid-template-columns: 1fr; }
  .process-list::before { left: 20px; }
  .process-num { width: 42px; height: 42px; font-size: 1rem; box-shadow: 0 0 0 4px #EDF3F9, 0 0 0 6px #2B7BB9; }
}

/* Heat Pump Efficiency Tips Page */
.page-template-page-heat-pump-efficiency-tips .page-hero-inner { display: block !important; }

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.stat-box { background: #1E2A3A; border-radius: 8px; padding: 1.5rem; text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: #F07D28; display: block; letter-spacing: -0.03em; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 600; margin-top: 0.3rem; display: block; line-height: 1.4; }

/* Tip cards */
.tip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }
.tip-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.09); }
.tip-card-head { background: #2B7BB9; padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.85rem; }
.tip-num-circle { width: 36px; height: 36px; background: #F07D28; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.tip-title { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0; letter-spacing: -0.01em; }
.tip-card-body { padding: 1.1rem 1.25rem; }
.tip-card-body p { font-size: 0.88rem; color: #4A5568; line-height: 1.65; margin: 0 0 0.75rem; }
.tip-card-body p:last-child { margin-bottom: 0; }
.tip-callout { background: #F8FAFB; border-radius: 6px; padding: 0.6rem 0.9rem; font-size: 0.83rem; color: #2D3748; line-height: 1.5; border-left: 3px solid #F07D28; font-weight: 600; }

/* Myth vs fact */
.myth-list { margin-top: 2rem; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.myth-header-row { display: grid; grid-template-columns: 1fr 1.6fr; background: #2B7BB9; }
.myth-header-col { padding: 0.9rem 1.5rem; font-size: 1rem; font-weight: 800; color: #fff; }
.myth-col-color { border-right: 1px solid rgba(255,255,255,0.25); }
.myth-item { display: grid; grid-template-columns: 1fr 1.6fr; border-bottom: 1px solid #E2E8F0; }
.myth-item:last-child { border-bottom: none; }
.myth-item:nth-child(even) .myth-side { background: #F8FAFB; }
.myth-side { padding: 1.1rem 1.5rem; background: #fff; }
.myth-col { border-right: 1px solid #E2E8F0; background: #EDF3F9 !important; }
.myth-col p { color: #1E2A3A; margin: 0; font-size: 0.92rem; line-height: 1.6; font-weight: 700; }
.fact-col p { color: #4A5568; margin: 0; font-size: 0.9rem; line-height: 1.65; }

/* Maintenance check cards */
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }
.check-card { background: #fff; border-radius: 10px; padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.07); display: flex; gap: 1rem; align-items: flex-start; }
.check-card-wide { grid-column: 1 / -1; border-top: 3px solid #F07D28; }
.check-card-icon { width: 32px; height: 32px; background: #2B7BB9; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 800; flex-shrink: 0; }
.check-card-icon-orange { background: #F07D28; }
.check-card-title { font-size: 0.97rem; font-weight: 800; color: #1E2A3A; margin: 0 0 0.4rem; }
.check-card-body p { font-size: 0.88rem; color: #4A5568; line-height: 1.65; margin: 0; }
.check-card-body a { color: #2B7BB9; font-weight: 600; }

@media (max-width: 900px) {
  .stat-strip { grid-template-columns: 1fr; }
  .tip-grid { grid-template-columns: 1fr; }
  .myth-header-row { grid-template-columns: 1fr; }
  .myth-col-color { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .myth-item { grid-template-columns: 1fr; }
  .myth-col { border-right: none; border-bottom: 1px solid #E2E8F0; }
}
@media (max-width: 700px) {
  .check-grid { grid-template-columns: 1fr; }
}

/* Heat Pump Solar Integration Page */
.page-template-page-heat-pump-solar-integration .page-hero-inner { display: block !important; }
.page-template-page-heat-pump-solar-integration .cta-banner { background: #1E2A3A; }
.page-template-page-heat-pump-solar-integration .how-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }

/* How it works cards */
.how-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.how-card-head { background: #2B7BB9; padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.85rem; }
.how-num { width: 36px; height: 36px; background: #F07D28; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.how-title { font-size: 1.05rem; font-weight: 800; color: #fff; margin: 0; }
.how-card-body { padding: 1.25rem; }
.how-card-body p { font-size: 0.88rem; color: #4A5568; line-height: 1.65; margin: 0; }
.how-card-body p strong { color: #1E2A3A; }

/* Summer vs winter / worked example table */
.season-table { margin-top: 1.5rem; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.season-header { display: grid; grid-template-columns: 1fr 1fr 1fr; background: #2B7BB9; }
.season-header > div { padding: 0.9rem 1.25rem; font-size: 0.88rem; font-weight: 800; color: #fff; }
.season-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid #E2E8F0; }
.season-row:last-child { border-bottom: none; }
.season-row:nth-child(even) { background: #F8FAFB; }
.season-row > div { padding: 0.85rem 1.25rem; font-size: 0.86rem; color: #4A5568; line-height: 1.5; }
.season-row .season-label { font-weight: 700; color: #1E2A3A; border-right: 1px solid #E2E8F0; }
.season-good { color: #2E7D52; font-weight: 700; }
.season-note { color: #718096; font-size: 0.8rem; display: block; margin-top: 0.2rem; }

/* Tips cards */
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.tips-card { background: #fff; border-radius: 8px; padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.07); border-top: 4px solid #2B7BB9; }
.tips-card-title { font-size: 0.97rem; font-weight: 800; color: #1E2A3A; margin: 0 0 0.6rem; }
.tips-card p { font-size: 0.88rem; color: #4A5568; line-height: 1.65; margin: 0; }
.tips-card p strong { color: #1E2A3A; }

@media (max-width: 900px) {
  .page-template-page-heat-pump-solar-integration .how-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .season-header { display: none; }
  .season-row { grid-template-columns: 1fr; }
  .season-row .season-label { border-right: none; background: #EDF3F9; border-bottom: 1px solid #E2E8F0; padding: 0.5rem 1rem; }
}

/* Coastal Heat Pumps Central Auckland Page */
.page-template-page-coastal-heat-pumps-north-shore .page-hero-inner { display: block !important; }
.page-template-page-coastal-heat-pumps-north-shore .cta-banner { background: #1E2A3A; }

/* Damage cards */
.damage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.damage-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.damage-card-head { background: #2B7BB9; padding: 1rem 1.25rem; }
.damage-card-title { font-size: 1rem; font-weight: 800; color: #fff; margin: 0; }
.damage-card-body { padding: 1.25rem; }
.damage-card-body p { font-size: 0.88rem; color: #4A5568; line-height: 1.65; margin: 0; }
.damage-card-body p strong { color: #1E2A3A; }

/* Comparison table */
.comp-table { margin-top: 2rem; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.comp-header { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; background: #1E2A3A; }
.comp-header > div { padding: 0.9rem 1.25rem; font-size: 0.82rem; font-weight: 800; color: #fff; }
.comp-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; border-bottom: 1px solid #E2E8F0; }
.comp-row:last-child { border-bottom: none; }
.comp-row:nth-child(even) { background: #F8FAFB; }
.comp-row > div { padding: 0.85rem 1.25rem; font-size: 0.86rem; color: #4A5568; }
.comp-row .comp-label { font-weight: 700; color: #1E2A3A; border-right: 1px solid #E2E8F0; }
.comp-bad { color: #C53030; font-weight: 600; }
.comp-good { color: #2E7D52; font-weight: 700; }
.comp-best { color: #2B7BB9; font-weight: 700; }

/* Suburb tags (coastal page) */
.page-template-page-coastal-heat-pumps-north-shore .suburb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1.5rem; }
.page-template-page-coastal-heat-pumps-north-shore .suburb-tag { background: #fff; border: 1.5px solid #D1D9E0; border-radius: 6px; padding: 0.6rem 1rem; font-size: 0.86rem; font-weight: 700; color: #1E2A3A; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: border-color 0.2s, box-shadow 0.2s; }
.page-template-page-coastal-heat-pumps-north-shore .suburb-tag:hover { border-color: #2B7BB9; box-shadow: 0 2px 8px rgba(43,123,185,0.15); }
.suburb-tag-dot { width: 8px; height: 8px; background: #2B7BB9; border-radius: 50%; flex-shrink: 0; }
.page-template-page-coastal-heat-pumps-north-shore .suburb-tag.coastal { border-color: #2B7BB9; }
.page-template-page-coastal-heat-pumps-north-shore .suburb-tag.coastal .suburb-tag-dot { background: #F07D28; }

/* Tip box */
.tip-box { background: #EDF3F9; border-left: 4px solid #2B7BB9; border-radius: 0 8px 8px 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.tip-box-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #2B7BB9; margin-bottom: 0.4rem; }
.tip-box p { font-size: 0.9rem; color: #2D3748; line-height: 1.65; margin: 0; }
.tip-box p strong { color: #1E2A3A; }

@media (max-width: 900px) {
  .damage-grid { grid-template-columns: 1fr; }
  .page-template-page-coastal-heat-pumps-north-shore .suburb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .comp-header { display: none; }
  .comp-row { grid-template-columns: 1fr; }
  .comp-row .comp-label { border-right: none; background: #EDF3F9; border-bottom: 1px solid #E2E8F0; }
}

/* Heat Pumps Mt Eden Page */
.page-template-page-heat-pumps-takapuna h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-takapuna h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-takapuna p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-takapuna p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-takapuna .process-wrap { gap: 0; margin-top: 2.5rem; }

/* Section variants */
.section--grey { background: #F8F9FA; }
.section--blue { background: #EDF3F9; }
.section--dark { background: #1E2A3A; color: #fff; }

/* Button base + variants */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; transition: opacity .2s; text-decoration: none; }
.btn:hover { opacity: .88; text-decoration: none; }
.btn--primary { background: #F07D28; color: #fff; }
.btn--phone { background: #2B7BB9; color: #fff; }
.btn--outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn--phone-outline { background: #2B7BB9; color: #fff; font-weight: 800; }
.btn--phone-outline:hover { background: #1E5F8E; }

/* Hero (BEM) */
.hero__inner { max-width: 1200px; margin: 0 auto; }
.hero__badge { display: inline-block; background: #2B7BB9; color: #fff; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: 20px; margin-bottom: 1rem; }
.hero__lead { font-size: 0.95rem; font-weight: 600; color: #5A6472; max-width: 100%; line-height: 1.75; margin-bottom: 1.5rem; }
.hero__ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.5rem; }
.hero__trust-bar { background: #2B7BB9; width: 100%; padding: 1rem 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; align-items: center; justify-content: center; }
.hero__trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; font-weight: 700; color: #FFFFFF; }
.hero__trust-tick { width: 22px; height: 22px; background: #2E7D52; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero__trust-tick svg { width: 11px; height: 11px; }
.hero__local-note { border-left: 3px solid #2E7D52; background: #EAF4EE; padding: 0.85rem 1rem; border-radius: 0 6px 6px 0; max-width: 100%; margin-top: 0.5rem; }
.hero__local-note p { font-size: 0.82rem; color: #1E1E1E; line-height: 1.65; margin: 0; }
.hero__local-note strong { color: #2E7D52; }

/* Intro lead */
.intro-lead { font-size: 1.1rem; font-weight: 600; color: #2B7BB9; margin-bottom: 1.25rem; line-height: 1.5; }

/* Knowledge cards */
.knowledge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.knowledge-card { background: #fff; border-radius: 8px; padding: 28px 24px; border-top: 3px solid #2B7BB9; }
.knowledge-card h3 { font-size: 1rem; margin-bottom: 10px; }
.knowledge-card p { font-size: 14px; color: #4b5563; line-height: 1.7; margin: 0; }
.knowledge-card ul { list-style: disc; padding-left: 1.2rem; }
.knowledge-card li { font-size: 14px; color: #374151; line-height: 1.8; }

/* Benefits */
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.benefit { display: flex; gap: 16px; align-items: flex-start; background: #fff; border-radius: 8px; padding: 24px; border: 1px solid #e5e7eb; }
.benefit__tick { width: 28px; height: 28px; min-width: 28px; background: #2E7D52; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.benefit__tick svg { width: 14px; height: 14px; }
.benefit__body h3 { font-size: 0.95rem; margin-bottom: 6px; }
.benefit__body p { font-size: 13px; color: #4b5563; line-height: 1.65; margin: 0; }

/* Process steps (Takapuna BEM) */
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 0.75rem; position: relative; }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: 22px; left: calc(50% + 22px); right: calc(-50% + 22px); height: 2px; background: linear-gradient(90deg, #2B7BB9, #EDF3F9); }
.process-step__num { width: 44px; height: 44px; background: linear-gradient(135deg, #2B7BB9, #1E5F8E); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 800; color: #FFFFFF; margin-bottom: 1rem; box-shadow: 0 4px 12px rgba(43,123,185,0.35); flex-shrink: 0; position: relative; z-index: 1; font-family: 'Montserrat', sans-serif; }
.process-step__card { background: #FFFFFF; border: 1px solid #DDE3EA; border-radius: 12px; padding: 1.25rem; width: 100%; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.process-step__card h3 { font-size: 0.88rem; font-weight: 700; color: #1E1E1E; margin-bottom: 0.4rem; }
.process-step__card p { font-size: 0.75rem; color: #5A6472; font-weight: 600; line-height: 1.6; margin: 0; }
.process-step__time { display: inline-block; font-size: 0.62rem; font-weight: 800; color: #F07D28; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.6rem; background: #FEF3EB; padding: 0.2rem 0.6rem; border-radius: 20px; }

/* Suburb links */
.suburb-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.suburb-link { display: inline-block; padding: 10px 18px; background: #EDF3F9; border: 1px solid #2B7BB9; border-radius: 4px; font-size: 14px; font-weight: 600; color: #2B7BB9; }
.suburb-link:hover { background: #2B7BB9; color: #fff; text-decoration: none; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { color: #fff; margin-bottom: 12px; }
.final-cta p { color: rgba(255,255,255,.82); margin-bottom: 32px; font-size: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.final-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }

@media (max-width: 900px) {
  .page-template-page-heat-pumps-takapuna .process-wrap { grid-template-columns: 1fr 1fr; }
  .page-template-page-heat-pumps-takapuna .process-step:not(:last-child)::after { display: none; }
  .knowledge-grid { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-template-page-heat-pumps-takapuna .process-wrap { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
}

/* Heat Pumps Devonport Page */
.page-template-page-heat-pumps-devonport h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-devonport h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-devonport p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-devonport p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-devonport .process-wrap { gap: 0; margin-top: 2.5rem; }
@media (max-width: 900px) { .page-template-page-heat-pumps-devonport .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-devonport .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-devonport .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Milford Page */
.page-template-page-heat-pumps-milford h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-milford h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-milford p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-milford p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-milford .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-milford .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-milford .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-milford .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-milford .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-milford .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Northcote Point Page */
.page-template-page-heat-pumps-northcote-point h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-northcote-point h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-northcote-point p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-northcote-point p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-northcote-point .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-northcote-point .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-northcote-point .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-northcote-point .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-northcote-point .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-northcote-point .process-wrap { grid-template-columns: 1fr; } }

/* Section amber */
.section--amber { background: #FFF9E6; }

/* Button amber */
.btn--amber { background: #E6A800; color: #1E2A3A; font-weight: 800; }
.btn--amber:hover { background: #c99200; }

/* WKH grant box */
.wkh-box { background: #FFF9E6; border: 2px solid #E6A800; border-radius: 12px; padding: 2rem 2.5rem; margin-top: 2rem; }
.wkh-box__label { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #B07900; margin-bottom: 0.5rem; }
.wkh-box__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.wkh-stat { background: #fff; border-radius: 8px; padding: 1rem 1.25rem; border-left: 3px solid #E6A800; }
.wkh-stat__num { font-size: 1.5rem; font-weight: 800; color: #E6A800; line-height: 1; margin-bottom: 0.25rem; }
.wkh-stat__label { font-size: 0.75rem; font-weight: 600; color: #5A6472; }
.wkh-eligibility { font-size: 0.85rem; color: #374151; line-height: 1.7; margin-bottom: 1.5rem; }
@media (max-width: 600px) { .wkh-box__grid { grid-template-columns: 1fr; } }

/* Heat Pumps Northcote Page */
.page-template-page-heat-pumps-northcote h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-northcote h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-northcote .wkh-box h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1rem; }
.page-template-page-heat-pumps-northcote p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-northcote p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-northcote .wkh-eligibility { margin-bottom: 1.5rem; }
.page-template-page-heat-pumps-northcote .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-northcote .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-northcote .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-northcote .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-northcote .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-northcote .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Birkenhead Page */
.page-template-page-heat-pumps-birkenhead h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-birkenhead h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-birkenhead p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-birkenhead p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-birkenhead .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-birkenhead .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-birkenhead .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-birkenhead .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-birkenhead .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-birkenhead .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Beach Haven Page */
.page-template-page-heat-pumps-beach-haven h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-beach-haven h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-beach-haven .wkh-box h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1rem; }
.page-template-page-heat-pumps-beach-haven p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-beach-haven p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-beach-haven .wkh-eligibility { margin-bottom: 1.5rem; }
.page-template-page-heat-pumps-beach-haven .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-beach-haven .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-beach-haven .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-beach-haven .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-beach-haven .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-beach-haven .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Forrest Hill Page */
.page-template-page-heat-pumps-forrest-hill h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-forrest-hill h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-forrest-hill p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-forrest-hill p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-forrest-hill .section ul { list-style: disc; }
.page-template-page-heat-pumps-forrest-hill .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-forrest-hill .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-forrest-hill .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-forrest-hill .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-forrest-hill .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-forrest-hill .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Glenfield Page */
.page-template-page-heat-pumps-glenfield h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-glenfield h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-glenfield p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-glenfield p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-glenfield .section ul { list-style: disc; }
.page-template-page-heat-pumps-glenfield .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-glenfield .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-glenfield .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-glenfield .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-glenfield .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-glenfield .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Albany Page */
.page-template-page-heat-pumps-albany h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-albany h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-albany p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-albany p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-albany .section ul { list-style: disc; }
.page-template-page-heat-pumps-albany .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-albany .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-albany .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-albany .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-albany .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-albany .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Pinehill Page */
.page-template-page-heat-pumps-pinehill h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-pinehill h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-pinehill p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-pinehill p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-pinehill .section ul { list-style: disc; }
.page-template-page-heat-pumps-pinehill .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-pinehill .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-pinehill .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-pinehill .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-pinehill .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-pinehill .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Torbay Page */
.page-template-page-heat-pumps-torbay h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-torbay h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-torbay p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-torbay p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-torbay .section ul { list-style: disc; }
.page-template-page-heat-pumps-torbay .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-torbay .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-torbay .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-torbay .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-torbay .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-torbay .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Long Bay Page */
.page-template-page-heat-pumps-long-bay h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-long-bay h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-long-bay p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-long-bay p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-long-bay .section ul { list-style: disc; }
.page-template-page-heat-pumps-long-bay .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-long-bay .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-long-bay .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-long-bay .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-long-bay .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-long-bay .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Mairangi Bay Page */
.page-template-page-heat-pumps-mairangi-bay h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-mairangi-bay h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-mairangi-bay p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-mairangi-bay p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-mairangi-bay .section ul { list-style: disc; }
.page-template-page-heat-pumps-mairangi-bay .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-mairangi-bay .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-mairangi-bay .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-mairangi-bay .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-mairangi-bay .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-mairangi-bay .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Murrays Bay Page */
.page-template-page-heat-pumps-murrays-bay h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-murrays-bay h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-murrays-bay p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-murrays-bay p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-murrays-bay .section ul { list-style: disc; }
.page-template-page-heat-pumps-murrays-bay .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-murrays-bay .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-murrays-bay .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-murrays-bay .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-murrays-bay .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-murrays-bay .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Castor Bay Page */
.page-template-page-heat-pumps-castor-bay h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-castor-bay h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-castor-bay p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-castor-bay p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-castor-bay .section ul { list-style: disc; }
.page-template-page-heat-pumps-castor-bay .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-castor-bay .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-castor-bay .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-castor-bay .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-castor-bay .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-castor-bay .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Silverdale Page */
.page-template-page-heat-pumps-silverdale h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-silverdale h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-silverdale p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-silverdale p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-silverdale .section ul { list-style: disc; }
.page-template-page-heat-pumps-silverdale .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-silverdale .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-silverdale .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-silverdale .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-silverdale .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-silverdale .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Orewa Page */
.page-template-page-heat-pumps-orewa h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-orewa h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-orewa p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-orewa p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-orewa .section ul { list-style: disc; }
.page-template-page-heat-pumps-orewa .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-orewa .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-orewa .knowledge-card p { color: #374151; }
.page-template-page-heat-pumps-orewa .section--amber { background: #FFF9E6; }
.page-template-page-heat-pumps-orewa .btn--amber { background: #E6A800; color: #1E2A3A; font-weight: 800; }
.page-template-page-heat-pumps-orewa .btn--amber:hover { background: #c99200; }
.page-template-page-heat-pumps-orewa .wkh-box { background: #FFF9E6; border: 2px solid #E6A800; border-radius: 12px; padding: 2rem 2.5rem; margin-top: 2rem; }
.page-template-page-heat-pumps-orewa .wkh-box__label { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #B07900; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-orewa .wkh-box h3 { font-size: 1.3rem; font-weight: 800; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-orewa .wkh-box__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.page-template-page-heat-pumps-orewa .wkh-stat { background: #fff; border-radius: 8px; padding: 1rem 1.25rem; border-left: 3px solid #E6A800; }
.page-template-page-heat-pumps-orewa .wkh-stat__num { font-size: 1.5rem; font-weight: 800; color: #E6A800; line-height: 1; margin-bottom: 0.25rem; }
.page-template-page-heat-pumps-orewa .wkh-stat__label { font-size: 0.75rem; font-weight: 600; color: #5A6472; }
.page-template-page-heat-pumps-orewa .wkh-eligibility { font-size: 0.85rem; color: #374151; line-height: 1.7; margin-bottom: 1.5rem; }
@media (max-width: 900px) { .page-template-page-heat-pumps-orewa .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-orewa .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-orewa .process-wrap { grid-template-columns: 1fr; } .page-template-page-heat-pumps-orewa .wkh-box__grid { grid-template-columns: 1fr; } }

/* Heat Pumps Whangaparaoa Page */
.page-template-page-heat-pumps-whangaparaoa h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-whangaparaoa h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-whangaparaoa p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-whangaparaoa p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-whangaparaoa .section ul { list-style: disc; }
.page-template-page-heat-pumps-whangaparaoa .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-whangaparaoa .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-whangaparaoa .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-whangaparaoa .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-whangaparaoa .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-whangaparaoa .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pumps Manly Page */
.page-template-page-heat-pumps-manly h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pumps-manly h3 { font-size: 1.05rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.5rem; }
.page-template-page-heat-pumps-manly p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pumps-manly p:last-child { margin-bottom: 0; }
.page-template-page-heat-pumps-manly .section ul { list-style: disc; }
.page-template-page-heat-pumps-manly .process-wrap { gap: 0; margin-top: 2.5rem; }
.page-template-page-heat-pumps-manly .knowledge-card { background: #DDE6F0; }
.page-template-page-heat-pumps-manly .knowledge-card p { color: #374151; }
@media (max-width: 900px) { .page-template-page-heat-pumps-manly .process-wrap { grid-template-columns: 1fr 1fr; } .page-template-page-heat-pumps-manly .process-step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .page-template-page-heat-pumps-manly .process-wrap { grid-template-columns: 1fr; } }

/* Heat Pump FAQ Page */
.page-template-page-heat-pump-faq h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; line-height: 1.2; color: #1E2A3A; margin-bottom: 1rem; }
.page-template-page-heat-pump-faq h3 { font-size: 1rem; font-weight: 700; color: #1E2A3A; margin-bottom: 0.4rem; }
.page-template-page-heat-pump-faq p { margin-bottom: 1rem; color: #374151; }
.page-template-page-heat-pump-faq p:last-child { margin-bottom: 0; }
.page-template-page-heat-pump-faq .final-cta h2 { color: #fff; font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.page-template-page-heat-pump-faq .faq-category { margin-bottom: 3rem; }
.page-template-page-heat-pump-faq .faq-category__label { display: inline-block; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #2B7BB9; background: #EDF3F9; padding: 0.4rem 1rem; border-radius: 20px; margin-bottom: 1.25rem; }
.page-template-page-heat-pump-faq .faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid #e5e7eb; }
.page-template-page-heat-pump-faq .faq-item { border-bottom: 1px solid #e5e7eb; }
.page-template-page-heat-pump-faq .faq-item__q { width: 100%; background: none; border: none; text-align: left; padding: 1.25rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; font-family: "Montserrat", sans-serif; }
.page-template-page-heat-pump-faq .faq-item__q h3 { font-size: 0.95rem; font-weight: 700; color: #1E2A3A; margin: 0; line-height: 1.4; flex: 1; }
.page-template-page-heat-pump-faq .faq-item__icon { width: 20px; height: 20px; min-width: 20px; background: #2B7BB9; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; transition: transform 0.2s; }
.page-template-page-heat-pump-faq .faq-item__icon svg { width: 10px; height: 10px; }
.page-template-page-heat-pump-faq .faq-item.open .faq-item__icon { transform: rotate(45deg); }
.page-template-page-heat-pump-faq .faq-item__a { display: none; padding: 0 0 1.25rem; }
.page-template-page-heat-pump-faq .faq-item.open .faq-item__a { display: block; }
.page-template-page-heat-pump-faq .faq-item__a p { font-size: 0.9rem; color: #374151; line-height: 1.75; margin-bottom: 0.75rem; }
.page-template-page-heat-pump-faq .faq-item__a p:last-child { margin-bottom: 0; }
.page-template-page-heat-pump-faq .faq-item__a ul { font-size: 0.9rem; color: #374151; line-height: 1.8; padding-left: 1.25rem; margin-bottom: 0.75rem; list-style: disc; }
@media (max-width: 600px) { .page-template-page-heat-pump-faq .final-cta__buttons { flex-direction: column; } }

/* Privacy Policy Page */
.page-template-page-privacy-policy .content { padding: 64px 0; }
.page-template-page-privacy-policy .content h2 { font-size: 1.2rem; font-weight: 700; color: #1E2A3A; margin: 2rem 0 0.75rem; }
.page-template-page-privacy-policy .content h2:first-child { margin-top: 0; }
.page-template-page-privacy-policy .content p { font-size: 0.95rem; color: #374151; margin-bottom: 1rem; line-height: 1.75; }
.page-template-page-privacy-policy .content ul { font-size: 0.95rem; color: #374151; line-height: 1.8; padding-left: 1.4rem; margin-bottom: 1rem; list-style: disc; }
.page-template-page-privacy-policy .updated { font-size: 0.8rem; color: #9CA3AF; margin-bottom: 2rem; }

/* Terms and Conditions Page */
.page-template-page-terms-and-conditions .content { padding: 64px 0; }
.page-template-page-terms-and-conditions .content h2 { font-size: 1.2rem; font-weight: 700; color: #1E2A3A; margin: 2rem 0 0.75rem; }
.page-template-page-terms-and-conditions .content h2:first-child { margin-top: 0; }
.page-template-page-terms-and-conditions .content p { font-size: 0.95rem; color: #374151; margin-bottom: 1rem; line-height: 1.75; }
.page-template-page-terms-and-conditions .content ul { font-size: 0.95rem; color: #374151; line-height: 1.8; padding-left: 1.4rem; margin-bottom: 1rem; list-style: disc; }
.page-template-page-terms-and-conditions .updated { font-size: 0.8rem; color: #9CA3AF; margin-bottom: 2rem; }

/* Locations Page */
.page-template-page-locations .hero-trust { display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem; margin-top: 1rem; }
.page-template-page-locations .hero-trust .trust-item { display: flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; font-weight: 700; color: #2E7D52; }
.page-template-page-locations .hero-trust .trust-item::before { content: '✓'; font-weight: 800; }
.page-template-page-locations .stats-inner { max-width: 100%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
