:root{
  --forest-950:#0E2A1F;
  --forest-800:#153F2C;
  --forest-700:#1C5238;
  --forest-600:#256B47;
  --leaf-500:#3E8F5C;
  --leaf-400:#5AAE72;
  --leaf-300:#8FCB9E;
  --leaf-100:#DCEFDF;
  --cream-50:#FBF9F2;
  --cream-100:#F3EFE1;
  --ink:#122019;
  --ink-soft:#3E4F45;
  --radius-lg:22px;
  --radius-md:14px;

  /* ---- atmospheric background system (site-wide canvas, not the hero itself) ---- */
  /* light variant: same green glow palette, much lighter tonal base */
  --atmo-950:#FFFFFF;
  --atmo-900:#F7FBF8;
  --atmo-850:#EEF6F1;
  --atmo-accent-1:#43b571;
  --atmo-accent-2:#5bc982;
  --atmo-accent-3:#6fd697;
}

*{box-sizing:border-box;}

body{
  margin:0;
  font-family:'Manrope', sans-serif;
  color:var(--ink);
  position:relative;
  min-height:100vh;
  background-color:var(--atmo-950);
  background-image:
    /* soft ambient glows at different points down the page — percentages
       are relative to the body's own (tall, content-driven) box, so each
       glow naturally lands at a different scroll depth rather than
       repeating the same spot. Deeper green + higher opacity than the
       first pass, so the glows read as darker, richer color pools. */
    radial-gradient(1200px 780px at 8% 6%, rgba(37,107,71,0.32), transparent 62%),
    radial-gradient(1000px 760px at 96% 38%, rgba(28,82,56,0.28), transparent 60%),
    radial-gradient(1100px 820px at 10% 72%, rgba(37,107,71,0.26), transparent 62%),
    radial-gradient(950px 700px at 92% 96%, rgba(28,82,56,0.3), transparent 60%),
    /* base tonal gradient — never flat, even at "white" */
    linear-gradient(165deg, var(--atmo-850) 0%, var(--atmo-900) 45%, var(--atmo-950) 100%);
  background-repeat:no-repeat;
  background-size:100% 100%;
}

/* grid + grain: fixed to the viewport (the pattern is seamless/infinite so
   this reads as one continuous technical backdrop rather than something
   that scrolls with — or repeats awkwardly across — the page content) */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background-image:
    /* extremely faint grain, via an inline SVG turbulence pattern */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/></svg>"),
    /* architectural grid — dark ink lines now, since they sit on white */
    repeating-linear-gradient(0deg, rgba(14,42,31,0.05) 0, rgba(14,42,31,0.05) 1px, transparent 1px, transparent 76px),
    repeating-linear-gradient(90deg, rgba(14,42,31,0.05) 0, rgba(14,42,31,0.05) 1px, transparent 1px, transparent 76px);
  mask-image:radial-gradient(120% 90% at 50% 0%, black 35%, transparent 92%);
  -webkit-mask-image:radial-gradient(120% 90% at 50% 0%, black 35%, transparent 92%);
  opacity:0.9;
}

/* one slow, barely-perceptible ambient glow — the only animated layer */
body::after{
  content:"";
  position:fixed;
  top:-10%;
  left:-8%;
  z-index:-1;
  width:60vw;
  height:60vw;
  max-width:900px;
  max-height:900px;
  pointer-events:none;
  background:radial-gradient(closest-side, rgba(28,82,56,0.3), transparent 72%);
  animation:atmoDrift 26s ease-in-out infinite alternate;
  will-change:transform;
}

@keyframes atmoDrift{
  from{ transform:translate(0, 0) scale(1); }
  to{ transform:translate(3%, 4%) scale(1.06); }
}

@media (prefers-reduced-motion: reduce){
  body::after{animation:none;}
}

.display{
  font-family:'Montserrat', sans-serif;
}

/* ---------- NAV (mobile-first) ---------- */
.base-nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:40;
  padding-top:12px;
  transition:padding 0.35s cubic-bezier(.22,.61,.36,1);
}
@media (prefers-reduced-motion: reduce){
  .base-nav{ transition:none; }
}

.nav-shell{
  background:rgba(251,249,242,0.9);
  backdrop-filter:blur(10px);
  border:1px solid rgba(14,42,31,0.06);
  border-radius:100px;
  padding:12px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 10px 30px rgba(14,42,31,0.06);
  transform:translateZ(0) scale(1);
  transform-origin:top center;
  transition:
    border-radius 0.2s ease,
    transform 0.35s cubic-bezier(.22,.61,.36,1),
    padding 0.35s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
}
/* compact/pinned state once scrolled — always fixed now, this just
   shrinks and adds contrast as content moves underneath it (see
   nav-sticky.js); the scale-down transform is desktop-only, added at
   the 768px tier below so it doesn't fight the mobile dropdown */
.base-nav.nav-scrolled .nav-shell{
  padding-top:8px;
  padding-bottom:8px;
  background:rgba(251,249,242,0.96);
  border-color:rgba(14,42,31,0.09);
  box-shadow:0 14px 34px rgba(14,42,31,0.14);
}
@media (prefers-reduced-motion: reduce){
  .nav-shell{ transition:border-radius 0.2s ease; }
}
/* once the mobile/tablet panel drops to a second row, the full 100px pill
   radius reads oddly on a taller box — square it off while it's open */
.nav-shell.nav-open{
  border-radius:28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--forest-950);
}
.brand-logo{
  height:34px;
  width:auto;
  display:block;
}

/* mobile default: nav-links live inside the burger dropdown, not the bar */
.nav-links{
  display:none;
  align-items:center;
  gap:1.7rem;
  list-style:none;
  margin:0; padding:0;
}
.nav-links a{
  color:var(--ink-soft);
  text-decoration:none;
  font-weight:600;
  font-size:0.96rem;
  position:relative;
  padding:6px 2px;
  white-space:nowrap;
  transition:color .2s ease;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0%; height:2px;
  background:var(--leaf-500);
  transition:width .25s ease;
  border-radius:2px;
}
.nav-links a:hover{color:var(--forest-950);}
.nav-links a:hover::after{width:100%;}
.nav-links a.active{color:var(--forest-950);}
.nav-links a.active::after{width:100%;}

/* mobile dropdown: same .nav-links menu used on desktop, just
   restacked — no separate/duplicated markup needed */
.nav-shell.nav-open .nav-links{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
  width:100%;
  order:5;
  padding-top:14px;
  margin-top:10px;
  border-top:1px solid rgba(14,42,31,0.1);
}
.nav-shell.nav-open .nav-links a{
  font-weight:700;
  font-size:1rem;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:1.1rem;
}
.nav-phone{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--forest-950);
  text-decoration:none;
  font-weight:700;
  font-size:0.94rem;
  white-space:nowrap;
}
.nav-phone span{display:none;}
.nav-phone .icon-circle{
  width:34px;height:34px;
  border-radius:50%;
  background:var(--leaf-100);
  color:var(--forest-700);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.nav-phone .icon-circle svg{width:16px;height:16px;}

/* mobile default: icon-only pill */
.btn-quote{
  background:var(--leaf-500);
  color:#fff !important;
  border:none;
  width:42px;
  height:42px;
  padding:0;
  border-radius:50%;
  font-weight:700;
  font-size:0.92rem;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0;
  white-space:nowrap;
  box-shadow:0 8px 18px rgba(62,143,92,0.35);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-quote:hover{
  background:var(--forest-700);
  transform:translateY(-2px);
  box-shadow:0 12px 22px rgba(21,63,44,0.32);
  color:#fff;
  text-decoration:none;
}
.btn-quote svg{width:14px;height:14px;}
.quote-text,
.quote-arrow{display:none;}
.quote-icon-mobile{
  display:inline-block;
  font-size:1.05rem;
}

.nav-burger{
  display:flex;
  position:relative;
  width:40px;height:40px;
  border-radius:50%;
  border:1px solid rgba(14,42,31,0.15);
  background:transparent;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.burger-line{
  display:block;
  width:16px;
  height:2px;
  border-radius:2px;
  background:var(--forest-950);
  transition:transform .28s ease, opacity .2s ease, width .2s ease;
}
.nav-burger.open{
  border-color:rgba(14,42,31,0.28);
}
.nav-burger.open .burger-line:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.nav-burger.open .burger-line:nth-child(2){
  opacity:0;
  width:0;
}
.nav-burger.open .burger-line:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* ---- ≥576px: full-size logo, quote button expands back to a text pill ---- */
@media (min-width: 576px){
  .nav-shell{padding:10px 14px 10px 18px;}
  .brand-logo{height:42px;}
  .btn-quote{
    width:auto;
    height:auto;
    padding:11px 22px;
    border-radius:100px;
    justify-content:flex-start;
    gap:8px;
  }
  .quote-text,
  .quote-arrow{display:inline-block;}
  .quote-icon-mobile{display:none;}
}

/* ---- ≥768px: full unscrolled/scrolled padding contrast, and the
   scroll-triggered scale-down (skipped below this so it doesn't fight
   the mobile dropdown's own layout) ---- */
@media (min-width: 768px){
  .base-nav{padding-top:22px;}
  .base-nav.nav-scrolled{padding-top:12px;}
  .base-nav.nav-scrolled .nav-shell{
    transform:translateZ(0) scale(0.965);
  }
}

/* ---- ≥1200px: full inline nav-links replace the burger ---- */
@media (min-width: 1200px){
  .nav-links{display:flex;}
  .nav-phone span{display:inline;}
  .nav-burger{display:none;}
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  overflow:hidden;
  height:auto;
  min-height:100vh;
  min-height:100dvh; /* mobile/tablet: let content grow past viewport height rather than clip it */
  display:flex;
  flex-direction:column;
  justify-content:center; /* centers hero-copy + feature-strip together as a group */
  padding-top:130px;
  padding-bottom:48px;
  background:var(--forest-950); /* fallback while video loads / if it fails */
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

/* flat brand-color wash sitting directly on the video, under the legibility scrim */
.hero-color-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:var(--forest-800);
  opacity:0.38;
}

/* scrim over the video so nav, headline and cards stay legible */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(20,58,40,0.8) 0%, rgba(9,20,15,0.5) 20%, rgba(9,20,15,0.3) 42%, rgba(9,20,15,0.42) 62%, rgba(7,27,20,0.94) 88%, #071b14 100%);
}

.hero-copy{
  position:relative;
  z-index:5;
  text-align:center;
  margin:0 auto 40px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(251,249,242,0.14);
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter:blur(6px);
  color:var(--leaf-100);
  font-weight:700;
  font-size:0.82rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  padding:8px 16px;
  border-radius:100px;
  margin-bottom:26px;
}
.eyebrow .dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--leaf-400);
  animation:eyebrow-blink 1.6s ease-in-out infinite;
}
@keyframes eyebrow-blink{
  0%,100%{ opacity:1; box-shadow:0 0 4px 1px var(--leaf-400); }
  50%{ opacity:0.25; box-shadow:0 0 0 0 transparent; }
}

