/* ==============================================================================
   MY SOLAR FRIEND — PAGE-SPECIFIC STYLES (Layer 3)
   ==============================================================================

   Page-specific styles for the My Solar Friend page. Foundation, header,
   and footer styles live in their own files.

   This is one of the larger page-specific CSS files (466 page-specific
   rules) because the page has many distinct sections each with unique
   visual treatment — orphan-section, problems, process-section, sseg-section,
   pricing-section, locations, compare, why, warranty, faq, testimonials,
   suppliers, final-cta.

   WORDPRESS PLACEMENT
   -------------------
   wp-content/themes/synergy/assets/css/pages/msf.css

   ENQUEUE (in functions.php):

       if ( is_page( 'my-solar-friend' ) ) {
           wp_enqueue_style(
               'synergy-msf',
               get_template_directory_uri() . '/assets/css/pages/msf.css',
               array( 'synergy-foundation' ),
               filemtime( get_template_directory() . '/assets/css/pages/msf.css' )
           );
       }

   STRUCTURE
   ---------
   Sections covered:
     - Page hero
     - Stats ribbon
     - Orphan section (single highlighted intro block)
     - Problems section (pain points)
     - Process section (how it works)
     - SSEG section (Small-Scale Embedded Generation registration help)
     - Pricing section (4 packages)
     - Locations grid
     - Compare section
     - Why Synergy
     - Warranty terms
     - FAQ accordions
     - Testimonials
     - Suppliers strip
     - Final CTA + quote form

   PAGE-SPECIFIC COMPONENTS (Layer 3)
   ----------------------------------
     - .sseg-section + .waiver-active + .waiver-expired
                                  (date-aware content swap — see msf.js)
     - .process-section + step components
     - .pricing-section (different pattern from Tesla/Victron pricing grids)
     - .compare-section (Synergy vs DIY/competitors)
     - .warranty-section (detailed warranty table)
     - .suppliers (logos strip)
     - .orphan-section (single highlighted intro)

   LAYER 2 CANDIDATES
   ------------------
     - .page-hero, .stats-ribbon, .closing-cta (.final-cta on this page)
     - .faq components

   CI COMPLIANCE
   -------------
   All colours updated to CI specification on 12 May 2026.

   ============================================================================== */

/* ============ DESIGN TOKENS — Synergy Energy brand ============ */

*,*::before,*::after {box-sizing:border-box}

button {font:inherit;cursor:pointer;border:none;background:none}

ul,ol {padding:0 0 23px 1em;line-height:1.7}

h1,h2,h3,h4,h5,h6 {
  font-family:var(--font-display);
  color:var(--ink-heading);
  padding-bottom:10px;
  line-height:1.2;
  font-weight:500;
  margin:0;
}

h1 strong, h2 strong, h3 strong {font-weight:700;color:var(--brand-primary)}

/* ─── Layout containers ──────────────────────────────────────── */

.wrap {
  width:90%;
  max-width:var(--container);
  margin:0 auto;
  position:relative;
}

.container-narrow {max-width:960px;margin:0 auto;padding:0 24px}

/* ─── A11Y SKIP LINK ─────────────────────────────────────────── */

/* ============ TOP RATING BAR (matches GreenHouse pattern) ============ */

.rating-bar {
  background:var(--ink);
  color:#fff;
  padding:10px 0;
  font-size:13px;
  text-align:center;
  letter-spacing:.02em;
}

