:root {
  --green-950: #063126;
  --green-900: #064232;
  --green-800: #08724b;
  --green-700: #0a9659;
  --green-600: #10b869;
  --green-500: #28d67f;
  --green-100: #e8fff1;
  --lime-500: #d8ff4a;
  --lime-100: #f5ffd4;
  --aqua-500: #16c7a1;
  --sun-500: #ffe36d;
  --gold-500: #d8ff4a;
  --gold-100: #f5ffd4;
  --ink: #09221a;
  --muted: #526961;
  --line: #cfead9;
  --paper: #ffffff;
  --soft: #f2fff6;
  --shadow: 0 22px 55px rgba(6, 66, 50, 0.14);
  --bright-shadow: 0 24px 70px rgba(16, 184, 105, 0.22);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fff4 0%, #ffffff 32%, #f3fff8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
a,
span {
  overflow-wrap: break-word;
}

::selection {
  color: #fff;
  background: var(--green-700);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: 6px;
  padding: 10px 14px;
  color: #fff;
  background: var(--green-800);
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(6, 49, 38, 0.58);
  backdrop-filter: blur(18px) saturate(1.4);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(16, 184, 105, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(6, 66, 50, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  height: var(--header-height);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 162px;
  text-decoration: none;
}

.brand__mark {
  position: relative;
  display: block;
  width: 162px;
  height: 58px;
  flex: 0 0 162px;
}

.brand__logo {
  position: absolute;
  top: -7px;
  left: 0;
  display: block;
  width: 58px;
  height: 72px;
  border: 0;
  padding: 0;
  background: transparent;
  filter:
    drop-shadow(0 3px 8px rgba(3, 49, 38, 0.42))
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.28));
  object-fit: contain;
  transition: filter 180ms ease, transform 180ms ease;
}

.brand__text {
  position: absolute;
  top: 50%;
  left: 54px;
  display: grid;
  color: #fff;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(3, 49, 38, 0.42);
  transform: translateY(-50%);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.brand__text span:first-child {
  font-size: 1.04rem;
}

.brand__text span:last-child {
  color: var(--lime-500);
  font-size: 0.96rem;
  transition: color 180ms ease;
}

.site-header.is-scrolled .brand__logo {
  filter:
    drop-shadow(0 2px 3px rgba(6, 49, 38, 0.16))
    drop-shadow(0 0 1px rgba(6, 49, 38, 0.55));
}

.site-header.is-scrolled .brand__text {
  color: var(--green-900);
  text-shadow: none;
}

.site-header.is-scrolled .brand__text span:last-child {
  color: var(--green-600);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__links a,
.nav__cta {
  min-height: 42px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav__links a {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--green-950);
  background: var(--lime-500);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.91rem;
  font-weight: 750;
}

.nav__cta:hover {
  transform: translateY(-1px);
  color: var(--green-950);
  background: var(--lime-500);
}

.site-header.is-scrolled .nav__links a,
.site-header.is-scrolled .nav__cta {
  color: var(--green-900);
}

.site-header.is-scrolled .nav__links a:hover,
.site-header.is-scrolled .nav__links a.is-active,
.site-header.is-scrolled .nav__cta:hover {
  color: var(--green-950);
  background: var(--lime-500);
}

.site-header.is-scrolled .nav__cta {
  border-color: var(--line);
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.site-header.is-scrolled .nav__toggle {
  border-color: var(--line);
  color: var(--green-900);
  background: #fff;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section {
  scroll-margin-top: var(--header-height);
  padding: 78px 0;
}

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

.section__heading {
  width: min(720px, 100%);
  margin-bottom: 36px;
}

.section__heading--wide {
  width: min(920px, 100%);
}

.section__heading h2,
.intro h2,
.positioning h2,
.territory h2,
.future h2,
.contact h2 {
  margin: 0;
  color: var(--green-900);
  font-size: 2.9rem;
  line-height: 1.06;
}

.section__heading p,
.intro__copy p,
.territory__copy p,
.contact__copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92svh;
  padding: 132px 0 96px;
  overflow: hidden;
  color: #fff;
  background: var(--green-950);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.24) saturate(1.42) contrast(1.06);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(3, 49, 38, 0.76) 0%, rgba(3, 68, 44, 0.48) 42%, rgba(5, 96, 50, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 57, 38, 0.72) 0%, rgba(4, 57, 38, 0.03) 48%),
    linear-gradient(180deg, rgba(216, 255, 74, 0.16) 0%, rgba(216, 255, 74, 0) 40%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero .eyebrow {
  color: var(--lime-500);
}

.hero h1 {
  margin: 0;
  font-size: 5.4rem;
  line-height: 0.96;
  text-shadow: 0 12px 45px rgba(6, 49, 38, 0.42);
}

.hero__lead {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.button--primary {
  color: var(--green-950);
  background: var(--lime-500);
  box-shadow: 0 16px 42px rgba(216, 255, 74, 0.24);
}

.button--primary:hover {
  background: var(--sun-500);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.14);
}

.feature-strip {
  position: relative;
  z-index: 2;
  margin-top: -44px;
  padding: 0 0 52px;
}

.feature-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.feature-strip article {
  min-height: 148px;
  border: 1px solid rgba(16, 184, 105, 0.16);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(216, 255, 74, 0.98) 0%, rgba(255, 255, 255, 0.98) 45%, rgba(232, 255, 241, 0.98) 100%);
  box-shadow: var(--bright-shadow);
}

.feature-strip span {
  display: block;
  color: var(--green-950);
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1.08;
}

.feature-strip p {
  margin: 14px 0 0;
  color: #315247;
  font-weight: 620;
}

.intro__grid,
.positioning__grid,
.territory__grid,
.future__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 64px;
  align-items: start;
}

.intro__content {
  align-self: center;
}

.intro__subtitle {
  margin: 18px 0 0;
  color: var(--green-800);
  font-size: 1.24rem;
  font-weight: 820;
  line-height: 1.35;
}

.intro__statement {
  display: inline-flex;
  margin: 24px 0 0;
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--lime-500), #f8ffcf);
  box-shadow: 0 18px 42px rgba(216, 255, 74, 0.18);
  font-weight: 900;
}