.hero-title{
  font-family:'Montserrat', sans-serif;
  font-size:clamp(2.3rem, 4.8vw, 4.1rem);
  font-weight:800;
  line-height:1.04;
  text-transform:uppercase;
  color:#fff;
  letter-spacing:-0.015em;
  margin-bottom:26px;
  text-shadow:0 6px 28px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.4);
}
.hero-title .accent{
  color:var(--leaf-400);
  font-weight:900;
}

.hero-sub{
  font-size:1.08rem;
  color:rgba(255,255,255,0.86);
  max-width:520px;
  line-height:1.65;
  margin:0 auto 38px;
  text-shadow:0 2px 12px rgba(0,0,0,0.45);
}

.hero-ctas{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:44px;
}

.btn-primary-lg{
  background:var(--leaf-500);
  color:#fff;
  border:none;
  padding:14px 22px;
  border-radius:100px;
  font-weight:700;
  font-size:0.9rem;
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  transition:transform .2s ease, background .2s ease;
}
.btn-primary-lg:hover{background:var(--forest-700); transform:translateY(-2px); color:#fff;}
.btn-primary-lg .circle-arrow{
  width:26px;height:26px;border-radius:50%;
  background:rgba(255,255,255,0.25);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.btn-primary-lg:hover .circle-arrow{background:rgba(255,255,255,0.3);}
.btn-primary-lg .circle-arrow svg{width:12px;height:12px;}

.btn-outline-lg{
  background:transparent;
  color:#fff;
  border:1.5px solid rgba(255,255,255,0.4);
  padding:14px 22px;
  border-radius:100px;
  font-weight:700;
  font-size:0.9rem;
  text-decoration:none;
  transition:border-color .2s ease, background .2s ease;
}
.btn-outline-lg:hover{
  border-color:#fff;
  background:rgba(255,255,255,0.1);
  color:#fff;
}

/* stat strip inline in copy column */
.trust-row{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.avatar-stack{
  display:flex;
}
.avatar-stack .av{
  width:60px;height:60px;
  border-radius:50%;
  border:3px solid var(--forest-950);
  margin-left:-20px;
  display:block;
  object-fit:cover;
  box-shadow:0 2px 8px rgba(0,0,0,0.3);
  position:relative;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease;
}
.avatar-stack .av:hover{
  transform:scale(1.25);
  z-index:5;
  box-shadow:0 8px 20px rgba(0,0,0,0.45);
}
.avatar-stack .av:first-child{margin-left:0;}
.trust-text{font-size:0.88rem; color:rgba(255,255,255,0.75); line-height:1.3; text-align:center;}
.trust-text strong{color:#fff; display:block; font-size:0.95rem;}

/* ---- ≥576px: CTA buttons regain their full desktop padding, trust
   row goes horizontal ---- */
@media (min-width: 576px){
  .hero-ctas{gap:16px;}
  .btn-primary-lg{padding:16px 30px; font-size:0.98rem;}
  .btn-outline-lg{padding:16px 28px; font-size:0.98rem;}
  .trust-row{flex-direction:row; gap:18px;}
  .trust-text{text-align:left;}
}

/* ---- ≥1200px: hero locks to a true full-viewport height instead of
   growing with content (tablet/mobile have more stacked height need) ---- */
@media (min-width: 1200px){
  .hero{
    height:100vh;
    height:100dvh;
    min-height:0;
    padding-top:170px;
  }
  .hero-copy{margin-bottom:52px;}
}

/* ---------- FEATURE STRIP (glass cards over the video) ---------- */
.feature-strip{
  position:relative;
  z-index:5;
  margin-top:0;
  padding-bottom:8px;
}

.feature-card{
  background:rgba(14,42,31,0.5);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:var(--radius-lg);
  padding:16px 18px;
  height:100%;
  box-shadow:0 20px 40px rgba(0,0,0,0.18);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.feature-card:hover{
  transform:translateY(-6px);
  background:rgba(14,42,31,0.66);
  box-shadow:0 26px 50px rgba(0,0,0,0.24);
}

/* mobile default: icon beside title, full-width row */
.feature-head{
  display:flex;
  align-items:center;
  gap:12px;
  width:100%;
  margin-bottom:8px;
}

.feature-icon{
  width:36px; height:36px;
  flex-shrink:0;
  border-radius:12px;
  background:rgba(255,255,255,0.14);
  color:var(--leaf-300);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:0;
}
.feature-icon svg{width:22px;height:22px;}
.feature-icon i{font-size:1rem;}

.feature-card h4{
  font-family:'Montserrat', sans-serif;
  font-weight:800;
  font-size:0.92rem;
  text-transform:uppercase;
  letter-spacing:-0.005em;
  color:#fff;
  margin-bottom:0;
}
.feature-card p{
  font-size:0.8rem;
  color:rgba(255,255,255,0.72);
  line-height:1.45;
  width:100%;
  margin-bottom:0;
}

/* ---- ≥576px: cards regain full padding, icon stacks above the title ---- */
@media (min-width: 576px){
  .feature-card{padding:26px 26px 24px;}
  .feature-head{
    display:block;
    width:auto;
    margin-bottom:0;
  }
  .feature-icon{
    width:46px; height:46px;
    margin-bottom:18px;
  }
  .feature-icon i{font-size:1.3rem;}
  .feature-card h4{font-size:1.1rem; margin-bottom:10px;}
  .feature-card p{font-size:0.9rem; line-height:1.55;}
}

/* ---- ≥1200px: strip sits directly against the hero copy above it,
   no extra bottom breathing room needed ---- */
@media (min-width: 1200px){
  .feature-strip{padding-bottom:0;}
}

/* ============================================================
   WHY GO SOLAR — benefits strip + process steps, on a soft
   light-green backdrop with a couple of large decorative blobs.
   ============================================================ */

.why-solar{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:72px 0 78px;
  background:
    radial-gradient(circle at 20% 22%, rgba(132,214,76,.20), transparent 30%),
    radial-gradient(circle at 78% 34%, rgba(247,195,55,.14), transparent 32%),
    linear-gradient(135deg,#f8fbf5 0%,#f1f8ed 48%,#fbfcf8 100%);
}
.why-solar::before,
.why-solar::after{
  content:"";
  position:absolute;
  pointer-events:none;
  z-index:-1;
  border:1px solid rgba(62,143,92,.12);
  border-radius:50%;
}
.why-solar::before{width:760px; height:760px; left:-260px; top:-420px; box-shadow:0 0 100px rgba(126,211,72,.10) inset;}
.why-solar::after{width:900px; height:520px; right:-330px; bottom:-260px; transform:rotate(-12deg);}

.process-orb{position:absolute; z-index:-1; border-radius:50%; filter:blur(2px); pointer-events:none; opacity:.65;}
.process-orb--one{width:520px; height:520px; left:24%; top:-260px; background:radial-gradient(circle,rgba(108,201,76,.18),rgba(108,201,76,0) 68%);}
.process-orb--two{width:560px; height:560px; right:5%; top:12%; background:radial-gradient(circle,rgba(250,190,45,.12),rgba(250,190,45,0) 70%);}

.process-wrap{position:relative; z-index:1;}
.why-solar-head{text-align:center; max-width:760px; margin:0 auto 34px;}

.why-solar-heading{
  font-family:'Montserrat', sans-serif;
  font-weight:800;
  font-size:clamp(2rem, 4vw, 3rem);
  letter-spacing:-.025em;
  color:var(--forest-950);
  margin:0 0 10px;
  text-transform:none;
}
.why-solar-heading .accent{
  font-weight:900;
  background:linear-gradient(90deg,var(--forest-700) 0%,var(--leaf-300) 22%,var(--leaf-500) 45%,var(--leaf-300) 68%,var(--forest-700) 100%);
  background-size:250% auto;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation:accentShimmer 5s linear infinite;
}
@keyframes accentShimmer{ 0%{background-position:0% 50%;} 100%{background-position:250% 50%;} }

/* shared "mini heading" treatment — used by both the benefits label
   and the process subhead (SUSTAINABLE ENERGY · BETTER FUTURE / SIMPLE
   · HASSLE FREE), each just a short uppercase line with a middle-dot
   separator and a soft gradient underline */
.section-mini-heading{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:auto;
  max-width:100%;
  margin:0 auto clamp(26px, 3vw, 38px);
  padding-bottom:15px;
  font-family:'Montserrat', sans-serif;
  font-size:1rem;
  font-weight:700;
  letter-spacing:.02em;
  line-height:1.25;
  color:var(--forest-700);
  text-align:center;
  text-transform:uppercase;
}
.section-mini-heading::after{
  content:"";
  position:absolute;
  left:50%; bottom:0;
  width:clamp(110px, 12vw, 170px);
  height:2px;
  transform:translateX(-50%);
  border-radius:999px;
  background:linear-gradient(90deg,rgba(62,143,92,.18),var(--leaf-500),rgba(247,190,44,.55),rgba(62,143,92,.18));
  box-shadow:0 0 12px rgba(126,211,72,.18);
}
.section-mini-heading span{
  color:var(--leaf-500);
  padding:0 .22em;
}
/* the process subhead sits directly above its own intro paragraph, so
   it needs less breathing room below it than the benefits label does */
.process-subhead.section-mini-heading{
  margin-bottom:12px;
}

.process-intro{
  max-width:680px;
  margin:0 auto clamp(28px, 3vw, 42px);
  color:var(--ink-soft);
  font-size:clamp(.92rem, 1.4vw, 1.04rem);
  line-height:1.65;
  text-align:center;
}

/* ---- process steps (4-up) ---- */
.process-second{
  padding-top:clamp(30px, 3.5vw, 46px);
  border-top:1px solid rgba(7,91,60,.10);
}
.solar-process-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  position:relative;
}
.solar-process-grid::before{
  content:"";
  position:absolute;
  left:4%; right:4%; top:50%;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(62,143,92,.22),rgba(247,190,44,.18),transparent);
  z-index:-1;
  display:none;
}
.solar-process-card{
  position:relative;
  min-height:0;
  padding:28px 22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  border-radius:18px;
  background:rgba(255,255,255,.68);
  border:1px solid rgba(255,255,255,.9);
  box-shadow:0 18px 50px rgba(14,42,31,.075);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow:hidden;
}
.solar-process-card::after{
  content:"";
  position:absolute;
  inset:auto -25% -55% 25%;
  height:65%;
  background:radial-gradient(circle,rgba(111,203,71,.13),transparent 68%);
  pointer-events:none;
}
.solar-process-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background:radial-gradient(circle at 50% 28%,rgba(151,235,88,.34),rgba(107,195,67,.10) 38%,rgba(238,184,54,.06) 62%,transparent 76%);
  opacity:0;
  filter:blur(14px);
  transform:scale(.92);
  transition:opacity .35s ease, transform .35s ease;
  pointer-events:none;
  z-index:0;
}
.solar-process-card > *{position:relative; z-index:1;}
.solar-process-card:hover{
  transform:translateY(-8px);
  border-color:rgba(126,219,70,.62);
  box-shadow:0 28px 70px rgba(14,42,31,.14), 0 0 0 1px rgba(126,219,70,.20), 0 0 30px rgba(107,195,67,.24), 0 0 75px rgba(238,184,54,.10);
}
.solar-process-card:hover::before{opacity:1; transform:scale(1.03);}
.solar-process-card:hover .process-icon{
  box-shadow:0 0 0 8px rgba(107,195,67,.08), 0 0 28px rgba(107,195,67,.38);
  transform:translateY(-2px) scale(1.04);
}
.process-step{
  display:inline-flex;
  padding:8px 18px;
  margin-bottom:20px;
  border-radius:999px;
  background:rgba(238,246,233,.92);
  color:var(--forest-700);
  font-size:.86rem;
  font-weight:700;
}
.process-icon{
  width:72px; height:72px;
  margin-bottom:18px;
  display:grid;
  place-items:center;
  color:var(--leaf-500);
  font-size:2.25rem;
  filter:drop-shadow(0 8px 16px rgba(73,157,59,.12));
  transition:transform .35s ease, box-shadow .35s ease;
}
.solar-process-card h3{
  font-family:'Montserrat', sans-serif;
  font-size:1.08rem;
  font-weight:700;
  color:var(--forest-700);
  margin:0 0 14px;
}
.solar-process-card p{
  margin:0;
  color:var(--ink-soft);
  font-size:.84rem;
  line-height:1.58;
  max-width:290px;
}

/* ---- benefits strip (6-across, unboxed) ---- */
.solar-benefits-block{
  margin-top:clamp(16px, 2vw, 28px);
}
.solar-benefits-block.benefits-first{
  padding-top:0;
  padding-bottom:clamp(38px, 4.5vw, 58px);
}
.solar-benefits-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:0;
  align-items:stretch;
  width:100%;
}
.solar-benefit-card{
  position:relative;
  min-height:150px;
  padding:18px 16px 16px;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
  overflow:visible;
}
.solar-benefit-card + .solar-benefit-card::before{
  content:"";
  position:absolute;
  left:0; top:18px; bottom:18px;
  width:1px;
  background:linear-gradient(to bottom,transparent,rgba(7,91,60,.22),transparent);
}
/* mobile default: 2-across, so only the "second in row" cards need a
   divider on their left — odd cards start a new row */
.solar-benefit-card:nth-child(odd)::before{display:none;}
.solar-benefit-card:nth-child(4)::before{display:block;}
.solar-benefit-icon{
  width:62px; height:62px;
  margin:0 0 17px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(255,255,255,.78);
  color:#22965a;
  font-size:26px;
  border:1px solid rgba(45,157,93,.18);
  box-shadow:0 8px 26px rgba(25,116,70,.08);
  transition:transform .3s ease, box-shadow .3s ease, color .3s ease, background .3s ease;
}
.solar-benefit-card h3{
  margin:0;
  color:#086044;
  font-family:'Manrope', sans-serif;
  font-size:clamp(11.5px, .88vw, 14px);
  line-height:1.28;
  font-weight:700;
  max-width:178px;
  white-space:normal;
}
.solar-benefit-card:hover{
  transform:none;
  border-color:transparent;
  background:transparent;
  box-shadow:none;
}
.solar-benefit-card:hover .solar-benefit-icon{
  transform:translateY(-5px) scale(1.06);
  color:#075b3c;
  background:#fff;
  box-shadow:0 10px 30px rgba(68,190,91,.20), 0 0 28px rgba(171,224,74,.24);
}

/* ---- ≥576px: why-solar and the process grid/cards regain their full
   spacing; process grid becomes 2-up (benefits grid is untouched here —
   it has its own thresholds below, at 601px and 981px) ---- */
@media (min-width:576px){
  .why-solar{padding:104px 0 112px;}
  .why-solar-head{margin-bottom:clamp(26px, 3vw, 38px);}
  .solar-process-grid{grid-template-columns:repeat(2, 1fr); gap:22px;}
  .solar-process-card{min-height:340px; padding:38px 28px 32px;}
  .process-step{margin-bottom:34px;}
  .process-icon{margin-bottom:28px;}
  .solar-process-card p{max-width:220px;}
}

/* ---- ≥601px: benefits grid steps up to 3-across; card4 starts a new
   row here so its divider is suppressed until the 6-across tier ---- */
@media (min-width:601px){
  .solar-benefits-grid{grid-template-columns:repeat(3, minmax(0, 1fr));}
  .solar-benefit-card:nth-child(odd)::before{display:block;}
  .solar-benefit-card:nth-child(4)::before{display:none;}
  .section-mini-heading{
    font-size:clamp(1.05rem, 1.7vw, 1.35rem);
    letter-spacing:.035em;
    width:max-content;
  }
}

/* ---- ≥981px: benefits grid goes full 6-across in one row, so every
   card's divider is back on (note: intentionally a different threshold
   than the 992px process-grid tier below — the two grids were tuned
   independently) ---- */
@media (min-width:981px){
  .solar-benefits-grid{grid-template-columns:repeat(6, minmax(0, 1fr));}
  .solar-benefit-card{padding-left:10px; padding-right:10px;}
  .solar-benefit-card:nth-child(4)::before{display:block;}
}

/* ---- ≥992px: process grid opens up to its full 4-across layout ---- */
@media (min-width:992px){
  .solar-process-grid{grid-template-columns:repeat(4, 1fr);}
  .solar-process-grid::before{display:block;}
  .solar-process-card{min-height:390px;}
}

@media (prefers-reduced-motion:reduce){
  .why-solar-heading .accent{
    animation:none;
    background:none;
    -webkit-text-fill-color:currentColor;
    color:var(--leaf-500);
  }
  .solar-process-card{transition:none;}
  .solar-process-card:hover{transform:none;}
  .solar-process-card::before,
  .process-icon{transition:none;}
}

/* ============================================================
   WHAT WE DO — four-up carousel with faded side peeks
   ============================================================ */
/* wrapper around the section heading — restored from the original
   (was briefly dropped during a cleanup pass; still referenced by the
   markup as `.container.services-inner`) */
.services-inner{
  position:relative;
  overflow:visible;
}
.services-carousel-section{
  position:relative;
  padding:64px 0 66px;
  overflow:hidden;
  background:rgba(220,239,223,.42);
  color:var(--forest-950);
  isolation:isolate;
}
.services-carousel-section::before{
  content:"";
  position:absolute;
  width:640px;
  height:640px;
  left:-270px;
  bottom:-350px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(90,174,114,.18),transparent 68%);
  pointer-events:none;
}
.services-carousel-section::after{
  content:"";
  position:absolute;
  width:620px;
  height:620px;
  right:-320px;
  top:-290px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(62,143,92,.14),transparent 68%);
  pointer-events:none;
}