.rating-bar strong {color:#fff;font-weight:600}

.rating-bar .stars {color:var(--star);letter-spacing:1px;margin-right:8px}

.rating-bar .badge-lwg {
  background:var(--brand-primary);
  color:#fff;
  padding:3px 10px;
  border-radius:12px;
  font-weight:600;
  font-size:11px;
  margin-right:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.rating-bar a {color:#fff;text-decoration:underline}

.rating-bar a:hover {color:var(--brand-primary-light)}

/* ============ STICKY SITE HEADER (Commercial-style) ============ */

.logo-text {
  font-family:var(--font-display);
  font-weight:700;
  color:var(--brand-dark);
  font-size:1.35rem;
  letter-spacing:-0.01em;
  text-decoration:none;
}

.logo-text span {color:var(--brand-primary)}

/* ─── PRIMARY NAV ─────────────────────────────────────────── */

/* ============ BUTTONS ============ */

.btn:hover {
  background:#ffffff;
  color:var(--brand-blue)!important;
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}

.btn-ghost {
  background:transparent;
  color:#fff!important;
  border-color:#fff;
}

.btn-ghost:hover {
  background:#ffffff;
  color:var(--brand-blue)!important;
  transform:translateY(-2px);
}

.btn-green {
  background:var(--brand-primary);
  border-color:var(--brand-primary);
}

.btn-green:hover {
  background:#fff;
  color:var(--brand-primary)!important;
  border-color:var(--brand-primary);
}

/* ─── Pill / gradient primary button (Commercial-style) ──────── */

.btn-primary::after {
  content:'→';
  display:inline-block;
  transition:transform .25s ease;
}

.btn-primary:hover::after {transform:translateX(4px)}

/* ============ HERO (rotating 6-layer crossfade) ============ */

.page-hero {
  position:relative;
  background:var(--ink);
  color:#fff;
  padding:90px 0 100px;
  overflow:hidden;
  isolation:isolate;
}

/* 6-layer rotating background: 36s loop, 6s per image, ~1.2s crossfade */

.hero-bg {
  position:absolute;
  inset:0;
  background-position:var(--bg-pos, center center);
  background-size:cover;
  background-repeat:no-repeat;
  background-color:var(--ink);
  opacity:0;
  z-index:0;
  animation:hero-rotate 36s infinite;
  will-change:opacity;
}

.hero-bg-1 {animation-delay:0s}

.hero-bg-2 {animation-delay:-6s}

.hero-bg-3 {animation-delay:-12s}

.hero-bg-4 {animation-delay:-18s}

.hero-bg-5 {animation-delay:-24s}

.hero-bg-6 {animation-delay:-30s}

.hero-bg-1 {--bg-pos:center center}

.hero-bg-2 {--bg-pos:center center}

.hero-bg-3 {--bg-pos:center center}

.hero-bg-4 {--bg-pos:center center}

.hero-bg-5 {--bg-pos:center center}

.hero-bg-6 {--bg-pos:center center}

@media (max-width: 760px) {
  .hero-bg{background-position:center top}
  .hero-bg-1,.hero-bg-2,.hero-bg-3,
  .hero-bg-4,.hero-bg-5,.hero-bg-6{--bg-pos:center top}
}

@keyframes hero-rotate {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  13%  { opacity: 1; }
  16%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Olive-green gradient overlay sits ABOVE the rotating images */

.page-hero::before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(100deg,
    rgba(167,190,57,0.92) 0%,
    rgba(142,162,48,0.78) 40%,
    rgba(45,57,64,0.55) 100%);
  z-index:1;
  pointer-events:none;
}

.page-hero-inner {
  position:relative;
  z-index:2;
  max-width:var(--container);
  margin:0 auto;
  padding:0 30px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg{animation:none}
  .hero-bg-1{opacity:1}
}

/* Hero typography */

.page-hero h1 {
  color:#fff;
  max-width:880px;
  margin-bottom:18px;
  font-family:var(--font-display);
  font-size:clamp(2rem, 4.2vw, 3.25rem);
  font-weight:800;
  letter-spacing:-.02em;
  line-height:1.15;
  padding-bottom:0;
}

.page-hero h1 strong {
  color:var(--accent-warn);
  font-weight:800;
}

.page-hero .hero-tagline {
  font-family:var(--font-display);
  font-size:clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight:600;
  line-height:1.4;
  color:rgba(255,255,255,0.95);
  max-width:760px;
  margin:0 0 8px;
  padding-bottom:0;
  letter-spacing:-.005em;
}

.hero-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  background:var(--brand-primary);
  border:1px solid rgba(255,255,255,0.3);
  color:#fff;
  padding:8px 16px;
  border-radius:30px;
  margin-bottom:22px;
  font-weight:700;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

/* Hero CTA group: white-fill primary + white-outline secondary */

.hero-ctas {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}

.btn-hero-primary {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  color:var(--brand-primary-dark)!important;
  border:2px solid #fff;
  padding:14px 30px;
  border-radius:999px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.98rem;
  letter-spacing:.02em;
  text-decoration:none;
  transition:all .25s ease;
  box-shadow:0 6px 20px rgba(0,0,0,0.18);
}

.btn-hero-primary::after {
  content:"→";
  transition:transform .25s ease;
}

.btn-hero-primary:hover {
  color:var(--brand-primary-dark)!important;
  transform:translateY(-2px);
  box-shadow:0 10px 28px rgba(0,0,0,0.25);
}

.btn-hero-primary:hover::after {transform:translateX(4px)}

.btn-hero-secondary {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:transparent;
  color:#fff!important;
  border:2px solid rgba(255,255,255,0.7);
  padding:14px 30px;
  border-radius:999px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:.98rem;
  letter-spacing:.02em;
  text-decoration:none;
  transition:all .25s ease;
}

.btn-hero-secondary:hover {
  color:var(--brand-primary-dark)!important;
  background:#fff;
  border-color:#fff;
  transform:translateY(-2px);
}

.btn-hero-secondary svg {
  width:16px;height:16px;
  flex-shrink:0;
}

@media (max-width: 760px) {
  .page-hero{padding:70px 0 80px}
  .hero-ctas{flex-direction:column;align-items:stretch}
  .btn-hero-primary,
  .btn-hero-secondary{justify-content:center}
}

/* ─── Legacy .hero alias (kept for safety / inbound links) ─── */

.hero {position:relative;color:#fff}

.hero-eyebrow {
  display:inline-block;
  background:rgba(255,255,255,.18);
  color:#fff;
  padding:6px 16px;
  border-radius:20px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:18px;
  border:1px solid rgba(255,255,255,.35);
  backdrop-filter:blur(6px);
}

/* ============ STATS RIBBON (under hero) ============ */

.stats-ribbon {
  background:var(--brand-gradient);
  color:#fff;
  padding:44px 0;
  position:relative;
}

.stats-ribbon::after {
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06), transparent 60%);
  pointer-events:none;
}

.stats-inner {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
  text-align:center;
  max-width:var(--container);
  margin:0 auto;
  padding:0 30px;
  position:relative;
  z-index:1;
}

.stat-item {
  padding:0 8px;
  position:relative;
}

.stat-item:not(:last-child)::after {
  content:"";
  position:absolute;
  right:-12px;
  top:20%;
  bottom:20%;
  width:1px;
  background:rgba(255,255,255,0.18);
}

.stat-num {
  font-family:var(--font-display);
  font-size:clamp(1.5rem, 2.4vw, 2rem);
  font-weight:800;
  color:#fff;
  line-height:1.1;
  margin-bottom:6px;
  letter-spacing:-.01em;
  white-space:nowrap;
}

.stat-lbl {
  font-size:.85rem;
  color:rgba(255,255,255,0.88);
  font-family:var(--font-body);
  font-weight:500;
  line-height:1.4;
  letter-spacing:.01em;
}

@media (max-width: 760px) {
  .stats-ribbon{padding:36px 0}
  .stats-inner{grid-template-columns:repeat(2, 1fr); gap:24px}
  .stat-item:nth-child(2)::after{display:none}
}

@media (max-width: 480px) {
  .stats-inner{grid-template-columns:1fr; gap:20px}
  .stat-item::after{display:none!important}
  .stat-item{padding:12px 0; border-bottom:1px solid rgba(255,255,255,0.15)}
  .stat-item:last-child{border-bottom:0}
}

/* ============ SECTION BASE ============ */

section {padding:80px 0 50px}

@media(max-width:900px) {section{padding:50px 0}}

.sec-eyebrow {
  display:inline-block;
  font-family:var(--font-display);
  font-weight:600;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.15em;
  color:var(--brand-primary);
  margin-bottom:14px;
}

/* ─── Commercial-style shared scaffolding (alongside .sec-eyebrow) ─── */

.section-alt {background:var(--bg-soft)}

/* Eskom waiver date toggle helpers (controlled by JS) */

.waiver-expired {display:none}

.section-header {
  text-align:center;
  max-width:760px;
  margin:0 auto 56px;
}

.section-header.left {text-align:left;margin-left:0}

.section-eyebrow {
  display:inline-block;
  color:var(--brand-primary);
  font-family:var(--font-display);
  font-weight:600;
  font-size:.82rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.section-header h2 {
  font-family:var(--font-display);
  color:var(--ink);
  font-size:clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.2;
  margin:0 0 .6em;
  padding-bottom:0;
}

.section-lede {
  font-size:1.05rem;
  color:var(--muted);
  margin-top:10px;
  line-height:1.65;
  padding-bottom:0;
}

/* Inline callout box — used inside intro and other content sections */

.callout {
  background:var(--bg-panel);
  border-left:4px solid var(--brand-primary);
  padding:22px 26px;
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  margin:28px 0;
}

.callout h3 {
  margin-bottom:8px;
  font-size:1.05rem;
  color:var(--brand-primary-dark);
  padding-bottom:0;
}

.callout p {margin:0;font-size:.95rem;padding-bottom:0}

/* ============ ORPHANED SYSTEM DEFINITION ============ */

.orphan-section {
  background:var(--bg-soft);
  padding:80px 0;
}

.orphan-head {
  text-align:center;
  max-width:760px;
  margin:0 auto 48px;
}

.orphan-head h2 {
  max-width:780px;
  margin:0 auto;
  padding-bottom:0;
  font-size:clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.2;
}

.orphan-head h2 strong {color:var(--brand-primary)}

.orphan-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  align-items:start;
}

@media(max-width:900px) {.orphan-row{grid-template-columns:1fr;gap:24px}}

.orphan-definition {
  background:#fff;
  border-radius:var(--radius-md);
  padding:36px 36px;
  box-shadow:var(--shadow-sm);
  border-left:4px solid var(--brand-primary);
  transition:transform .25s ease, box-shadow .25s ease;
}

.orphan-definition:hover {
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}

.orphan-definition h3 {
  color:var(--brand-primary-dark);
  font-size:.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:14px;
  padding-bottom:0;
  font-family:var(--font-display);
}

.orphan-definition p {
  color:var(--ink);
  font-size:1rem;
  line-height:1.65;
  padding:0;
  margin:0 0 16px;
}

.orphan-definition p:first-of-type {
  font-size:1.05rem;
  font-weight:500;
}

.orphan-definition p:last-child {margin-bottom:0}

.orphan-definition p strong {color:var(--brand-primary-dark);font-weight:700}

.orphan-definition p.orphan-context {
  font-size:.9rem;
  color:var(--muted);
  border-top:1px solid var(--line);
  padding-top:14px;
  margin-top:18px;
}

.orphan-causes {
  background:#fff;
  border-radius:var(--radius-md);
  padding:36px 36px;
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease;
}

.orphan-causes:hover {
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}

.orphan-causes h3 {
  font-size:1.05rem;
  font-weight:700;
  color:var(--ink);
  margin-bottom:18px;
  padding-bottom:0;
  font-family:var(--font-display);
}

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

.orphan-causes li {
  position:relative;
  padding-left:30px;
  margin-bottom:14px;
  line-height:1.65;
  font-size:.95rem;
  color:var(--ink-soft);
}

.orphan-causes li:last-child {margin-bottom:0}

.orphan-causes li::before {
  content:'';
  position:absolute;
  left:0;top:7px;
  width:18px;height:18px;
  border:2px solid var(--brand-primary);
  border-radius:50%;
  background:#fff;
}

.orphan-causes li::after {
  content:'';
  position:absolute;
  left:5px;top:12px;
  width:8px;height:8px;
  background:var(--brand-primary);
  border-radius:50%;
}

/* ============ INTRO ROW ============ */

.intro-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}

@media(max-width:900px) {.intro-row{grid-template-columns:1fr;gap:36px}}

.intro-copy h2 {
  margin-bottom:20px;
  font-size:clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.2;
}

.intro-copy h2 strong {color:var(--brand-primary)}

.intro-copy p {line-height:1.7em;padding-bottom:1em;font-size:.98rem}

.intro-copy p strong {font-weight:700;color:var(--ink)}

.intro-copy p.intro-lede {
  font-size:1.05rem;
  line-height:1.65;
  color:var(--ink);
  font-weight:500;
  padding-left:20px;
  border-left:3px solid var(--brand-primary);
  margin-bottom:28px;
  background:var(--bg-soft);
  padding:18px 22px;
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
}

.intro-copy p.intro-lede strong {color:var(--brand-primary-dark)}

.intro-video {
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-md);
  aspect-ratio:16/10;
  background:linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  position:relative;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:transform .35s ease, box-shadow .35s ease;
}

.intro-video:hover {
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(45,57,64,0.18);
}

.intro-video::before {
  content:'';
  position:absolute;
  inset:0;
  background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="8" height="8" patternUnits="userSpaceOnUse"><rect width="3" height="3" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
  opacity:.5;
}

.intro-video::after {
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 45%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events:none;
}

.play-btn {
  width:84px;height:84px;border-radius:50%;
  background:rgba(255,255,255,.95);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  position:relative;z-index:1;
  transition:transform .3s ease;
}

.intro-video:hover .play-btn {transform:scale(1.08)}

.play-btn::after {
  content:'';
  border-style:solid;
  border-width:13px 0 13px 21px;
  border-color:transparent transparent transparent var(--brand-primary);
  margin-left:6px;
}

.play-caption {
  position:absolute;
  bottom:20px;left:24px;
  color:#fff;font-family:var(--font-display);
  font-weight:600;font-size:13px;
  letter-spacing:.08em;text-transform:uppercase;
  z-index:1;
  display:flex;align-items:center;gap:8px;
}

.play-caption::before {
  content:'';
  width:6px;height:6px;border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 3px rgba(255,255,255,0.25);
}

/* ============ BLUE CTA BAND ============ */

