:root {
  --bg: #edf5ef;
  --paper: rgba(255, 255, 255, 0.86);
  --paper-soft: #f5f7ef;
  --ink: #102017;
  --muted: #5b6d63;
  --line: rgba(16, 32, 23, 0.09);
  --line-strong: rgba(16, 32, 23, 0.18);
  --green: #137454;
  --green-deep: #0a4f3a;
  --mint: #e0f4e6;
  --gold: #e6b64f;
  --gold-soft: #fff2c9;
  --sky-soft: #e7f4ff;
  --whatsapp: #22c55e;
  --danger: #b42318;
  --shadow-sm: 0 18px 40px rgba(7, 45, 33, 0.07);
  --shadow-md: 0 24px 64px rgba(7, 45, 33, 0.12);
  --shadow-lg: 0 38px 90px rgba(7, 45, 33, 0.18);
  --radius: 22px;
  --radius-sm: 16px;
  --radius-pill: 999px;
  --container: 1180px;
  --section: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(230, 182, 79, 0.16), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(19, 116, 84, 0.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(223, 244, 230, 0.94), transparent 26%),
    linear-gradient(180deg, #fbfdfb 0%, #eef5ef 34%, #f8fbf8 100%);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(19, 116, 84, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 116, 84, 0.026) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto auto -14rem -10rem;
  z-index: -1;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(230, 182, 79, 0.16), rgba(230, 182, 79, 0));
  filter: blur(12px);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
strong {
  margin: 0;
  font-family: "Sora", "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: 64px;
  line-height: 1.05;
}

h2 {
  max-width: 840px;
  font-size: 44px;
  line-height: 1.12;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
}

p {
  margin: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: var(--section) 0;
}

@supports (content-visibility: auto) {
  .section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }

  .hero-section,
  .trust-strip,
  .site-footer {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }
}

@media (min-width: 901px) {
  body::before {
    opacity: 0.45;
  }

  body::after {
    opacity: 0.22;
    filter: none;
  }

  .hero-section::before,
  .hero-section::after {
    animation: none;
    filter: blur(8px);
    opacity: 0.78;
  }

  .hero-bg {
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .eyebrow,
  .btn-ghost,
  .site-header,
  .trust-pill,
  .feature-card,
  .trust-note-card,
  .price-card,
  .about-card,
  .service-card,
  .brand-card,
  .project-card,
  .testimonial-card,
  .timeline-item,
  .metric-card,
  .result-summary,
  .calculator-form,
  .lead-form,
  .contact-copy,
  .contact-map-card,
  .owner-message-card,
  .owner-detail-card,
  .area-card,
  .faq-list details,
  .facebook-page-copy,
  .facebook-page-embed-card,
  .service-modal-backdrop,
  .service-modal-panel,
  .chatbot-launcher,
  .chatbot-panel,
  .mobile-cta {
    backdrop-filter: none;
  }
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.mobile-section-toggle-row {
  display: none;
}

.mobile-section-toggle {
  min-width: 0;
}

.mobile-collapsible-body[hidden] {
  display: none !important;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 32px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(19, 116, 84, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.64);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(7, 45, 33, 0.05);
  backdrop-filter: blur(10px);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 800;
  line-height: 1;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 240ms ease,
    border-color 240ms ease,
    color 240ms ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #169364 0%, var(--green) 55%, var(--green-deep) 100%);
  box-shadow: 0 18px 34px rgba(15, 107, 79, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 24px 44px rgba(15, 107, 79, 0.28);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.btn-ghost:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp {
  color: #ffffff;
  background: linear-gradient(135deg, #2fd86c 0%, var(--whatsapp) 100%);
  box-shadow: 0 18px 32px rgba(34, 197, 94, 0.24);
}

.btn-whatsapp:hover {
  background: #16a34a;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(16, 32, 23, 0.08);
  box-shadow: 0 14px 36px rgba(7, 45, 33, 0.08);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(7, 45, 33, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 18px;
}

.brand-copy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover {
  color: var(--green);
  background: rgba(19, 116, 84, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-weight: 800;
}

.hero-section {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 92px 0 86px;
  background: var(--green-deep);
  isolation: isolate;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  inset: auto;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.hero-section::before {
  top: -8%;
  right: -8%;
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  background: radial-gradient(circle, rgba(230, 182, 79, 0.26), rgba(230, 182, 79, 0));
  animation: ambientFloat 10s ease-in-out infinite;
}

.hero-section::after {
  left: -10%;
  bottom: -16%;
  width: min(36vw, 460px);
  height: min(36vw, 460px);
  background: radial-gradient(circle, rgba(93, 203, 156, 0.18), rgba(93, 203, 156, 0));
  animation: ambientFloat 14s ease-in-out infinite reverse;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--hero-pan-x, 0px), calc(var(--hero-pan-y, 0px) + var(--hero-scroll-offset, 0px)), 0) scale(1.08);
  transform-origin: center;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-overlay {
  background:
    radial-gradient(circle at var(--hero-spot-x, 72%) var(--hero-spot-y, 20%), rgba(230, 182, 79, 0.18), transparent 22%),
    linear-gradient(90deg, rgba(5, 37, 27, 0.92) 0%, rgba(5, 37, 27, 0.8) 46%, rgba(5, 37, 27, 0.24) 100%),
    linear-gradient(180deg, rgba(6, 43, 31, 0.22) 0%, rgba(6, 43, 31, 0.52) 100%);
}

.hero-corner-logo {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(144px, 14.4vw, 216px);
  aspect-ratio: 1.22;
  padding: 13px;
  border-radius: 0 0 0 34px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 52px rgba(6, 43, 31, 0.22);
  pointer-events: none;
}

.hero-corner-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 48px;
}

.hero-copy {
  max-width: 880px;
  position: relative;
}

.hero-copy .eyebrow {
  border-color: rgba(230, 182, 79, 0.28);
  background: rgba(7, 39, 29, 0.72);
  color: #ffe29a;
  box-shadow: 0 18px 34px rgba(5, 37, 27, 0.22);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.hero-copy h1 {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.hero-subtitle {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero-proof {
  max-width: 710px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-city-chips span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(5, 37, 27, 0.12);
}

.hero-stats {
  display: grid;
  gap: 12px;
}

.stat-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  color: #ffffff;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 42px rgba(5, 37, 27, 0.16);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 28px 56px rgba(5, 37, 27, 0.2);
}

.stat-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.stat-card span:last-child {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  padding-bottom: 34px;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-pill {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  color: var(--green-deep);
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(12px);
}

.why-section,
.pricing-section,
.process-section,
.brands-section,
.faq-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 252, 249, 0.95));
}

.services-section,
.original-trust-section,
.areas-section,
.about-section,
.gallery-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(230, 182, 79, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(245, 247, 239, 0.96), rgba(241, 246, 242, 0.96));
}

.calculator-section,
.subsidy-section,
.projects-section,
.testimonials-section,
.contact-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(19, 116, 84, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 247, 239, 0.98) 100%);
}

.feature-grid,
.trust-note-grid,
.service-grid,
.pricing-grid,
.area-grid,
.brand-grid,
.project-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.trust-note-card,
.price-card,
.subsidy-snapshot,
.about-card,
.service-card,
.brand-card,
.project-card,
.testimonial-card,
.timeline-item,
.metric-card,
.result-summary,
.calculator-form,
.lead-form,
.contact-copy,
.contact-map-card,
.owner-message-card,
.owner-detail-card,
.area-card,
.subsidy-points article {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 253, 251, 0.88));
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.feature-card {
  padding: 22px;
}

.feature-card,
.trust-note-card,
.price-card,
.brand-card,
.project-card,
.testimonial-card,
.timeline-item,
.metric-card,
.result-summary,
.calculator-form,
.lead-form,
.contact-copy,
.contact-map-card,
.owner-message-card,
.owner-detail-card,
.area-card,
.faq-list details,
.facebook-page-copy,
.facebook-page-embed-card {
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 280ms ease,
    box-shadow 280ms ease,
    background-color 280ms ease;
}

.feature-card:hover,
.trust-note-card:hover,
.price-card:hover,
.brand-card:hover,
.project-card:hover,
.testimonial-card:hover,
.timeline-item:hover,
.area-card:hover,
.faq-list details:hover,
.facebook-page-copy:hover,
.facebook-page-embed-card:hover {
  transform: translateY(-6px);
  border-color: rgba(19, 116, 84, 0.16);
  box-shadow: var(--shadow-md);
}

.feature-card p,
.trust-note-card p,
.price-card p,
.subsidy-snapshot p,
.about-card p,
.owner-detail-card p,
.service-card p,
.timeline-item p,
.testimonial-card p,
.metric-card p,
.result-summary p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.feature-card h3,
.trust-note-card h3,
.timeline-item h3 {
  margin: 18px 0 10px;
}

.icon-chip,
.timeline-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #ebf7ef, #d8f0e2);
  color: var(--green-deep);
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-note-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-note-card {
  min-height: 170px;
  padding: 20px;
}

.trust-note-card h3 {
  margin-top: 0;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green) 0%, #1ea774 100%);
}

.price-card.is-featured::before {
  background: linear-gradient(90deg, #f5c35f 0%, var(--gold) 100%);
}

.price-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(224, 244, 230, 0.9), rgba(244, 250, 245, 0.9));
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
}

