/* =========================================================
   ECOMOVERS — Design System
   Exact brand tokens from live site CSS (ecomoversfl.com)
   ========================================================= */

/* --- Brand tokens (from live site) --- */
:root {
  /* Core palette — exact values from live site */
  --eco-primary:    hsl(147, 42%, 21%);   /* deep forest green  var(--eco-primary) */
  --eco-emerald:    hsl(136, 46%, 33%);   /* medium green       #2d6e42 */
  --eco-charcoal:   hsl(0,   0%,  17%);   /* near-black text    #2b2b2b */
  --eco-light-gray: hsl(0,   0%,  90%);   /* borders/bg         #e6e6e6 */
  --eco-white:      #ffffff;
  --eco-muted:      hsl(0,   0%,  45%);   /* secondary text     #737373 */
  --eco-border:     hsl(0,   0%,  90%);

  /* Tints derived for prototype (not on live site) */
  --eco-primary-dk: hsl(147, 42%, 14%);   /* darker forest      #142f1e */
  --eco-primary-lt: hsl(147, 42%, 96%);   /* near-white tint    #f0f7f2 */
  --eco-emerald-lt: hsl(136, 46%, 94%);   /* card bg tint       #eaf4ed */

  /* Semantic aliases */
  --color-primary:    var(--eco-primary);
  --color-primary-dk: var(--eco-primary-dk);
  --color-accent:     var(--eco-emerald);
  --color-bg:         var(--eco-white);
  --color-bg-alt:     var(--eco-primary-lt);
  --color-text:       var(--eco-charcoal);
  --color-text-muted: var(--eco-muted);
  --color-border:     var(--eco-border);

  /* Typography — Inter for everything (matches live site exactly) */
  --font-heading: 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Radius — minimal, matching the live site's clean aesthetic */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; image-orientation: from-image; }

/* Real photo helpers */
.photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-hero {
  aspect-ratio: 4/3;
}
.photo-square {
  aspect-ratio: 1/1;
}
.photo-wide {
  aspect-ratio: 16/9;
}
.photo-tall {
  aspect-ratio: 3/4;
}
a { color: inherit; text-decoration: none; }

/* --- Typography Scale --- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700 !important; }
h1 { font-size: clamp(1.875rem, 5vw, 4.5rem); font-weight: 800 !important; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 800 !important; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 700 !important; }
h4 { font-size: 1rem; font-weight: 600 !important; }
p  { line-height: 1.7; }

/* --- Layout Utilities --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: var(--space-xl) 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--eco-primary-dk); color: var(--eco-white); }
.section--primary { background: var(--eco-primary); color: var(--eco-white); }

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--eco-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--space-md);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--eco-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  margin-right: auto;
  padding-left: 0;
}
.nav__logo img { height: 52px; width: auto; }
.nav__logo span { color: var(--eco-emerald); }
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--eco-charcoal);
  transition: color .2s;
}
.nav__links a:hover { color: var(--eco-emerald); }
.nav__links .nav__cta a {
  background: var(--eco-primary);
  color: var(--eco-white);
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity .2s;
  border-radius: 0;
}
.nav__links .nav__cta a:hover { opacity: .9; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--eco-primary-dk);
  border-radius: 2px;
  transition: all .25s;
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--eco-white);
  z-index: 99;
  flex-direction: column;
  padding: var(--space-lg) var(--space-md);
  gap: var(--space-md);
  overflow-y: auto;
}
.nav__mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--eco-charcoal);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--eco-light-gray);
  display: block;
}
.nav__mobile .nav__cta-mobile a {
  display: block;
  background: var(--eco-primary);
  color: var(--eco-white);
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  margin-top: var(--space-sm);
  border: none;
}
body.nav-open .nav__mobile { display: flex; }

/* --- Buttons — match live site: square, uppercase, letter-spaced --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: opacity .2s, background .2s;
  border: none;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--eco-primary);
  color: var(--eco-white);
  padding: 1rem 2rem;
}
.btn--primary:hover { opacity: .9; color: var(--eco-white); }
.btn--secondary {
  background: transparent;
  color: var(--eco-white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 1rem 2rem;
}
.btn--secondary:hover { background: rgba(255,255,255,.1); color: var(--eco-white); }
.btn--outline {
  background: transparent;
  color: var(--eco-primary);
  border: 1px solid var(--eco-primary);
  padding: 1rem 2rem;
}
.btn--outline:hover { background: var(--eco-primary); color: var(--eco-white); }
.btn--lg { padding: 1.1rem 2.5rem; font-size: 0.9rem; }
.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--eco-primary-dk) 0%, var(--eco-primary) 100%);
  color: var(--eco-white);
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero__content { max-width: 580px; }
/* Hero eyebrow — smaller, uppercase, letter-spaced like live site labels */
.hero__eyebrow {
  display: inline-block;
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 { color: var(--eco-white); margin-bottom: 1.25rem; }
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: var(--space-lg); }
.hero__stats {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero__stat-item { display: flex; flex-direction: column; }
.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--eco-white);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: .2rem;
}
.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--eco-emerald) 0%, var(--eco-primary-dk) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--eco-white);
  text-align: center;
  padding: var(--space-lg);
  min-height: 360px;
}
.hero__image-placeholder .placeholder-icon {
  font-size: 3.5rem;
  opacity: .5;
}
.hero__image-placeholder p {
  font-size: 0.8rem;
  opacity: .6;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* --- Brag Bar --- */
.brag-bar {
  background: var(--eco-white);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) 0;
}
.brag-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.brag-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--eco-charcoal);
}
.brag-bar__item .icon {
  width: 18px;
  height: 18px;
  color: var(--eco-emerald);
  flex-shrink: 0;
}
.brag-bar__divider {
  width: 1px;
  height: 24px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* --- Section headers --- */
.section__header { text-align: center; margin-bottom: var(--space-xl); max-width: 680px; margin-left: auto; margin-right: auto; }
/* Matches live site .eco-section-label exactly */
.section__eyebrow {
  display: inline-block;
  color: var(--eco-emerald);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section__title { margin-bottom: .75rem; }
.section__subtitle { color: var(--color-text-muted); font-size: 1.05rem; line-height: 1.7; }

/* --- Cards --- */
.card {
  background: var(--eco-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__icon {
  width: 52px;
  height: 52px;
  background: var(--eco-emerald-lt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.6rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--color-text-muted); font-size: .925rem; line-height: 1.65; }

/* --- Grid layouts --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }

/* --- Split section (two-path) --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
.split__card {
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.split__card--residential {
  background: var(--eco-primary-lt);
  border: 2px solid rgba(255,255,255,0.65);
}
.split__card--ffe {
  background: var(--eco-primary-dk);
  color: var(--eco-white);
}
.split__card h3 { font-size: 1.5rem; margin-bottom: .25rem; }
.split__card--ffe h3 { color: var(--eco-white); }
.split__card p { font-size: .95rem; }
.split__card--ffe p { color: rgba(255,255,255,0.65); }
.split__bullets { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.split__bullets li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--eco-charcoal);
}
.split__card--ffe .split__bullets li { color: rgba(255,255,255,0.65); }
.split__bullets li::before {
  content: '✓';
  color: var(--eco-emerald);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}
.split__card--ffe .split__bullets li::before { color: var(--eco-emerald, var(--eco-emerald)); }

/* --- Proof / Project table --- */
.proof-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.proof-table th {
  background: var(--eco-primary-dk);
  color: var(--eco-white);
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.proof-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--eco-light-gray); vertical-align: top; }
.proof-table tr:last-child td { border-bottom: none; }
.proof-table tr:hover td { background: var(--eco-primary-lt); }
.proof-table .outcome { color: var(--eco-emerald); font-weight: 600; }
.table-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); }

/* --- Quote block --- */
.quote-block {
  background: var(--eco-primary-dk);
  color: var(--eco-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
}
.quote-block::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: rgba(45,110,66,.25);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
}
.quote-block__text {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  position: relative;
  margin-bottom: var(--space-md);
  color: var(--eco-emerald-lt);
}
.quote-block__attr {
  font-size: .875rem;
  color: var(--eco-emerald);
  font-weight: 600;
}

/* --- Review card --- */
.review-card {
  background: var(--eco-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}
.review-card__stars { color: #F59E0B; font-size: 1rem; margin-bottom: .6rem; }
.review-card__text { font-size: .9rem; line-height: 1.65; color: var(--eco-charcoal); margin-bottom: .75rem; }
.review-card__name { font-weight: 700; font-size: .85rem; color: var(--eco-charcoal); }
.review-card__source { font-size: .75rem; color: var(--eco-muted); }

/* --- Process steps --- */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  align-items: flex-start;
  position: relative;
  padding-bottom: var(--space-lg);
}
.step:last-child { padding-bottom: 0; }
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 40px;
  top: 64px;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.65);
  transform: translateX(-50%);
}
.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--eco-primary);
  color: var(--eco-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.step__content h4 { font-size: 1.05rem; margin-bottom: .35rem; padding-top: .6rem; }
.step__content p { color: var(--color-text-muted); font-size: .9rem; }

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  gap: 1rem;
}
.faq-question:hover { color: var(--eco-primary); }
.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--eco-emerald);
  transition: transform .25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: .95rem;
}
.faq-item.open .faq-answer { display: block; }

