/* ==========================================================
   DEER HOLLOW ENERGY — SHARED THEME STYLES
   Conflicting per-page classes are scoped under
   .tpl-home / .tpl-business / .tpl-residential / .tpl-ourstory
   ========================================================== */

/* ── TOKENS ── */
:root {
  --forest: #1a3a2a;
  --pine:   #264d38;
  --sage:   #3d7a56;
  --mint:   #5aab7a;
  --gold:   #d4a843;
  --amber:  #e8b94a;
  --cream:  #f5f0e8;
  --white:  #ffffff;
  --ink:    #0f1f17;
  --mist:   #e8ede9;
  --steel:  #6b7c72;
  --sand:   #ede8de;
  --warm:   #f0ebe0;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }

/* ============================================================
   SHARED SITE HEADER (.dh-site-header)
   - Lives in header.php (replaces Astra default header)
   - Used on every custom-template page
   - Mobile hamburger collapses .dh-nav-collapse
   ============================================================ */

/* Skip link (accessibility) */
.skip-link { position: absolute; left: -9999px; top: -9999px; }
.skip-link:focus { left: 8px; top: 8px; z-index: 9999; padding: 8px 12px; background: var(--gold); color: var(--ink); border-radius: 4px; font-weight: 700; }

.dh-site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(15,31,23,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(90,171,122,0.15);
}
.dh-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
  position: relative;
}

/* Logo cluster */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img,
.nav-logo .custom-logo,
.nav-logo img {
  height: 38px; width: auto;
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; color: var(--amber); letter-spacing: 0.1em; }
.nav-logo-sub { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); }

/* Collapse wrapper (becomes the mobile drawer) */
.dh-nav-collapse { display: flex; align-items: center; gap: 2rem; }

/* Primary menu (rendered by wp_nav_menu) */
.nav-center,
.dh-nav-collapse .menu {
  display: flex; gap: 1.8rem; list-style: none; align-items: center; margin: 0; padding: 0;
}
.nav-center a,
.dh-nav-collapse .menu a {
  color: rgba(232,237,233,0.7); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-center a:hover,
.dh-nav-collapse .menu a:hover { color: var(--amber); }
.dh-nav-collapse .menu .current-menu-item > a { color: var(--amber); }

/* Right-side CTA buttons */
.nav-right { display: flex; gap: 0.7rem; align-items: center; }
.nav-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-btn-ghost { color: var(--mint); border: 1px solid rgba(90,171,122,0.4); background: transparent; }
.nav-btn-ghost:hover { border-color: var(--mint); background: rgba(90,171,122,0.08); }
.nav-btn-fill { background: var(--gold); color: var(--ink); }
.nav-btn-fill:hover { background: var(--amber); transform: translateY(-1px); }

/* Mobile hamburger toggle */
.dh-nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 6px;
  width: 40px; height: 40px;
  cursor: pointer;
  flex-direction: column; justify-content: space-around;
}
.dh-nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--amber);
  transition: transform 0.25s, opacity 0.25s;
}
.dh-nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dh-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.dh-nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SECTION UTILITIES ── */
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 1rem; }
.section-tag::before { content: ''; display: block; width: 22px; height: 2px; background: var(--sage); }
.section-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1; letter-spacing: 0.02em; color: var(--forest); }
.section-lead { font-size: 1rem; font-weight: 300; color: var(--steel); line-height: 1.75; }

/* ── SHARED BUTTONS ── */
.btn-gold { background: var(--gold); color: var(--ink); font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 32px; border-radius: 4px; text-decoration: none; box-shadow: 0 4px 20px rgba(212,168,67,0.3); transition: all 0.2s; }
.btn-gold:hover { background: var(--amber); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,67,0.4); }
.btn-outline { background: transparent; color: var(--cream); font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 28px; border-radius: 4px; border: 1.5px solid rgba(232,237,233,0.25); text-decoration: none; transition: all 0.2s; }
.btn-outline:hover { border-color: var(--mint); color: var(--mint); }
.cta-pair { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.7); }
}

/* ============================================================
   SHARED SITE FOOTER (.dh-site-footer)
   - Lives in footer.php
   - 4-column layout: Brand / For Business / For Home / Company
   ============================================================ */
.dh-site-footer { background: var(--ink); color: var(--steel); }
.dh-site-footer .footer-top {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 5vw 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand-col { max-width: 320px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--amber); letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-logo-img { height: 32px; width: auto; filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg); }
.footer-tagline { font-size: 0.86rem; line-height: 1.7; color: rgba(232,237,233,0.5); margin-bottom: 1.2rem; }
.footer-contact { font-size: 0.86rem; line-height: 1.9; }
.footer-contact a { color: var(--mint); text-decoration: none; }
.footer-contact a:hover { color: var(--amber); }
.footer-address { color: rgba(232,237,233,0.4); font-size: 0.78rem; margin-top: 0.4rem; }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1rem;
}
.footer-col .footer-menu,
.footer-col ul.footer-menu {
  list-style: none; padding: 0; margin: 0;
}
.footer-col .footer-menu li { margin-bottom: 0.6rem; }
.footer-col .footer-menu a {
  font-size: 0.84rem; color: rgba(232,237,233,0.5);
  text-decoration: none; transition: color 0.2s;
}
.footer-col .footer-menu a:hover { color: var(--mint); }

.dh-site-footer .footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 1.4rem 5vw;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.74rem; color: rgba(107,124,114,0.7);
}
.footer-bottom-right { display: flex; gap: 1.5rem; }
.footer-bottom-right a { color: rgba(107,124,114,0.7); text-decoration: none; transition: color 0.2s; }
.footer-bottom-right a:hover { color: var(--mint); }

/* ============================================================
   HOMEPAGE
   ============================================================ */

.tpl-home .hero {
  min-height: 100vh;
  background: var(--forest);
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px 5vw 80px;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(61,122,86,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(212,168,67,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 60% 30%, rgba(90,171,122,0.08) 0%, transparent 50%);
}
.hero-topo {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(90,171,122,0.04) 48px, rgba(90,171,122,0.04) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(90,171,122,0.04) 48px, rgba(90,171,122,0.04) 49px);
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(90,171,122,0.12); border: 1px solid rgba(90,171,122,0.3); border-radius: 100px; padding: 6px 16px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mint); margin-bottom: 1.8rem; animation: fadeUp 0.5s ease both; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); animation: pulse 2s infinite; }
.tpl-home .hero-h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.5rem, 8vw, 8rem); line-height: 0.9; color: var(--white); letter-spacing: 0.02em; margin-bottom: 1.6rem; animation: fadeUp 0.5s 0.1s ease both; }
.hero-h1 .line-gold { color: var(--amber); }
.hero-h1 .line-outline { -webkit-text-stroke: 2px rgba(255,255,255,0.25); color: transparent; }
.tpl-home .hero-sub { font-size: clamp(1rem, 1.6vw, 1.18rem); font-weight: 300; color: rgba(232,237,233,0.72); line-height: 1.75; max-width: 560px; margin: 0 auto 3rem; animation: fadeUp 0.5s 0.2s ease both; }
.hero-footnote { position: relative; z-index: 2; margin-top: 2.5rem; font-size: 0.75rem; color: var(--steel); letter-spacing: 0.06em; animation: fadeUp 0.5s 0.45s ease both; }