.price-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 30px;
}

.subsidy-snapshot {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  margin-top: 18px;
  padding: 24px;
  background:
    radial-gradient(circle at 88% 18%, rgba(230, 182, 79, 0.18), transparent 18%),
    linear-gradient(135deg, #0b573f 0%, #093c2d 100%);
  color: #ffffff;
}

.subsidy-snapshot .eyebrow {
  color: var(--gold);
}

.subsidy-snapshot p {
  color: rgba(255, 255, 255, 0.78);
}

.subsidy-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.subsidy-mini-grid article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.1);
}

.subsidy-mini-grid strong,
.subsidy-mini-grid span {
  display: block;
}

.subsidy-mini-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.service-card {
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 107, 79, 0.26);
  box-shadow: var(--shadow-lg);
}

.service-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--paper-soft);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms ease;
  will-change: transform;
}

.service-card:hover img,
.service-card:focus-within img {
  transform: scale(1.08);
}

.service-body {
  min-height: 208px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.service-body h3 {
  margin-bottom: 10px;
}

.service-body > p {
  margin-bottom: 14px;
}

.service-card-prompt {
  color: var(--muted);
  font-weight: 700;
}

.service-inline-meta,
.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-inline-meta {
  margin-bottom: 14px;
}

.service-inline-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(19, 116, 84, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(245, 247, 239, 0.94);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

.benefit-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.service-body .btn {
  margin-top: 18px;
}

.service-card-actions .btn {
  flex: 1 1 0;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.service-modal[hidden] {
  display: none !important;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 25, 18, 0.56);
  backdrop-filter: blur(8px);
}

.service-modal-panel {
  position: relative;
  width: min(1120px, calc(100vw - 28px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  overflow: auto;
  border: 1px solid rgba(19, 116, 84, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(230, 182, 79, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 246, 0.98));
  box-shadow: 0 40px 100px rgba(7, 25, 18, 0.26);
}

.service-modal-close {
  position: sticky;
  top: 18px;
  z-index: 2;
  float: right;
  margin: 18px 18px 0 0;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(19, 116, 84, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(7, 45, 33, 0.1);
}

.service-modal-shell {
  display: grid;
  grid-template-columns: 284px minmax(0, 1fr);
  align-items: start;
}

.service-modal-sidebar {
  position: sticky;
  top: 0;
  min-height: 100%;
  padding: 28px 18px 28px 28px;
  border-right: 1px solid rgba(19, 116, 84, 0.1);
  background:
    radial-gradient(circle at top left, rgba(230, 182, 79, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(244, 249, 246, 0.96), rgba(255, 255, 255, 0.94));
}

.service-modal-sidebar h3 {
  margin: 0 0 8px;
}

.service-modal-sidebar-copy {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-modal-sidebar-count {
  margin-bottom: 18px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
}

.service-modal-tabs {
  display: grid;
  gap: 10px;
  max-height: calc(100vh - 230px);
  padding-right: 6px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.service-modal-tabs::-webkit-scrollbar {
  width: 8px;
}

.service-modal-tabs::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(19, 116, 84, 0.18);
}

.service-modal-tab {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(19, 116, 84, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-weight: 800;
  text-align: left;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.service-modal-tab-index {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(19, 116, 84, 0.08);
  color: var(--green-deep);
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.service-modal-tab-label {
  display: block;
}

.service-modal-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(19, 116, 84, 0.22);
  box-shadow: 0 12px 24px rgba(7, 45, 33, 0.08);
}

.service-modal-tab.is-active {
  border-color: rgba(19, 116, 84, 0.24);
  background: linear-gradient(135deg, rgba(224, 244, 230, 0.95), rgba(244, 250, 245, 0.95));
  color: var(--green-deep);
  box-shadow: 0 14px 26px rgba(15, 107, 79, 0.12);
}

.service-modal-tab.is-active .service-modal-tab-index {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #ffffff;
}

.service-modal-content {
  min-width: 0;
}

.service-modal-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  padding: 28px;
}

.service-modal-media {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(245, 247, 239, 0.92);
  box-shadow: var(--shadow-sm);
}

.service-modal-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-modal-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 18px;
}

.service-modal-short {
  color: var(--green-deep);
  font-size: 20px;
  font-weight: 800;
}

.service-modal-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-modal-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(19, 116, 84, 0.12);
  border-radius: var(--radius-pill);
  background:
    radial-gradient(circle at top right, rgba(230, 182, 79, 0.12), transparent 30%),
    rgba(245, 247, 239, 0.96);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
}

.service-modal-detail {
  color: var(--muted);
  font-size: 17px;
}

.service-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.service-modal-toggle {
  width: fit-content;
}

.service-modal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 0 28px 28px;
}

.service-modal-layout[hidden] {
  display: none !important;
}

.service-modal-section {
  padding: 22px;
  border: 1px solid rgba(19, 116, 84, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.service-modal-section-wide {
  grid-column: 1 / -1;
}

.service-modal-section-heading {
  margin-bottom: 16px;
}

.service-modal-section-heading h3 {
  margin-bottom: 6px;
}

.service-modal-section-heading p {
  color: var(--muted);
}

.service-chip-list,
.service-cover-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-chip-list span,
.service-cover-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(19, 116, 84, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(245, 247, 239, 0.94);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
}

.service-flow-grid,
.service-advantage-grid {
  display: grid;
  gap: 12px;
}

.service-diagram-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-diagram-step {
  position: relative;
  min-height: 138px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(19, 116, 84, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(230, 182, 79, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 246, 0.96));
}

.service-diagram-index {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #ffffff;
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.service-diagram-step p {
  color: var(--ink);
  font-weight: 800;
}

.service-diagram-arrow {
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(19, 116, 84, 0.2), rgba(19, 116, 84, 0.65));
  transform: translateY(-50%);
}

.service-diagram-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(19, 116, 84, 0.65);
  border-right: 2px solid rgba(19, 116, 84, 0.65);
  transform: translateY(-50%) rotate(45deg);
}

.service-flow-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-flow-card,
.service-advantage-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(19, 116, 84, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 246, 0.96));
}

.service-flow-card span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ebf7ef, #d8f0e2);
  color: var(--green-deep);
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-weight: 800;
}

.service-flow-card p,
.service-advantage-card p {
  color: var(--muted);
}

.service-advantage-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 16px;
}

.savings-showcase-section {
  position: relative;
}

.savings-showcase-section::before {
  content: "";
  position: absolute;
  inset: 18px 0;
  z-index: -1;
  pointer-events: none;
  border-top: 1px solid rgba(19, 116, 84, 0.06);
  border-bottom: 1px solid rgba(19, 116, 84, 0.04);
}

.savings-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.savings-summary-card,
.savings-story-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(19, 116, 84, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(230, 182, 79, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 246, 0.97));
  box-shadow: var(--shadow-sm);
}

.savings-summary-card {
  min-height: 122px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
}

.savings-summary-card span,
.savings-story-bills span,
.savings-story-impact span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.savings-summary-card strong {
  font-size: 32px;
  line-height: 1;
}

.savings-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.savings-story-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.savings-story-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.savings-story-city {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(19, 116, 84, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(224, 244, 230, 0.7);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

.savings-story-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #0f6b4f, #0a4f3a);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.savings-story-card h3 {
  font-size: 24px;
}

.savings-story-system {
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 800;
}

.savings-story-bills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.savings-story-bills article {
  padding: 16px;
  border: 1px solid rgba(19, 116, 84, 0.08);
  border-radius: 20px;
  background: rgba(245, 247, 239, 0.9);
}

.savings-story-bills strong {
  display: block;
  margin-top: 8px;
  font-size: 25px;
  line-height: 1.1;
}

.savings-story-impact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(15, 107, 79, 0.08), rgba(230, 182, 79, 0.12));
}