/* base heading treatment, shared by any section using .services-head /
   .services-heading — the carousel section below only overrides the
   specific spacing it needs (margin-bottom / margin-top) */
.services-head{
  text-align:center;
  margin-bottom:72px;
}
.services-heading{
  margin:14px 0 0;
  font-family:'Montserrat', sans-serif;
  font-size:clamp(2rem, 4vw, 3rem);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-0.025em;
  color:var(--forest-950);
}
/* same animated gradient sheen used on "Solar?" in the Why Go Solar
   heading — reused here rather than a flat color, per that pattern */
.services-heading span{
  font-weight:900;
  background:linear-gradient(90deg, var(--forest-700) 0%, var(--leaf-300) 22%, var(--leaf-500) 45%, var(--leaf-300) 68%, var(--forest-700) 100%);
  background-size:250% auto;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation:accentShimmer 5s linear infinite;
}
@media (prefers-reduced-motion: reduce){
  .services-heading span{
    animation:none;
    background:none;
    -webkit-text-fill-color:currentColor;
    color:var(--leaf-500);
  }
}

.services-carousel-section .services-head{
  position:relative;
  z-index:2;
  margin-bottom:30px;
  padding:0 18px;
}
.services-carousel-section .services-heading{margin-top:0;}
/* the pricing section has no eyebrow above its heading, so it needs
   the same top-margin reset for the same reason */
.pricing-section .services-heading{margin-top:0;}
/* .services-summary normally relies on being paired with Bootstrap's
   .container for horizontal centering (.container itself has its own
   margin:0 auto) — this usage doesn't have that pairing, so it needs
   the centering set directly instead */