/* Split cards */
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; width: 100%; max-width: 900px; animation: fadeUp 0.6s 0.3s ease both; }
.split-card { border-radius: 10px; overflow: hidden; cursor: pointer; position: relative; text-decoration: none; display: block; transition: transform 0.3s, box-shadow 0.3s; }
.split-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.split-card-inner { padding: 2.8rem 2.2rem; height: 100%; display: flex; flex-direction: column; position: relative; z-index: 1; }
.card-business { background: var(--pine); border: 1px solid rgba(90,171,122,0.25); }
.card-business::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 100% 0%, rgba(90,171,122,0.18) 0%, transparent 60%); }
.card-residential { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }
.card-residential::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 0% 100%, rgba(212,168,67,0.10) 0%, transparent 60%); }
.card-label { display: inline-flex; align-items: center; gap: 6px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.2rem; }
.card-business .card-label { color: var(--mint); }
.card-residential .card-label { color: rgba(232,237,233,0.5); }
.card-label-dot { width: 5px; height: 5px; border-radius: 50%; }
.card-business .card-label-dot { background: var(--mint); }
.card-residential .card-label-dot { background: rgba(232,237,233,0.5); }
.card-icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
.card-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1; letter-spacing: 0.02em; margin-bottom: 0.8rem; }
.card-business .card-h2 { color: var(--white); }
.card-residential .card-h2 { color: var(--cream); }
.card-desc { font-size: 0.9rem; font-weight: 300; line-height: 1.65; flex-grow: 1; margin-bottom: 1.8rem; }
.card-business .card-desc { color: rgba(232,237,233,0.7); }
.card-residential .card-desc { color: rgba(232,237,233,0.55); }
.card-perks { list-style: none; margin-bottom: 2rem; }
.card-perks li { font-size: 0.82rem; font-weight: 500; padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.card-business .card-perks li { color: rgba(232,237,233,0.8); }
.card-residential .card-perks li { color: rgba(232,237,233,0.6); }
.perk-check { width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; }
.card-business .perk-check { background: rgba(90,171,122,0.2); color: var(--mint); }
.card-residential .perk-check { background: rgba(255,255,255,0.08); color: rgba(232,237,233,0.5); }
.card-cta { display: inline-flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 24px; border-radius: 4px; transition: all 0.2s; align-self: flex-start; }
.card-business .card-cta { background: var(--gold); color: var(--ink); }
.card-business .card-cta:hover { background: var(--amber); transform: translateX(3px); }
.card-residential .card-cta { background: rgba(255,255,255,0.1); color: var(--cream); border: 1px solid rgba(255,255,255,0.2); }
.card-residential .card-cta:hover { background: rgba(255,255,255,0.16); transform: translateX(3px); }
.card-arrow { transition: transform 0.2s; }
.split-card:hover .card-arrow { transform: translateX(4px); }

/* Marquee */
.marquee-strip { background: var(--amber); overflow: hidden; white-space: nowrap; padding: 10px 0; }
.marquee-track { display: inline-flex; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); padding: 0 2.5rem; }
.marquee-track span::after { content: '◆'; margin-left: 2.5rem; opacity: 0.4; }

/* How we help */
.help-section { background: var(--white); padding: 100px 5vw; }
.help-inner { max-width: 1200px; margin: 0 auto; }
.help-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.help-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--mist); border: 1px solid var(--mist); border-radius: 8px; overflow: hidden; }
.help-cell { background: var(--white); padding: 2rem 1.6rem; transition: background 0.2s; }
.help-cell:hover { background: var(--cream); }
.help-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; line-height: 1; color: var(--mist); margin-bottom: 0.8rem; }
.help-cell h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); margin-bottom: 0.5rem; }
.help-cell p { font-size: 0.86rem; color: var(--steel); line-height: 1.6; }

/* Dual paths */
.paths-section { background: var(--cream); padding: 100px 5vw; }
.paths-inner { max-width: 1200px; margin: 0 auto; }
.paths-header { text-align: center; margin-bottom: 4rem; }
.paths-header .section-tag { justify-content: center; }
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.path-card { border-radius: 10px; overflow: hidden; border: 1px solid transparent; transition: border-color 0.2s, box-shadow 0.2s; text-decoration: none; display: block; }
.path-card:hover { box-shadow: 0 12px 40px rgba(26,58,42,0.12); }
.path-card-business { background: var(--forest); }
.path-card-business:hover { border-color: var(--sage); }
.path-card-home { background: var(--white); border: 1px solid var(--mist); }
.path-card-home:hover { border-color: var(--sage); }
.path-header { padding: 2.2rem 2.2rem 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.path-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.4rem; }
.path-card-business .path-eyebrow { color: var(--mint); }
.path-card-home .path-eyebrow { color: var(--sage); }
.path-h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; line-height: 1; letter-spacing: 0.02em; }
.path-card-business .path-h3 { color: var(--white); }
.path-card-home .path-h3 { color: var(--forest); }
.path-big-icon { font-size: 3rem; flex-shrink: 0; }
.path-body { padding: 1.5rem 2.2rem 2.2rem; }
.path-desc { font-size: 0.92rem; line-height: 1.65; margin-bottom: 1.5rem; }
.path-card-business .path-desc { color: rgba(232,237,233,0.65); }
.path-card-home .path-desc { color: var(--steel); }
.path-features { list-style: none; margin-bottom: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.path-features li { font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 4px; }
.path-card-business .path-features li { color: rgba(232,237,233,0.75); background: rgba(255,255,255,0.05); }
.path-card-home .path-features li { color: var(--forest); background: var(--mist); }
.path-cta-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.path-btn { font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 11px 22px; border-radius: 4px; text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.path-card-business .path-btn { background: var(--gold); color: var(--ink); }
.path-card-business .path-btn:hover { background: var(--amber); transform: translateY(-1px); }
.path-card-home .path-btn { background: var(--forest); color: var(--white); }
.path-card-home .path-btn:hover { background: var(--pine); transform: translateY(-1px); }
.path-price { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); }

/* About strip */
.about-strip { background: var(--pine); padding: 80px 5vw; }
.about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text .section-h2 { color: var(--white); margin-bottom: 1.2rem; }
.about-text p { font-size: 0.96rem; font-weight: 300; color: rgba(232,237,233,0.7); line-height: 1.75; margin-bottom: 1rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.astat { background: rgba(255,255,255,0.05); border: 1px solid rgba(90,171,122,0.2); border-radius: 8px; padding: 1.8rem; text-align: center; transition: background 0.2s; }
.astat:hover { background: rgba(90,171,122,0.08); }
.astat-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--amber); line-height: 1; margin-bottom: 0.3rem; }
.astat-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); }
.astat-sub { font-size: 0.72rem; color: rgba(107,124,114,0.7); margin-top: 0.2rem; }
.puct-badge { margin-top: 2rem; display: inline-flex; align-items: center; gap: 10px; background: rgba(90,171,122,0.1); border: 1px solid rgba(90,171,122,0.25); border-radius: 6px; padding: 10px 16px; font-size: 0.8rem; color: var(--mint); font-weight: 600; letter-spacing: 0.06em; }