.savings-story-impact strong {
  color: var(--green-deep);
  font-size: 30px;
  line-height: 1;
}

.savings-story-highlight {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.savings-story-note {
  font-size: 14px;
}

.savings-story-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.savings-story-actions .btn {
  width: 100%;
}

.calculator-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 24px;
}

.calculator-form,
.lead-form,
.contact-copy {
  padding: 24px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field label,
.addon-fieldset legend {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(15, 107, 79, 0.62);
  box-shadow: 0 0 0 4px rgba(15, 107, 79, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.addon-fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.addon-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.addon-option {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  background: rgba(245, 247, 239, 0.92);
}

.addon-option input {
  width: 18px;
  min-height: 18px;
}

.addon-option span {
  font-weight: 700;
}

.addon-option strong {
  color: var(--green-deep);
  font-size: 14px;
}

.form-note,
.form-status {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.calculator-result {
  display: grid;
  gap: 16px;
}

.result-empty,
.result-summary {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(135deg, rgba(223, 243, 233, 0.9), rgba(255, 245, 216, 0.92)),
    #ffffff;
}

.result-empty span,
.result-summary span,
.metric-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.result-empty strong,
.result-summary strong {
  margin: 8px 0 10px;
  font-size: 36px;
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  padding: 18px;
}

.metric-card strong {
  display: block;
  margin: 8px 0;
  font-size: 22px;
}

.metric-card p {
  font-size: 14px;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.calculator-disclaimer {
  padding: 14px 16px;
  border: 1px solid rgba(15, 107, 79, 0.18);
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  position: relative;
  padding: 22px;
}

.subsidy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 36px;
  padding: 42px;
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 86% 16%, rgba(230, 182, 79, 0.18), transparent 16%),
    linear-gradient(135deg, #0b573f 0%, #093c2d 100%);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.subsidy-layout .eyebrow {
  color: var(--gold);
}

.subsidy-layout p {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.82);
}

.subsidy-points {
  display: grid;
  gap: 14px;
}

.subsidy-points article {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.subsidy-points span {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.subsidy-points p {
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.about-card {
  padding: 26px;
}

.about-card h3 {
  margin-bottom: 14px;
}

.about-card-hi {
  background:
    linear-gradient(135deg, rgba(223, 243, 233, 0.9), rgba(255, 245, 216, 0.86)),
    #ffffff;
}

.area-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.area-card {
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.area-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 107, 79, 0.3);
  box-shadow: var(--shadow-md);
}

.area-card strong,
.area-card span {
  display: block;
}

.area-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.brand-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.brand-card {
  min-height: 140px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 18px;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 107, 79, 0.28);
  box-shadow: var(--shadow-md);
}

.brand-card img {
  width: 100%;
  height: 74px;
  object-fit: contain;
  filter: none;
}

.brand-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.brand-note {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
}

.project-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 280ms ease;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-content {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.project-content span {
  color: var(--green);
  font-weight: 800;
}

.project-content strong {
  width: fit-content;
  padding: 7px 10px;
  border-radius: var(--radius-pill);
  background: var(--gold-soft);
  color: #6a4b00;
  font-size: 14px;
}

.facebook-page-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.facebook-page-copy,
.facebook-page-embed-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.facebook-page-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
}

.facebook-page-chip {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eef4ff, #dfeeff);
  color: #1663d6;
  font-size: 13px;
  font-weight: 900;
}

.facebook-page-chip::before {
  content: "f";
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1663d6;
  color: #ffffff;
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 11px;
}

.facebook-page-copy p {
  color: var(--muted);
}

.facebook-page-points {
  display: grid;
  gap: 10px;
}

.facebook-page-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.facebook-page-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.facebook-page-embed-card {
  overflow: hidden;
  min-height: 620px;
  background:
    radial-gradient(circle at top right, rgba(22, 99, 214, 0.08), transparent 18%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.facebook-page-embed-card iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 24px;
}

.testimonial-card p {
  font-size: 17px;
}

.testimonial-card strong {
  display: block;
  margin-top: 22px;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

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

.faq-list p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.contact-urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: -6px 0 24px;
  padding: 12px 16px;
  border: 1px solid rgba(179, 35, 24, 0.12);
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(255, 236, 230, 0.96), rgba(255, 247, 232, 0.96));
  color: #9f261c;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(159, 38, 28, 0.08);
}

.contact-urgency-banner::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.12);
}

.contact-lead-card,
.contact-copy,
.contact-map-card {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 248, 0.94));
  box-shadow: var(--shadow-md);
}