.cta-band {
  background:linear-gradient(95deg, var(--brand-blue), var(--brand-blue-dark));
  color:#fff;
  border-radius:var(--radius-md);
  overflow:hidden;
  padding:24px 36px;
  margin:30px auto 50px;
  max-width:820px;
  box-shadow:var(--shadow-md);
  display:grid;
  grid-template-columns:2fr 1fr;
  align-items:center;
  gap:24px;
  position:relative;
}

.cta-band::before {
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 85% 50%, rgba(255,255,255,0.10), transparent 55%);
  pointer-events:none;
}

.cta-band h3 {
  color:#fff;
  font-family:var(--font-display);
  font-weight:600;
  font-size:1rem;
  margin:0;
  padding:0;
  line-height:1.4;
  position:relative;
}

.cta-band .btn {
  background:#fff;
  color:var(--brand-blue)!important;
  border-color:#fff;
  position:relative;
  z-index:1;
}

.cta-band .btn:hover {
  background:transparent;
  color:#fff!important;
  border-color:#fff;
}

@media(max-width:720px) {
  .cta-band{grid-template-columns:1fr;text-align:center;padding:24px 28px}
  .cta-band .btn{justify-content:center}
}

/* ============ PROBLEMS SECTION ============ */

.problems {background:var(--bg-soft)}

.problems-head {
  text-align:center;
  max-width:760px;
  margin:0 auto 48px;
}

.problems-head h2 {
  font-size:clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.2;
  padding-bottom:14px;
}

.problems-head h2 strong {color:var(--brand-primary)}

.problems-head p {
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.65;
  padding-bottom:0;
  margin:0;
}

.problem-row {
  background:#ffffff;
  border-radius:var(--radius-md);
  padding:36px 44px;
  margin-bottom:20px;
  box-shadow:var(--shadow-sm);
  border-top:3px solid var(--brand-primary-light);
  transition:transform .25s ease, box-shadow .25s ease;
}

.problem-row:hover {
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}

.problem-row:nth-child(2) {border-top-color:var(--brand-primary)}

.problem-row:nth-child(3) {border-top-color:var(--brand-primary-dark)}

.problem-row h3 {
  font-size:1.25rem;
  font-weight:700;
  margin-bottom:18px;
  padding-bottom:0;
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--ink);
  font-family:var(--font-display);
}

.problem-row h3 .chip {
  display:inline-flex;
  align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:50%;
  font-family:var(--font-display);
  font-size:.85rem;
  font-weight:700;
  color:#fff;
  background:var(--brand-primary-light);
  flex-shrink:0;
  box-shadow:0 2px 8px rgba(167,190,57,0.25);
}

.problem-row:nth-child(2) h3 .chip {
  background:var(--brand-primary);
  box-shadow:0 2px 8px rgba(167,190,57,0.35);
}

.problem-row:nth-child(3) h3 .chip {
  background:var(--brand-primary-dark);
  box-shadow:0 2px 8px rgba(142,162,48,0.35);
}

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

.problem-row li {
  padding:14px 0 14px 32px;
  position:relative;
  line-height:1.65;
  border-bottom:1px solid var(--line);
  margin:0;
  font-size:.95rem;
  color:var(--ink-soft);
}

.problem-row li:last-child {border-bottom:none}

.problem-row li::before {
  content:'';
  position:absolute;
  left:6px;top:21px;
  width:8px;height:8px;
  border-radius:50%;
  background:var(--accent-warn);
  opacity:.85;
  box-shadow:0 0 0 3px rgba(217,119,6,0.15);
}

.problem-row li strong {color:var(--ink);font-weight:700}

@media(max-width:900px) {.problem-row{padding:28px 24px}}

/* ============ PROCESS (6-phase, detailed) ============ */

.process-section {background:#fff}

.process-intro {
  text-align:center;
  max-width:760px;
  margin:0 auto 48px;
}

.process-intro h2 {
  padding-bottom:14px;
  font-size:clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.2;
}

.process-intro h2 strong {color:var(--brand-primary)}

.process-intro p {
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.65;
  padding-bottom:0;
  margin:0;
}

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

@media(max-width:1024px) {.process-grid{grid-template-columns:repeat(2,1fr)}}

@media(max-width:680px) {.process-grid{grid-template-columns:1fr;gap:20px}}

.process-card {
  background:#fff;
  border-radius:var(--radius-md);
  padding:32px 28px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--line);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.process-card:hover {
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:var(--brand-primary-light);
}

.process-card-num {
  position:absolute;
  top:18px;right:24px;
  font-family:var(--font-display);
  font-size:3rem;
  font-weight:800;
  line-height:1;
  color:rgba(167,190,57,0.10);
  letter-spacing:-.04em;
  pointer-events:none;
}

.process-card-icon {
  width:64px;height:64px;
  background:var(--brand-gradient);
  border-radius:var(--radius-sm);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
  box-shadow:0 6px 16px rgba(167,190,57,0.25);
  position:relative;
  z-index:1;
  transition:transform .3s ease;
}

.process-card:hover .process-card-icon {
  transform:scale(1.05) rotate(-3deg);
}

.process-card-icon svg {width:28px;height:28px;color:#fff}

.process-card h3 {
  font-size:1.1rem;
  font-weight:700;
  margin-bottom:10px;
  padding-bottom:0;
  position:relative;
  z-index:1;
  color:var(--ink);
  font-family:var(--font-display);
  line-height:1.3;
}

.process-card p {
  font-size:.92rem;
  line-height:1.6;
  margin:0 0 14px;
  padding:0;
  color:var(--ink-soft);
}

.process-card ul {
  list-style:none;
  padding:0;
  margin:0;
  font-size:.86rem;
}

.process-card li {
  position:relative;
  padding:6px 0 6px 20px;
  margin-bottom:0;
  line-height:1.5;
  color:var(--ink-soft);
  border-top:1px solid var(--line);
}

.process-card li:first-child {border-top:0;padding-top:10px}

.process-card li::before {
  content:'›';
  position:absolute;
  left:4px;top:6px;
  color:var(--brand-primary);
  font-weight:700;
  font-size:18px;
  line-height:1;
}

/* ============ SSEG URGENCY ============ */

.sseg-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(167,190,57,0.08), transparent 50%),
    linear-gradient(135deg, #fafbf6 0%, #f4f6ec 100%);
  padding:90px 0;
  position:relative;
}

.sseg-row {
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:48px;
  align-items:start;
}

@media(max-width:900px) {.sseg-row{grid-template-columns:1fr;gap:32px}}

.sseg-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--accent-warn);
  color:#fff;
  padding:7px 16px;
  border-radius:999px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:18px;
  box-shadow:0 4px 12px rgba(217,119,6,0.25);
}

.sseg-badge::before {
  content:'';
  width:8px;height:8px;border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 3px rgba(255,255,255,0.4);
  animation:sseg-pulse 2s ease-in-out infinite;
}

@keyframes sseg-pulse {
  0%,100%{box-shadow:0 0 0 3px rgba(255,255,255,0.4)}
  50%{box-shadow:0 0 0 5px rgba(255,255,255,0.15)}
}

@media (prefers-reduced-motion: reduce) {
  .sseg-badge::before{animation:none}
}

.sseg-copy h2 {
  font-size:clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.2;
  padding-bottom:14px;
  margin-bottom:6px;
}

.sseg-copy h2 strong {color:var(--brand-primary)}

.sseg-copy p {
  font-size:.98rem;
  line-height:1.7;
  padding-bottom:1em;
  color:var(--ink-soft);
}

.sseg-copy p strong {color:var(--ink);font-weight:700}

.sseg-copy p.sseg-footnote {
  font-size:.84rem;
  color:var(--muted);
  font-style:italic;
  border-top:1px solid var(--line);
  padding-top:14px;
  margin-top:6px;
}

/* ─── DUAL PRICE PANEL — the hero of this section ─── */

.sseg-prices {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:22px 0 26px;
}

@media(max-width:520px) {.sseg-prices{grid-template-columns:1fr}}

.sseg-price {
  background:#fff;
  border-radius:var(--radius-md);
  padding:22px 22px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--line);
  position:relative;
  transition:transform .25s ease, box-shadow .25s ease;
}

.sseg-price:hover {
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
}

.sseg-price-savings {
  border-top:3px solid var(--success);
}

.sseg-price-service {
  border-top:3px solid var(--brand-primary);
}

.sseg-price-tag {
  font-family:var(--font-display);
  font-weight:700;
  font-size:.66rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--muted);
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:6px;
}

.sseg-price-tag::before {
  content:'';
  width:6px;height:6px;border-radius:50%;
  background:var(--success);
}

.sseg-price-service .sseg-price-tag::before {background:var(--brand-primary)}

.sseg-price-num {
  font-family:var(--font-display);
  font-weight:800;
  font-size:clamp(1.7rem, 3vw, 2.2rem);
  color:var(--ink);
  line-height:1;
  letter-spacing:-.02em;
  margin-bottom:6px;
  display:flex;
  align-items:baseline;
  gap:4px;
}

.sseg-price-savings .sseg-price-num {color:var(--success)}

.sseg-price-service .sseg-price-num {color:var(--brand-primary-dark)}

.sseg-price-num .from-tag {
  font-size:.62rem;
  font-weight:600;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.14em;
}