/* --- Risk reversal bar --- */
.risk-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: .75rem 0;
  font-size: .82rem;
  color: var(--eco-muted);
}
.risk-bar span { display: flex; align-items: center; gap: .3rem; }
.risk-bar span::before { content: '✓'; color: var(--eco-emerald); font-weight: 700; }

/* --- CTA section --- */
.cta-section {
  background: linear-gradient(135deg, var(--eco-primary-dk) 0%, var(--eco-primary) 100%);
  color: var(--eco-white);
  text-align: center;
  padding: var(--space-2xl) 0;
}
.cta-section h2 { color: var(--eco-white); margin-bottom: .75rem; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: var(--space-lg); max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-section__btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: var(--space-md); }
.cta-section .phone { color: rgba(255,255,255,0.65); font-size: 1rem; }
.cta-section .phone a { color: var(--eco-white); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* --- Lead magnet / form section --- */
.lead-magnet {
  background: var(--eco-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  color: var(--eco-white);
}
.lead-magnet h3 { color: var(--eco-white); font-size: 1.6rem; margin-bottom: .5rem; }
.lead-magnet p { color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: var(--space-md); }
.lead-magnet ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: var(--space-md); }
.lead-magnet ul li { display: flex; gap: .5rem; font-size: .9rem; color: rgba(255,255,255,0.65); }
.lead-magnet ul li::before { content: '✓'; color: var(--eco-emerald, var(--eco-emerald)); font-weight: 700; }
.form-simple { display: flex; flex-direction: column; gap: .75rem; }
.form-simple input, .form-simple select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  color: var(--eco-white);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
}
.form-simple input::placeholder { color: rgba(255,255,255,.5); }
.form-simple input:focus, .form-simple select:focus {
  outline: none;
  border-color: var(--eco-emerald, var(--eco-emerald));
  background: rgba(255,255,255,.15);
}
.form-simple select { color: rgba(255,255,255,.7); }
.form-simple select option { color: var(--eco-charcoal); background: var(--eco-white); }