.pricing-section .services-summary{margin-left:auto; margin-right:auto;}
.services-subtitle{
  margin:12px auto 14px;
  color:var(--ink-soft);
  font-size:clamp(.94rem,1.25vw,1.08rem);
  line-height:1.55;
}
.services-underline{
  display:block;
  width:132px;
  height:2px;
  margin:0 auto;
  background:linear-gradient(90deg,transparent,var(--leaf-400) 30%,var(--forest-700) 50%,var(--leaf-400) 70%,transparent);
  box-shadow:0 0 14px rgba(90,174,114,.38);
}
.services-carousel-shell{
  --carousel-gap:10px;
  --carousel-peek:34px;
  position:relative;
  z-index:2;
  width:min(1540px,100%);
  margin:0 auto;
  padding:4px 0 2px;
}
.services-carousel-viewport{
  position:relative;
  overflow:hidden;
  width:100%;
  padding:8px 0 20px;
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 7%,#000 93%,transparent 100%);
  mask-image:linear-gradient(90deg,transparent 0,#000 7%,#000 93%,transparent 100%);
}
.services-carousel-track{
  display:flex;
  align-items:stretch;
  gap:var(--carousel-gap);
  will-change:transform;
  transform:translate3d(0,0,0);
}
.carousel-service-card{
  position:relative;
  flex:0 0 var(--carousel-card-width,300px);
  height:375px;
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(28,82,56,.22);
  background:var(--forest-950);
  box-shadow:0 16px 42px rgba(14,42,31,.10);
  transform:translateZ(0);
  transition:opacity .38s ease,transform .38s ease,border-color .3s ease,box-shadow .3s ease;
}
.carousel-service-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events:none;
}
.carousel-service-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s cubic-bezier(.2,.7,.2,1);
}
.carousel-service-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(14,42,31,.03) 12%,rgba(14,42,31,.22) 44%,rgba(14,42,31,.92) 78%,rgba(14,42,31,.99) 100%);
}
.carousel-service-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:20px 18px 18px;
  color:#fff;
}
.carousel-service-content h3{
  margin:0 0 10px;
  font-family:'Montserrat',sans-serif;
  font-size:1.05rem;
  font-weight:900;
  line-height:1.06;
  letter-spacing:-.025em;
  text-transform:uppercase;
  color:#fff;
}
.carousel-service-content p{
  margin:0;
  max-width:95%;
  color:rgba(255,255,255,.84);
  font-size:.8rem;
  line-height:1.46;
}
.carousel-service-link{
  position:absolute;
  right:18px;
  bottom:18px;
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid rgba(143,203,158,.72);
  background:rgba(14,42,31,.66);
  color:var(--leaf-100);
  text-decoration:none;
  backdrop-filter:blur(8px);
  transition:transform .25s ease,background .25s ease,box-shadow .25s ease;
}
.carousel-service-card:hover{
  transform:translateY(-5px);
  border-color:rgba(90,174,114,.75);
  box-shadow:0 24px 58px rgba(14,42,31,.17),0 0 26px rgba(90,174,114,.16);
}
.carousel-service-card:hover img{transform:scale(1.055);}
.carousel-service-card:hover .carousel-service-link{
  transform:rotate(10deg) scale(1.06);
  background:var(--forest-700);
  box-shadow:0 0 18px rgba(143,203,158,.35);
  color:#fff;
}
.carousel-service-card.is-side-peek{
  opacity:.34;
  transform:scale(.95);
  filter:saturate(.72);
}
.carousel-service-card.is-center-card{opacity:1;}
.services-carousel-control{
  position:absolute;
  z-index:6;
  top:50%;
  transform:translateY(-54%);
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid rgba(28,82,56,.26);
  background:rgba(251,249,242,.86);
  color:var(--forest-700);
  box-shadow:0 12px 30px rgba(14,42,31,.12);
  backdrop-filter:blur(10px);
  transition:transform .25s ease,background .25s ease,color .25s ease,box-shadow .25s ease;
}
.services-carousel-control:hover{
  transform:translateY(-54%) scale(1.06);
  background:var(--forest-700);
  color:#fff;
  box-shadow:0 14px 34px rgba(14,42,31,.18),0 0 20px rgba(90,174,114,.2);
}
.services-carousel-control--prev{left:6px;}
.services-carousel-control--next{right:6px;}
.services-carousel-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:24px;
  margin-top:12px;
}
.services-carousel-dot{
  width:8px;
  height:8px;
  padding:0;
  border:0;
  border-radius:50%;
  background:rgba(28,82,56,.22);
  transition:width .25s ease,background .25s ease;
}
.services-carousel-dot.is-active{
  width:24px;
  border-radius:999px;
  background:var(--leaf-500);
}
.services-summary{
  position:relative;
  z-index:2;
  max-width:980px;
  margin-top:26px;
  padding:0 22px;
  text-align:center;
}
.services-summary p{
  margin:0 auto;
  color:var(--ink-soft);
  font-size:clamp(.92rem,1.1vw,1.02rem);
  line-height:1.7;
}
.services-summary strong{color:var(--forest-700);}
/* ---- ≥576px: card grows, controls/mask/summary regain their
   pre-smallest-tier spacing ---- */
@media(min-width:576px){
  .services-carousel-shell{--carousel-peek:44px;--carousel-gap:12px;}
  .carousel-service-card{height:390px; border-radius:20px;}
  .carousel-service-content h3{font-size:clamp(1.05rem,1.55vw,1.38rem);}
  .carousel-service-content p{font-size:clamp(.76rem,.86vw,.9rem);}
}

/* ---- ≥768px: section padding/head/viewport-mask/controls/summary all
   step back up to their pre-tablet values ---- */
@media(min-width:768px){
  .services-carousel-section{padding:70px 0 76px;}
  .services-carousel-section .services-head{margin-bottom:42px; padding:0;}
  .services-carousel-shell{--carousel-peek:57px;--carousel-gap:14px;}
  .services-carousel-viewport{
    -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 5.5%,#000 94.5%,transparent 100%);
    mask-image:linear-gradient(90deg,transparent 0,#000 5.5%,#000 94.5%,transparent 100%);
  }
  .carousel-service-card{height:410px;}
  .services-carousel-control{width:46px; height:46px;}
  .services-carousel-control--prev{left:8px;}
  .services-carousel-control--next{right:8px;}
  .services-summary{margin-top:34px; padding:0;}
}

/* ---- ≥992px: full desktop section padding, larger card, wider peek,
   and controls revert to their edge-hugging default position (neither
   the 768px nor the 1200px tier touches them, so this is the one place
   that needs to reset it back from the 768px tier's 8px) ---- */
@media(min-width:992px){
  .services-carousel-section{padding:82px 0 88px;}
  .services-carousel-shell{--carousel-peek:75px;--carousel-gap:14px;}
  .carousel-service-card{height:420px;}
  .services-carousel-control--prev{left:18px;}
  .services-carousel-control--next{right:18px;}
}

/* ---- ≥1200px: full desktop peek/gap, card height, content padding ---- */
@media(min-width:1200px){
  .services-carousel-shell{--carousel-peek:99px;--carousel-gap:18px;}
  .carousel-service-card{height:clamp(390px,35vw,470px);}
  .carousel-service-content{padding:22px 22px 20px;}
}

@media(prefers-reduced-motion:reduce){
  .services-carousel-track,
  .carousel-service-card,
  .carousel-service-card img,
  .carousel-service-link,
  .services-carousel-control{transition:none!important;}
}


/* ============================================================
   PRICING — two-column selector card (photo + size guide on the
   left, live estimate + specs on the right), a 4-item trust
   strip, and a help strip with a secondary contact link. Driven
   by pricing-slider.js across the same 4 hybrid tiers.
   ============================================================ */

.pricing-section{
  position:relative;
  padding:64px 0 70px;
  background:var(--cream-50);
}

.pricing-card{
  display:grid;
  grid-template-columns:1fr;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(14,42,31,0.16);
}

/* ---- left: photo + size selector ---- */
.pricing-left{
  position:relative;
  isolation:isolate;
  padding:32px 24px 28px;
  color:#fff;
  overflow:hidden;
}
.pricing-left-bg{
  position:absolute;
  inset:0;
  z-index:-2;
  width:100%;
  height:100%;
  object-fit:cover;
}
.pricing-left::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(165deg, rgba(9,31,22,.94) 0%, rgba(14,42,31,.90) 45%, rgba(14,42,31,.97) 100%);
}

.pricing-select-label{
  display:block;
  font-size:0.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:rgba(255,255,255,0.65);
  margin-bottom:6px;
}
.pricing-kw-display{
  font-family:'Montserrat', sans-serif;
  font-weight:900;
  line-height:1;
  margin-bottom:6px;
}
.pricing-kw-display span:first-child{
  font-size:2.8rem;
  color:var(--leaf-400);
}
.pricing-kw-unit{
  font-size:1.6rem;
  color:var(--leaf-400);
  margin-left:2px;
}
.pricing-usage-label{
  display:block;
  font-family:'Montserrat', sans-serif;
  font-weight:800;
  font-size:0.98rem;
  text-transform:uppercase;
  color:var(--leaf-300);
  margin-bottom:4px;
}
.pricing-usage-desc{
  margin:0 0 26px;
  font-size:0.88rem;
  color:rgba(255,255,255,0.72);
}

.pricing-slider-wrap{
  margin-bottom:28px;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,0.14);
}
.pricing-range{
  -webkit-appearance:none;
  appearance:none;
  width:100%;
  height:6px;
  margin:0 0 12px;
  border-radius:100px;
  background:linear-gradient(to right,
    var(--leaf-500) var(--range-fill, 0%),
    rgba(255,255,255,0.18) var(--range-fill, 0%));
  outline:none;
  cursor:pointer;
}
.pricing-range::-webkit-slider-thumb{
  -webkit-appearance:none;
  width:22px; height:22px;
  border-radius:50%;
  background:#fff;
  border:4px solid var(--leaf-500);
  box-shadow:0 4px 12px rgba(0,0,0,0.32);
  cursor:pointer;
}
.pricing-range::-moz-range-thumb{
  width:14px; height:14px;
  border-radius:50%;
  background:#fff;
  border:4px solid var(--leaf-500);
  box-shadow:0 4px 12px rgba(0,0,0,0.32);
  cursor:pointer;
}
.pricing-range::-moz-range-track{
  height:6px;
  border-radius:100px;
  background:transparent;
}
.pricing-range-ticks{
  display:flex;
  justify-content:space-between;
}
.pricing-range-ticks span{
  font-size:0.76rem;
  font-weight:600;
  color:rgba(255,255,255,0.42);
  transition:color .2s ease;
}
.pricing-range-ticks span.is-active{
  color:var(--leaf-300);
}

.pricing-guide-label{
  display:block;
  font-size:0.76rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:rgba(255,255,255,0.6);
  margin-bottom:14px;
}
.pricing-guide-items{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:6px;
  margin-bottom:26px;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,0.14);
}
.pricing-guide-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:6px;
  padding:6px 4px;
  border-radius:14px;
  transition:background .25s ease;
}
.pricing-guide-item strong{
  font-size:0.74rem;
  font-weight:800;
  text-transform:uppercase;
  color:#fff;
}
.pricing-guide-item span{
  font-size:0.68rem;
  line-height:1.35;
  color:rgba(255,255,255,0.55);
}
.pricing-guide-icon{
  width:40px; height:40px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.08);
  color:rgba(255,255,255,0.6);
  font-size:1.1rem;
  transition:background .25s ease, color .25s ease;
}
.pricing-guide-item.is-active{
  background:rgba(126,211,72,0.10);
}
.pricing-guide-item.is-active .pricing-guide-icon{
  background:var(--leaf-500);
  color:#fff;
}
.pricing-guide-item.is-active strong{
  color:var(--leaf-300);
}

.pricing-best-for-items{
  display:grid;
  grid-template-columns:1fr;
  gap:16px 14px;
}
.pricing-best-for-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.pricing-best-for-icon{
  flex-shrink:0;
  width:34px; height:34px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--leaf-500);
  color:#fff;
  font-size:0.92rem;
}
.pricing-best-for-item strong{
  display:block;
  font-size:0.82rem;
  font-weight:800;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:2px;
}
.pricing-best-for-item span{
  font-size:0.8rem;
  color:rgba(255,255,255,0.62);
  line-height:1.4;
}