.sseg-price-desc {
  font-size:.82rem;
  color:var(--ink-soft);
  line-height:1.4;
  margin:0;
  padding:0;
}

.sseg-cta {margin-top:8px}

/* ─── INCLUDED CHECKLIST CARD ─── */

.sseg-card {
  background:#fff;
  border-radius:var(--radius-md);
  padding:32px 32px 26px;
  box-shadow:var(--shadow-md);
  border:1px solid var(--line);
  border-top:4px solid var(--brand-primary);
  position:relative;
}

.sseg-card-head {
  border-bottom:1px solid var(--line);
  padding-bottom:18px;
  margin-bottom:18px;
}

.sseg-card-tag {
  font-family:var(--font-display);
  font-weight:700;
  font-size:.7rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--brand-primary-dark);
  margin-bottom:6px;
}

.sseg-card h3 {
  font-size:1.2rem;
  font-weight:700;
  margin:0;
  padding-bottom:0;
  font-family:var(--font-display);
  color:var(--ink);
  display:flex;
  align-items:baseline;
  gap:8px;
  flex-wrap:wrap;
}

.sseg-card h3 .price-pill {
  display:inline-flex;
  align-items:center;
  background:var(--brand-gradient);
  color:#fff;
  padding:3px 12px;
  border-radius:999px;
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.01em;
  box-shadow:0 2px 8px rgba(167,190,57,0.25);
}

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

.sseg-card li {
  padding:10px 0 10px 32px;
  position:relative;
  line-height:1.55;
  border-bottom:1px solid var(--line);
  margin-bottom:0;
  font-size:.9rem;
  color:var(--ink-soft);
}

.sseg-card li:last-of-type {border-bottom:none}

.sseg-card li::before {
  content:'✓';
  position:absolute;
  left:0;top:11px;
  width:20px;height:20px;
  background:var(--brand-primary);
  color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:.7rem;font-weight:700;
  box-shadow:0 2px 4px rgba(167,190,57,0.25);
}

.sseg-card li strong {color:var(--ink);font-weight:700}

.sseg-card-foot {
  font-size:.78rem;
  color:var(--muted);
  margin-top:16px;
  padding:12px 14px;
  background:var(--bg-soft);
  border-radius:var(--radius-sm);
  line-height:1.5;
}

/* ============ PRICING TRANSPARENCY ============ */

.pricing-section {background:var(--bg-soft)}

.pricing-head {
  text-align:center;
  max-width:760px;
  margin:0 auto 56px;
}

.pricing-head h2 {
  font-size:clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.2;
  padding-bottom:14px;
}

.pricing-head h2 strong {color:var(--brand-primary)}

.pricing-head p {
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.65;
  padding-bottom:0;
  margin:0;
}

.pricing-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:stretch;
}

@media(max-width:900px) {.pricing-grid{grid-template-columns:1fr;gap:24px}}

.price-card {
  background:#fff;
  border-radius:var(--radius-md);
  padding:36px 30px 30px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--line);
  position:relative;
  display:flex;
  flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.price-card:hover {
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:var(--brand-primary-light);
}

.price-card.featured {
  border:1px solid var(--brand-primary);
  border-top:4px solid var(--brand-primary);
  box-shadow:0 12px 32px rgba(167,190,57,0.18);
  transform:scale(1.03);
  z-index:1;
}

.price-card.featured:hover {
  transform:scale(1.03) translateY(-4px);
  box-shadow:0 18px 40px rgba(167,190,57,0.25);
}

@media(max-width:900px) {
  .price-card.featured{transform:none}
  .price-card.featured:hover{transform:translateY(-4px)}
}

.price-card.featured::before {
  content:'Most popular';
  position:absolute;
  top:-13px;left:50%;
  transform:translateX(-50%);
  background:var(--brand-primary);
  color:#fff;
  font-family:var(--font-display);
  font-size:.68rem;
  font-weight:700;
  padding:5px 14px;
  border-radius:999px;
  text-transform:uppercase;
  letter-spacing:.12em;
  box-shadow:0 4px 12px rgba(167,190,57,0.35);
  white-space:nowrap;
}

.price-tier {
  font-family:var(--font-display);
  font-weight:700;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--ink);
  margin-bottom:8px;
}

.price-tier.featured {color:var(--brand-primary)}

.price-size {
  display:inline-block;
  background:rgba(167,190,57,0.08);
  color:var(--brand-primary-dark);
  font-family:var(--font-body);
  font-weight:600;
  font-size:.72rem;
  padding:4px 10px;
  border-radius:999px;
  margin-bottom:18px;
  letter-spacing:.02em;
}

.price-card:not(.featured) .price-size {
  background:var(--bg-soft);
  color:var(--muted);
}

.price-amount {
  font-family:var(--font-display);
  font-weight:800;
  color:var(--ink);
  line-height:1;
  margin-bottom:8px;
  display:flex;
  align-items:baseline;
  gap:8px;
  flex-wrap:wrap;
  letter-spacing:-.02em;
}

.price-amount .from-label {
  font-size:.78rem;
  font-weight:600;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.12em;
}

.price-amount .num {
  font-size:2.4rem;
  color:var(--ink);
}

.price-card.featured .price-amount .num {color:var(--brand-primary-dark)}

.price-amount .unit {
  font-size:.85rem;
  color:var(--muted);
  font-weight:500;
}

.price-card p.sub {
  font-size:.88rem;
  color:var(--ink-soft);
  padding-bottom:22px;
  margin:0;
  line-height:1.55;
  border-bottom:1px solid var(--line);
  margin-bottom:20px;
}

.price-card ul {
  list-style:none;
  padding:0;
  margin:0 0 24px;
  flex-grow:1;
}

.price-card li {
  position:relative;
  padding:9px 0 9px 26px;
  font-size:.88rem;
  line-height:1.5;
  color:var(--ink-soft);
  margin:0;
}

.price-card li:not(:last-child) {border-bottom:1px dashed var(--line)}

.price-card li::before {
  content:'';
  position:absolute;
  left:2px;top:13px;
  width:14px;height:14px;
  border-radius:50%;
  background:rgba(167,190,57,0.12);
}

.price-card li::after {
  content:'';
  position:absolute;
  left:5px;top:16px;
  width:5px;height:8px;
  border:solid var(--brand-primary);
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}

.price-card .btn {
  width:100%;
  text-align:center;
  justify-content:center;
  padding:13px;
  font-size:.92rem;
}

.price-footnote {
  text-align:center;
  margin-top:28px;
  font-size:.82rem;
  color:var(--muted);
  font-style:italic;
  max-width:880px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.6;
  padding-bottom:0;
}

/* ============ WHY CHOOSE ============ */

.why-section {
  background:var(--bg-soft);
  text-align:center;
}

.why-head {
  text-align:center;
  max-width:720px;
  margin:0 auto 56px;
}

.why-section h2 {
  font-size:clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.2;
  margin-bottom:14px;
  padding-bottom:0;
}

.why-section h2 strong {color:var(--brand-primary)}

.why-head p {
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.65;
  padding-bottom:0;
  margin:0;
}

.why-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:0;
}

@media(max-width:900px) {.why-grid{grid-template-columns:1fr;gap:20px}}

.why-card {
  background:#fff;
  border-radius:var(--radius-md);
  padding:36px 28px;
  text-align:center;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--line);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.why-card:hover {
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:var(--brand-primary-light);
}

.why-icon {
  width:84px;height:84px;
  margin:0 auto 22px;
  background:var(--brand-gradient);
  border-radius:var(--radius-md);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 22px rgba(167,190,57,0.28);
  transition:transform .3s ease;
}

.why-card:hover .why-icon {
  transform:scale(1.05) rotate(-3deg);
}