/* --- Contact form --- */
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-text);
  background: var(--eco-white);
  transition: border-color .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--eco-emerald);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.contact-form .form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .75rem; }
.contact-form label { font-size: .85rem; font-weight: 600; color: var(--eco-charcoal); }
.contact-form .form-note { font-size: .8rem; color: var(--eco-muted); margin-top: .25rem; }

/* --- Stat grid --- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); text-align: center; }
.stat-item { padding: var(--space-md); }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--eco-primary);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label { font-size: .875rem; color: var(--color-text-muted); line-height: 1.4; }
.section--dark .stat-num { color: var(--eco-emerald, var(--eco-emerald)); }
.section--dark .stat-label { color: rgba(255,255,255,0.65); }

/* --- Service list with check --- */
.service-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
}
.service-list li .check {
  width: 22px;
  height: 22px;
  background: var(--eco-emerald-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eco-emerald);
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}
.service-list .benefit { color: var(--eco-charcoal); line-height: 1.6; }

/* --- Certification badges --- */
.cert-badges { display: flex; gap: var(--space-md); flex-wrap: wrap; align-items: center; }
.cert-badge {
  background: var(--eco-primary-lt);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: var(--radius-sm);
  padding: .6rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--eco-primary-dk);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.cert-badge .cert-icon { font-size: 1rem; }