/* ---- right: estimated price + specs ---- */
.pricing-right{
  position:relative;
  padding:32px 24px 28px;
  background:var(--cream-50);
}

.pricing-ribbon{
  position:absolute;
  top:0;
  right:28px;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
  padding:10px 14px 22px;
  background:var(--leaf-500);
  color:#fff;
  font-size:0.68rem;
  font-weight:800;
  text-transform:uppercase;
  line-height:1.3;
  text-align:center;
  border-radius:0 0 4px 4px;
  clip-path:polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
}
.pricing-ribbon i{font-size:0.9rem;}

.pricing-estimate-label{
  display:block;
  position:relative;
  width:max-content;
  padding-bottom:8px;
  margin-bottom:22px;
  font-size:0.8rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.05em;
  color:var(--leaf-500);
}
.pricing-estimate-label::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:46px; height:2px;
  background:var(--leaf-500);
}

.pricing-starting-label{
  display:block;
  font-size:0.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.04em;
  color:var(--ink-soft);
  margin-bottom:6px;
}
.pricing-price-row{
  display:flex;
  align-items:flex-start;
  gap:4px;
}
.pricing-currency{
  margin-top:10px;
  font-family:'Montserrat', sans-serif;
  font-weight:700;
  font-size:1.5rem;
  color:var(--forest-950);
}
.pricing-price{
  font-family:'Montserrat', sans-serif;
  font-weight:900;
  font-size:2.3rem;
  line-height:1;
  color:var(--forest-950);
}
.pricing-vat-tag{
  display:inline-block;
  margin:12px 0 26px;
  padding:6px 14px;
  border-radius:100px;
  background:var(--leaf-100);
  color:var(--forest-700);
  font-size:0.8rem;
  font-weight:600;
}

.pricing-specs-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px 16px;
  margin-bottom:28px;
  padding-bottom:28px;
  border-bottom:1px solid rgba(14,42,31,0.08);
}
.pricing-spec-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.pricing-spec-icon{
  flex-shrink:0;
  width:36px; height:36px;
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background:var(--leaf-100);
  color:var(--leaf-500);
  font-size:1rem;
}
.pricing-spec-item strong{
  display:block;
  font-size:0.86rem;
  font-weight:700;
  color:var(--forest-950);
  margin-bottom:2px;
}
.pricing-spec-item span{
  font-size:0.76rem;
  color:var(--ink-soft);
}

.pricing-actions{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-bottom:16px;
}
.pricing-cta{
  margin-bottom:0;
}

.pricing-guarantee{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin:0;
  color:var(--ink-soft);
  font-size:0.82rem;
}
.pricing-guarantee i{color:var(--leaf-500);}

/* ---- ≥576px: full desktop spacing/sizing and multi-column grids ---- */
@media (min-width: 576px){
  .pricing-section{padding:90px 0 100px;}
  .pricing-left, .pricing-right{padding:40px 36px 36px;}
  .pricing-kw-display span:first-child{font-size:3.6rem;}
  .pricing-price{font-size:3.1rem;}
  .pricing-guide-items{gap:10px;}
  .pricing-best-for-items{grid-template-columns:repeat(2, 1fr);}
  .pricing-specs-grid{grid-template-columns:repeat(2, 1fr);}
  .pricing-actions{flex-direction:row; gap:24px;}
}

/* ---- ≥992px: two-column card (photo/selector left, estimate right) ---- */
@media (min-width: 992px){
  .pricing-card{grid-template-columns:1.05fr 1fr;}
}

@media (prefers-reduced-motion: reduce){
  .pricing-range-ticks span,
  .pricing-guide-item,
  .pricing-guide-icon{transition:none;}
}

/* ============================================================
   CTA SHOWCASE — centered offer card flanked by two columns of
   continuously looping photo media. Desktop/tablet columns loop
   vertically and sit absolutely positioned outside the center
   card; mobile collapses to two horizontal strips above/below
   the card, looping horizontally instead.

   Consolidated from five layered iteration passes (the source
   file had ~500 lines of overlapping !important overrides across
   different breakpoint conventions) into one clean, single-source
   set of rules — same final visual result, verified by resolving
   the actual CSS cascade property-by-property rather than reading
   it by eye. Five now-unused classes from an earlier draft
   (.solar-cta-badge, .solar-cta-points, .solar-cta-button,
   .solar-cta-button-icon, .solar-cta-note) and the always-hidden
   .solar-cta-glow decorative blobs were removed entirely — none
   of them appear in the current markup.
   ============================================================ */

.solar-cta-showcase{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  display:grid;
  place-items:center;
  padding:36px 0 0;
  background:
    radial-gradient(circle at 20% 22%, rgba(132,214,76,.20), transparent 30%),
    radial-gradient(circle at 78% 34%, rgba(247,195,55,.14), transparent 32%),
    linear-gradient(135deg,#f8fbf5 0%,#f1f8ed 48%,#fbfcf8 100%);
}
.solar-cta-showcase::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  pointer-events:none;
  background-size:74px 74px;
  mask-image:radial-gradient(circle at center,#000 0%,transparent 78%);
  -webkit-mask-image:radial-gradient(circle at center,#000 0%,transparent 78%);
}
/* soft light fade over the marquees near the center, so the busy photo
   columns settle down right where the card sits */
.solar-cta-showcase::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:4;
  pointer-events:none;
  background:linear-gradient(90deg,
    rgba(247,245,239,0) 0%, rgba(247,245,239,0) 15%,
    rgba(247,245,239,.82) 31%, rgba(247,245,239,.98) 43%,
    rgba(247,245,239,.98) 57%, rgba(247,245,239,.82) 69%,
    rgba(247,245,239,0) 85%, rgba(247,245,239,0) 100%);
}

.solar-cta-stage{
  position:relative;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
}

.solar-cta-marquee{
  overflow:hidden;
  mask-image:linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-image:linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.solar-cta-lane{
  min-width:0;
  overflow:hidden;
}

.solar-cta-lane-track{
  display:flex;
  flex-direction:column;
  gap:16px;
  will-change:transform;
}
.solar-cta-lane--up .solar-cta-lane-track{animation:solarCtaUp 28s linear infinite;}
.solar-cta-lane--down .solar-cta-lane-track{animation:solarCtaDown 31s linear infinite;}
@keyframes solarCtaUp{
  from{ transform:translateY(0); }
  to{ transform:translateY(calc(-50% - 8px)); }
}
@keyframes solarCtaDown{
  from{ transform:translateY(calc(-50% - 8px)); }
  to{ transform:translateY(0); }
}

.solar-cta-media{
  position:relative;
  flex:0 0 auto;
  margin:0;
  overflow:hidden;
  border:1px solid rgba(220,239,223,.14);
  background:#153f2c;
  box-shadow:0 16px 30px rgba(0,0,0,.18);
}
.solar-cta-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(8,26,18,.03), rgba(8,26,18,.3));
}
.solar-cta-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.solar-cta-center{
  position:relative;
  z-index:7;
  padding:0 17px;
}

.solar-cta-card{
  text-align:center;
  max-width:100%;
}
.solar-cta-card h2{
  margin:0 0 10px;
  font-family:'Montserrat', sans-serif;
  font-size:clamp(1.7rem, 9vw, 2.2rem);
  font-weight:800;
  line-height:1.05;
  letter-spacing:-.025em;
  text-transform:uppercase;
  color:var(--forest-950);
  overflow-wrap:break-word;
}
/* "LONG-TERM" stays a plain muted tone; "SAVINGS." gets the same
   shimmer accent used on headings elsewhere on the site */
.solar-cta-card h2 .solar-cta-longterm{
  color:#a6ada9;
  font-weight:800;
}
.solar-cta-card h2 .solar-cta-savings{
  display:inline-block;
  font-weight:900;
  background:linear-gradient(90deg, var(--forest-700) 0%, var(--leaf-300) 22%, var(--leaf-500) 45%, var(--leaf-300) 68%, var(--forest-700) 100%);
  background-size:250% auto;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation:accentShimmer 5s linear infinite;
  filter:drop-shadow(0 5px 14px rgba(67,165,101,.12));
}
.solar-cta-card>p{
  max-width:100%;
  margin:17px auto 0;
  color:#53645d;
  font-size:.88rem;
  line-height:1.68;
  overflow-wrap:break-word;
}

.solar-cta-actions{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin:24px 0 0;
}
.solar-cta-hero-button{
  margin:0;
  width:max-content;
  max-width:100%;
}

/* ---- ≥421px: general-mobile spacing (undoes the smallest-phone-only
   compact values below) ---- */
@media (min-width:421px){
  .solar-cta-showcase{padding:44px 0 0;}
  .solar-cta-stage{gap:26px;}
  .solar-cta-center{padding:0 22px;}
  .solar-cta-card h2{font-size:clamp(1.9rem, 8vw, 2.6rem);}
  .solar-cta-card>p{font-size:.94rem;}
}

/* ---- ≥576px: action buttons go back to a horizontal row ---- */
@media (min-width:576px){
  .solar-cta-actions{flex-direction:row; gap:28px;}
}

/* ---- desktop: 2 lanes per side, absolutely positioned outside the
   center card, looping vertically ---- */
@media (min-width: 1101px){
  .solar-cta-showcase{min-height:440px; height:440px; padding:0;}
  .solar-cta-stage{height:440px;}
  .solar-cta-center{width:min(620px, calc(100vw - 820px)); min-width:500px;}

  .solar-cta-marquee{
    position:absolute;
    top:-110px; bottom:-110px;
    z-index:2;
    display:grid;
    grid-template-columns:170px 170px;
    gap:12px;
    width:352px;
  }
  .solar-cta-marquee--left{left:-82px; transform:perspective(1250px) rotateY(10deg) rotateZ(-2.6deg) skewY(-2deg);}
  .solar-cta-marquee--right{right:-82px; transform:perspective(1250px) rotateY(-10deg) rotateZ(2.6deg) skewY(2deg);}

  .solar-cta-lane,
  .solar-cta-lane-track{width:170px; min-width:170px;}
  .solar-cta-media{width:170px; height:195px; flex-basis:195px; border-radius:3px;}
  .solar-cta-media--tall{height:232px; flex-basis:232px;}

  /* the lane nearest the center fades toward it, easing into the
     vignette rather than cutting off sharply */
  .solar-cta-marquee--left .solar-cta-lane:nth-child(2){
    mask-image:linear-gradient(90deg,#000 0%,#000 24%,rgba(0,0,0,.68) 52%,rgba(0,0,0,.18) 78%,transparent 100%);
    -webkit-mask-image:linear-gradient(90deg,#000 0%,#000 24%,rgba(0,0,0,.68) 52%,rgba(0,0,0,.18) 78%,transparent 100%);
    opacity:.72;
  }
  .solar-cta-marquee--right .solar-cta-lane:nth-child(1){
    mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.18) 22%,rgba(0,0,0,.68) 48%,#000 76%,#000 100%);
    -webkit-mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.18) 22%,rgba(0,0,0,.68) 48%,#000 76%,#000 100%);
    opacity:.72;
  }
}