.contact-lead-card {
  display: grid;
  gap: 20px;
  padding: 26px;
}

.contact-lead-header {
  display: grid;
  gap: 12px;
}

.contact-lead-chip {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(224, 244, 230, 0.94), rgba(244, 250, 245, 0.94));
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
}

.contact-lead-header p {
  color: var(--muted);
}

.contact-form-frame-shell {
  overflow: hidden;
  border: 1px solid rgba(19, 116, 84, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(230, 182, 79, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(243, 248, 244, 0.96), rgba(255, 255, 255, 0.98));
}

.contact-form-frame {
  width: 100%;
  min-height: 620px;
  border: 0;
  background: #ffffff;
}

.contact-form-frame[hidden],
.contact-form-fallback[hidden],
.contact-fallback-form[hidden] {
  display: none !important;
}

.contact-form-fallback {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.contact-form-fallback strong {
  font-size: 20px;
}

.contact-form-fallback p {
  color: var(--muted);
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-form-actions .btn {
  min-width: 180px;
}

.contact-form-actions .btn[hidden] {
  display: none !important;
}

.contact-form-actions-top {
  margin-top: -2px;
}

.contact-fallback-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-fallback-form .form-grid {
  margin-bottom: 4px;
}

.contact-side-stack {
  display: grid;
  gap: 24px;
}

.contact-map-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 20px;
  padding: 22px;
}

.contact-map-card h3 {
  margin-bottom: 10px;
}

.map-embed {
  width: 100%;
  min-height: 250px;
  border: 0;
  border-radius: var(--radius);
}

.contact-copy h2 {
  margin-bottom: 16px;
}

.contact-copy h3 {
  margin-bottom: 12px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-list a {
  color: var(--green-deep);
  font-weight: 900;
}

.contact-list p {
  color: var(--muted);
}

.contact-service-focus,
.contact-trust-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-service-focus span,
.contact-trust-lines span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(19, 116, 84, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(245, 247, 239, 0.94);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
}

.contact-trust-lines span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
}

.contact-side-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.owner-panel {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(245, 247, 239, 0.9);
}

.owner-panel img {
  width: 68px;
  height: 68px;
  border-radius: var(--radius);
  object-fit: cover;
}

.owner-panel strong,
.owner-panel span {
  display: block;
}

.owner-panel span {
  color: var(--muted);
  font-weight: 700;
}

.lead-form .btn,
.calculator-form .btn {
  width: 100%;
}

.owner-section {
  background: #ffffff;
}

.owner-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
}

.owner-message-card {
  overflow: hidden;
}

.owner-message-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
}

.owner-message-card > div {
  padding: 22px;
}

.owner-name-large {
  margin-top: 14px;
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.owner-role-large {
  color: var(--green);
  font-weight: 900;
}

.owner-detail-card {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.owner-detail-card h3 {
  margin-bottom: 10px;
  color: var(--green-deep);
}

.owner-detail-card p + p {
  margin-top: 10px;
}

.owner-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.owner-contact-list a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--green-deep);
  background: rgba(245, 247, 239, 0.9);
  font-weight: 800;
}