.why-icon svg {width:38px;height:38px;color:#fff}

.why-card h3 {
  font-size:1.1rem;
  font-weight:700;
  margin-bottom:12px;
  padding-bottom:0;
  color:var(--ink);
  font-family:var(--font-display);
}

.why-card p {
  max-width:320px;
  margin:0 auto;
  line-height:1.65;
  font-size:.92rem;
  color:var(--ink-soft);
  padding-bottom:0;
}

/* ============ COMPETITOR COMPARISON ============ */

.compare-section {background:#fff}

.compare-section .sec-head {
  text-align:center;
  max-width:780px;
  margin:0 auto 48px;
}

.compare-section .sec-head h2 {
  font-size:clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.2;
  padding-bottom:14px;
}

.compare-section .sec-head h2 strong {color:var(--brand-primary)}

.compare-section .sec-head p {
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.65;
  padding-bottom:0;
  margin:0;
}

.compare-table {
  background:#fff;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-md);
  border:1px solid var(--line);
  max-width:1080px;
  margin:0 auto;
}

.compare-table table {
  width:100%;
  border-collapse:collapse;
  font-size:.92rem;
}

.compare-table thead th {
  padding:18px 22px;
  background:var(--ink);
  color:#fff;
  font-family:var(--font-display);
  font-weight:600;
  text-align:left;
  font-size:.88rem;
  letter-spacing:.02em;
}

.compare-table thead th.highlight {
  background:var(--brand-gradient);
  position:relative;
  font-weight:700;
}

.compare-table thead th.highlight::after {
  content:'★';
  position:absolute;
  right:18px;top:50%;
  transform:translateY(-50%);
  color:rgba(255,255,255,0.85);
  font-size:1rem;
}

.compare-table tbody tr {
  transition:background .15s ease;
}

.compare-table tbody tr:nth-child(even) {background:var(--bg-soft)}

.compare-table tbody tr:hover {background:rgba(167,190,57,0.04)}

.compare-table td {
  padding:14px 22px;
  border-bottom:1px solid var(--line);
  line-height:1.55;
  color:var(--ink-soft);
  vertical-align:top;
}

.compare-table td.label {
  font-weight:600;
  color:var(--ink);
  font-family:var(--font-display);
  font-size:.9rem;
}

.compare-table td.highlight {
  background:rgba(167,190,57,0.06);
  font-weight:500;
  color:var(--ink);
  border-left:3px solid var(--brand-primary);
}

.compare-table tbody tr:nth-child(even) td.highlight {
  background:rgba(167,190,57,0.10);
}

.compare-table tr:last-child td {border-bottom:none}

.compare-yes {
  color:var(--brand-primary-dark);
  font-weight:700;
  margin-right:4px;
}

.compare-partial {
  color:var(--accent-warn);
  font-style:italic;
  font-size:.86rem;
}

.compare-no {
  color:var(--danger);
  opacity:.7;
  margin-right:4px;
  font-weight:700;
}

.compare-strong {color:var(--brand-primary-dark);font-weight:700}

@media(max-width:720px) {
  .compare-table td,
  .compare-table th{
    padding:10px 12px;
    font-size:.78rem;
  }
  .compare-table td.label{font-size:.78rem}
}

/* ============ SSEG LOCATION GRID (Pretoria/CPT/Polokwane SEO boost) ============ */

.locations-section {background:var(--bg-soft)}

.locations-head {
  text-align:center;
  max-width:760px;
  margin:0 auto 48px;
}

.locations-head h2 {
  font-size:clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.2;
  padding-bottom:14px;
}

.locations-head h2 strong {color:var(--brand-primary)}

.locations-head p {
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.65;
  padding-bottom:0;
  margin:0;
}

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

@media(max-width:900px) {.locations-grid{grid-template-columns:1fr;gap:20px}}

.location-card {
  background:#fff;
  border-radius:var(--radius-md);
  padding:32px 28px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--line);
  border-top:3px solid var(--brand-primary-light);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position:relative;
}

.location-card:hover {
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:var(--brand-primary);
}

.location-card:nth-child(2) {border-top-color:var(--brand-primary)}

.location-card:nth-child(3) {border-top-color:var(--brand-primary-dark)}

.location-card .loc-pin {
  width:42px;height:42px;
  background:var(--brand-gradient);
  border-radius:var(--radius-sm);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
  box-shadow:0 4px 12px rgba(167,190,57,0.25);
}

.location-card .loc-pin svg {width:22px;height:22px;color:#fff}

.location-card .loc-label {
  font-family:var(--font-display);
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--brand-primary-dark);
  margin-bottom:6px;
}

.location-card h3 {
  font-size:1.15rem;
  font-weight:700;
  color:var(--ink);
  margin-bottom:12px;
  padding-bottom:0;
  font-family:var(--font-display);
  line-height:1.3;
}

.location-card p {
  font-size:.92rem;
  line-height:1.6;
  padding-bottom:16px;
  margin:0;
  color:var(--ink-soft);
  border-bottom:1px solid var(--line);
  margin-bottom:14px;
}

.location-card ul {
  list-style:none;
  padding:0;margin:0;
  font-size:.85rem;
  color:var(--ink-soft);
}

.location-card li {
  padding:6px 0 6px 20px;
  margin:0;
  position:relative;
  line-height:1.5;
}

.location-card li::before {
  content:'';
  position:absolute;
  left:2px;top:13px;
  width:6px;height:6px;
  border-radius:50%;
  background:var(--brand-primary);
}

/* ============ (TERMS APPLY) INLINE LINK ============ */

.terms-link {
  font-size:.78em;
  font-weight:500;
  font-style:italic;
  color:inherit;
  opacity:.65;
  text-decoration:underline;
  text-decoration-style:dotted;
  text-underline-offset:2px;
  margin-left:4px;
  transition:opacity .2s ease;
  white-space:nowrap;
}

.terms-link:hover {
  opacity:1;
  color:var(--brand-primary-dark);
}

.terms-link::before {content:'('}

.terms-link::after {content:')'}

/* ============ WARRANTY TERMS SECTION ============ */

.warranty-section {
  background:#fff;
  padding:90px 0;
  border-top:1px solid var(--line);
}

.warranty-head {
  text-align:center;
  max-width:780px;
  margin:0 auto 48px;
}

.warranty-head h2 {
  font-size:clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.2;
  padding-bottom:14px;
}

.warranty-head h2 strong {color:var(--brand-primary)}

.warranty-head p {
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.65;
  padding-bottom:0;
  margin:0;
}

.warranty-head .lead-promise {
  display:inline-block;
  background:var(--bg-soft);
  border-left:3px solid var(--brand-primary);
  padding:12px 18px;
  margin-top:18px;
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  font-family:var(--font-display);
  font-weight:600;
  font-size:.95rem;
  color:var(--ink);
  text-align:left;
}

.warranty-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-bottom:32px;
}

@media(max-width:980px) {.warranty-grid{grid-template-columns:1fr;gap:20px}}

.warranty-card {
  background:#fff;
  border-radius:var(--radius-md);
  padding:30px 28px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--line);
  border-top:4px solid var(--success);
  transition:transform .25s ease, box-shadow .25s ease;
}

.warranty-card:hover {
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
}

.warranty-card.not-covered {border-top-color:var(--danger)}

.warranty-card.conditions {border-top-color:var(--brand-primary)}

.warranty-card-head {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
}

.warranty-icon {
  width:42px;height:42px;
  border-radius:var(--radius-sm);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  font-size:1.1rem;
  font-weight:700;
}

.warranty-card .warranty-icon {
  background:rgba(39,174,96,0.12);
  color:var(--success);
}

.warranty-card.not-covered .warranty-icon {
  background:rgba(192,57,43,0.10);
  color:var(--danger);
}

.warranty-card.conditions .warranty-icon {
  background:rgba(167,190,57,0.12);
  color:var(--brand-primary-dark);
}

.warranty-card-head h3 {
  font-size:1.1rem;
  font-weight:700;
  margin:0;
  padding-bottom:0;
  font-family:var(--font-display);
  color:var(--ink);
  line-height:1.3;
}

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

.warranty-card li {
  padding:9px 0 9px 22px;
  position:relative;
  line-height:1.55;
  font-size:.9rem;
  color:var(--ink-soft);
  margin:0;
  border-bottom:1px dashed var(--line);
}

.warranty-card li:last-child {border-bottom:none}

.warranty-card li::before {
  position:absolute;
  left:0;top:11px;
  width:14px;height:14px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:.6rem;
  font-weight:700;
  line-height:1;
}

.warranty-card li::before {
  content:'✓';
  background:rgba(39,174,96,0.15);
  color:var(--success);
  padding-top:1px;
}

.warranty-card.not-covered li::before {
  content:'✕';
  background:rgba(192,57,43,0.10);
  color:var(--danger);
}

.warranty-card.conditions li::before {
  content:'•';
  background:rgba(167,190,57,0.15);
  color:var(--brand-primary-dark);
  padding-top:0;
}

.warranty-card li strong {color:var(--ink);font-weight:700}

.warranty-claims {
  background:var(--bg-soft);
  border-radius:var(--radius-md);
  padding:28px 32px;
  margin-top:8px;
  border-left:4px solid var(--brand-primary);
}

.warranty-claims h3 {
  font-size:1.05rem;
  font-weight:700;
  margin-bottom:10px;
  padding-bottom:0;
  color:var(--ink);
  font-family:var(--font-display);
}

.warranty-claims p {
  font-size:.92rem;
  line-height:1.6;
  color:var(--ink-soft);
  margin:0 0 8px;
  padding:0;
}

.warranty-claims p:last-child {margin-bottom:0}

.warranty-claims a {color:var(--brand-primary-dark);font-weight:600;text-decoration:underline;text-underline-offset:2px}

.warranty-claims a:hover {color:var(--brand-primary)}

.warranty-disclaimer {
  margin-top:26px;
  padding:18px 22px;
  background:var(--bg-warm);
  border-radius:var(--radius-sm);
  font-size:.82rem;
  color:var(--muted);
  line-height:1.6;
  text-align:center;
  font-style:italic;
}

/* ============ FAQ ============ */

.faq-section {
  background:var(--bg-soft);
  padding:80px 0;
}

.faq-head {
  text-align:center;
  max-width:760px;
  margin:0 auto 48px;
}

.faq-head h2 {
  font-size:clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.2;
  padding-bottom:14px;
}

.faq-head h2 strong {font-weight:700;color:var(--brand-primary)}

.faq-head p {
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.65;
  padding-bottom:0;
  margin:0;
}