/* --- Page hero (interior pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--eco-primary-dk) 0%, var(--eco-primary) 100%);
  color: var(--eco-white);
  padding: var(--space-xl) 0;
  text-align: center;
}
.page-hero h1 { color: var(--eco-white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 640px; margin: 0 auto var(--space-md); }
.page-hero .hero__stats {
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
}

/* --- Footer --- */
.footer {
  background: var(--eco-primary-dk);
  color: var(--eco-white);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--eco-white);
  margin-bottom: .5rem;
}
.footer__brand-desc { font-size: .875rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: var(--space-md); }
.footer__certs { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer__cert {
  background: rgba(45,110,66,.15);
  border: 1px solid rgba(45,110,66,.3);
  color: rgba(255,255,255,0.65);
  font-size: .72rem;
  font-weight: 600;
  padding: .3rem .65rem;
  border-radius: 100px;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--eco-emerald);
  margin-bottom: var(--space-sm);
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer__col ul a { font-size: .875rem; color: rgba(255,255,255,0.65); transition: color .2s; }
.footer__col ul a:hover { color: var(--eco-white); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: .65rem;
}
.footer__contact-item a { color: var(--eco-white); font-weight: 600; }
.footer__legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer__legal a { color: rgba(255,255,255,.5); text-decoration: underline; }
.footer__placeholder {
  display: inline-block;
  background: rgba(255,190,0,.15);
  border: 1px solid rgba(255,190,0,.3);
  color: rgba(255,190,0,.8);
  border-radius: 4px;
  padding: 0 .4rem;
  font-size: .75rem;
}

/* --- Placeholder badge (CLIENT INPUT items) --- */
.placeholder {
  display: inline-block;
  background: #FEF9C3;
  border: 1px solid #FDE047;
  color: #713F12;
  border-radius: 4px;
  padding: .15rem .5rem;
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: help;
}

/* --- Coverage / service area chips --- */
.area-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.area-chip {
  background: var(--eco-emerald-lt);
  color: var(--eco-primary-dk);
  border-radius: 100px;
  padding: .35rem .85rem;
  font-size: .82rem;
  font-weight: 600;
}

/* --- Sticky phone CTA (mobile) --- */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--eco-primary);
  color: var(--eco-white);
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  white-space: nowrap;
}
.sticky-call:hover { background: var(--eco-emerald); }

/* --- Page-specific nav highlight --- */
.nav__links a.active { color: var(--eco-primary); font-weight: 700; }