/* Homepage final CTA */
.tpl-home .final-cta { background: var(--forest); padding: 110px 5vw; text-align: center; position: relative; overflow: hidden; }
.tpl-home .final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(61,122,86,0.15) 0%, transparent 70%); }
.tpl-home .final-cta-inner { position: relative; z-index: 1; }
.tpl-home .final-cta .section-tag { justify-content: center; }
.final-cta-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 5vw, 5rem); color: var(--white); line-height: 1; letter-spacing: 0.02em; margin-bottom: 1.2rem; }
.final-cta-h2 span { color: var(--amber); }
.final-cta-sub { font-size: 1rem; font-weight: 300; color: rgba(232,237,233,0.65); line-height: 1.7; max-width: 500px; margin: 0 auto 2.8rem; }
.cta-small-links { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.cta-small-links a { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: color 0.2s; }
.cta-small-links a:hover { color: var(--mint); }

/* Homepage footer */
.tpl-home footer { padding: 0; }
.footer-top { padding: 3rem 5vw 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-tagline { font-size: 0.85rem; font-weight: 300; color: var(--steel); line-height: 1.65; margin-bottom: 1.2rem; max-width: 260px; }
.footer-contact { font-size: 0.82rem; color: var(--steel); line-height: 2; }
.footer-contact a { color: var(--mint); text-decoration: none; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(232,237,233,0.4); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.85rem; color: var(--steel); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--mint); }
.footer-bottom { padding: 1.2rem 5vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; }
.footer-bottom-left { font-size: 0.72rem; color: rgba(107,124,114,0.6); letter-spacing: 0.04em; }
.footer-bottom-right { display: flex; gap: 1.5rem; }
.footer-bottom-right a { font-size: 0.72rem; color: rgba(107,124,114,0.6); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.footer-bottom-right a:hover { color: var(--steel); }

/* ============================================================
   BUSINESS
   ============================================================ */

.tpl-business section { padding: 90px 5vw; }

.tpl-business .hero { min-height: 100vh; background: var(--forest); display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; }
.tpl-business .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(61,122,86,0.18) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 10% 90%, rgba(212,168,67,0.08) 0%, transparent 60%); }
.hero-bg-text { position: absolute; right: -2vw; bottom: -5vh; font-family: 'Bebas Neue', sans-serif; font-size: clamp(180px, 28vw, 380px); color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; user-select: none; }
.tpl-business .hero-left { display: flex; flex-direction: column; justify-content: center; padding: 120px 5vw 80px 8vw; position: relative; z-index: 2; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mint); margin-bottom: 1.4rem; animation: fadeUp 0.6s ease both; }
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--mint); }
.tpl-business .hero-h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.2rem, 6vw, 6.5rem); line-height: 0.92; color: var(--white); letter-spacing: 0.02em; margin-bottom: 1.6rem; animation: fadeUp 0.6s 0.1s ease both; }
.tpl-business .hero-h1 em { font-style: normal; color: var(--amber); }
.tpl-business .hero-sub { font-size: clamp(1rem, 1.4vw, 1.18rem); font-weight: 300; color: rgba(232,237,233,0.82); line-height: 1.7; max-width: 480px; margin-bottom: 2.4rem; animation: fadeUp 0.6s 0.2s ease both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }
.tpl-business .btn-primary { background: var(--gold); color: var(--ink); font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 32px; border: none; border-radius: 3px; text-decoration: none; display: inline-block; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(212,168,67,0.35); }
.tpl-business .btn-primary:hover { background: var(--amber); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,67,0.45); }
.btn-secondary { background: transparent; color: var(--mist); font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 28px; border: 1.5px solid rgba(232,237,233,0.35); border-radius: 3px; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s; }
.btn-secondary:hover { border-color: var(--mint); color: var(--mint); }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); animation: fadeUp 0.6s 0.4s ease both; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--amber); line-height: 1; }
.stat-label { font-size: 0.78rem; font-weight: 500; color: var(--steel); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.tpl-business .hero-right { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 120px 6vw 80px 4vw; animation: fadeUp 0.6s 0.25s ease both; }
.hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(90,171,122,0.25); border-radius: 8px; padding: 2.5rem; width: 100%; max-width: 420px; backdrop-filter: blur(6px); position: relative; }
.hero-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--sage), var(--amber)); border-radius: 8px 8px 0 0; }
.card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 0.4rem; }
.card-sub { font-size: 0.85rem; color: var(--steel); margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(232,237,233,0.65); margin-bottom: 5px; }
.form-group input,
.form-group select { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(90,171,122,0.2); border-radius: 4px; padding: 10px 14px; color: var(--white); font-family: 'Barlow', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s, background 0.2s; }
.form-group input::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group select:focus { border-color: var(--mint); background: rgba(255,255,255,0.1); }
.form-group select option { background: var(--pine); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-submit { width: 100%; margin-top: 0.5rem; font-size: 1rem; padding: 13px; }
.form-note { text-align: center; font-size: 0.72rem; color: var(--steel); margin-top: 0.8rem; }

/* Trust bar */
.trust-bar { background: var(--pine); padding: 1.4rem 5vw; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; border-bottom: 1px solid rgba(90,171,122,0.2); }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(232,237,233,0.75); }
.trust-item .icon { font-size: 1rem; color: var(--mint); }

/* Business section size overrides */
.tpl-business .section-h2 { font-size: clamp(2.4rem, 4.5vw, 4rem); margin-bottom: 1.2rem; }
.tpl-business .section-lead { max-width: 560px; font-size: 1.05rem; }

/* Why section */
.why-section { background: var(--white); }
.why-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.why-cards { display: grid; gap: 1.2rem; }
.why-card { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.5rem; border: 1px solid var(--mist); border-radius: 6px; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.why-card:hover { border-color: var(--sage); box-shadow: 0 6px 24px rgba(26,58,42,0.08); transform: translateY(-2px); }
.why-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--forest); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.why-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--forest); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.9rem; color: var(--steel); line-height: 1.65; }

/* Industries */
.industries-section { background: var(--mist); }
.industries-inner { max-width: 1200px; margin: 0 auto; }
.industries-header { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 3.5rem; }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.industry-tile { background: var(--white); border-radius: 6px; padding: 1.8rem 1.4rem; display: flex; flex-direction: column; align-items: flex-start; gap: 0.7rem; border: 1px solid transparent; transition: border-color 0.2s, box-shadow 0.2s; }
.industry-tile:hover { border-color: var(--sage); box-shadow: 0 4px 18px rgba(26,58,42,0.08); }
.industry-icon { font-size: 2rem; }
.industry-tile h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); }
.industry-tile p { font-size: 0.82rem; color: var(--steel); line-height: 1.5; }