.intro__copy {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  border-left: 4px solid var(--lime-500);
  padding-left: 28px;
}

.intro__copy p {
  margin: 0;
}

.intro__portrait {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-100);
  box-shadow: var(--bright-shadow);
}

.intro__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: inherit;
  pointer-events: none;
}

.intro__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: brightness(1.05) saturate(1.08) contrast(1.02);
}

.strategic-band {
  padding: 76px 0;
  color: #fff;
  background: linear-gradient(135deg, #07814f 0%, #10b869 58%, #aef044 150%);
}

.strategic-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.strategic-band .eyebrow {
  color: var(--lime-500);
}

.strategic-band h2 {
  margin: 0;
  color: #fff;
  font-size: 2.7rem;
  line-height: 1.08;
}

.strategic-band__subtitle {
  width: min(560px, 100%);
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  font-weight: 760;
}

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

.strategic-band__items span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 0 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 44px rgba(6, 49, 38, 0.12);
  font-weight: 850;
}

.strategic-band__items .icon {
  flex: 0 0 auto;
  color: var(--lime-500);
}

.workbench {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #f2fff6 100%);
}

.method-services {
  padding-bottom: 54px;
}

.workbench {
  padding-top: 54px;
}

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

.energy-mockup {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 430px;
  border: 1px solid rgba(16, 184, 105, 0.22);
  border-radius: 8px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 255, 244, 0.96) 100%);
  box-shadow: var(--bright-shadow);
}

.energy-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--lime-500), var(--green-500), var(--aqua-500));
}

.mockup__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 46px;
}

.mockup__topbar span {
  color: var(--green-950);
  font-size: 1.08rem;
  font-weight: 900;
}

.mockup__topbar small {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green-950);
  background: var(--lime-500);
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.energy-mockup > p {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-weight: 620;
}

.bill-preview,
.dashboard-preview,
.plan-preview {
  border: 1px solid rgba(16, 184, 105, 0.16);
  border-radius: 8px;
  background: #fff;
}

.bill-preview {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.bill-preview__head {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.bill-preview__head span,
.bill-row span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
}

.bill-preview__head strong {
  color: var(--green-950);
  font-size: 1.34rem;
  line-height: 1.08;
}

.bill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  border-radius: 6px;
  padding: 0 12px;
  background: #f6fff8;
}

.bill-row.is-highlight {
  outline: 2px solid var(--lime-500);
  background: #fbffe8;
}

.bill-row em {
  color: var(--green-800);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
  text-align: right;
}

.dashboard-preview {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.dashboard-preview__chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
  min-height: 170px;
  padding: 16px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(216, 255, 74, 0.24), rgba(22, 199, 161, 0.08)),
    repeating-linear-gradient(0deg, rgba(8, 114, 75, 0.08) 0 1px, transparent 1px 42px);
}

.dashboard-preview__chart span {
  display: block;
  min-height: 36px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--lime-500), var(--green-500));
  box-shadow: 0 10px 24px rgba(16, 184, 105, 0.22);
}