/* --- About team placeholder --- */
.team-card {
  background: var(--eco-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
}
.team-photo {
  height: 220px;
  background: linear-gradient(135deg, var(--eco-emerald) 0%, var(--eco-primary-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,.3);
}
.team-info { padding: var(--space-md); }
.team-info h4 { margin-bottom: .2rem; }
.team-info p { font-size: .85rem; color: var(--eco-muted); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image-wrap { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .lead-magnet { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .grid-2, .grid-3, .split { grid-template-columns: 1fr; }
  .brag-bar__inner { gap: var(--space-md); }
  .brag-bar__divider { display: none; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .sticky-call { display: block; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .hero__stats { gap: var(--space-md); }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .cta-section__btns { flex-direction: column; width: 100%; }
  .cta-section__btns .btn { width: 100%; max-width: 360px; }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: var(--space-lg) 0; }
  .hero { padding: var(--space-xl) 0 var(--space-lg); }
}

/* --- Smooth transitions --- */
.card, .btn, .faq-question, .nav__links a { transition-property: color, background, transform, box-shadow, border-color; transition-duration: .2s; transition-timing-function: ease; }

/* =========================================================
   NEW COMPONENTS — Redesign 2026
   ========================================================= */

/* --- Announcement Bar --- */
.announcement-bar {
  background: hsl(0, 0%, 95%);
  color: var(--eco-charcoal);
  text-align: center;
  padding: .45rem 1rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  border-bottom: 1px solid var(--eco-border);
}
.announcement-bar a { color: var(--eco-primary); font-weight: 700; text-decoration: none; }
.announcement-bar a:hover { text-decoration: underline; text-underline-offset: 2px; }
.announcement-bar strong { font-weight: 700; }

/* --- Nav Dropdown --- */
.nav__links .has-dropdown { position: relative; }
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--eco-white);
  border: 1px solid var(--eco-border);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  z-index: 200;
  /* Padding-top creates overlap so cursor doesn't fall through */
  padding: .5rem 0;
  padding-top: 10px;
  margin-top: -2px;
}
.nav__links .has-dropdown.dropdown-open .nav__dropdown { display: block; }
.nav__links .has-dropdown:focus-within .nav__dropdown { display: block; }
.nav__dropdown a {
  display: block;
  padding: .65rem 1.25rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--eco-charcoal);
  text-transform: none;
  border-bottom: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav__dropdown a:hover { background: var(--eco-primary-lt); color: var(--eco-primary); }
.nav__dropdown a .dd-label { font-size: .7rem; color: var(--eco-muted); display: block; }
.nav__chevron {
  display: inline-block;
  margin-left: .3rem;
  font-size: .65rem;
  vertical-align: middle;
  color: var(--eco-muted);
}

/* --- Hero with Form (homepage, residential) --- */
.hero--form .hero__inner { grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: start; }
.hero--form .hero__content { padding-top: var(--space-sm); }

/* Quote card — white glass card in hero */
.quote-card {
  background: var(--eco-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  color: var(--eco-charcoal);
}
.quote-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--eco-primary);
}
.quote-card .service-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--eco-border);
  padding-bottom: var(--space-sm);
}
.quote-card .service-tab {
  flex: 1;
  padding: .5rem .5rem;
  border: 1.5px solid var(--eco-border);
  background: none;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--eco-muted);
  transition: all .2s;
  border-radius: var(--radius-sm);
  text-align: center;
}
.quote-card .service-tab.active,
.quote-card .service-tab:hover {
  background: var(--eco-primary);
  color: var(--eco-white);
  border-color: var(--eco-primary);
}
.quote-card .form-field { margin-bottom: .65rem; }
.quote-card .form-field label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--eco-muted);
  margin-bottom: .25rem;
}
.quote-card .form-field input,
.quote-card .form-field select,
.quote-card .form-field textarea {
  width: 100%;
  padding: .65rem .85rem;
  border: 1.5px solid var(--eco-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--eco-charcoal);
  background: var(--eco-white);
  transition: border-color .2s;
}
.quote-card .form-field input:focus,
.quote-card .form-field select:focus,
.quote-card .form-field textarea:focus {
  outline: none;
  border-color: var(--eco-emerald);
}
.quote-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.quote-card .submit-btn {
  width: 100%;
  background: var(--eco-primary);
  color: var(--eco-white);
  padding: .9rem;
  border: none;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s;
  margin-top: .25rem;
}
.quote-card .submit-btn:hover { opacity: .9; }
.quote-card .form-trust {
  font-size: .72rem;
  color: var(--eco-muted);
  text-align: center;
  margin-top: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}

/* --- Hero bullet points --- */
.hero__bullets { list-style: none; margin: var(--space-md) 0 var(--space-lg); display: flex; flex-direction: column; gap: .6rem; }
.hero__bullets li { display: flex; align-items: center; gap: .65rem; font-size: .925rem; color: rgba(255,255,255,.85); }
.hero__bullets li svg { flex-shrink: 0; color: rgba(255,255,255,.6); }

/* --- Stats Band (green, matching live site) --- */
.stats-band {
  background: var(--eco-primary);
  color: var(--eco-white);
  padding: var(--space-lg) 0;
}
.stats-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stats-band__item {
  padding: var(--space-md) var(--space-sm);
  border-right: 1px solid rgba(255,255,255,.15);
}
.stats-band__item:last-child { border-right: none; }
.stats-band__num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--eco-white);
  line-height: 1;
  margin-bottom: .35rem;
}
.stats-band__label { font-size: .8rem; color: rgba(255,255,255,.7); letter-spacing: .05em; text-transform: uppercase; line-height: 1.4; }