/* How it works (Business) */
.tpl-business .how-section { background: var(--forest); position: relative; overflow: hidden; }
.tpl-business .how-section::before { content: 'HOW'; position: absolute; right: -2vw; bottom: -4vh; font-family: 'Bebas Neue', sans-serif; font-size: clamp(160px, 22vw, 320px); color: rgba(255,255,255,0.03); pointer-events: none; }
.how-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.tpl-business .how-inner .section-h2 { color: var(--white); }
.tpl-business .how-inner .section-lead { color: rgba(232,237,233,0.7); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 3.5rem; position: relative; }
.steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--sage), var(--amber), var(--sage), transparent); z-index: 0; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--pine); border: 2px solid var(--sage); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--amber); margin-bottom: 1.2rem; transition: background 0.2s, border-color 0.2s; }
.step:hover .step-num { background: var(--sage); border-color: var(--amber); }
.step h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 0.5rem; }
.step p { font-size: 0.8rem; color: rgba(232,237,233,0.55); line-height: 1.55; }

/* Testimonials (Business) */
.tpl-business .testimonials-section { background: var(--white); }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.tpl-business .testimonial { background: var(--cream); border-radius: 6px; padding: 2rem; border-left: 3px solid var(--sage); position: relative; }
.testimonial .quote-mark { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: var(--mist); line-height: 0.8; margin-bottom: 1rem; display: block; }
.tpl-business .testimonial p { font-size: 0.95rem; color: var(--ink); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--pine); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--amber); }
.author-name { font-weight: 700; font-size: 0.88rem; color: var(--forest); }
.author-role { font-size: 0.78rem; color: var(--steel); }

/* Transparency */
.transparency-section { background: var(--cream); }
.transparency-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.transparency-box { background: var(--forest); border-radius: 8px; padding: 2.5rem; color: var(--white); position: relative; overflow: hidden; }
.transparency-box::after { content: '$'; position: absolute; right: -0.5rem; bottom: -1rem; font-family: 'Bebas Neue', sans-serif; font-size: 8rem; color: rgba(255,255,255,0.04); pointer-events: none; }
.transparency-box h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.04em; color: var(--amber); margin-bottom: 1rem; }
.transparency-box p { font-size: 0.95rem; line-height: 1.7; color: rgba(232,237,233,0.8); margin-bottom: 1rem; }
.transparency-box .highlight { background: rgba(90,171,122,0.15); border: 1px solid rgba(90,171,122,0.3); border-radius: 4px; padding: 0.8rem 1rem; font-size: 0.88rem; color: var(--mint); margin-top: 1.2rem; }

/* Business final CTA */
.cta-section { background: var(--pine); text-align: center; padding: 100px 5vw; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(90,171,122,0.12) 0%, transparent 70%); pointer-events: none; }
.cta-section .section-tag { justify-content: center; }
.cta-section .section-h2 { color: var(--white); max-width: 700px; margin: 0 auto 1.2rem; }
.cta-section .section-lead { color: rgba(232,237,233,0.7); margin: 0 auto 2.8rem; text-align: center; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mint); text-decoration: none; display: flex; align-items: center; gap: 6px; padding: 14px 28px; border: 1.5px solid rgba(90,171,122,0.4); border-radius: 3px; transition: border-color 0.2s, color 0.2s; }
.cta-phone:hover { border-color: var(--mint); }

/* ============================================================
   RESIDENTIAL
   ============================================================ */

.tpl-residential .hero { min-height: 100vh; background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; padding-top: 68px; position: relative; overflow: hidden; }
.tpl-residential .hero-left { padding: 80px 5vw 80px 8vw; display: flex; flex-direction: column; justify-content: center; position: relative; }
.tpl-residential .hero-left::before { content: '🏡'; position: absolute; bottom: -2rem; left: -2rem; font-size: 18rem; opacity: 0.05; pointer-events: none; user-select: none; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 1.5rem; animation: fadeUp 0.5s ease both; }
.hero-tag::before { content: ''; display: block; width: 22px; height: 2px; background: var(--sage); }
.tpl-residential .hero-h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 5.5vw, 6rem); line-height: 0.92; letter-spacing: 0.02em; color: var(--forest); margin-bottom: 1.5rem; animation: fadeUp 0.5s 0.1s ease both; }
.tpl-residential .hero-h1 em { font-style: normal; color: var(--sage); }
.tpl-residential .hero-sub { font-size: clamp(0.95rem, 1.3vw, 1.1rem); font-weight: 300; color: var(--steel); line-height: 1.75; max-width: 440px; margin-bottom: 2.5rem; animation: fadeUp 0.5s 0.2s ease both; }
.problem-solution { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2.8rem; animation: fadeUp 0.5s 0.3s ease both; }
.ps-row { display: flex; align-items: flex-start; gap: 10px; }
.ps-icon { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; margin-top: 1px; }
.ps-icon.problem { background: rgba(220,80,60,0.12); color: #c84040; }
.ps-icon.solution { background: rgba(61,122,86,0.12); color: var(--sage); }
.ps-text { font-size: 0.88rem; line-height: 1.5; }
.ps-text.problem { color: #5a2020; }
.ps-text.solution { color: var(--forest); font-weight: 500; }
.hero-cta-area { animation: fadeUp 0.5s 0.4s ease both; }
.tpl-residential .btn-primary { background: var(--forest); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 30px; border-radius: 4px; text-decoration: none; display: inline-block; transition: all 0.2s; box-shadow: 0 4px 20px rgba(26,58,42,0.2); }
.tpl-residential .btn-primary:hover { background: var(--pine); transform: translateY(-2px); }
.hero-guarantee { margin-top: 1rem; display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--steel); }
.hero-stats-row { display: flex; gap: 2rem; flex-wrap: wrap; padding-top: 2.5rem; margin-top: 2.5rem; border-top: 1px solid var(--mist); animation: fadeUp 0.5s 0.5s ease both; }
.hstat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--forest); line-height: 1; }
.hstat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); }
.tpl-residential .hero-right { background: var(--forest); display: flex; align-items: center; justify-content: center; padding: 80px 6vw 80px 4vw; position: relative; overflow: hidden; }
.tpl-residential .hero-right::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 80% 20%, rgba(61,122,86,0.2) 0%, transparent 60%); }
.pricing-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(90,171,122,0.2); border-radius: 12px; padding: 2.8rem; width: 100%; max-width: 400px; position: relative; z-index: 1; animation: fadeUp 0.6s 0.3s ease both; }
.pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--sage), var(--amber)); border-radius: 12px 12px 0 0; }
.plan-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mint); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 6px; }
.plan-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); }
.plan-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--white); letter-spacing: 0.06em; margin-bottom: 1.5rem; }
.plan-price-block { background: rgba(255,255,255,0.05); border: 1px solid rgba(90,171,122,0.15); border-radius: 8px; padding: 1.5rem; text-align: center; margin-bottom: 1.8rem; }
.price-main { font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem; color: var(--amber); line-height: 1; }
.price-period { font-size: 1rem; color: var(--steel); font-weight: 300; }
.price-alt { font-size: 0.8rem; color: var(--steel); margin-top: 0.3rem; }
.price-alt span { color: var(--mint); font-weight: 600; }
.plan-includes { list-style: none; margin-bottom: 2rem; }
.plan-includes li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.88rem; color: rgba(232,237,233,0.78); }
.plan-includes li:last-child { border-bottom: none; }
.include-check { width: 18px; height: 18px; border-radius: 50%; background: rgba(90,171,122,0.18); color: var(--mint); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0; margin-top: 1px; }
.plan-cta { width: 100%; padding: 14px; background: var(--gold); color: var(--ink); font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: none; border-radius: 4px; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 20px rgba(212,168,67,0.3); text-decoration: none; display: block; text-align: center; }
.plan-cta:hover { background: var(--amber); transform: translateY(-2px); }
.plan-note { text-align: center; font-size: 0.72rem; color: var(--steel); margin-top: 0.8rem; }