.dashboard-preview__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-preview__legend span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green-800);
  background: #f7fff9;
  font-size: 0.8rem;
  font-weight: 820;
}

.plan-preview {
  display: grid;
  gap: 0;
  padding: 10px 18px;
}

.plan-preview div {
  position: relative;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  min-height: 72px;
  align-items: center;
}

.plan-preview div:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: -8px;
  width: 2px;
  height: 22px;
  background: var(--line);
}

.plan-preview span {
  display: block;
  width: 22px;
  height: 22px;
  border: 5px solid var(--lime-500);
  border-radius: 50%;
  background: var(--green-700);
  box-shadow: 0 0 0 6px rgba(216, 255, 74, 0.18);
}

.plan-preview p {
  margin: 0;
  color: var(--green-950);
  font-weight: 820;
}

.section--green {
  color: #fff;
  background:
    linear-gradient(135deg, #07814f 0%, #10b869 58%, #aef044 150%);
}

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

.service-flow__item {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  min-height: 280px;
  border: 1px solid rgba(16, 184, 105, 0.2);
  border-top: 5px solid var(--green-500);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fff9 100%);
  box-shadow: var(--shadow);
}

.service-flow__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  border-radius: 6px;
  color: var(--green-950);
  background: var(--lime-500);
  font-size: 0.8rem;
  font-weight: 850;
}

.service-flow__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  color: var(--green-950);
  background: var(--green-100);
}

.service-flow__icon .icon {
  width: 26px;
  height: 26px;
}

.service-flow__item > div:last-child {
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.service-flow__item h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 1.16rem;
  line-height: 1.16;
}

.service-flow__item p {
  margin: 0;
  color: var(--muted);
}

.service-flow__item small {
  display: inline-flex;
  align-self: end;
  width: fit-content;
  margin-top: auto;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green-950);
  background: var(--lime-100);
  font-size: 0.76rem;
  font-weight: 850;
}

.positioning h2,
.future h2 {
  color: #fff;
}

.positioning .eyebrow,
.future .eyebrow {
  color: var(--gold-500);
}

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

.positioning__items div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 44px rgba(6, 49, 38, 0.12);
  font-weight: 800;
}

.positioning__items .icon {
  color: var(--lime-500);
  flex: 0 0 auto;
}

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

.method__step {
  min-height: 236px;
  border: 1px solid rgba(16, 184, 105, 0.22);
  border-top: 5px solid var(--green-500);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fff9 100%);
  box-shadow: var(--shadow);
}

.method__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  border-radius: 6px;
  color: var(--green-950);
  background: var(--lime-500);
  font-size: 0.8rem;
  font-weight: 850;
}

.method__step h3 {
  margin: 28px 0 10px;
  color: var(--green-900);
  font-size: 1.24rem;
}

.method__step p {
  margin: 0;
  color: var(--muted);
}

.section--soft {
  background:
    linear-gradient(180deg, #f2fff6 0%, #ffffff 72%);
}

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

.service-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  min-height: 154px;
  border: 1px solid rgba(16, 184, 105, 0.18);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f4fff7 100%);
  box-shadow: 0 14px 34px rgba(6, 66, 50, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 184, 105, 0.42);
  box-shadow: var(--bright-shadow);
}

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

.service-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  color: var(--green-950);
  background: var(--lime-500);
}

.service-card__icon .icon {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 1.18rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.territory__media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--bright-shadow);
}

.territory__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: inherit;
  pointer-events: none;
}

.territory__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  filter: brightness(1.18) saturate(1.34) contrast(1.05);
}

.territory__copy {
  align-self: center;
}

.territory__copy p {
  margin: 18px 0 0;
}

.section--dark {
  color: #fff;
  background:
    linear-gradient(135deg, #063126 0%, #08724b 62%, #d8ff4a 155%);
}

.future__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.future__list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.14);
  font-weight: 750;
}

.contact__actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.coverage-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  margin-top: 30px;
  border: 1px solid rgba(16, 184, 105, 0.22);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f2fff6 100%);
  box-shadow: 0 14px 34px rgba(6, 66, 50, 0.07);
}

.coverage-note > .icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  padding: 10px;
  color: var(--green-950);
  background: var(--lime-500);
}

.coverage-note strong {
  display: block;
  color: var(--green-950);
  font-size: 1rem;
  font-weight: 900;
}

.coverage-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 44px;
  border-radius: 6px;
  color: var(--green-700);
  font-weight: 850;
  text-decoration: none;
}