/* --- Service Path Cards (homepage) --- */
/* Section wrapper — also acts as grid when cards are direct children */
.service-paths {
  padding: var(--space-xl) 0;
  background: var(--eco-white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
/* When service-paths is inside a container, reset to block and use inner grid */
.container > .service-paths,
.section > .container > .service-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding: 0;
  background: none;
}
/* The inner 3-column grid — handles BEM __grid wrapper */
.service-paths__grid,
.service-paths > .container > .service-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (max-width: 900px) {
  .service-paths,
  .container > .service-paths { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .service-paths,
  .container > .service-paths { grid-template-columns: 1fr; }
}

/* Card */
.service-path {
  border: 1px solid var(--eco-border);
  border-top: 3px solid var(--eco-primary);
  background: var(--eco-white);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: box-shadow .25s, transform .25s;
}
.service-path:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-path--featured {
  border-top-color: var(--eco-emerald);
  background: var(--eco-primary-lt);
}
.service-path__icon,
.service-path > .service-path__icon { margin-bottom: .25rem; color: var(--eco-primary); }
.service-path__icon svg { width: 36px; height: 36px; }
.service-path h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.service-path > p,
.service-path p:not(.service-path__bullets *) { font-size: .875rem; color: var(--eco-muted); line-height: 1.65; flex: 1; }
.service-path .btn { align-self: flex-start; margin-top: auto; }

/* Bullet list inside cards */
.service-path__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin: .25rem 0 var(--space-sm);
  flex: 1;
}
.service-path__bullets li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .85rem;
  color: var(--eco-charcoal);
  line-height: 1.5;
}
.service-path__bullets li svg { flex-shrink: 0; margin-top: .1rem; color: var(--eco-emerald); }

/* CTA link inside cards */
.service-path__cta {
  display: inline-block;
  background: var(--eco-primary);
  color: var(--eco-white);
  padding: .75rem 1.5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .2s;
  margin-top: auto;
  align-self: flex-start;
}
.service-path__cta:hover { opacity: .9; color: var(--eco-white); }
.service-path--featured .service-path__cta { background: var(--eco-emerald); }

/* Generic .eyebrow alias — same as .section__eyebrow */
.eyebrow {
  display: inline-block;
  color: var(--eco-emerald);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* --- BEM alias shims (agent-generated names mapped to design system) --- */

/* Stats band: __number alias for __num */
.stats-band__number { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--eco-white); line-height: 1; margin-bottom: .35rem; display: block; }

/* FAQ: agent used faq-item__* instead of standalone faq-* */
.faq-item__question {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; cursor: pointer; text-align: left;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  color: var(--color-text); gap: 1rem; transition: color .2s;
}
.faq-item__question:hover { color: var(--eco-emerald); }
.faq-dark .faq-item__question { color: var(--eco-white); }
.faq-dark .faq-item__question:hover { color: rgba(255,255,255,.75); }
.faq-item__chevron { width: 22px; height: 22px; flex-shrink: 0; color: var(--eco-emerald); transition: transform .25s; }
.faq-dark .faq-item__chevron { color: rgba(255,255,255,.45); }
.faq-item.open .faq-item__chevron { transform: rotate(180deg); }
.faq-item__answer { display: none; padding: 0 0 1.25rem; color: var(--eco-muted); line-height: 1.7; font-size: .95rem; }
.faq-dark .faq-item__answer { color: rgba(255,255,255,.7); }
.faq-item.open .faq-item__answer { display: block; }

/* CTA section: __buttons alias for __btns */
.cta-section__buttons { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: var(--space-md); }
.cta-section__phone { color: var(--eco-white); font-size: 1rem; }
.cta-section__phone a { color: var(--eco-white); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.cta-section__risk { display: flex; align-items: center; justify-content: center; gap: var(--space-md); flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.55); margin-top: var(--space-sm); }
.cta-section__risk span { display: flex; align-items: center; gap: .35rem; }

/* Hero layout: __left/__right aliases */
.hero__left { max-width: 560px; position: relative; z-index: 1; }
.hero__right { position: relative; z-index: 1; }

/* Project table footnote */
.projects-table__footnote { font-size: .8rem; color: var(--eco-muted); margin-top: .75rem; }
.projects-table__footnote a { color: var(--eco-emerald); font-weight: 600; }