.site-footer {
  padding: 56px 0 96px;
  background:
    radial-gradient(circle at 8% 0%, rgba(230, 182, 79, 0.18), transparent 20%),
    linear-gradient(180deg, #0b241b 0%, #081910 100%);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.85fr 1.15fr;
  gap: 32px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 16px;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.site-footer p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-hi {
  margin-top: 12px;
}

.footer-map-card .map-embed {
  min-height: 180px;
}

.copyright {
  width: min(calc(100% - 40px), var(--container));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.chatbot-stack {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  justify-items: start;
  gap: 12px;
}

.chatbot-floating-actions {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.floating-wa {
  position: fixed;
  right: 18px;
  left: auto;
  bottom: 22px;
  z-index: 60;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(34, 197, 94, 0.28);
  font-weight: 900;
  animation: floatButton 4s ease-in-out infinite;
}

.chatbot-launcher {
  position: relative;
  width: 64px;
  min-width: 64px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(19, 116, 84, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 52px rgba(7, 45, 33, 0.14);
  color: var(--ink);
  backdrop-filter: blur(18px);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    border-color 260ms ease;
  -webkit-tap-highlight-color: transparent;
}

.chatbot-launcher:hover {
  transform: translateY(-4px);
  border-color: rgba(19, 116, 84, 0.22);
  box-shadow: 0 30px 60px rgba(7, 45, 33, 0.18);
}

.chatbot-launcher.is-open {
  border-color: rgba(19, 116, 84, 0.28);
  box-shadow: 0 24px 52px rgba(7, 45, 33, 0.16);
}

.chatbot-launcher-badge {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow:
    0 0 0 8px rgba(19, 116, 84, 0.09),
    0 12px 22px rgba(15, 107, 79, 0.22);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.chatbot-launcher-badge::before {
  content: "RS";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.chatbot-launcher-copy {
  display: none;
}

.chatbot-panel {
  width: min(340px, calc(100vw - 28px));
  max-height: min(72vh, 640px);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  border: 1px solid rgba(19, 116, 84, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(230, 182, 79, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 246, 0.98));
  box-shadow: 0 32px 74px rgba(7, 45, 33, 0.22);
  backdrop-filter: blur(18px);
  color: var(--ink);
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.97);
  transform-origin: left bottom;
  will-change: opacity, transform;
  contain: layout paint;
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.chatbot-panel.is-open {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.chatbot-panel[hidden] {
  display: none !important;
}

.chatbot-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #0f6b4f 0%, #0a4f3a 100%);
}

.chatbot-panel-header strong,
.chatbot-panel-header span {
  display: block;
}

.chatbot-panel-header strong {
  font-size: 18px;
  color: #ffffff;
}

.chatbot-panel-header span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.chatbot-header-actions {
  display: flex;
  gap: 8px;
}

.chatbot-back,
.chatbot-close {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-weight: 800;
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.chatbot-back:hover,
.chatbot-close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.22);
}

.chatbot-back[hidden] {
  display: none !important;
}

.chatbot-progress {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.chatbot-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #f5c35f 0%, #ffe29a 100%);
  transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.chatbot-messages {
  display: grid;
  gap: 14px;
  padding: 16px 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar {
  width: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(19, 116, 84, 0.18);
  background-clip: content-box;
}

.chatbot-message {
  display: flex;
  gap: 10px;
  align-items: end;
}

.chatbot-messages > .chatbot-message:nth-last-child(-n + 2) {
  animation: chatbotMessageIn 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.chatbot-message-user {
  justify-content: flex-end;
}

.chatbot-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(15, 107, 79, 0.2);
}

.chatbot-bubble {
  max-width: 84%;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(19, 116, 84, 0.08);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(7, 45, 33, 0.08);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.chatbot-bubble p {
  margin: 0;
  color: inherit;
  font-weight: 700;
  line-height: 1.55;
}

.chatbot-bubble strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  color: inherit;
}

.chatbot-message-user .chatbot-bubble {
  border-color: rgba(19, 116, 84, 0.22);
  background: linear-gradient(135deg, #15855e 0%, #0f6b4f 100%);
  color: #ffffff;
}

.chatbot-message-summary .chatbot-bubble {
  max-width: 100%;
}

.chatbot-message-recommendation .chatbot-bubble {
  max-width: 100%;
  border-color: rgba(230, 182, 79, 0.2);
  background:
    radial-gradient(circle at top right, rgba(230, 182, 79, 0.14), transparent 18%),
    rgba(255, 251, 244, 0.98);
}

.chatbot-recommendation-grid,
.chatbot-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.chatbot-recommendation-grid span,
.chatbot-summary-grid span {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(19, 116, 84, 0.14);
  border-radius: 16px;
  background: rgba(244, 249, 246, 0.96);
  color: #385247;
  font-size: 13px;
  font-weight: 700;
}

.chatbot-recommendation-grid strong,
.chatbot-summary-grid strong {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.chatbot-insight-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.chatbot-insight-list li {
  position: relative;
  padding-left: 16px;
  color: #355247;
  font-size: 13px;
  font-weight: 700;
}

.chatbot-insight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.chatbot-final-actions,
.chatbot-choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chatbot-final-actions {
  margin-top: 16px;
}

.chatbot-choice-list {
  padding: 0 18px 16px;
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, rgba(244, 249, 246, 0), rgba(244, 249, 246, 0.96) 22%, rgba(244, 249, 246, 0.98) 100%);
  backdrop-filter: blur(10px);
}

.chatbot-choice-list[hidden],
.chatbot-input-form[hidden] {
  display: none !important;
}

.chatbot-choice {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(19, 116, 84, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  font-weight: 800;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  -webkit-tap-highlight-color: transparent;
}

.chatbot-choice:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 116, 84, 0.22);
  box-shadow: 0 16px 28px rgba(7, 45, 33, 0.1);
}

.chatbot-intent-choice {
  min-width: calc(50% - 5px);
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 246, 0.98));
}

.chatbot-input-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 0 18px 18px;
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, rgba(244, 249, 246, 0), rgba(244, 249, 246, 0.96) 20%, rgba(244, 249, 246, 0.98) 100%);
  backdrop-filter: blur(10px);
}

.chatbot-input-form input {
  min-height: 48px;
  border: 1px solid rgba(19, 116, 84, 0.22);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(7, 45, 33, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.chatbot-input-form input::placeholder {
  color: #5f7369;
}

.chatbot-input-form input:focus {
  border-color: rgba(19, 116, 84, 0.44);
  box-shadow:
    0 0 0 4px rgba(19, 116, 84, 0.1),
    0 14px 28px rgba(7, 45, 33, 0.08);
  transform: translateY(-1px);
}

.chatbot-input-form .btn {
  min-width: 92px;
}

@keyframes chatbotMessageIn {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.mobile-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 55;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  font-weight: 900;
}

.mobile-cta a:nth-child(2) {
  background: var(--whatsapp);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.feature-grid > .reveal:nth-child(2),
.trust-note-grid > .reveal:nth-child(2),
.service-grid > .reveal:nth-child(2),
.pricing-grid > .reveal:nth-child(2),
.timeline > .reveal:nth-child(2),
.area-grid > .reveal:nth-child(2),
.brand-grid > .reveal:nth-child(2),
.project-grid > .reveal:nth-child(2),
.testimonial-grid > .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.feature-grid > .reveal:nth-child(3),
.trust-note-grid > .reveal:nth-child(3),
.service-grid > .reveal:nth-child(3),
.pricing-grid > .reveal:nth-child(3),
.timeline > .reveal:nth-child(3),
.area-grid > .reveal:nth-child(3),
.brand-grid > .reveal:nth-child(3),
.project-grid > .reveal:nth-child(3),
.testimonial-grid > .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.feature-grid > .reveal:nth-child(4),
.trust-note-grid > .reveal:nth-child(4),
.service-grid > .reveal:nth-child(4),
.pricing-grid > .reveal:nth-child(4),
.timeline > .reveal:nth-child(4),
.area-grid > .reveal:nth-child(4),
.brand-grid > .reveal:nth-child(4),
.project-grid > .reveal:nth-child(4),
.testimonial-grid > .reveal:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes floatButton {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes ambientFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -16px, 0) scale(1.04);
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-content,
  .calculator-layout,
  .subsidy-layout,
  .subsidy-snapshot,
  .about-grid,
  .owner-layout,
  .contact-map-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-corner-logo {
    top: 0;
    width: 138px;
    padding: 11px;
    border-radius: 0 0 0 28px;
  }

  .feature-grid,
  .trust-note-grid,
  .service-grid,
  .pricing-grid,
  .timeline,
  .savings-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-modal-hero,
  .service-modal-layout {
    grid-template-columns: 1fr;
  }

  .service-flow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-diagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-grid,
  .area-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --section: 72px;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    font-size: 15px;
  }

  body::before {
    display: none;
  }

  body::after {
    opacity: 0.35;
    filter: none;
  }

  .hero-section::before,
  .hero-section::after {
    filter: none;
    animation: none;
  }

  .hero-bg {
    transform: scale(1.02);
    transition: none;
    will-change: auto;
  }

  .site-header,
  .trust-pill,
  .feature-card,
  .service-card,
  .service-modal-backdrop,
  .service-modal-panel,
  .contact-lead-card,
  .contact-copy,
  .contact-map-card,
  .facebook-page-copy,
  .facebook-page-embed-card,
  .chatbot-launcher,
  .chatbot-panel,
  .mobile-cta {
    backdrop-filter: none;
  }

  .service-card img,
  .project-card img {
    will-change: auto;
    transition-duration: 220ms;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .nav-shell {
    min-height: 70px;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 120px);
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-md);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    font-size: 15px;
    border-radius: var(--radius);
  }

  .site-nav a:hover {
    background: var(--paper-soft);
  }

  .nav-actions {
    display: none;
  }

  .split-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }

  .savings-summary-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .facebook-page-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body.chatbot-open {
    overflow: hidden;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .mobile-collapsible {
    scroll-margin-top: 86px;
  }

  .mobile-section-toggle-row {
    display: flex;
    margin: 4px 0 18px;
  }

  .mobile-section-toggle {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding: 14px 16px;
    border-color: rgba(19, 116, 84, 0.12);
    border-radius: 18px;
    background:
      radial-gradient(circle at right top, rgba(230, 182, 79, 0.14), transparent 30%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 246, 0.98));
    color: var(--green-deep);
    box-shadow: 0 14px 28px rgba(7, 45, 33, 0.08);
  }

  .mobile-section-toggle::after {
    content: "+";
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(19, 116, 84, 0.08);
    color: var(--green-deep);
    font-size: 18px;
    font-weight: 900;
    flex: 0 0 28px;
  }

  .mobile-collapsible[data-mobile-expanded="true"] .mobile-section-toggle::after {
    content: "-";
  }

  .mobile-collapsible.is-mobile-collapsed .section-heading {
    margin-bottom: 12px;
  }

  .mobile-collapsible.is-mobile-collapsed .section-heading.split-heading {
    gap: 0;
  }

  .mobile-collapsible.is-mobile-collapsed .section-heading p:not(.eyebrow) {
    display: none;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.55;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 18px;
  }

  .brand {
    min-width: auto;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy span {
    display: none;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 28px rgba(7, 45, 33, 0.06);
  }

  .nav-shell {
    min-height: 64px;
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 15px;
  }

  .brand-copy strong {
    font-size: 15px;
    line-height: 1.1;
  }

  .nav-actions {
    display: none;
  }

  .menu-toggle {
    min-height: 40px;
    padding: 9px 12px;
    border-color: rgba(19, 116, 84, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 246, 0.98));
    box-shadow: 0 12px 24px rgba(7, 45, 33, 0.08);
    font-size: 13px;
  }

  .site-nav {
    top: calc(100% + 12px);
    max-height: calc(100vh - 104px);
    padding: 14px;
    border-radius: 24px;
    border-color: rgba(19, 116, 84, 0.12);
    background:
      radial-gradient(circle at top right, rgba(230, 182, 79, 0.14), transparent 24%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 246, 0.98));
    box-shadow: 0 24px 56px rgba(7, 45, 33, 0.14);
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 900;
  }

  .hero-section {
    min-height: min(74svh, 620px);
    align-items: end;
    padding: 78px 0 16px;
  }

  .hero-corner-logo {
    top: 16px;
    right: 14px;
    width: 72px;
    padding: 6px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
  }

  .hero-bg {
    transform: scale(1.04);
    object-position: center top;
    opacity: 0.98;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 50% 16%, rgba(230, 182, 79, 0.2), transparent 24%),
      linear-gradient(180deg, rgba(6, 43, 31, 0.08) 0%, rgba(6, 43, 31, 0.18) 38%, rgba(6, 43, 31, 0.72) 74%, rgba(6, 43, 31, 0.92) 100%);
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-copy {
    max-width: none;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(6, 43, 31, 0.14), rgba(6, 43, 31, 0.46));
    box-shadow: 0 14px 34px rgba(5, 37, 27, 0.22);
  }

  .hero-copy .eyebrow {
    max-width: calc(100% - 86px);
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .hero-proof {
    max-width: none;
    font-size: 12.5px;
    line-height: 1.55;
  }

  .hero-city-chips {
    flex-wrap: nowrap;
    margin-top: 14px;
    padding-bottom: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero-city-chips::-webkit-scrollbar {
    display: none;
  }

  .hero-city-chips span {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 7px 10px;
    font-size: 11px;
  }

  .hero-stats {
    display: flex;
    gap: 10px;
    padding-bottom: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero-stats::-webkit-scrollbar,
  .trust-strip-grid::-webkit-scrollbar {
    display: none;
  }

  .stat-card {
    min-height: 100%;
    min-width: 138px;
    padding: 12px;
  }

  .stat-card strong {
    font-size: 22px;
  }

  .hero-actions,
  .result-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .result-actions .btn {
    width: 100%;
    min-height: 46px;
    border-radius: 16px;
    font-size: 14px;
  }

  .feature-grid,
  .trust-note-grid,
  .service-grid,
  .pricing-grid,
  .savings-summary-strip,
  .savings-showcase-grid,
  .timeline,
  .area-grid,
  .brand-grid,
  .project-grid,
  .testimonial-grid,
  .result-metrics,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid {
    display: flex;
    gap: 12px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .trust-pill {
    flex: 0 0 82%;
    min-height: 52px;
    font-size: 12px;
    border-radius: 18px;
    scroll-snap-align: start;
  }

  .hero-stats {
    scroll-snap-type: x proximity;
  }

  .stat-card {
    border-radius: 20px;
    scroll-snap-align: start;
  }

  .feature-card,
  .trust-note-card,
  .price-card,
  .savings-summary-card,
  .savings-story-card,
  .service-card,
  .brand-card,
  .project-card,
  .testimonial-card,
  .timeline-item,
  .metric-card,
  .result-summary,
  .result-empty,
  .calculator-form,
  .lead-form,
  .contact-copy,
  .contact-map-card,
  .owner-message-card,
  .owner-detail-card,
  .area-card,
  .faq-list details,
  .facebook-page-copy,
  .facebook-page-embed-card,
  .contact-lead-card {
    border-radius: 22px;
    border-color: rgba(16, 32, 23, 0.08);
    box-shadow: 0 18px 40px rgba(7, 45, 33, 0.08);
  }

  .feature-card,
  .trust-note-card,
  .price-card,
  .savings-summary-card,
  .savings-story-card,
  .timeline-item,
  .testimonial-card,
  .area-card,
  .faq-list details {
    padding: 18px;
  }

  .savings-story-topline {
    flex-wrap: wrap;
  }

  .savings-story-card h3 {
    font-size: 22px;
  }

  .savings-story-bills {
    grid-template-columns: 1fr;
  }

  .service-card {
    overflow: hidden;
  }

  .service-media {
    aspect-ratio: 16 / 10;
  }

  .service-body {
    padding: 18px;
  }

  .service-body h3 {
    font-size: 18px;
  }

  .price-card strong,
  .result-empty strong,
  .result-summary strong {
    font-size: 28px;
  }

  .project-card img {
    height: 220px;
  }

  .project-content {
    padding: 16px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-list summary {
    font-size: 15px;
    line-height: 1.45;
  }

  .facebook-page-copy {
    gap: 14px;
  }

  .service-card-actions,
  .service-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-card-actions .btn,
  .service-modal-actions .btn {
    width: 100%;
  }

  .service-modal-panel {
    width: min(calc(100vw - 16px), 1120px);
    max-height: calc(100vh - 16px);
    margin: 8px auto;
    border-radius: 24px;
  }

  .service-modal-shell {
    grid-template-columns: 1fr;
  }

  .service-modal-sidebar {
    position: static;
    padding: 18px 18px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(19, 116, 84, 0.1);
  }

  .service-modal-tabs {
    display: flex;
    gap: 10px;
    max-height: none;
    padding-right: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .service-modal-tabs::-webkit-scrollbar {
    display: none;
  }

  .service-modal-tab {
    flex: 0 0 220px;
  }

  .service-modal-hero,
  .service-modal-layout {
    padding: 18px;
  }

  .service-modal-media img {
    min-height: 240px;
  }

  .service-flow-grid,
  .service-advantage-grid,
  .service-recommendation-grid {
    grid-template-columns: 1fr;
  }

  .service-diagram-grid {
    grid-template-columns: 1fr;
  }

  .service-diagram-arrow {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -12px;
    width: 2px;
    height: 24px;
    transform: translateX(-50%);
  }

  .service-diagram-arrow::after {
    top: auto;
    bottom: -1px;
    right: 50%;
    transform: translateX(50%) rotate(135deg);
  }

  .subsidy-mini-grid {
    grid-template-columns: 1fr;
  }

  .facebook-page-copy {
    padding: 22px;
  }

  .facebook-page-embed-card,
  .facebook-page-embed-card iframe {
    min-height: 520px;
  }

  .trust-strip {
    margin-top: -18px;
  }

  .service-body {
    min-height: auto;
  }

  .service-inline-meta {
    margin-bottom: 12px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .service-inline-meta::-webkit-scrollbar {
    display: none;
  }

  .service-inline-meta span {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .subsidy-layout {
    padding: 26px;
  }

  .calculator-form,
  .lead-form,
  .contact-copy,
  .owner-detail-card {
    padding: 20px;
  }

  .result-empty,
  .result-summary {
    min-height: auto;
    padding: 22px;
  }

  .result-empty strong,
  .result-summary strong {
    font-size: 30px;
  }

  .contact-layout {
    gap: 18px;
  }

  .contact-lead-card,
  .contact-copy,
  .contact-map-card {
    border-radius: 24px;
  }

  .contact-lead-card {
    gap: 18px;
    padding: 20px;
  }

  .contact-form-fallback {
    padding: 18px;
  }

  .contact-form-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .contact-form-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .contact-map-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .project-card img {
    height: 240px;
  }

  .chatbot-stack {
    left: 14px;
    right: 14px;
    width: auto;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    justify-items: end;
    z-index: 90;
    pointer-events: none;
  }

  .chatbot-stack::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(7, 25, 18, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .chatbot-stack.is-chatbot-open::before {
    opacity: 1;
  }

  .chatbot-floating-actions {
    justify-items: end;
    pointer-events: auto;
  }

  .chatbot-panel {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-height: min(72vh, 680px);
    border-radius: 24px 24px 18px 18px;
    pointer-events: auto;
    box-shadow: 0 30px 80px rgba(7, 45, 33, 0.24);
  }

  .chatbot-launcher {
    position: relative;
    width: 60px;
    min-width: 60px;
    min-height: 60px;
    pointer-events: auto;
  }

  .chatbot-summary-grid {
    grid-template-columns: 1fr;
  }

  .floating-wa {
    display: none;
  }

  .mobile-cta {
    display: grid;
    gap: 10px;
    padding-left: 14px;
    padding-right: 14px;
    border-top: 1px solid rgba(16, 32, 23, 0.06);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -14px 34px rgba(7, 45, 33, 0.08);
  }

  .mobile-cta a {
    min-height: 50px;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(7, 45, 33, 0.1);
  }

  .mobile-cta a:first-child {
    background: linear-gradient(135deg, #11271d 0%, #1c3d2f 100%);
  }

  .mobile-cta a:last-child {
    background: linear-gradient(135deg, #f0b94e 0%, #d89c2b 100%);
    color: #102017;
  }

  .site-footer {
    padding-bottom: 110px;
  }
}

@media (max-width: 520px) {
  .site-nav {
    top: calc(100% + 8px);
    max-height: calc(100vh - 104px);
    padding: 10px;
  }

  .hero-section {
    min-height: min(66svh, 540px);
    padding: 72px 0 14px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-copy {
    padding: 12px;
    border-radius: 18px;
  }

  .hero-copy h1 {
    font-size: 24px;
    line-height: 1.14;
  }

  .section {
    padding: 52px 0;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 14px;
  }

  .hero-corner-logo {
    top: 10px;
    right: 10px;
    width: 50px;
    border-radius: 16px;
  }

  .trust-pill {
    flex-basis: 88%;
  }

  .hero-proof {
    display: none;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-city-chips {
    display: none;
  }

  .mobile-section-toggle {
    min-height: 48px;
    padding: 13px 14px;
    font-size: 14px;
  }

  .savings-summary-card strong,
  .savings-story-impact strong {
    font-size: 24px;
  }

  .savings-story-bills strong {
    font-size: 20px;
  }

  .savings-story-card {
    padding: 16px;
    border-radius: 20px;
  }

  .savings-story-impact {
    padding: 16px;
  }

  .stat-card {
    min-width: 126px;
    padding: 11px;
  }

  .stat-card strong {
    font-size: 20px;
  }

  .hero-stats .stat-card:last-child {
    display: none;
  }

  .trust-strip {
    margin-top: -10px;
    padding-bottom: 20px;
  }

  .trust-strip-grid {
    gap: 10px;
  }

  .trust-pill {
    min-height: 48px;
  }

  .feature-card,
  .trust-note-card,
  .price-card,
  .timeline-item,
  .testimonial-card,
  .area-card,
  .faq-list details,
  .service-body,
  .project-content {
    padding: 16px;
  }

  .project-card img {
    height: 200px;
  }

  .mobile-cta {
    gap: 8px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .mobile-cta a {
    min-height: 48px;
    border-radius: 16px;
    font-size: 13px;
  }

  .service-modal-sidebar {
    padding: 16px 16px 10px;
  }

  .service-modal-tab {
    flex-basis: 86%;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .service-modal-tabs {
    grid-template-columns: none;
  }

  .service-modal-hero,
  .service-modal-layout {
    padding: 16px;
  }

  .service-modal-short {
    font-size: 18px;
  }

  .service-modal-detail {
    font-size: 15px;
  }

  .service-modal-highlights {
    gap: 8px;
  }

  .service-modal-highlights span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .contact-lead-card {
    padding: 18px;
  }

  .contact-form-frame,
  .facebook-page-embed-card,
  .facebook-page-embed-card iframe {
    min-height: 420px;
  }

  .map-embed {
    min-height: 220px;
  }

  .contact-service-focus,
  .contact-trust-lines,
  .contact-side-actions,
  .owner-contact-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-service-focus span,
  .contact-trust-lines span,
  .owner-contact-list a {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .contact-side-actions .btn {
    width: 100%;
  }

  .owner-panel {
    grid-template-columns: 56px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .owner-panel img {
    width: 56px;
    height: 56px;
  }

  .addon-option {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .addon-option strong {
    grid-column: 2;
  }

  .contact-form-fallback strong {
    font-size: 18px;
  }

  .chatbot-panel-header {
    padding: 16px 16px 12px;
  }

  .chatbot-panel-header strong {
    font-size: 17px;
  }

  .chatbot-panel-header span {
    font-size: 12px;
  }

  .chatbot-header-actions {
    gap: 6px;
  }

  .chatbot-back,
  .chatbot-close {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .chatbot-messages {
    gap: 12px;
    padding: 14px 16px;
  }

  .chatbot-bubble {
    max-width: 88%;
    padding: 13px 14px;
  }

  .chatbot-choice-list,
  .chatbot-input-form {
    padding-left: 16px;
    padding-right: 16px;
  }

  .chatbot-choice-list {
    gap: 8px;
    padding-bottom: 14px;
  }

  .chatbot-intent-choice,
  .chatbot-choice {
    width: 100%;
    min-width: 100%;
  }

  .chatbot-input-form {
    grid-template-columns: 1fr;
    padding-bottom: 16px;
  }

  .chatbot-input-form .btn {
    width: 100%;
  }

  .mobile-cta a {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