/* How it works (Residential) */
.tpl-residential .how-section { background: var(--white); padding: 100px 5vw; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--mist); border: 1px solid var(--mist); border-radius: 10px; overflow: hidden; }
.how-step { background: var(--white); padding: 2.2rem 1.8rem; transition: background 0.2s; }
.how-step:hover { background: var(--cream); }
.step-num-circle { width: 48px; height: 48px; border-radius: 50%; background: var(--forest); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--amber); margin-bottom: 1.2rem; }
.how-step h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); margin-bottom: 0.6rem; }
.how-step p { font-size: 0.88rem; color: var(--steel); line-height: 1.65; }

/* What's included */
.included-section { background: var(--sand); padding: 100px 5vw; }
.included-inner { max-width: 1100px; margin: 0 auto; }
.included-header { text-align: center; margin-bottom: 4rem; }
.included-header .section-tag { justify-content: center; }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.included-card { background: var(--white); border-radius: 8px; padding: 2rem; border: 1px solid transparent; transition: all 0.2s; }
.included-card:hover { border-color: var(--sage); box-shadow: 0 6px 24px rgba(26,58,42,0.08); transform: translateY(-2px); }
.included-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.included-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); margin-bottom: 0.6rem; }
.included-card p { font-size: 0.88rem; color: var(--steel); line-height: 1.65; }

/* Comparison */
.comparison-section { background: var(--forest); padding: 100px 5vw; }
.comparison-inner { max-width: 900px; margin: 0 auto; }
.comparison-inner .section-tag { color: var(--mint); }
.comparison-inner .section-tag::before { background: var(--mint); }
.comparison-inner .section-h2 { color: var(--white); margin-bottom: 3rem; }
.comparison-table { width: 100%; border-collapse: collapse; border-radius: 8px; overflow: hidden; }
.comparison-table th { padding: 1rem 1.5rem; text-align: left; font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.comparison-table th:first-child { background: rgba(255,255,255,0.05); color: var(--steel); }
.comparison-table th.col-dh { background: var(--sage); color: var(--white); }
.comparison-table th.col-diy { background: rgba(255,255,255,0.08); color: var(--steel); }
.comparison-table td { padding: 0.9rem 1.5rem; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.comparison-table td:first-child { color: rgba(232,237,233,0.65); background: rgba(255,255,255,0.03); font-weight: 500; }
.comparison-table td.col-dh { background: rgba(61,122,86,0.08); color: var(--mint); font-weight: 600; }
.comparison-table td.col-diy { background: rgba(255,255,255,0.03); color: rgba(232,237,233,0.4); }
.comparison-table tr:last-child td { border-bottom: none; }

/* Testimonials (Residential) */
.tpl-residential .testimonials-section { background: var(--cream); padding: 100px 5vw; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-header { margin-bottom: 3rem; }
.tpl-residential .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tpl-residential .testimonial { background: var(--white); border-radius: 8px; padding: 2rem; border-left: 3px solid var(--sage); }
.stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 1rem; }
.tpl-residential .testimonial p { font-size: 0.93rem; font-style: italic; color: var(--ink); line-height: 1.7; margin-bottom: 1.5rem; }
.author { display: flex; align-items: center; gap: 10px; }
.author-av { width: 38px; height: 38px; border-radius: 50%; background: var(--pine); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--amber); flex-shrink: 0; }
.author-loc { font-size: 0.75rem; color: var(--steel); }

/* FAQ */
.faq-section { background: var(--white); padding: 100px 5vw; }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-header { margin-bottom: 3rem; }
.faq-item { border-bottom: 1px solid var(--mist); padding: 1.5rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 700; font-size: 1rem; color: var(--forest); cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; user-select: none; }
.faq-toggle { width: 24px; height: 24px; flex-shrink: 0; background: var(--mist); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--sage); transition: transform 0.2s, background 0.2s; }
.faq-item.open .faq-toggle { background: var(--sage); color: var(--white); transform: rotate(45deg); }
.faq-a { font-size: 0.93rem; font-weight: 300; color: var(--steel); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; }
.faq-item.open .faq-a { max-height: 300px; padding-top: 1rem; }