/* ---- tablet: 1 lane per side (narrower stage, less room) ---- */
@media (min-width: 900px) and (max-width: 1100.98px){
  .solar-cta-showcase{min-height:400px; height:400px; padding:0;}
  .solar-cta-stage{height:400px;}
  .solar-cta-center{width:min(520px, 52vw); min-width:430px;}

  .solar-cta-marquee{
    position:absolute;
    top:-110px; bottom:-110px;
    z-index:2;
    display:grid;
    grid-template-columns:170px;
    width:170px;
    opacity:.72;
  }
  .solar-cta-marquee--left{left:-36px; transform:perspective(1250px) rotateY(10deg) rotateZ(-2.6deg) skewY(-2deg);}
  .solar-cta-marquee--right{right:-36px; transform:perspective(1250px) rotateY(-10deg) rotateZ(2.6deg) skewY(2deg);}
  /* only one lane fits at this width */
  .solar-cta-marquee .solar-cta-lane:nth-child(2){display:none;}

  .solar-cta-lane,
  .solar-cta-lane-track{width:170px; min-width:170px;}
  .solar-cta-media{width:170px; height:195px; flex-basis:195px; border-radius:3px;}
  .solar-cta-media--tall{height:225px; flex-basis:225px;}
}

/* ---- mobile: marquees become two horizontal strips, one above and
   one below the card, scrolling left/right instead of up/down. Kept as
   a scoped max-width block (rather than flattened to unconditional
   base like the rest of this file) because it's a genuine layout-mode
   switch — .solar-cta-marquee--right and its descendants get compound
   selectors here that would otherwise out-rank the desktop tier's
   lower-specificity rules regardless of viewport, breaking desktop.
   Purely cosmetic spacing/sizing for this component lives in the
   normal mobile-first base + min-width tiers above/below instead. ---- */
@media (max-width: 899.98px){
  .solar-cta-showcase{overflow-x:hidden;}
  .solar-cta-showcase::after{display:none;}

  .solar-cta-stage{
    flex-direction:column;
    align-items:stretch;
    max-width:100%;
    overflow-x:hidden;
  }
  .solar-cta-center{
    order:1;
    width:100%;
    max-width:100%;
    min-width:0;
    box-sizing:border-box;
  }

  /* the top strip is dropped entirely on mobile — just the bottom one
     remains, as a horizontal marquee (see below) */
  .solar-cta-marquee--left{display:none;}

  /* bottom strip: a genuine horizontal marquee (same loop technique as
     the desktop vertical lanes — the tile set is duplicated in the
     markup, and the track scrolls by exactly -50% for a seamless
     repeat), fading in from the top edge only so it blends under the
     card above without needing a bottom fade too */
  .solar-cta-marquee--right{
    order:2;
    position:relative;
    width:100%;
    max-width:100%;
    height:150px;
    overflow:hidden;
    opacity:1;
    mask-image:linear-gradient(to bottom, transparent 0%, #000 55%, #000 100%);
    -webkit-mask-image:linear-gradient(to bottom, transparent 0%, #000 55%, #000 100%);
    margin-top:32px;
    padding:0 14px;
  }
  .solar-cta-marquee--right .solar-cta-lane{
    width:100%;
    height:100%;
    overflow:hidden;
  }
  .solar-cta-marquee--right .solar-cta-lane:nth-child(2){display:none;}
  .solar-cta-marquee--right .solar-cta-lane-track{
    flex-direction:row;
    flex-wrap:nowrap;
    align-items:stretch;
    gap:8px;
    width:max-content;
    height:100%;
    animation:solarCtaMobileMarquee 20s linear infinite;
  }
  .solar-cta-marquee--right .solar-cta-media{
    flex:0 0 auto;
    width:120px;
    height:100%;
    border-radius:14px;
  }
}
@keyframes solarCtaMobileMarquee{
  from{transform:translateX(0);}
  to{transform:translateX(calc(-50% - 4px));}
}

/* narrowest phones: the mobile marquee strip shrinks further still
   (all other ≤420px spacing/sizing already lives in the mobile-first
   base above — this is the one property still exclusive to this
   nested breakpoint) */
@media (max-width: 420px){
  .solar-cta-marquee--right{height:120px; margin-top:24px; padding:0 10px;}
}

/* ---- ≥900px: reset the purely-cosmetic properties that only ever
   had a mobile value — the structural mode-switch itself is handled
   entirely by the max-width:899.98px block above, which simply stops
   applying past this point ---- */
@media (min-width:900px){
  .solar-cta-showcase{padding:0;}
  .solar-cta-stage{gap:0;}
  .solar-cta-center{padding:0;}
  .solar-cta-card{max-width:none;}
  .solar-cta-card h2{font-size:clamp(2rem, 4vw, 3rem); overflow-wrap:normal;}
  .solar-cta-card>p{max-width:560px; margin:18px auto 0; font-size:1rem; overflow-wrap:normal;}
  .solar-cta-actions{margin:28px 0 0;}
  .solar-cta-hero-button{width:auto; max-width:none;}
}

@media (prefers-reduced-motion: reduce){
  .solar-cta-lane-track{animation:none !important;}
  .solar-cta-card h2 .solar-cta-savings{
    animation:none;
    background:none;
    -webkit-text-fill-color:currentColor;
    color:var(--leaf-500);
  }
}

/* ============================================================
   FOOTER — brand block + Company/Services/Support link columns
   + a Stay Connected column (social links), over a dark-overlaid
   background photo anchored to the bottom-right (fixed natural
   size, not stretched to cover — and no fade mask on the image
   itself). Written mobile-first (base rules = mobile, min-width
   queries scale up) — this is the one section on the page that
   follows that convention; everywhere else uses max-width
   overrides on a desktop-first base, so treat this as an
   intentional, isolated exception rather than the site's general
   pattern.
   ============================================================ */

.site-footer{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:56px 0 28px;
  color:#fff;
  background:var(--forest-950);
}
.site-footer-overlay{
  position:absolute;
  inset:0;
  z-index:-1;
  background:rgba(14,42,31,0.85);
}

/* ---- grid: single column on mobile, widening progressively ---- */
.site-footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:36px;
  margin-bottom:40px;
}

.site-footer-brand p{
  margin:16px 0 0;
  max-width:min(320px, 85%);
  color:rgba(255,255,255,0.68);
  font-size:0.92rem;
  line-height:1.6;
}
.site-footer-logo-link{
  display:inline-block;
}
.site-footer-logo{
  height:70px;
  width:auto;
}

.site-footer-col h4{
  margin:0 0 16px;
  font-family:'Montserrat', sans-serif;
  font-weight:800;
  font-size:0.86rem;
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:#fff;
  position:relative;
  padding-bottom:12px;
}
.site-footer-col h4::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:30px; height:2px;
  background:var(--leaf-500);
}
.site-footer-col ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:11px;
}
.site-footer-col a{
  color:rgba(255,255,255,0.72);
  text-decoration:none;
  font-size:0.88rem;
  transition:color .2s ease;
}
.site-footer-col a:hover{
  color:var(--leaf-300);
}

.site-footer-social{
  display:flex;
  align-items:center;
  gap:12px;
}
.site-footer-social a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px; height:38px;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,0.3);
  color:#fff;
  font-size:1rem;
  text-decoration:none;
  transition:background .2s ease, border-color .2s ease;
}
.site-footer-social a:hover{
  background:var(--leaf-500);
  border-color:var(--leaf-500);
}

.site-footer-divider{
  display:block;
  width:100%;
  height:1px;
  margin:0 0 22px;
  background:rgba(255,255,255,0.14);
}

.site-footer-copyright{
  margin:0;
  color:rgba(255,255,255,0.6);
  font-size:0.82rem;
  text-align:center;
}

/* ---- ≥576px: brand + link columns pair up 2-across ---- */
@media (min-width: 576px){
  .site-footer-grid{
    grid-template-columns:repeat(2, 1fr);
  }
  .site-footer-brand{
    grid-column:1 / -1;
  }
}

/* ---- ≥992px: full 5-across row (wider brand column, 4 equal
   columns after it), copyright left-aligned ---- */
@media (min-width: 992px){
  .site-footer{padding:72px 0 32px;}
  .site-footer-grid{
    grid-template-columns:1.6fr 1fr 1fr 1fr 1fr;
    gap:32px;
  }
  .site-footer-brand{
    grid-column:auto;
  }
  .site-footer-copyright{
    text-align:left;
  }
}

@media (prefers-reduced-motion: reduce){
  .site-footer-col a,
  .site-footer-social a{transition:none;}
}

/* =====================================================================
   PAGE HEADER — dark banner used at the top of internal subpages
   (About Us, Projects, etc.), with a breadcrumb pill sitting at the
   top of the copy block.
   ===================================================================== */
.page-header{
  position:relative;
  overflow:hidden;
  min-height:clamp(480px, 52vw, 640px);
  display:flex;
  align-items:center;
  padding:150px 0 64px;
  background:var(--forest-950);
}
.page-header-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}
.page-header-color-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:var(--forest-800);
  opacity:0.4;
}
.page-header-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(20,58,40,0.8) 0%, rgba(9,20,15,0.45) 32%, rgba(9,20,15,0.5) 62%, #071b14 100%);
}
.page-header-copy{
  position:relative;
  z-index:5;
  max-width:820px;
}

.page-kicker{
  display:inline-block;
  font-family:'Montserrat', sans-serif;
  font-weight:800;
  font-size:0.92rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--leaf-400);
  margin-bottom:14px;
}
.page-header-title{
  font-family:'Montserrat', sans-serif;
  font-weight:800;
  font-size:clamp(2.1rem, 4.2vw, 3.4rem);
  line-height:1.06;
  text-transform:uppercase;
  color:#fff;
  letter-spacing:-0.015em;
  text-shadow:0 6px 28px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.4);
  margin:0 0 22px;
}
.page-header-title .accent{
  color:var(--leaf-400);
  font-weight:900;
}
.page-header-rule{
  display:block;
  width:64px;
  height:3px;
  border-radius:999px;
  background:var(--leaf-400);
  margin-bottom:22px;
}
.page-header-sub{
  font-size:1.05rem;
  color:rgba(255,255,255,0.86);
  max-width:480px;
  line-height:1.65;
  text-shadow:0 2px 12px rgba(0,0,0,0.45);
  margin:0;
}