/* review-card__stars if agent omitted review-card wrapper */
.review-card__stars { color: #d4a017; font-size: 1rem; margin-bottom: .6rem; letter-spacing: .1em; }

/* Article card img placeholder */
.article-card__img { height: 180px; background: var(--eco-primary-lt); overflow: hidden; }
.article-card__img img { width: 100%; height: 100%; object-fit: cover; image-orientation: from-image; }

/* --- Section + grid aliases (agent BEM naming) --- */

/* Section wrappers — add standard section padding */
.projects-section,
.projects-table-section,
.reviews-section,
.articles-section { padding: var(--space-xl) 0; }

.projects-section { background: var(--eco-white); }
.projects-table-section { background: var(--eco-primary-lt); }
.reviews-section { background: var(--eco-white); }
.articles-section { background: var(--eco-primary-lt); }

/* Grid containers */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* FAQ list inside dark section */
.faq-list {
  max-width: 760px;
  margin: var(--space-lg) auto 0;
}

/* Responsive overrides */
@media (max-width: 900px) {
  .projects-grid,
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .projects-grid,
  .reviews-grid,
  .articles-grid { grid-template-columns: 1fr; }
}

/* --- Project Grid (homepage) --- */
.project-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.project-card {
  background: var(--eco-white);
  border: 1px solid var(--eco-border);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.project-card__img { height: 200px; overflow: hidden; background: var(--eco-primary-lt); position: relative; }
.project-card__img img { width: 100%; height: 100%; object-fit: cover; image-orientation: from-image; transition: transform .4s; }
.project-card:hover .project-card__img img { transform: scale(1.04); }
.project-card__img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--eco-muted); font-size: .85rem; flex-direction: column; gap: .5rem;
}
.project-card__body { padding: var(--space-md); }
.project-card__tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--eco-emerald); margin-bottom: .4rem;
}
.project-card__body h4 { font-size: 1rem; margin-bottom: .35rem; }
.project-card__body p { font-size: .85rem; color: var(--eco-muted); line-height: 1.5; }

/* --- Dark FAQ section --- */
.faq-dark {
  background: var(--eco-primary-dk);
  color: var(--eco-white);
  padding: var(--space-xl) 0;
}
.faq-dark .section__eyebrow { color: rgba(255,255,255,.55); }
.faq-dark h2 { color: var(--eco-white); }
.faq-dark .faq-item { border-bottom: 1px solid rgba(255,255,255,.12); }
.faq-dark .faq-item:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.faq-dark .faq-question { color: var(--eco-white); font-size: 1.05rem; }
.faq-dark .faq-question:hover { color: rgba(255,255,255,.75); }
.faq-dark .faq-chevron { color: rgba(255,255,255,.45); }
.faq-dark .faq-answer { color: rgba(255,255,255,.7); }

/* --- Recent Articles --- */
.article-card {
  background: var(--eco-white);
  border: 1px solid var(--eco-border);
  overflow: hidden;
  transition: box-shadow .2s;
}
.article-card:hover { box-shadow: var(--shadow-md); }
.article-card__img { height: 180px; background: var(--eco-primary-lt); overflow: hidden; }
.article-card__img img { width: 100%; height: 100%; object-fit: cover; image-orientation: from-image; }
.article-card__body { padding: var(--space-md); }
.article-card__tag { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--eco-emerald); margin-bottom: .35rem; }
.article-card__body h4 { font-size: .95rem; margin-bottom: .35rem; line-height: 1.4; }
.article-card__body p { font-size: .825rem; color: var(--eco-muted); line-height: 1.55; }
.article-card__link { font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--eco-emerald); display: inline-block; margin-top: .65rem; }

/* --- Protect section (with bg image) --- */
.protect-section {
  position: relative;
  background: var(--eco-primary-dk);
  color: var(--eco-white);
  overflow: hidden;
}
.protect-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.protect-section__inner {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) 0;
}
.protect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.protect-grid h2 { color: var(--eco-white); margin-bottom: var(--space-md); }
.protect-grid p { color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: var(--space-md); }
.protect-bullets { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.protect-bullets li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: rgba(255,255,255,.8); }
.protect-bullets li svg { flex-shrink: 0; margin-top: .15rem; color: rgba(255,255,255,.5); }
.protect-img { border-radius: var(--radius-md); overflow: hidden; height: 380px; }
.protect-img img { width: 100%; height: 100%; object-fit: cover; image-orientation: from-image; }