/* Residential final CTA */
.tpl-residential .final-cta { background: var(--cream); padding: 100px 5vw; position: relative; overflow: hidden; }
.tpl-residential .final-cta-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.final-cta-text .section-h2 { margin-bottom: 1rem; }
.final-cta-text p { font-size: 0.95rem; font-weight: 300; color: var(--steel); line-height: 1.75; margin-bottom: 1.5rem; }
.final-pricing-card { background: var(--forest); border-radius: 10px; padding: 2.5rem; text-align: center; position: relative; overflow: hidden; }
.final-pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--sage), var(--amber)); border-radius: 10px 10px 0 0; }
.final-plan-name { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mint); margin-bottom: 1rem; }
.final-price { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: var(--amber); line-height: 1; }
.final-price-period { color: var(--steel); font-size: 0.9rem; font-weight: 300; margin-bottom: 1.5rem; }
.final-or { font-size: 0.75rem; color: var(--steel); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.final-monthly { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: rgba(232,237,233,0.5); margin-bottom: 2rem; }
.final-cta-btn { display: block; width: 100%; background: var(--gold); color: var(--ink); font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px; border-radius: 4px; text-decoration: none; transition: all 0.2s; box-shadow: 0 4px 20px rgba(212,168,67,0.3); }
.final-cta-btn:hover { background: var(--amber); transform: translateY(-2px); }
.final-cta-note { font-size: 0.72rem; color: var(--steel); margin-top: 0.8rem; }

/* ============================================================
   OUR STORY
   ============================================================ */

.masthead { min-height: 100vh; background: var(--forest); display: grid; grid-template-rows: 1fr auto; position: relative; overflow: hidden; padding-top: 68px; }
.masthead-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 90% 70% at 15% 30%, rgba(61,122,86,0.25) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 85% 70%, rgba(212,168,67,0.08) 0%, transparent 55%); }
.masthead-rule { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: repeating-linear-gradient(-45deg, transparent 0px, transparent 60px, rgba(90,171,122,0.025) 60px, rgba(90,171,122,0.025) 61px); }
.masthead-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 5vw 40px; text-align: center; }
.masthead-eyebrow { font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--mint); margin-bottom: 1.8rem; display: flex; align-items: center; gap: 14px; animation: fadeUp 0.5s ease both; }
.masthead-eyebrow::before, .masthead-eyebrow::after { content: ''; display: block; flex: 1; max-width: 60px; height: 1px; background: var(--sage); }
.masthead-title { font-family: 'Playfair Display', serif; font-size: clamp(3.5rem, 8vw, 9rem); font-weight: 700; line-height: 0.9; color: var(--white); letter-spacing: -0.01em; margin-bottom: 0.4rem; animation: fadeUp 0.5s 0.1s ease both; }
.masthead-title-italic { font-style: italic; color: var(--amber); font-weight: 400; }
.masthead-date { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--steel); margin: 2rem 0; animation: fadeUp 0.5s 0.2s ease both; }
.masthead-lede { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.1rem, 2vw, 1.55rem); font-weight: 400; line-height: 1.6; color: rgba(245,240,232,0.82); max-width: 700px; margin: 0 auto 3rem; animation: fadeUp 0.5s 0.3s ease both; }
.masthead-scroll { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--steel); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; animation: fadeUp 0.5s 0.45s ease both; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--sage), transparent); animation: scrollPulse 2s ease-in-out infinite; }
.masthead-band { position: relative; z-index: 2; background: var(--gold); padding: 18px 5vw; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.band-stat { display: flex; align-items: baseline; gap: 6px; font-family: 'Bebas Neue', sans-serif; }
.band-num { font-size: 2.2rem; color: var(--ink); }
.band-label { font-family: 'Barlow', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(15,31,23,0.65); }
.band-divider { width: 1px; height: 32px; background: rgba(15,31,23,0.2); }

/* Article */
.article { max-width: 780px; margin: 0 auto; padding: 80px 5vw; }
.article-section { margin-bottom: 5rem; }
.drop-cap::first-letter { font-family: 'Playfair Display', serif; font-size: 5.5rem; font-weight: 700; color: var(--forest); float: left; line-height: 0.78; margin: 0.08em 0.1em 0 0; }
.article p { font-size: 1.05rem; font-weight: 300; line-height: 1.85; color: #2a3d30; margin-bottom: 1.4rem; }
.article p strong { font-weight: 600; color: var(--forest); }
.article h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--forest); line-height: 1.15; margin-bottom: 1.4rem; }
.article h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.06em; color: var(--sage); margin-bottom: 0.8rem; }
.rule { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.rule::before, .rule::after { content: ''; flex: 1; height: 1px; background: var(--mist); }
.rule-icon { font-size: 1.1rem; }
.pull-quote { border-left: 4px solid var(--amber); padding: 1.2rem 0 1.2rem 2rem; margin: 3rem 0; }
.pull-quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.3rem; font-weight: 400; line-height: 1.5; color: var(--forest); margin: 0; }
.pull-quote cite { display: block; margin-top: 0.8rem; font-family: 'Barlow', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); font-style: normal; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--mist); border: 1px solid var(--mist); border-radius: 8px; overflow: hidden; margin: 3rem 0; }
.value-cell { background: var(--white); padding: 2rem 1.8rem; transition: background 0.2s; }
.value-cell:hover { background: var(--cream); }
.value-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--mist); line-height: 1; margin-bottom: 0.6rem; }
.value-cell h4 { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--forest); margin-bottom: 0.5rem; }
.value-cell p { font-size: 0.88rem; line-height: 1.65; color: var(--steel); margin: 0; }
.timeline { margin: 3rem 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 22px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--sage), var(--amber), transparent); }
.timeline-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; position: relative; }
.timeline-dot { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--forest); border: 3px solid var(--sage); display: flex; align-items: center; justify-content: center; font-size: 1rem; z-index: 1; }
.timeline-year { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.1em; color: var(--amber); margin-bottom: 0.3rem; }
.timeline-body h4 { font-weight: 700; font-size: 1rem; color: var(--forest); margin-bottom: 0.4rem; }
.timeline-body p { font-size: 0.9rem; color: var(--steel); line-height: 1.6; margin: 0; }
.founder-card { background: var(--forest); border-radius: 10px; padding: 2.5rem; margin: 3rem 0; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; position: relative; overflow: hidden; }
.founder-card::before { content: '"'; position: absolute; right: 1rem; top: -1rem; font-family: 'Playfair Display', serif; font-size: 10rem; color: var(--steel); line-height: 1; pointer-events: none; }
.founder-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--pine); border: 3px solid var(--sage); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--amber); flex-shrink: 0; }
.founder-quote { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-size: 1.05rem; line-height: 1.65; color: var(--steel); margin-bottom: 1rem; }
.founder-name { font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber); }
.founder-title { font-size: 0.78rem; color: var(--steel); }
.license-callout { background: var(--mist); border-radius: 8px; border: 1px solid rgba(61,122,86,0.2); padding: 2rem; margin: 3rem 0; display: flex; gap: 1.2rem; align-items: flex-start; }
.license-icon { font-size: 2.2rem; flex-shrink: 0; }
.license-callout h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.06em; color: var(--forest); margin-bottom: 0.4rem; }
.license-callout p { font-size: 0.88rem; color: var(--steel); line-height: 1.65; margin: 0; }
.full-quote { background: var(--pine); padding: 80px 5vw; text-align: center; position: relative; overflow: hidden; }
.full-quote::before { content: '"'; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -55%); font-family: 'Playfair Display', serif; font-size: clamp(200px, 30vw, 420px); color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; }
.full-quote blockquote { position: relative; z-index: 1; font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: clamp(1.4rem, 3vw, 2.4rem); line-height: 1.5; color: var(--cream); max-width: 820px; margin: 0 auto 1.5rem; }
.full-quote cite { font-family: 'Barlow', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); font-style: normal; }
.story-cta { background: var(--forest); padding: 100px 5vw; text-align: center; position: relative; overflow: hidden; }
.story-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(61,122,86,0.15) 0%, transparent 70%); }
.story-cta-inner { position: relative; z-index: 1; }
.story-cta h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1; color: var(--white); letter-spacing: 0.02em; margin-bottom: 1rem; }
.story-cta h2 span { color: var(--amber); }
.story-cta p { font-size: 1rem; font-weight: 300; color: rgba(232,237,233,0.65); line-height: 1.75; max-width: 480px; margin: 0 auto 2.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .tpl-home .split-cards  { grid-template-columns: 1fr; max-width: 480px; }
  .tpl-home .help-grid    { grid-template-columns: repeat(2, 1fr); }
  .tpl-home .paths-grid   { grid-template-columns: 1fr; }
  .tpl-home .path-features { grid-template-columns: 1fr; }
  .tpl-home .about-inner  { grid-template-columns: 1fr; }
  .tpl-home .footer-top   { grid-template-columns: 1fr 1fr; }
  .tpl-home .help-header  { grid-template-columns: 1fr; gap: 1.5rem; }
  nav .nav-center         { display: none; }

  .tpl-business .hero                 { grid-template-columns: 1fr; min-height: auto; }
  .tpl-business .hero-left            { padding: 100px 6vw 40px; }
  .tpl-business .hero-right           { padding: 20px 6vw 60px; }
  .why-inner                          { grid-template-columns: 1fr; }
  .industries-header                  { grid-template-columns: 1fr; }
  .industries-grid                    { grid-template-columns: repeat(2, 1fr); }
  .steps                              { grid-template-columns: 1fr; gap: 2rem; }
  .steps::before                      { display: none; }
  .tpl-business .testimonials-grid    { grid-template-columns: 1fr; }
  .transparency-inner                 { grid-template-columns: 1fr; }
  .form-row                           { grid-template-columns: 1fr; }

  .tpl-residential .hero              { grid-template-columns: 1fr; }
  .tpl-residential .hero-left         { padding: 60px 6vw 40px; }
  .tpl-residential .hero-right        { padding: 20px 6vw 60px; }
  .how-header                         { grid-template-columns: 1fr; gap: 1.5rem; }
  .how-steps                          { grid-template-columns: repeat(2, 1fr); }
  .included-grid                      { grid-template-columns: repeat(2, 1fr); }
  .tpl-residential .testimonials-grid { grid-template-columns: 1fr; }
  .tpl-residential .final-cta-inner   { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  nav .nav-links { display: none; }
}

@media (max-width: 700px) {
  .values-grid    { grid-template-columns: 1fr; }
  .founder-card   { grid-template-columns: 1fr; }
  .band-divider   { display: none; }
}

@media (max-width: 600px) {
  .tpl-home .split-cards  { max-width: 100%; }
  .tpl-home .about-stats  { grid-template-columns: 1fr 1fr; }
  .tpl-home .footer-top   { grid-template-columns: 1fr; }
  .industries-grid        { grid-template-columns: 1fr; }
  .trust-bar              { gap: 1.2rem; }
  .how-steps              { grid-template-columns: 1fr; }
  .included-grid          { grid-template-columns: 1fr; }
  .comparison-table       { font-size: 0.8rem; }
  .comparison-table td,
  .comparison-table th    { padding: 0.7rem 0.8rem; }
}

/* ============================================================
   FLUENT FORM OVERRIDES — Business hero card
   Scoped tightly so these never bleed into other forms.
   Sources: original .form-group / .form-row / .form-submit CSS.
   ============================================================ */

/* ── Container ── */
.tpl-home .hero-form-card .fluentform { width: 100%; }
.tpl-home .hero-form-card .fluentform * { box-sizing: border-box; }

/* ── Field group spacing ── */
.tpl-home .hero-form-card .ff-el-group,
.tpl-home .hero-form-card .ff-el-form-el-container { margin-bottom: 1rem; }

/* ── Labels ── */
.tpl-home .hero-form-card .ff-el-input--label,
.tpl-home .hero-form-card .ff-el-input--label label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232,237,233,0.65);
  margin-bottom: 5px;
}