/* ---- ≥576px: banner gets its full desktop top/bottom padding ---- */
@media (min-width:576px){
  .page-header{padding:170px 0 90px;}
}

/* breadcrumb + highlight row, sitting below the banner on the light page background */
.page-info{
  position:relative;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  padding:32px 0;
}
.page-breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border-radius:100px;
  padding:6px 16px 6px 6px;
  box-shadow:0 14px 34px rgba(14,42,31,0.1);
  font-size:0.9rem;
  font-weight:600;
  color:var(--ink-soft);
  flex-shrink:0;
}
.page-breadcrumb-home{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1.5px solid var(--leaf-300);
  color:var(--leaf-500);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.page-breadcrumb a{
  color:var(--ink-soft);
  text-decoration:none;
  transition:color .2s ease;
}
.page-breadcrumb a:hover{color:var(--leaf-500);}
.page-breadcrumb i{
  font-size:0.7rem;
  color:var(--ink-soft);
  opacity:0.5;
}
.page-breadcrumb span{
  color:var(--leaf-500);
  font-weight:800;
}

.page-info-stats{
  display:none;
  align-items:center;
  flex-wrap:wrap;
  gap:28px;
}
.page-info-stat{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 16px 10px 8px;
  border-radius:var(--radius-md);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.page-info-stat:hover{
  transform:translateY(-6px);
  background:rgba(14,42,31,0.06);
  box-shadow:0 26px 50px rgba(14,42,31,0.14);
}
.page-info-icon{
  width:40px;
  height:40px;
  border-radius:50%;
  background:var(--leaf-100);
  color:var(--leaf-500);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.page-info-icon i{font-size:1rem;}
.page-info-stat strong{
  font-size:0.88rem;
  color:var(--forest-950);
  font-weight:800;
  white-space:nowrap;
}

/* ---- ≥576px: breadcrumb regains its full desktop padding ---- */
@media (min-width:576px){
  .page-breadcrumb{padding:8px 22px 8px 8px;}
}
/* ---- ≥992px: the highlight-stats row appears alongside the breadcrumb ---- */
@media (min-width:992px){
  .page-info-stats{display:flex;}
}
@media (prefers-reduced-motion: reduce){
  .page-breadcrumb a{transition:none;}
  .page-info-stat{transition:none;}
}

/* blank placeholder section directly below a page header — content TBD */
.page-placeholder-section{
  min-height:600px;
}

/* =====================================================================
   ABOUT — story section (two-column: image + copy)
   ===================================================================== */
.about-story{
  position:relative;
  padding:20px 0 100px;
}
.about-story-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  align-items:center;
}
.about-story-media{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:0 30px 60px rgba(14,42,31,0.18);
}
.about-story-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.about-story-copy .page-kicker{color:var(--leaf-500);}
.about-story-copy h2{
  font-family:'Montserrat', sans-serif;
  font-weight:900;
  font-size:clamp(1.9rem, 3.4vw, 2.6rem);
  line-height:1.14;
  text-transform:uppercase;
  color:var(--forest-950);
  letter-spacing:-0.02em;
  margin:0 0 18px;
}
.about-story-copy p{
  color:var(--ink-soft);
  font-size:1rem;
  line-height:1.75;
  margin:0 0 26px;
}
.about-story-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:14px;
}
.about-story-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-weight:600;
  color:var(--forest-950);
  font-size:0.96rem;
}
.about-story-list i{
  color:var(--leaf-500);
  font-size:1.1rem;
  margin-top:2px;
}

@media (min-width:992px){
  .about-story-grid{
    grid-template-columns:0.95fr 1.05fr;
    gap:64px;
  }
}

/* =====================================================================
   PRELOADER — homepage only, shown until the page has finished loading
   ===================================================================== */
body.is-loading{overflow:hidden;}

.preloader{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--forest-950);
  transition:opacity .5s ease, visibility .5s ease;
}
.preloader.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.preloader-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:26px;
}
.preloader-logo{
  height:38px;
  width:auto;
  opacity:0.95;
}
.preloader-ring{
  width:44px;
  height:44px;
  border-radius:50%;
  border:3px solid rgba(255,255,255,0.14);
  border-top-color:var(--leaf-400);
  border-right-color:var(--leaf-400);
  animation:preloader-spin 0.85s linear infinite;
}
@keyframes preloader-spin{
  to{transform:rotate(360deg);}
}
@media (prefers-reduced-motion: reduce){
  .preloader{transition:none;}
  .preloader-ring{animation:none; border-top-color:var(--leaf-400); border-right-color:var(--leaf-400);}
}

/* =====================================================================
   PROJECTS — interactive featured case-study showcase
   ===================================================================== */
.project-showcase{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  padding:90px 0 100px;
  color:var(--ink);
}

/* ---- head: centered title/intro ---- */
.project-showcase-head{
  display:flex;
  justify-content:center;
  margin-bottom:56px;
}
.project-showcase-intro{
  max-width:620px;
  margin:0 auto;
  text-align:center;
}
.project-showcase-title{
  font-family:'Montserrat', sans-serif;
  font-weight:800;
  font-size:clamp(2rem, 3.6vw, 3rem);
  line-height:1.08;
  text-transform:uppercase;
  color:var(--forest-950);
  letter-spacing:-0.02em;
  margin:0 0 14px;
}
.project-showcase-title .accent{
  color:var(--leaf-500);
  font-weight:900;
}
.project-showcase-sub{
  font-size:1rem;
  color:var(--ink-soft);
  line-height:1.6;
  max-width:480px;
  margin:0 auto;
}

/* ---- stacked scroll cards: each settles slightly below the last as
   you scroll, peeking out behind the one on top ---- */
.projects-stack{
  position:relative;
}
.stack-card-wrap{
  position:sticky;
  padding-bottom:24px;
}
.stack-card-wrap:nth-child(1){top:100px;}
.stack-card-wrap:nth-child(2){top:126px;}
.stack-card-wrap:nth-child(3){top:152px;}
.stack-card-wrap:nth-child(4){top:178px;}
.stack-card-wrap:nth-child(5){top:204px;}
.stack-card-wrap:has(.project-card[hidden]){display:none;}

.project-card{
  position:relative;
  display:grid;
  grid-template-columns:1fr;
  height:auto;
  border-radius:var(--radius-lg);
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 30px 60px rgba(14,42,31,0.18);
  transition:box-shadow .3s ease;
}
.project-card:hover{box-shadow:0 40px 80px rgba(14,42,31,0.26);}
.project-card:focus-visible{outline:2px solid var(--leaf-500); outline-offset:3px;}

.project-card-media{position:relative; height:220px;}
.project-card-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.project-card:hover .project-card-media img{transform:scale(1.05);}
.project-card-shade{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(9,20,15,0) 40%, rgba(9,20,15,0.55) 100%);
}
.project-type{
  display:inline-block;
  font-size:0.7rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.06em;
  padding:5px 14px;
  border-radius:100px;
}
.project-card-media .project-type{
  position:absolute;
  top:20px;
  left:20px;
  background:rgba(255,255,255,0.14);
  backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,0.24);
  color:#fff;
}

.project-card-body{
  position:relative;
  background:var(--cream-50);
  padding:28px 24px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.project-card-body h3{
  font-family:'Montserrat', sans-serif;
  font-weight:800;
  font-size:clamp(1.3rem, 2vw, 1.7rem);
  text-transform:uppercase;
  letter-spacing:-0.01em;
  color:var(--forest-950);
  margin:0 0 10px;
}
.project-card-body .project-location{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:0.88rem;
  font-weight:600;
  color:var(--forest-700);
  margin-bottom:20px;
}
.project-card-body .project-location i{font-size:0.8rem; color:var(--leaf-500);}

.project-card-body .project-stats{
  display:flex;
  flex-wrap:wrap;
  gap:26px;
  padding-top:20px;
  border-top:1px solid rgba(14,42,31,0.1);
  margin-bottom:24px;
}
.project-card-body .project-stat{display:flex; flex-direction:column;}
.project-card-body .project-stat strong{font-size:1.1rem; font-weight:800; color:var(--forest-950);}
.project-card-body .project-stat span{font-size:0.7rem; color:var(--ink-soft); text-transform:uppercase; letter-spacing:0.04em;}

/* mobile/tablet: sticky-stacking is disabled (falls back to a plain
   list) — kept scoped rather than flattened to unconditional base,
   since it needs !important to out-rank the unconditional
   .stack-card-wrap:nth-child(N){top:...} offset rules above, and an
   unconditional !important here would permanently break the desktop
   stacking effect those rules exist to create */
@media (max-width:991.98px){
  .stack-card-wrap{position:static !important; top:auto !important;}
}

/* ---- ≥992px: full sticky-stack card layout ---- */
@media (min-width:992px){
  .stack-card-wrap{padding-bottom:130px;}
  .project-card{grid-template-columns:1.05fr 1fr; height:420px;}
  .project-card-media{height:auto;}
  .project-card-body{padding:36px 34px;}
}

@media (prefers-reduced-motion: reduce){
  .project-card,
  .project-card-media img{transition:none;}
}

/* ---- filter tabs ---- */
.project-filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:36px;
}
.project-filter{
  background:#fff;
  border:1px solid rgba(14,42,31,0.12);
  color:var(--ink-soft);
  font-weight:700;
  font-size:0.86rem;
  padding:10px 20px;
  border-radius:100px;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.project-filter:hover{border-color:rgba(14,42,31,0.28); color:var(--forest-950);}
.project-filter.is-active{
  background:var(--leaf-500);
  border-color:var(--leaf-500);
  color:#fff;
}

/* ---- "view case study" label — plain text, no pill/border ---- */
.project-card-body .project-card-view{
  display:inline-flex;
  align-items:center;
  gap:6px;
  width:fit-content;
  font-size:0.84rem;
  font-weight:700;
  color:var(--forest-950);
  transition:color .2s ease;
}
.project-card-body .project-card-view i{font-size:0.75rem;}
.project-card:hover .project-card-view{color:var(--leaf-500);}

.projects-empty{
  text-align:center;
  color:var(--ink-soft);
  padding:40px 0;
}

/* =====================================================================
   PROJECT DETAIL MODAL
   ===================================================================== */
body.modal-open{overflow:hidden;}

.project-modal{
  position:fixed;
  inset:0;
  z-index:200;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
  visibility:hidden;
  opacity:0;
  transition:opacity .3s ease, visibility .3s ease;
}
.project-modal.is-open{
  visibility:visible;
  opacity:1;
}
.project-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(7,20,15,0.6);
  backdrop-filter:blur(4px);
}
.project-modal-dialog{
  position:relative;
  z-index:1;
  width:100%;
  max-width:920px;
  max-height:94vh;
  max-height:94dvh; /* dvh accounts for mobile browser chrome — vh above is just the fallback */
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  background:var(--cream-50);
  border-radius:var(--radius-lg);
  display:grid;
  grid-template-columns:1fr;
  box-shadow:0 40px 90px rgba(0,0,0,0.35);
  transform:translateY(16px) scale(0.98);
  transition:transform .3s ease;
}
.project-modal.is-open .project-modal-dialog{
  transform:translateY(0) scale(1);
}
.project-modal-close{
  position:absolute;
  top:16px;
  right:16px;
  z-index:3;
  width:38px;
  height:38px;
  border-radius:50%;
  border:none;
  background:rgba(9,20,15,0.55);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background .2s ease;
}
.project-modal-close:hover{background:rgba(9,20,15,0.8);}