/* --- Experience band (page-level) --- */
.exp-band {
  background: var(--eco-primary);
  color: var(--eco-white);
  padding: var(--space-md) 0;
  text-align: center;
}
.exp-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.exp-band__item { display: flex; align-items: center; gap: .6rem; font-size: .875rem; font-weight: 600; }
.exp-band__item svg { color: rgba(255,255,255,.6); flex-shrink: 0; }

/* --- Designer page specific --- */
.designer-hero {
  background: linear-gradient(135deg, var(--eco-primary-dk) 0%, var(--eco-primary) 60%, var(--eco-emerald) 100%);
}
.process-horizontal { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-sm); }
.process-step-h {
  text-align: center;
  position: relative;
  padding: var(--space-md) var(--space-sm);
}
.process-step-h:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--eco-border);
  font-size: 1.2rem;
}
.process-step-h__num {
  width: 44px; height: 44px;
  border: 2px solid var(--eco-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  color: var(--eco-primary);
  margin: 0 auto var(--space-sm);
}
.process-step-h h4 { font-size: .875rem; margin-bottom: .3rem; }
.process-step-h p { font-size: .78rem; color: var(--eco-muted); line-height: 1.5; }

/* --- Responsive additions --- */
@media (max-width: 900px) {
  .hero--form .hero__inner { grid-template-columns: 1fr; }
  .stats-band__inner { grid-template-columns: repeat(2, 1fr); }
  .service-paths, .project-cards { grid-template-columns: 1fr 1fr; }
  .protect-grid { grid-template-columns: 1fr; }
  .process-horizontal { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .stats-band__inner { grid-template-columns: 1fr; }
  .service-paths, .project-cards { grid-template-columns: 1fr; }
  .process-horizontal { grid-template-columns: 1fr 1fr; }
  .process-step-h:not(:last-child)::after { display: none; }
  .exp-band__inner { gap: var(--space-md); flex-direction: column; align-items: flex-start; padding: 0 1.25rem; }
  .quote-card .form-row { grid-template-columns: 1fr; }
}

/* --- GHL Quote Modal --- */
#quote-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 2000;
  overflow-y: auto;
  padding: 2rem 1rem;
}
#quote-modal.open { display: flex; align-items: flex-start; justify-content: center; }
.quote-modal__inner {
  background: var(--eco-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 580px;
  position: relative;
  box-shadow: var(--shadow-lg);
  margin: auto;
}
.quote-modal__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 32px;
  height: 32px;
  background: var(--eco-light-gray);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--eco-charcoal);
  z-index: 10;
  line-height: 1;
  transition: background .2s;
}
.quote-modal__close:hover { background: var(--eco-border); }

/* --- FAQ: + / − symbol instead of chevron arrow --- */
.faq-chevron { display: none !important; }
.faq-item__chevron { display: none !important; }
.faq-question::after,
.faq-item__question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--eco-emerald);
  flex-shrink: 0;
  margin-left: auto;
  padding-left: .75rem;
}
.faq-item.open .faq-question::after,
.faq-item.open .faq-item__question::after { content: "\2212"; /* minus sign */ }
/* Dark FAQ section */
.faq-dark .faq-question::after,
.faq-dark .faq-item__question::after { color: rgba(255,255,255,.55); }

/* --- Consistent last CTA banner — all pages --- */
.cta-section-final {
  background: linear-gradient(135deg, var(--eco-primary-dk) 0%, var(--eco-primary) 100%) !important;
  color: var(--eco-white) !important;
  text-align: center;
  padding: var(--space-2xl) 0;
}
.cta-section-final h2 { color: var(--eco-white) !important; margin-bottom: .75rem; }
.cta-section-final p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: var(--space-lg); max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-section-final .cta-btn-main {
  display: inline-block;
  background: var(--eco-white);
  color: var(--eco-primary-dk);
  padding: 1rem 2.5rem;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity .2s;
}
.cta-section-final .cta-btn-main:hover { opacity: .9; }
.cta-section-final .cta-phone { color: rgba(255,255,255,.55); font-size: .875rem; margin-top: var(--space-md); }
.cta-section-final .cta-phone a { color: rgba(255,255,255,.8); font-weight: 600; }