.faq-list {max-width:840px;margin:0 auto}

.faq-item {
  background:#fff;
  border-radius:var(--radius-md);
  margin-bottom:12px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--line);
  overflow:hidden;
  transition:box-shadow .25s ease, border-color .25s ease;
}

.faq-item:hover {
  border-color:var(--brand-primary-light);
}

.faq-item[open] {
  box-shadow:var(--shadow-md);
  border-color:var(--brand-primary-light);
}

.faq-item summary {
  padding:20px 26px;
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:.98rem;
  color:var(--ink);
  transition:color .25s ease;
  line-height:1.4;
}

.faq-item summary::-webkit-details-marker {display:none}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  color:var(--brand-primary);
  outline:none;
}

.faq-item[open] summary {
  color:var(--brand-primary-dark);
  border-bottom:1px solid var(--line);
}

.faq-item .plus {
  flex-shrink:0;
  width:28px;height:28px;
  position:relative;
  background:rgba(167,190,57,0.10);
  border-radius:50%;
  color:var(--brand-primary);
  transition:background .25s ease, transform .25s ease;
}

.faq-item .plus::before,
.faq-item .plus::after {
  content:'';
  position:absolute;
  background:currentColor;
  top:50%;left:50%;
  transition:transform .3s ease, opacity .3s ease;
  border-radius:1px;
}

.faq-item .plus::before {width:12px;height:2px;transform:translate(-50%,-50%)}

.faq-item .plus::after {width:2px;height:12px;transform:translate(-50%,-50%)}

.faq-item summary:hover .plus {
  background:rgba(167,190,57,0.16);
  transform:scale(1.05);
}

.faq-item[open] .plus {
  background:var(--brand-primary);
  color:#fff;
}

.faq-item[open] .plus::after {
  transform:translate(-50%,-50%) rotate(90deg);
  opacity:0;
}

.faq-item .answer {
  padding:18px 26px 22px;
  color:var(--ink-soft);
  font-size:.94rem;
  line-height:1.7;
}

.faq-item .answer p {
  margin:0 0 .8em;
  padding:0;
}

.faq-item .answer p:last-child {margin-bottom:0}

.faq-item .answer a {
  color:var(--brand-primary-dark);
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:2px;
}

.faq-item .answer a:hover {color:var(--brand-primary)}

.faq-item .answer strong {color:var(--ink);font-weight:700}

/* ============ TESTIMONIALS (rescue-specific) ============ */

.testimonials {
  background:#fff;
  padding:80px 0;
  text-align:center;
}

.testimonials-head {
  text-align:center;
  max-width:760px;
  margin:0 auto 48px;
}

.testimonials-head h2 {
  font-size:clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.2;
  margin:0 0 12px;
  padding-bottom:0;
}

.testimonials-head h2 strong {font-weight:700;color:var(--brand-primary)}

.testimonials-head .sub-line {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--bg-soft);
  padding:8px 16px;
  border-radius:999px;
  color:var(--ink);
  font-size:.9rem;
  margin-top:10px;
  font-weight:500;
}

.testimonials-head .stars-inline {color:var(--star);font-size:1rem;letter-spacing:1px}

.testimonials-head .rating-inline {
  font-weight:700;
  color:var(--ink);
  font-family:var(--font-display);
}

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

@media(max-width:900px) {.testim-grid{grid-template-columns:1fr;gap:20px}}

.testim-card {
  background:#fff;
  border-radius:var(--radius-md);
  padding:30px 28px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--line);
  text-align:left;
  display:flex;
  flex-direction:column;
  gap:12px;
  border-top:3px solid var(--brand-primary);
  position:relative;
  transition:transform .25s ease, box-shadow .25s ease;
}

.testim-card:hover {
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}

.testim-card::before {
  content:'\201C';
  position:absolute;
  top:14px;right:24px;
  font-family:Georgia, serif;
  font-size:4rem;
  color:rgba(167,190,57,0.10);
  line-height:.8;
  pointer-events:none;
  font-weight:700;
}

.testim-context {
  font-family:var(--font-display);
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--brand-primary-dark);
  margin-bottom:2px;
  display:inline-block;
  background:rgba(167,190,57,0.08);
  padding:4px 10px;
  border-radius:999px;
  align-self:flex-start;
  position:relative;
  z-index:1;
}

.testim-stars {
  color:var(--star);
  font-size:.95rem;
  letter-spacing:2px;
  position:relative;
  z-index:1;
}

.testim-card p {
  font-size:.92rem;
  line-height:1.65;
  padding:0;
  margin:0;
  color:var(--ink-soft);
  position:relative;
  z-index:1;
}

.testim-meta {
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:auto;
  padding-top:16px;
  border-top:1px solid var(--line);
}

.testim-avatar {
  width:40px;height:40px;
  border-radius:50%;
  background:var(--brand-gradient);
  color:#fff;
  display:flex;
  align-items:center;justify-content:center;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.85rem;
  flex-shrink:0;
  box-shadow:0 2px 8px rgba(167,190,57,0.25);
}

.testim-author {
  font-family:var(--font-display);
  font-weight:600;
  font-size:.9rem;
  color:var(--ink);
  line-height:1.3;
}

.testim-source {
  font-size:.78rem;
  color:var(--muted);
  display:flex;
  align-items:center;
  gap:4px;
}

.testim-source::before {
  content:'';
  width:5px;height:5px;
  border-radius:50%;
  background:var(--brand-primary);
}

/* ============ SUPPLIERS ============ */

.suppliers {
  padding:80px 0;
  text-align:center;
  background:var(--bg-soft);
  border-top:1px solid var(--line);
}

.suppliers-head {
  text-align:center;
  max-width:760px;
  margin:0 auto 40px;
}

.suppliers-head h2 {
  font-size:clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.2;
  margin-bottom:0;
  padding-bottom:0;
}

.suppliers-head h2 strong {color:var(--brand-primary)}

.supplier-strip {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px 32px;
  flex-wrap:wrap;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:28px 32px;
  box-shadow:var(--shadow-sm);
  max-width:1080px;
  margin:0 auto;
}

.supplier-logo {
  font-family:var(--font-display);
  font-weight:700;
  color:var(--muted);
  font-size:.95rem;
  letter-spacing:-.01em;
  transition:color .25s ease, transform .25s ease;
  position:relative;
  cursor:default;
  padding:6px 0;
}

.supplier-logo:hover {
  color:var(--brand-primary-dark);
  transform:translateY(-1px);
}

.supplier-logo:not(:last-child)::after {
  content:'';
  position:absolute;
  right:-16px;top:50%;
  transform:translateY(-50%);
  width:4px;height:4px;
  background:var(--line);
  border-radius:50%;
}

/* ─── PV GreenCard accreditation panel ─── */

.greencard {
  margin-top:48px;
  display:flex;
  align-items:center;
  gap:24px;
  max-width:680px;
  margin-left:auto;margin-right:auto;
  padding:24px 28px;
  background:#fff;
  border:1px solid var(--line);
  border-left:4px solid var(--brand-primary);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-sm);
  text-align:left;
}

@media(max-width:600px) {
  .greencard{flex-direction:column;text-align:center;align-items:center;border-left:0;border-top:4px solid var(--brand-primary)}
}

.greencard svg {
  flex-shrink:0;
  width:90px;height:60px;
  display:block;
}

.greencard p {
  font-size:.88rem;
  line-height:1.6;
  color:var(--ink-soft);
  margin:0;
  padding:0;
}

.greencard p strong {color:var(--ink);font-weight:700}

/* ─── Warranty-claims disclaimer panel (under brand strip) ─── */

.warranty-claims-info {
  max-width:1080px;
  margin:32px auto 0;
  background:#fff;
  border:1px solid var(--line);
  border-left:4px solid var(--accent-warn);
  border-radius:var(--radius-md);
  padding:28px 32px 24px;
  box-shadow:var(--shadow-sm);
  text-align:left;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:22px;
  align-items:start;
}

@media(max-width:680px) {
  .warranty-claims-info{
    grid-template-columns:1fr;
    gap:16px;
    padding:24px 22px 20px;
  }
}

.warranty-claims-info-icon {
  flex-shrink:0;
  width:46px;height:46px;
  border-radius:var(--radius-sm);
  background:rgba(217,119,6,0.10);
  color:var(--accent-warn);
  display:flex;
  align-items:center;
  justify-content:center;
}

.warranty-claims-info-icon svg {
  width:24px;height:24px;
  display:block;
}

.warranty-claims-info-title {
  font-family:var(--font-display);
  font-weight:700;
  font-size:.95rem;
  color:var(--ink);
  margin:0 0 12px;
  padding-bottom:0;
  letter-spacing:-.005em;
}

.warranty-claims-info-body p {
  font-size:.9rem;
  line-height:1.65;
  color:var(--ink-soft);
  margin:0 0 10px;
  padding:0;
}

.warranty-claims-info-body p:last-of-type {margin-bottom:0}

.warranty-claims-info-body p strong {color:var(--ink);font-weight:700}