.project-modal-media{
  position:relative;
  min-height:160px;
}
.project-modal-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.project-modal-detail{
  padding:24px 20px;
  display:flex;
  flex-direction:column;
}
.project-modal-detail .project-type{
  align-self:flex-start;
  background:var(--leaf-100);
  border:1px solid rgba(90,174,114,0.3);
  color:var(--forest-700);
  margin-bottom:14px;
}
.project-modal-detail h3{
  font-family:'Montserrat', sans-serif;
  font-weight:800;
  font-size:1.5rem;
  text-transform:uppercase;
  color:var(--forest-950);
  letter-spacing:-0.01em;
  margin:0 0 10px;
}

/* ---- shared detail styling (location, description, cost compare, specs) ---- */
.project-panel-location{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:0.86rem;
  font-weight:600;
  color:var(--forest-700);
  margin-bottom:16px;
}
.project-panel-desc{
  font-size:0.9rem;
  color:var(--ink-soft);
  line-height:1.65;
  margin:0 0 22px;
  padding-bottom:22px;
  border-bottom:1px solid rgba(14,42,31,0.1);
}

.project-cost-compare{margin-bottom:24px;}
.project-cost-label{
  display:block;
  font-size:0.72rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.05em;
  color:var(--leaf-500);
  margin-bottom:14px;
}
.project-cost-row{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:24px;
  flex-wrap:wrap;
}
.project-cost-bars{
  flex:none;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.project-cost-bar-item{
  display:grid;
  grid-template-columns:78px 1fr 68px;
  align-items:center;
  gap:10px;
}
.project-cost-bar-label{
  font-size:0.66rem;
  color:var(--ink-soft);
  text-transform:uppercase;
  letter-spacing:0.03em;
}
.project-cost-bar{
  height:8px;
  border-radius:100px;
  background:rgba(14,42,31,0.08);
  overflow:hidden;
}
.project-cost-bar-fill{
  display:block;
  height:100%;
  border-radius:100px;
  transition:width .4s ease;
}
.project-cost-bar-fill--before{background:rgba(14,42,31,0.25);}
.project-cost-bar-fill--after{background:linear-gradient(90deg, var(--leaf-500), var(--leaf-300));}
.project-cost-bar-item strong{
  font-size:0.82rem;
  font-weight:800;
  color:var(--forest-950);
  text-align:right;
}

.project-savings{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
  padding-left:0;
  border-left:none;
  padding-top:16px;
  border-top:1px solid rgba(14,42,31,0.12);
}
.project-savings strong{
  font-family:'Montserrat', sans-serif;
  font-size:1.9rem;
  font-weight:900;
  color:var(--leaf-500);
  line-height:1.1;
  margin:4px 0 6px;
}
.project-savings-percent{
  display:inline-flex;
  align-items:center;
  gap:4px;
  font-size:0.75rem;
  color:var(--ink-soft);
}
.project-savings-percent i{color:var(--leaf-500);}

.project-specs{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  margin-bottom:26px;
}
.project-spec{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:8px;
  padding:14px 8px;
  border-radius:var(--radius-md);
  background:#fff;
  border:1px solid rgba(14,42,31,0.08);
}
.project-spec i{color:var(--leaf-500); font-size:1.1rem;}
.project-spec strong{font-size:0.86rem; font-weight:800; color:var(--forest-950);}
.project-spec span{font-size:0.64rem; color:var(--ink-soft); text-transform:uppercase; letter-spacing:0.03em;}

.project-modal-cta{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:var(--leaf-500);
  color:#fff;
  font-weight:700;
  font-size:0.92rem;
  text-decoration:none;
  padding:15px 20px;
  border-radius:100px;
  transition:background .2s ease;
}
.project-modal-cta:hover{background:var(--forest-700); color:#fff;}

/* ---- ≥768px: full two-column modal dialog ---- */
@media (min-width:768px){
  .project-modal{padding:24px;}
  .project-modal-dialog{
    grid-template-columns:1fr 1fr;
    max-height:88vh;
    max-height:88dvh;
  }
  .project-modal-media{min-height:280px;}
  .project-modal-detail{padding:34px 32px;}
  .project-cost-row{flex-direction:row; align-items:flex-end;}
  .project-cost-bars{flex:1 1 220px;}
  .project-savings{
    align-items:flex-end;
    text-align:right;
    padding-left:20px;
    border-left:1px solid rgba(14,42,31,0.12);
    padding-top:0;
    border-top:none;
  }
  .project-specs{grid-template-columns:repeat(4, 1fr);}
}
@media (prefers-reduced-motion: reduce){
  .project-modal,
  .project-modal-dialog,
  .project-cost-bar-fill,
  .project-filter,
  .project-card-view{transition:none;}
}

/* =====================================================================
   SERVICES — alternating "zigzag" list, one full row per service
   ===================================================================== */
.services-list{
  padding:30px 0 100px;
}
.service-row{
  padding:56px 0;
  scroll-margin-top:110px;
}
.service-row:first-child{padding-top:0;}
.service-row + .service-row{
  border-top:1px solid rgba(14,42,31,0.08);
}

.service-row-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  align-items:center;
}
.service-row-media{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:0 30px 60px rgba(14,42,31,0.16);
}
.service-row-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.service-row-title{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:16px;
}
.service-row-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  flex-shrink:0;
  border-radius:50%;
  background:var(--leaf-100);
  color:var(--leaf-500);
  font-size:1.2rem;
}
.service-row-copy h2{
  font-family:'Montserrat', sans-serif;
  font-weight:900;
  font-size:clamp(1.4rem, 2.4vw, 1.8rem);
  line-height:1.2;
  text-transform:uppercase;
  color:var(--forest-950);
  letter-spacing:-0.02em;
  margin:0;
}
.service-row-copy p{
  color:var(--ink-soft);
  font-size:1rem;
  line-height:1.75;
  margin:0 0 24px;
}
.service-row-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:26px;
  font-weight:700;
  font-size:0.94rem;
  color:var(--forest-950);
  text-decoration:none;
  transition:color .2s ease, gap .2s ease;
}
.service-row-cta i{font-size:0.85rem;}
.service-row-cta:hover{color:var(--leaf-500); gap:12px;}

@media (min-width:992px){
  .service-row-grid{
    grid-template-columns:1fr 1fr;
    gap:64px;
  }
  .service-row-media{height:420px;}
  .service-row--reverse .service-row-media{order:2;}
  .service-row--reverse .service-row-copy{order:1;}
}
@media (prefers-reduced-motion: reduce){
  .service-row-cta{transition:none;}
}

/* =====================================================================
   OTHER SERVICES — compact 2-card grid below the main service rows
   ===================================================================== */
.other-services{
  padding:20px 0 100px;
}
.other-services-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  max-width:760px;
  margin:0 auto;
}
.other-service-card{
  background:#fff;
  border:1px solid rgba(14,42,31,0.08);
  border-radius:var(--radius-lg);
  padding:34px 28px;
  text-align:center;
  box-shadow:0 20px 40px rgba(14,42,31,0.08);
  transition:transform .25s ease, box-shadow .25s ease;
}
.other-service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 50px rgba(14,42,31,0.14);
}
.other-service-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  border-radius:50%;
  background:var(--leaf-100);
  color:var(--leaf-500);
  font-size:1.4rem;
  margin-bottom:18px;
}
.other-service-card h3{
  font-family:'Montserrat', sans-serif;
  font-weight:800;
  font-size:1.15rem;
  text-transform:uppercase;
  letter-spacing:-0.01em;
  color:var(--forest-950);
  margin:0 0 10px;
}
.other-service-card p{
  color:var(--ink-soft);
  font-size:0.92rem;
  line-height:1.6;
  margin:0;
}

@media (min-width:768px){
  .other-services-grid{grid-template-columns:1fr 1fr;}
}
@media (prefers-reduced-motion: reduce){
  .other-service-card{transition:none;}
}

/* =====================================================================
   ABOUT — values grid + stats strip
   ===================================================================== */
.about-values{
  padding:20px 0 100px;
}
.values-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}
.value-card{
  background:#fff;
  border:1px solid rgba(14,42,31,0.08);
  border-radius:var(--radius-lg);
  padding:32px 26px;
  text-align:center;
  box-shadow:0 20px 40px rgba(14,42,31,0.08);
  transition:transform .25s ease, box-shadow .25s ease;
}
.value-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 50px rgba(14,42,31,0.14);
}
.value-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  border-radius:50%;
  background:var(--leaf-100);
  color:var(--leaf-500);
  font-size:1.4rem;
  margin-bottom:18px;
}
.value-card h3{
  font-family:'Montserrat', sans-serif;
  font-weight:800;
  font-size:1.1rem;
  text-transform:uppercase;
  letter-spacing:-0.01em;
  color:var(--forest-950);
  margin:0 0 10px;
}
.value-card p{
  color:var(--ink-soft);
  font-size:0.92rem;
  line-height:1.6;
  margin:0;
}

.about-stats{
  background:var(--forest-950);
  padding:64px 0;
}
.about-stats-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:36px;
  text-align:center;
}
.about-stat strong{
  display:block;
  font-family:'Montserrat', sans-serif;
  font-weight:900;
  font-size:clamp(2rem, 4vw, 2.8rem);
  color:var(--leaf-400);
  letter-spacing:-0.02em;
  margin-bottom:6px;
}
.about-stat span{
  font-size:0.8rem;
  color:rgba(255,255,255,0.75);
  text-transform:uppercase;
  letter-spacing:0.04em;
}

@media (min-width:576px){
  .values-grid{grid-template-columns:1fr 1fr;}
}
@media (min-width:992px){
  .values-grid{grid-template-columns:repeat(4, 1fr);}
  .about-stats-grid{grid-template-columns:repeat(4, 1fr);}
}
@media (prefers-reduced-motion: reduce){
  .value-card{transition:none;}
}