/* ── Inputs, textareas, selects ── */
.tpl-home .hero-form-card .ff-el-form-control,
.tpl-home .hero-form-card .ff-select-wrapper select,
.tpl-home .hero-form-card .ff-el-select-style select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(90,171,122,0.2);
  border-radius: 4px;
  padding: 10px 14px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}

.tpl-home .hero-form-card .ff-el-form-control::placeholder {
  color: rgba(255,255,255,0.28);
}

.tpl-home .hero-form-card .ff-el-form-control:focus,
.tpl-home .hero-form-card .ff-select-wrapper select:focus,
.tpl-home .hero-form-card .ff-el-select-style select:focus {
  border-color: var(--mint);
  background: rgba(255,255,255,0.1);
  outline: none;
  box-shadow: none;
}

/* Select options (browser-native, limited styling) */
.tpl-home .hero-form-card .ff-select-wrapper select option,
.tpl-home .hero-form-card .ff-el-select-style select option {
  background: var(--pine);
  color: var(--white);
}

/* Remove FF's own select arrow overlay so the field looks clean */
.tpl-home .hero-form-card .ff-select-wrapper::after,
.tpl-home .hero-form-card .ff-el-select-style::after { display: none; }

/* ── Two-column rows (FF5 grid layout) ── */
.tpl-home .hero-form-card .ff-t-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.tpl-home .hero-form-card .ff-t-cell { padding: 0; }

/* ── Submit button ── */
.tpl-home .hero-form-card .ff-btn-submit,
.tpl-home .hero-form-card .ff-btn.ff-btn-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 13px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212,168,67,0.35);
  display: block;
}

.tpl-home .hero-form-card .ff-btn-submit:hover,
.tpl-home .hero-form-card .ff-btn.ff-btn-submit:hover {
  background: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,67,0.45);
}

/* ── Validation errors ── */
.tpl-home .hero-form-card .error.text,
.tpl-home .hero-form-card .ff-el-is-error .ff-el-form-control,
.tpl-home .hero-form-card .has-error .ff-el-form-control {
  border-color: rgba(200,64,64,0.6);
}
.tpl-home .hero-form-card .error.text { color: #ff8a8a; font-size: 0.72rem; margin-top: 4px; display: block; }

/* ── Success message ── */
.tpl-home .hero-form-card .ff_message_success,
.tpl-home .hero-form-card .ff-message-success {
  color: var(--mint);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem 0;
  font-weight: 500;
}

/* ── Strip FF default padding/margin that breaks card layout ── */
.tpl-home .hero-form-card .ff-el-input--content { margin: 0; }
.tpl-home .hero-form-card .fluentform .ff-el-section { margin-bottom: 0; }
.tpl-home .hero-form-card .fluentform .ff-el-section + .ff-el-section { margin-top: 0; }

/* ── Responsive: stack 2-col rows on narrow hero ── */
@media (max-width: 900px) {
  .tpl-home .hero-form-card .ff-t-container { grid-template-columns: 1fr; }
}




/* ============================================================
   HEADER OFFSET (fixes content-under-header overlap)
   The header is fixed at 68px tall + 1px border = 69px
   Plus a small breathing buffer = 80px. Don't reduce below 69px.
   Hero sections override this with their own top padding.
   ============================================================ */
body { padding-top: 0; } /* The hero section has its own top padding for the header */
html { scroll-padding-top: 90px; } /* For #lead-form anchor jumps */

/* But sections that don't have hero padding need a buffer */
.dh-default { padding-top: 110px !important; }


/* ============================================================
   HOMEPAGE HERO FORM (.hero-form-wrap + .hero-form-card)
   The unified lead form per client-approved spec.
   ============================================================ */
.tpl-home .hero-form-wrap {
  width: 100%;
  max-width: 640px;
  margin: 2.5rem auto 0;
  animation: fadeUp 0.6s 0.35s ease both;
}
.tpl-home .hero-form-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(90,171,122,0.28);
  border-radius: 10px;
  padding: 2.2rem 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: left;
  position: relative;
}
.tpl-home .hero-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--amber));
  border-radius: 10px 10px 0 0;
}
.tpl-home .hero-form-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 0.5rem;
  text-align: center;
}
.tpl-home .hero-form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem; line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.8rem;
}
.tpl-home .hero-form-sub {
  font-size: 0.86rem; line-height: 1.6;
  color: rgba(232,237,233,0.65);
  text-align: center;
  margin-bottom: 1.6rem;
}
.tpl-home .hero-form-trust {
  font-size: 0.72rem;
  color: var(--steel);
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.04em;
}