.warranty-claims-info-body .lead-phrase {
  display:inline-block;
  background:rgba(167,190,57,0.10);
  color:var(--brand-primary-dark);
  font-family:var(--font-display);
  font-weight:700;
  font-size:.7rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:2px 8px;
  border-radius:4px;
  margin-right:6px;
  vertical-align:1px;
}

.warranty-claims-info-body .lead-phrase.warn {
  background:rgba(217,119,6,0.12);
  color:#a85d05;
}

.warranty-claims-info-body .lead-phrase.commit {
  background:rgba(39,174,96,0.12);
  color:#1f7a44;
}

.warranty-claims-info-link {
  display:inline-flex;
  align-items:center;
  gap:4px;
  margin-top:12px;
  font-size:.85rem;
  font-weight:600;
  color:var(--brand-primary-dark);
  text-decoration:none;
  border-bottom:1px dotted var(--brand-primary);
  padding-bottom:1px;
}

.warranty-claims-info-link::after {
  content:'→';
  transition:transform .25s ease;
}

.warranty-claims-info-link:hover {
  color:var(--brand-primary);
  border-bottom-color:var(--brand-primary-dark);
}

.warranty-claims-info-link:hover::after {transform:translateX(3px)}

/* ============ FINAL CTA ============ */

.final-cta {
  background:var(--brand-gradient);
  color:#fff;
  text-align:center;
  padding:90px 0;
  position:relative;
  overflow:hidden;
  isolation:isolate;
}

.final-cta::before {
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.10), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08), transparent 50%);
  pointer-events:none;
  z-index:-1;
}

.final-cta-eyebrow {
  display:inline-block;
  background:rgba(255,255,255,0.18);
  border:1px solid rgba(255,255,255,0.32);
  color:#fff;
  padding:6px 16px;
  border-radius:999px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:.7rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-bottom:18px;
  backdrop-filter:blur(6px);
}

.final-cta h2 {
  color:#fff;
  font-family:var(--font-display);
  font-size:clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight:800;
  letter-spacing:-.02em;
  line-height:1.2;
  max-width:820px;
  margin:0 auto 16px;
  padding-bottom:0;
}

.final-cta p {
  color:rgba(255,255,255,0.92);
  max-width:680px;
  margin:0 auto 32px;
  padding-bottom:0;
  font-size:1.05rem;
  line-height:1.65;
}

.final-cta-buttons {
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

.final-cta .btn-final-primary {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  color:var(--brand-primary-dark)!important;
  border:2px solid #fff;
  padding:14px 32px;
  border-radius:999px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.98rem;
  letter-spacing:.02em;
  text-decoration:none;
  transition:all .25s ease;
  box-shadow:0 8px 22px rgba(0,0,0,0.18);
}

.final-cta .btn-final-primary::after {
  content:'→';
  display:inline-block;
  transition:transform .25s ease;
}

.final-cta .btn-final-primary:hover {
  color:var(--brand-primary-dark)!important;
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(0,0,0,0.25);
}

.final-cta .btn-final-primary:hover::after {transform:translateX(4px)}

.final-cta .btn-final-secondary {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:transparent;
  color:#fff!important;
  border:2px solid rgba(255,255,255,0.7);
  padding:14px 32px;
  border-radius:999px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:.98rem;
  letter-spacing:.02em;
  text-decoration:none;
  transition:all .25s ease;
}

.final-cta .btn-final-secondary:hover {
  color:var(--brand-primary-dark)!important;
  background:#fff;
  border-color:#fff;
  transform:translateY(-2px);
}

.final-cta .btn-final-secondary svg {
  width:16px;height:16px;flex-shrink:0;
}

@media(max-width:600px) {
  .final-cta-buttons{flex-direction:column;align-items:stretch}
  .final-cta .btn-final-primary,
  .final-cta .btn-final-secondary{justify-content:center}
}

/* ============ QUOTE FORM (inside Final CTA) ============ */

.final-cta .quote-form-wrap,
.final-cta .quote-form-success {text-align:left}

.quote-form-wrap {
  max-width:780px;
  margin:36px auto 0;
  background:#fff;
  border-radius:14px;
  padding:38px 40px 32px;
  box-shadow:
    0 24px 60px rgba(20,28,32,0.32),
    0 8px 18px rgba(20,28,32,0.18);
  color:var(--ink-soft);
  position:relative;
  z-index:2;
}

.quote-form-header {
  text-align:center;
  margin-bottom:28px;
}

.quote-form-header .quote-eyebrow {
  display:inline-block;
  font-family:var(--font-display);
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--brand-primary);
  margin-bottom:10px;
}

.quote-form-header h3 {
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:700;
  color:var(--ink);
  margin:0 0 8px;
  padding-bottom:0;
  line-height:1.25;
}

.quote-form-header p {
  font-size:.92rem;
  color:var(--ink-soft);
  margin:0;
  padding-bottom:0;
}

/* Field grid */

.quote-form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.quote-form-grid .full-row {grid-column:1/-1}

@media(max-width:600px) {
  .quote-form-wrap{padding:28px 22px 24px}
  .quote-form-grid{grid-template-columns:1fr;gap:14px}
}

.quote-field {
  display:flex;
  flex-direction:column;
  gap:6px;
}

.quote-field label {
  font-family:var(--font-display);
  font-size:.78rem;
  font-weight:600;
  color:var(--ink);
  letter-spacing:.02em;
}

.quote-field label .req {
  color:var(--brand-primary);
  margin-left:2px;
}

.quote-field input[type="text"],
.quote-field input[type="tel"],
.quote-field input[type="email"],
.quote-field textarea {
  width:100%;
  padding:11px 14px;
  font:inherit;
  font-size:.92rem;
  color:var(--ink);
  background:var(--bg-panel);
  border:1.5px solid var(--line);
  border-radius:7px;
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
  font-family:var(--font-body);
}

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

.quote-field input:focus,
.quote-field textarea:focus {
  outline:none;
  border-color:var(--brand-primary);
  background:#fff;
  box-shadow:0 0 0 3px rgba(167,190,57,0.15);
}

.quote-field input[aria-invalid="true"],
.quote-field textarea[aria-invalid="true"] {
  border-color:var(--danger);
  background:#fdf3f1;
}

.quote-field .field-error {
  font-size:.76rem;
  color:var(--danger);
  margin-top:2px;
  min-height:16px;
  font-family:var(--font-body);
  font-weight:500;
}

/* Radio pill groups */

.quote-radio-group {
  display:flex;
  flex-direction:column;
  gap:8px;
}

.quote-radio-group .quote-radio-options {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.quote-radio-options label {
  flex:1 1 auto;
  min-width:140px;
  padding:10px 14px;
  background:var(--bg-panel);
  border:1.5px solid var(--line);
  border-radius:7px;
  cursor:pointer;
  font-family:var(--font-body);
  font-size:.84rem;
  font-weight:600;
  color:var(--ink-soft);
  text-align:center;
  transition:all .2s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  letter-spacing:.01em;
  position:relative;
}

.quote-radio-options input[type="radio"] {
  position:absolute;
  opacity:0;
  width:0;height:0;
}

.quote-radio-options label:has(input[type="radio"]:checked) {
  background:linear-gradient(135deg, rgba(180,200,87,0.18) 0%, rgba(167,190,57,0.12) 100%);
  border-color:var(--brand-primary);
  color:var(--brand-primary-dark);
  box-shadow:0 0 0 1px var(--brand-primary);
}

.quote-radio-options label:hover {
  border-color:var(--brand-primary);
  color:var(--ink);
}

.quote-radio-options input[type="radio"]:focus-visible + .radio-pill {
  outline:2px solid var(--brand-primary);
  outline-offset:3px;
  border-radius:5px;
}

/* Consent */

.quote-consent {
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:8px;
  font-size:.84rem;
  color:var(--ink-soft);
  line-height:1.55;
  cursor:pointer;
}

.quote-consent input[type="checkbox"] {
  width:17px;height:17px;
  accent-color:var(--brand-primary);
  margin-top:2px;
  flex-shrink:0;
}

.quote-consent[aria-invalid="true"] {color:var(--danger)}

.quote-consent a {
  color:var(--brand-primary-dark);
  font-weight:600;
}

/* Submit + trust line */

.quote-form-footer {
  margin-top:24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.quote-submit {
  background:linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-primary) 50%, var(--brand-primary-dark) 100%);
  color:#fff;
  border:0;
  padding:14px 38px;
  border-radius:8px;
  font-family:var(--font-display);
  font-size:.98rem;
  font-weight:700;
  letter-spacing:.02em;
  cursor:pointer;
  box-shadow:
    0 6px 18px rgba(167,190,57,0.28),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition:transform .18s ease, box-shadow .18s ease;
  min-width:240px;
}