.contact-link .icon {
  color: var(--green-600);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(16, 184, 105, 0.22);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form span {
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(22, 113, 71, 0.14);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note[data-state="success"] {
  color: var(--green-700);
  font-weight: 780;
}

.form-note[data-state="error"] {
  color: #b42318;
  font-weight: 780;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-950);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(220px, 0.7fr);
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.footer__grid p {
  margin: 0;
}

.footer__small {
  font-size: 0.86rem;
  text-align: right;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@media (max-width: 980px) {
  :root {
    --header-height: 116px;
  }

  .nav {
    width: min(1180px, calc(100% - 28px));
    height: auto;
    min-height: var(--header-height);
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 0 10px;
  }

  .nav__toggle {
    display: none;
  }

  .nav__links {
    position: static;
    order: 4;
    display: flex;
    width: 100%;
    gap: 6px;
    overflow-x: auto;
    padding: 0 0 2px;
    border-top: 0;
    background: transparent;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    scrollbar-width: none;
  }

  .nav__links::-webkit-scrollbar {
    display: none;
  }

  .nav__links a {
    flex: 0 0 auto;
    min-height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0 11px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
  }

  .nav__links a:hover,
  .nav__links a.is-active {
    color: var(--green-950);
    background: var(--lime-500);
    border-color: transparent;
  }

  .site-header.is-scrolled .nav__links a {
    border-color: var(--line);
    color: var(--green-900);
    background: #fff;
  }

  .site-header.is-scrolled .nav__links a:hover,
  .site-header.is-scrolled .nav__links a.is-active {
    color: var(--green-950);
    background: var(--lime-500);
    border-color: transparent;
  }

  .nav__cta {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section__inner,
  .hero__content {
    width: min(1180px, calc(100% - 28px));
  }

  .hero {
    min-height: 82svh;
    padding: 160px 0 74px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .feature-strip {
    margin-top: 0;
    padding: 18px 0 36px;
    background: #f8fff4;
  }

  .feature-strip__inner {
    grid-template-columns: 1fr;
    width: min(1180px, calc(100% - 28px));
  }

  .feature-strip article {
    min-height: auto;
  }

  .intro__grid,
  .strategic-band__grid,
  .positioning__grid,
  .territory__grid,
  .future__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section__heading h2,
  .intro h2,
  .strategic-band h2,
  .positioning h2,
  .territory h2,
  .future h2,
  .contact h2 {
    font-size: 2.2rem;
  }

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

  .strategic-band {
    padding: 58px 0;
  }

  .strategic-band__items {
    grid-template-columns: 1fr;
  }

  .method-services {
    padding-bottom: 42px;
  }

  .workbench {
    padding-top: 42px;
  }

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

  .mockup-grid {
    grid-template-columns: 1fr;
  }

  .energy-mockup {
    min-height: auto;
  }

  .intro__portrait {
    min-height: 620px;
  }

  .method__step {
    min-height: auto;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__small {
    text-align: left;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 112px;
  }

  .brand {
    min-width: auto;
  }

  .brand__mark {
    width: 140px;
    height: 50px;
    flex-basis: 140px;
  }

  .brand__logo {
    top: -6px;
    width: 50px;
    height: 62px;
  }

  .brand__text {
    left: 47px;
  }

  .brand__text span:first-child {
    font-size: 0.9rem;
  }

  .brand__text span:last-child {
    font-size: 0.84rem;
  }

  .hero {
    min-height: 86svh;
    padding: 152px 0 64px;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(3, 49, 38, 0.78) 0%, rgba(3, 68, 44, 0.56) 68%, rgba(5, 96, 50, 0.26) 100%),
      linear-gradient(0deg, rgba(4, 57, 38, 0.72) 0%, rgba(4, 57, 38, 0.05) 46%),
      linear-gradient(180deg, rgba(216, 255, 74, 0.18) 0%, rgba(216, 255, 74, 0) 36%);
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero__lead {
    font-size: 1.06rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
  }

  .feature-strip article {
    padding: 22px;
  }

  .feature-strip span {
    font-size: 1.18rem;
  }

  .intro__copy {
    padding-left: 18px;
  }

  .intro__subtitle {
    font-size: 1.08rem;
  }

  .intro__statement {
    padding: 14px;
  }

  .intro__portrait {
    min-height: 520px;
  }

  .section__heading h2,
  .intro h2,
  .strategic-band h2,
  .positioning h2,
  .territory h2,
  .future h2,
  .contact h2 {
    font-size: 1.86rem;
  }

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

  .service-card,
  .service-card--wide {
    grid-template-columns: 1fr;
  }

  .service-card__icon {
    width: 52px;
    height: 52px;
  }

  .contact-form {
    padding: 20px;
  }
}