/* ============================================================
   BUSINESS HERO VISUAL CARD (child elements)
   Replaces the form card that used to live here.
   ============================================================ */
.hero-card-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 0.5rem;
}
.hero-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; line-height: 1; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 1.4rem;
}
.hero-card-list { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.hero-card-list li {
  font-size: 0.88rem; line-height: 1.5;
  color: rgba(232,237,233,0.78);
  padding: 6px 0;
}
.hero-card-cta {
  display: inline-block; width: 100%; text-align: center;
  background: var(--gold); color: var(--ink);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 22px; border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212,168,67,0.3);
  transition: all 0.2s;
}
.hero-card-cta:hover { background: var(--amber); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(212,168,67,0.45); }
.hero-card-note {
  font-size: 0.72rem; color: var(--steel);
  text-align: center; margin-top: 0.9rem;
}


/* ============================================================
   MOBILE RESPONSIVE — comprehensive breakpoints
   Tablet  : <= 1024px
   Mobile L: <= 768px  (hamburger appears)
   Mobile S: <= 480px
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 2rem !important; }
  .help-header { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .why-inner { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .industries-header { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .about-inner { grid-template-columns: 1fr !important; gap: 3rem !important; }
  .paths-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
}

/* Mobile (large) — hamburger menu kicks in */
@media (max-width: 900px) {
  .dh-nav-toggle { display: flex; }

  .dh-nav-collapse {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(15,31,23,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 5vw 2rem;
    gap: 1.2rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(90,171,122,0.15);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .dh-nav-collapse.is-open { transform: translateY(0); }

  .nav-center,
  .dh-nav-collapse .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-center li,
  .dh-nav-collapse .menu li { width: 100%; }
  .nav-center a,
  .dh-nav-collapse .menu a {
    display: block;
    padding: 0.85rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(90,171,122,0.12);
  }

  .nav-right { flex-direction: column; gap: 0.6rem; width: 100%; margin-top: 0.5rem; }
  .nav-btn { width: 100%; text-align: center; padding: 12px 16px; }

  body.dh-nav-open { overflow: hidden; }

  /* Logo stays */
  .nav-logo-text { display: none; }

  /* Section padding tweaks */
  section { padding-left: 6vw !important; padding-right: 6vw !important; }
}

/* Mobile (large) — layout stacking */
@media (max-width: 768px) {
  /* Generic typography scale */
  h1, .hero-h1 { font-size: clamp(2.6rem, 9vw, 4rem) !important; }
  .section-h2 { font-size: clamp(2rem, 7vw, 3rem) !important; }

  /* Homepage hero */
  .tpl-home .hero { padding: 100px 6vw 60px; min-height: auto; }
  .tpl-home .hero-h1 { font-size: clamp(2.6rem, 11vw, 4.5rem) !important; }
  .tpl-home .hero-form-card { padding: 1.6rem 1.2rem; }
  .tpl-home .hero-form-title { font-size: 1.4rem; }

  /* Business hero — single column */
  .tpl-business .hero {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    min-height: auto !important;
  }
  .tpl-business .hero-left { padding: 100px 6vw 30px !important; }
  .tpl-business .hero-right { padding: 0 6vw 50px !important; }
  .tpl-business .hero-bg-text { font-size: 12rem !important; opacity: 0.04 !important; }
  .tpl-business .hero-stats { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
  .hero-actions { flex-direction: column; align-items: stretch !important; gap: 0.8rem !important; }
  .hero-actions a { text-align: center; }

  /* Residential hero */
  .tpl-residential .hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .tpl-residential .hero-left { padding: 80px 6vw 30px !important; }
  .tpl-residential .hero-right { padding: 0 6vw 60px !important; }

  /* Grids → single column */
  .help-grid { grid-template-columns: 1fr !important; }
  .industries-grid { grid-template-columns: 1fr !important; }
  .why-cards { gap: 0.8rem; }
  .how-steps { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }

  /* Footer */
  .dh-site-footer .footer-top { grid-template-columns: 1fr !important; gap: 2rem !important; padding: 3rem 6vw 1.5rem !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start !important; }

  /* Marquee */
  .marquee-track span { font-size: 0.74rem !important; padding: 0 1.5rem !important; }

  /* Versus table */
  .versus-table { font-size: 0.78rem; }
  .versus-table th, .versus-table td { padding: 8px !important; }

  /* About strip */
  .about-stats { grid-template-columns: 1fr 1fr !important; gap: 0.8rem !important; }

  /* Story masthead */
  .masthead-band { flex-direction: column !important; gap: 1rem !important; padding: 1.5rem 6vw !important; }
  .band-divider { display: none !important; }
}

/* Mobile (small) */
@media (max-width: 480px) {
  .dh-nav { padding: 0 5vw; height: 60px; }
  .dh-nav-collapse { top: 60px; }
  .nav-logo-img { height: 32px; }
  .nav-logo-name { font-size: 0.95rem; }

  section { padding-top: 60px !important; padding-bottom: 60px !important; }
  .help-section, .paths-section, .about-strip, .final-cta { padding: 60px 6vw !important; }

  .how-steps { grid-template-columns: 1fr !important; }
  .about-stats { grid-template-columns: 1fr 1fr !important; }
  .footer-bottom-right { gap: 1rem !important; }
  .cta-pair { flex-direction: column !important; }
  .cta-pair a { width: 100%; text-align: center; }

  .hero-card-title { font-size: 1.5rem; }
}


/* ============================================================
   FLUENT FORMS — radio button (I am a... fix)
   The "small radio issue" was likely Fluent Forms rendering
   radio fields as checkable buttons by default. Force the
   horizontal radio layout we want.
   ============================================================ */
.tpl-home .hero-form-card .ff-el-form-check,
.tpl-home .hero-form-card .ff_item_panel_check_item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  margin-right: 8px; margin-bottom: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(90,171,122,0.25);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.tpl-home .hero-form-card .ff-el-form-check:hover,
.tpl-home .hero-form-card .ff_item_panel_check_item:hover {
  border-color: var(--mint);
  background: rgba(90,171,122,0.1);
}
.tpl-home .hero-form-card input[type="radio"] {
  width: 16px; height: 16px; cursor: pointer;
  accent-color: var(--gold);
}
.tpl-home .hero-form-card .ff-el-form-check label,
.tpl-home .hero-form-card .ff_item_panel_check_item label {
  margin: 0; cursor: pointer;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
}