.quote-submit:hover:not(:disabled) {
  transform:translateY(-2px);
  box-shadow:
    0 10px 24px rgba(167,190,57,0.4),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.quote-submit:disabled {
  opacity:.6;
  cursor:not-allowed;
}

.quote-form-trust {
  font-size:.78rem;
  color:var(--muted);
  margin:0;
  text-align:center;
  padding-bottom:0;
}

/* Honeypot — hidden from real users; bots fill it */

.quote-honeypot {
  position:absolute;
  left:-9999px;
  width:1px;height:1px;
  overflow:hidden;
}

/* Form-wide error banner */

.quote-form-error {
  display:none;
  background:#fdf3f1;
  border:1px solid #f5c6c1;
  color:var(--danger);
  padding:12px 16px;
  border-radius:7px;
  font-size:.85rem;
  margin-bottom:18px;
  text-align:center;
}

.quote-form-error.is-visible {display:block}

/* Success state */

.quote-form-success {
  display:none;
  text-align:center;
  padding:50px 30px;
}

.quote-form-success.is-visible {display:block}

.quote-form-success .success-icon {
  width:72px;height:72px;
  margin:0 auto 22px;
  background:linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-primary) 100%);
  border-radius:50%;
  display:flex;
  align-items:center;justify-content:center;
  box-shadow:0 8px 22px rgba(167,190,57,0.35);
}

.quote-form-success .success-icon svg {
  width:36px;height:36px;
  stroke:#fff;
  fill:none;
  stroke-width:2.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.quote-form-success h3 {
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:700;
  color:var(--ink);
  margin:0 0 12px;
  padding-bottom:0;
}

.quote-form-success p {
  font-size:.95rem;
  color:var(--ink-soft);
  max-width:460px;
  margin:0 auto 8px;
  line-height:1.7;
  padding-bottom:0;
}

.quote-form-success .success-meta {
  font-size:.84rem;
  color:var(--ink-soft);
  margin-top:18px;
}

.quote-form-success .success-meta a {
  color:var(--brand-primary-dark);
  font-weight:600;
}

/* "Prefer to talk now?" footer line under the form */

.quote-alt {
  text-align:center;
  margin:28px 0 0;
  color:rgba(255,255,255,0.85);
  font-size:.88rem;
  position:relative;
  z-index:2;
  padding-bottom:0;
}

.quote-alt strong {color:#fff}

.quote-alt a {
  color:#fff;
  font-weight:700;
  border-bottom:1px dashed rgba(255,255,255,0.5);
  padding-bottom:1px;
  text-decoration:none;
}

.quote-alt a:hover {
  border-bottom-color:#fff;
  color:#fff;
}

/* ============ FOOTER ============ */

footer {
  background:#1a2024;
  color:#cfd4d7;
  padding:72px 0 24px;
  font-size:.9rem;
  line-height:1.65;
  position:relative;
}

footer::before {
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:var(--brand-gradient);
}

.foot-grid {
  display:grid;
  grid-template-columns:1.3fr 1fr 1.2fr;
  gap:48px;
  padding-bottom:40px;
}

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

.foot-logo {
  font-family:var(--font-display);
  font-weight:700;
  color:#fff;
  font-size:1.4rem;
  margin-bottom:16px;
  display:inline-block;
  letter-spacing:-.01em;
}

.foot-logo span {color:var(--brand-primary-light)}

.foot-brand p {
  font-size:.88rem;
  line-height:1.7;
  color:#9aa5ad;
  padding-bottom:0;
  max-width:380px;
}

.foot-col h3 {
  color:#fff;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.95rem;
  margin-bottom:20px;
  padding-bottom:10px;
  letter-spacing:.02em;
  border-bottom:2px solid var(--brand-primary);
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:.08em;
}

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

.foot-col li {margin-bottom:9px}

.foot-col a {
  color:#9aa5ad;
  font-size:.88rem;
  transition:color .25s ease, padding-left .25s ease;
  display:inline-block;
}

.foot-col a:hover {
  color:var(--brand-primary-light);
  padding-left:4px;
}

.foot-col p {
  color:#9aa5ad;
  font-size:.88rem;
  padding:0;
  margin-bottom:6px;
}

.foot-col p strong {color:#fff;font-weight:600}

.foot-branch {
  margin-bottom:22px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.foot-branch:last-child {border-bottom:0;margin-bottom:0;padding-bottom:0}

.foot-branch h4 {
  color:var(--brand-primary-light);
  font-family:var(--font-display);
  font-weight:700;
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-bottom:8px;
  padding:0;
}

.foot-enquire {
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:var(--brand-primary-light);
  font-weight:600;
  font-size:.82rem;
  margin-top:6px;
  text-decoration:none;
  transition:color .25s ease;
}

.foot-enquire::after {
  content:'→';
  margin-left:2px;
  transition:transform .25s ease;
  display:inline-block;
}

.foot-enquire:hover {color:#fff}

.foot-enquire:hover::after {transform:translateX(4px)}

/* ─── Accreditation logos row ──────────────────────────── */

.foot-accreditations {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:22px 36px;
  margin:0;
  padding:24px 0;
  border-top:1px solid rgba(255,255,255,0.10);
}

.foot-accreditations a {
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  line-height:0;
}

.foot-accreditations img {
  max-height:38px;
  width:auto;
  display:block;
  filter:brightness(0) invert(1) opacity(0.72);
  transition:filter .25s ease, transform .25s ease;
}

.foot-accreditations a:hover img {
  filter:brightness(0) invert(1) opacity(1);
  transform:translateY(-1px);
}

.foot-accreditations .foot-accred-tesla img {max-height:30px}

@media(max-width:600px) {
  .foot-accreditations{gap:18px 24px;padding:20px 0}
  .foot-accreditations img{max-height:32px}
  .foot-accreditations .foot-accred-tesla img{max-height:26px}
}

.foot-bottom {
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:22px;
  margin-top:8px;
  text-align:center;
  font-size:.78rem;
  color:#6e7780;
}

.foot-bottom a {
  color:var(--brand-primary-light);
  transition:color .25s ease;
}

.foot-bottom a:hover {color:#fff}

/* ============ FLOATING MOBILE CTA ============ */

.float-cta {
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:90;
  background:var(--brand-primary);
  color:#fff;
  padding:14px 22px;
  border-radius:999px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  text-decoration:none;
  box-shadow:0 8px 24px rgba(0,0,0,0.25);
  display:none;
  align-items:center;
  gap:6px;
  transition:background .2s ease, transform .2s ease, box-shadow .2s ease;
  opacity:0;
  pointer-events:none;
}

.float-cta::after {
  content:'→';
  transition:transform .25s ease;
}

.float-cta.visible {
  opacity:1;
  pointer-events:auto;
}

.float-cta:hover {
  background:var(--brand-primary-dark);
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(0,0,0,0.3);
}

.float-cta:hover::after {transform:translateX(3px)}

/* Show only on mobile/tablet, after scroll */

@media (max-width: 980px) {
  .float-cta.visible{display:inline-flex}
}

@media (prefers-reduced-motion: reduce) {
  .float-cta{transition:none}
}

/* ==============================================================================
   CLIENT REVIEWS & TESTIMONIALS SECTION
   Added 2026-05-27 — standardised site-wide reviews block.
   Defensive reset of legacy .testimonials section styling that conflicted
   with the new card grid.
   ============================================================================== */

section.testimonials {
  background: #f7f8f4;
  padding: 64px 0;
}
section.testimonials .testim-grid,
section.testimonials .testim-card,
section.testimonials .testim-context,
section.testimonials .testim-stars,
section.testimonials .testim-meta,
section.testimonials .testim-avatar,
section.testimonials .testim-author,
section.testimonials .testim-source,
section.testimonials .sub-line,
section.testimonials .stars-inline,
section.testimonials .rating-inline {
  all: unset;
}

.reviews-aggregate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 auto 40px;
  text-align: center;
}

.reviews-aggregate-stars {
  font-size: 2rem;
  color: #f5b800;
  letter-spacing: 4px;
}

.reviews-aggregate-rating {
  font-size: 1.3rem;
  color: #1a2429;
}

.reviews-aggregate-rating strong {
  font-size: 2rem;
  color: #a7be39;
}

.reviews-aggregate-count {
  color: #4a5568;
  font-size: 0.95rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #f5b800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-style: italic;
  color: #1a2429;
  line-height: 1.55;
  margin: 0 0 20px;
  flex-grow: 1;
  font-size: 0.95rem;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}

.review-author {
  color: #1a2429;
  font-size: 1rem;
}

.review-tag {
  display: inline-block;
  background: #a7be39;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 3px;
  align-self: flex-start;
}

.review-date {
  color: #888;
  font-size: 0.85rem;
}

.reviews-cta {
  text-align: center;
  margin-top: 30px;
  color: #4a5568;
}

.reviews-cta a {
  color: #a7be39;
  font-weight: 700;
  text-decoration: none;
}

.reviews-cta a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================================================================
   ADDITIONAL OVERRIDES — neutralise dark footer bleed on .testimonials section
   ============================================================================== */

section.testimonials .review-card {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 28px 24px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
}

section.testimonials .review-card footer,
section.testimonials .review-meta {
  background: transparent !important;
  color: inherit !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  border-top: 1px solid #f0f0f0 !important;
  border-bottom: none !important;
  padding: 16px 0 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

section.testimonials .review-author {
  color: #1a2429 !important;
  background: transparent !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

section.testimonials .review-date {
  color: #888 !important;
  background: transparent !important;
  font-size: 0.85rem !important;
  display: inline-block !important;
}

section.testimonials .review-tag {
  background: #a7be39 !important;
  color: #fff !important;
}