:root {
  --ener-blue: #168ecf;
  --ener-green: #679331;
  --ener-yellow: #fbae06;
  --ener-navy: #102b3c;
  --ener-ink: #0a1b26;
  --bg: #ffffff;
  --bg-soft: #f4f8f5;
  --muted: #52636e;
  --border: #dfe9e5;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(16, 43, 60, .11);
  --shadow-soft: 0 8px 26px rgba(16, 43, 60, .075);
  --max: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ener-ink);
  background:
    radial-gradient(900px 580px at 8% 0%, rgba(42, 161, 226, .13), transparent 65%),
    radial-gradient(800px 560px at 96% 10%, rgba(116, 161, 59, .11), transparent 64%),
    linear-gradient(180deg, var(--bg-soft), var(--bg) 48%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-underline-offset: 3px; }
[hidden] { display: none !important; }
.no-scroll { overflow: hidden; }
.wrap { width: min(100% - 44px, var(--max)); margin-inline: auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(223, 233, 229, .9);
  box-shadow: 0 3px 20px rgba(16, 43, 60, .035);
  backdrop-filter: saturate(150%) blur(14px);
}
.header { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; text-decoration: none; }
.brand img, .menu-brand img { width: 54px; height: 54px; object-fit: cover; border-radius: 15px; background: #fff; box-shadow: 0 8px 20px rgba(16,43,60,.13); }
.brand .brand-logo-full { display: block; width: 190px; height: auto; max-height: 78px; object-fit: contain; border-radius: 0; background: transparent; box-shadow: none; }
.brand .name { color: var(--ener-navy); font-size: 20px; font-weight: 900; letter-spacing: -.025em; }
.home-icon { display: none; }
.nav { display: flex; align-items: center; gap: 3px; }
.nav a { border: 1px solid transparent; border-radius: 999px; padding: 9px 11px; color: var(--ener-navy); font-size: 14px; font-weight: 750; text-decoration: none; transition: .2s ease; }
.nav a:hover, .nav a:focus-visible { color: #0875b0; background: rgba(42,161,226,.09); }
.nav a.active { background: rgba(116,161,59,.12); border-color: rgba(116,161,59,.25); }
.actions { display: flex; align-items: center; }

.hamburger { display: none; align-items: center; gap: 8px; min-width: 48px; min-height: 48px; padding: 9px 13px; border: 1px solid var(--border); border-radius: 15px; background: #fff; color: var(--ener-navy); box-shadow: var(--shadow-soft); cursor: pointer; }
.hamburger-lines { width: 22px; display: flex; flex-direction: column; }
.hamburger-line { display: block; height: 2px; margin: 3px 0; border-radius: 2px; background: currentColor; transition: .2s ease; }
.hamburger-text { display: none; font-size: 14px; font-weight: 850; }
.hamburger.is-open .hamburger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.menu-overlay { position: fixed; inset: 0; z-index: 999; }
.menu-scrim { position: absolute; inset: 0; background: rgba(6,18,28,.5); backdrop-filter: blur(8px); }
.menu-sheet { position: absolute; left: 50%; bottom: 0; width: min(100%, 720px); max-height: min(92dvh, 780px); overflow-y: auto; transform: translateX(-50%); padding: 20px max(20px, env(safe-area-inset-right)) max(22px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left)); border: 1px solid rgba(223,233,229,.9); border-bottom: 0; border-radius: 28px 28px 0 0; background: linear-gradient(180deg,#fff,#f4f8f5); box-shadow: 0 -20px 60px rgba(6,18,28,.26); animation: sheetUp .24s ease-out; }
@keyframes sheetUp { from { opacity: 0; transform: translate(-50%, 24px); } to { opacity: 1; transform: translate(-50%, 0); } }
.menu-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.menu-brand { display: flex; align-items: center; gap: 11px; }
.menu-brand img { width: 48px; height: 48px; }
.menu-title { color: var(--ener-navy); font-weight: 900; }
.menu-subtitle { color: #6a7a86; font-size: 12px; font-weight: 700; }
.menu-close { width: 48px; height: 48px; flex: 0 0 auto; border: 1px solid var(--border); border-radius: 15px; background: #fff; color: var(--ener-navy); font-size: 20px; font-weight: 900; cursor: pointer; }
.nav-mobile { flex-direction: column; align-items: stretch; gap: 8px; padding: 16px 0 6px; }
.nav-mobile a { padding: 12px 14px; border-color: var(--border); border-radius: 14px; background: #fff; font-size: 16px; box-shadow: 0 6px 16px rgba(16,43,60,.045); }
.menu-bottom .btn { width: 100%; margin-top: 10px; }
.menu-hint { margin-top: 10px; color: #6a7a86; font-size: 12px; font-weight: 700; text-align: center; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 11px 18px; border: 1px solid transparent; border-radius: 999px; font-weight: 850; line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--ener-navy), #071d2b); box-shadow: 0 13px 28px rgba(16,43,60,.22); }
.btn-primary:hover { box-shadow: 0 17px 35px rgba(16,43,60,.27); }
.btn-primary .bolt { color: var(--ener-yellow); }
.btn-outline { color: var(--ener-navy); background: rgba(255,255,255,.9); border-color: rgba(42,161,226,.34); box-shadow: var(--shadow-soft); }
:focus-visible { outline: 3px solid rgba(42,161,226,.38); outline-offset: 3px; }

.page-hero { max-width: 900px; padding: clamp(48px, 8vw, 90px) 0 clamp(28px, 5vw, 54px); }
.h1 { max-width: 900px; margin: 18px 0; color: var(--ener-navy); font-size: clamp(40px, 6vw, 68px); line-height: 1.02; letter-spacing: -.052em; text-wrap: balance; }
.lead { max-width: 790px; margin: 12px 0; color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.7; }
.micro { color: #667781; font-size: 14px; line-height: 1.55; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border: 1px solid rgba(116,161,59,.35); border-radius: 999px; color: var(--ener-navy); background: rgba(116,161,59,.10); font-size: 13px; font-weight: 850; letter-spacing: .01em; }
.badge-dot, .badge > span:first-child { width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%; background: var(--ener-green); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.section { padding: 18px 0; }
.grid2, .grid3 { display: grid; gap: 18px; align-items: stretch; }
.grid2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.services-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; align-items: stretch; }
.service-featured { border-color: rgba(103,147,49,.34); background: radial-gradient(circle at 100% 0%,rgba(103,147,49,.13),transparent 42%),rgba(255,255,255,.94); }
.card { overflow: hidden; border: 1px solid rgba(223,233,229,.92); border-radius: var(--radius); background: rgba(255,255,255,.9); box-shadow: var(--shadow-soft); }
.card.pad { padding: clamp(22px, 3vw, 30px); }
.card h2 { margin: 0 0 10px; color: var(--ener-navy); font-size: clamp(21px, 2.3vw, 27px); line-height: 1.2; letter-spacing: -.025em; }
.card p { margin: 8px 0 16px; color: var(--muted); }
.card .btn { margin-top: 5px; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 15px; background: #fff; box-shadow: 0 8px 18px rgba(16,43,60,.08); }
.icon svg { width: 24px; height: 24px; }
.icon.blue { color: var(--ener-blue); background: rgba(42,161,226,.1); }
.icon.green { color: var(--ener-green); background: rgba(116,161,59,.11); }
.icon.yellow { color: #bd7900; background: rgba(251,174,6,.13); }
.quote { display: flex; flex-direction: column; justify-content: center; padding: clamp(26px, 4vw, 42px); color: #fff; background: radial-gradient(circle at 90% 0%, rgba(42,161,226,.2), transparent 38%), linear-gradient(135deg,#15394f,#06121c); }
.quote .by { margin: 0 0 8px; color: rgba(255,255,255,.66); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.quote .q { margin: 0; color: #fff; font-size: clamp(20px, 2.5vw, 28px); line-height: 1.45; }

.partner-card { position: relative; overflow: hidden; padding: clamp(26px, 4vw, 42px); border: 1px solid rgba(103,147,49,.27); border-radius: var(--radius); background: radial-gradient(circle at 100% 0%, rgba(116,161,59,.16), transparent 34%), linear-gradient(135deg,rgba(255,255,255,.97),rgba(244,248,245,.96)); box-shadow: var(--shadow); }
.partner-card::after { content: ""; position: absolute; right: -60px; bottom: -90px; width: 220px; height: 220px; border: 36px solid rgba(42,161,226,.07); border-radius: 50%; pointer-events: none; }
.partner-kicker { position: relative; z-index: 1; margin-bottom: 10px; color: var(--ener-green); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.partner-content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.partner-content h2 { margin: 0 0 8px; color: var(--ener-navy); font-size: clamp(26px,3vw,38px); line-height: 1.12; letter-spacing: -.035em; }
.partner-content p { max-width: 720px; margin: 0; color: var(--muted); }
.partner-content .btn { flex: 0 0 auto; }
.partner-services { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 0; padding: 0; list-style: none; }
.partner-services li { padding: 7px 12px; border: 1px solid rgba(103,147,49,.24); border-radius: 999px; color: var(--ener-navy); background: rgba(255,255,255,.8); font-size: 13px; font-weight: 800; }
.partner-card-compact { padding-block: clamp(24px,3vw,32px); }

.faq-section { padding-block: 28px; }
.section-heading { max-width: 760px; margin-bottom: 18px; }
.section-eyebrow { display: block; margin-bottom: 5px; color: var(--ener-green); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.section-heading h2, .faq-cta h2 { margin: 0; color: var(--ener-navy); font-size: clamp(27px,3.5vw,40px); line-height: 1.15; letter-spacing: -.035em; }
.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; border: 1px solid var(--border); border-radius: 17px; background: rgba(255,255,255,.92); box-shadow: 0 6px 18px rgba(16,43,60,.05); transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item[open] { border-color: rgba(42,161,226,.32); box-shadow: 0 12px 28px rgba(16,43,60,.08); }
.faq-featured { border-color: rgba(103,147,49,.35); background: radial-gradient(circle at 100% 0%,rgba(116,161,59,.12),transparent 34%),rgba(255,255,255,.95); }
.faq-featured[open] { border-color: rgba(103,147,49,.48); box-shadow: 0 14px 32px rgba(68,108,28,.11); }
.faq-featured summary::after { color: #416d1c; background: rgba(116,161,59,.14); }
.faq-item summary { position: relative; padding: 20px 60px 20px 22px; color: var(--ener-navy); font-size: clamp(17px,2vw,20px); font-weight: 850; line-height: 1.35; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; top: 50%; right: 20px; width: 30px; height: 30px; display: grid; place-items: center; transform: translateY(-50%); border-radius: 50%; color: var(--ener-navy); background: rgba(42,161,226,.1); font-size: 22px; font-weight: 500; transition: transform .2s ease, background .2s ease; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); background: rgba(116,161,59,.13); }
.faq-item summary:hover { background: rgba(246,250,247,.72); }
.faq-answer { padding: 0 22px 21px; border-top: 1px solid rgba(223,233,229,.7); }
.faq-answer p { max-width: 900px; margin: 17px 0 8px; color: var(--muted); }
.faq-answer a { display: inline-flex; gap: 5px; margin-top: 7px; color: #0875b0; font-weight: 800; }
.faq-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 14px; padding: clamp(26px,4vw,40px); border-radius: var(--radius); color: #fff; background: radial-gradient(circle at 90% 0%,rgba(116,161,59,.25),transparent 35%),linear-gradient(135deg,#15394f,#06121c); box-shadow: var(--shadow); }
.faq-cta h2 { color: #fff; }
.faq-cta p { max-width: 670px; margin: 8px 0 0; color: rgba(255,255,255,.75); }
.faq-cta .section-eyebrow { color: #a9d877; }
.faq-cta .btn { flex: 0 0 auto; background: #fff; color: var(--ener-navy); box-shadow: none; }

.process-section { padding-block: clamp(28px,5vw,58px); }
.process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; margin: 26px 0 0; padding: 0; list-style: none; counter-reset: step; }
.process-step { position: relative; min-height: 250px; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255,255,255,.92); box-shadow: var(--shadow-soft); }
.process-step::after { content: ""; position: absolute; top: 39px; right: -15px; z-index: 2; width: 15px; height: 2px; background: rgba(42,161,226,.32); }
.process-step:last-child::after { display: none; }
.process-number { display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 28px; border-radius: 15px; color: #0875b0; background: rgba(42,161,226,.11); font-size: 14px; font-weight: 900; }
.process-step h3 { margin: 0 0 9px; color: var(--ener-navy); font-size: 20px; line-height: 1.25; letter-spacing: -.02em; }
.process-step p { margin: 0; color: var(--muted); font-size: 15px; }
.process-action { display: flex; align-items: center; gap: 16px; margin-top: 22px; }
.form-field, form .grid2 > div { display: grid; gap: 6px; }
.form-field label, form .grid2 > div > label { color: var(--ener-navy); font-size: 14px; font-weight: 800; }
.form-notice { margin-top: 16px; padding: 14px 16px; border-radius: 13px; font-weight: 750; }
.form-notice-success { border: 1px solid rgba(103,147,49,.35); color: #315b13; background: rgba(116,161,59,.11); }
.form-notice-error { border: 1px solid rgba(190,57,57,.28); color: #8f2424; background: rgba(190,57,57,.08); }
.upload-field { display: grid; gap: 8px; margin-top: 18px; padding: 18px; border: 1px dashed rgba(42,161,226,.42); border-radius: 16px; background: rgba(42,161,226,.045); }
.upload-field label { color: var(--ener-navy); font-weight: 850; }
.upload-field label span { color: var(--muted); font-size: 13px; font-weight: 650; }
.upload-field input[type="file"] { min-height: 54px; padding: 9px !important; border-style: solid !important; background: #fff !important; cursor: pointer; }
.upload-field input[type="file"]::file-selector-button { min-height: 34px; margin-right: 12px; padding: 7px 12px; border: 0; border-radius: 9px; color: #fff; background: var(--ener-navy); font-weight: 800; cursor: pointer; }
.upload-field .micro { margin: 0; }
button[disabled] { opacity: .62; cursor: wait; }

.solar-section { padding-block: clamp(36px,6vw,72px); scroll-margin-top: 100px; }
.solar-layout { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(320px,.65fr); gap: 20px; align-items: stretch; }
.solar-form { padding: clamp(22px,3vw,34px); }
.solar-fields { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.field-with-unit { position: relative; }
.field-with-unit input { padding-right: 50px !important; }
.field-with-unit span { position: absolute; top: 50%; right: 15px; transform: translateY(-50%); color: var(--muted); font-weight: 800; pointer-events: none; }
.energy-users { min-width: 0; margin: 26px 0 0; padding: 0; border: 0; }
.energy-users legend { color: var(--ener-navy); font-size: 18px; font-weight: 900; }
.energy-users .micro { margin: 2px 0 14px; }
.energy-users-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; }
.energy-users-grid label { display: flex; align-items: center; gap: 9px; min-height: 48px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 12px; background: #f9fbfa; font-size: 13px; line-height: 1.3; cursor: pointer; transition: border-color .2s,background .2s; }
.energy-users-grid label:has(input:checked) { border-color: rgba(103,147,49,.48); background: rgba(103,147,49,.1); }
.solar-results { display: flex; flex-direction: column; padding: clamp(25px,3vw,36px); border-radius: var(--radius); color: #fff; background: radial-gradient(circle at 100% 0%,rgba(22,142,207,.32),transparent 38%),linear-gradient(145deg,#15394f,#06121c); box-shadow: var(--shadow); }
.solar-result-kicker { color: #a9d877; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.solar-power { display: flex; align-items: baseline; gap: 10px; margin: 10px 0 22px; }
.solar-power strong { color: #fff; font-size: clamp(52px,7vw,78px); line-height: 1; letter-spacing: -.06em; }
.solar-power span { max-width: 100px; color: rgba(255,255,255,.72); font-size: 14px; font-weight: 800; line-height: 1.25; }
.solar-metrics { display: grid; gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(255,255,255,.12); }
.solar-metrics div { display: flex; justify-content: space-between; gap: 14px; padding: 12px 14px; background: rgba(5,24,36,.74); }
.solar-metrics span { color: rgba(255,255,255,.68); font-size: 13px; }
.solar-metrics strong { color: #fff; font-size: 14px; text-align: right; }
.battery-result { margin-top: 16px; padding: 16px; border: 1px solid rgba(103,147,49,.42); border-radius: 15px; background: rgba(103,147,49,.12); }
.battery-result.is-optional { border-color: rgba(251,174,6,.4); background: rgba(251,174,6,.09); }
.battery-result.is-low { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.battery-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.12); }
.battery-heading span { color: rgba(255,255,255,.7); font-size: 13px; font-weight: 800; }
.battery-heading strong { color: #bce88d; font-size: 15px; }
.battery-result.is-optional .battery-heading strong { color: #ffe2a5; }
.battery-result.is-low .battery-heading strong { color: rgba(255,255,255,.78); }
.battery-metrics { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; padding-top: 12px; }
.battery-metrics div { display: grid; gap: 2px; }
.battery-metrics span { color: rgba(255,255,255,.62); font-size: 11px; }
.battery-metrics strong { color: #fff; font-size: 18px; }
.battery-result p { margin: 11px 0 0 !important; color: rgba(255,255,255,.68) !important; font-size: 12px; line-height: 1.45; }
.solar-alert { margin: 16px 0 0; padding: 12px 14px; border: 1px solid rgba(251,174,6,.38); border-radius: 12px; color: #ffe2a5; background: rgba(251,174,6,.1); font-size: 13px; font-weight: 750; }
.phase-alert { margin: 16px 0 0; padding: 14px 15px; border: 1px solid rgba(251,174,6,.55); border-left: 4px solid var(--ener-yellow); border-radius: 12px; color: #fff0c7; background: rgba(251,174,6,.13); font-size: 13px; font-weight: 800; line-height: 1.5; }
.solar-note { margin: 18px 0 !important; color: rgba(255,255,255,.62) !important; font-size: 12px; line-height: 1.5; }
.solar-results .btn { width: 100%; margin-top: auto; color: var(--ener-navy); background: #fff; box-shadow: none; }

.legal-layout { display: grid; grid-template-columns: 240px minmax(0,1fr); gap: 28px; align-items: start; }
.legal-nav { position: sticky; top: 110px; padding: 18px; }
.legal-nav strong { display: block; margin-bottom: 10px; color: var(--ener-navy); }
.legal-nav a { display: block; padding: 6px 0; color: var(--muted); font-size: 14px; }
.legal-content { padding: clamp(24px,4vw,42px); }
.legal-content h2 { scroll-margin-top: 110px; margin-top: 34px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content li { margin-bottom: 7px; color: var(--muted); }
.legal-note { padding: 16px; border-left: 4px solid var(--ener-yellow); border-radius: 8px; background: rgba(251,174,6,.09); color: var(--muted); }

form { position: relative; }
label { color: var(--ener-navy); font-weight: 750; }
input:not([type="checkbox"]), select, textarea { width: 100%; min-height: 48px; padding: 12px 14px !important; border: 1px solid #cedbd7 !important; border-radius: 13px !important; background: #fff !important; color: var(--ener-ink) !important; box-shadow: inset 0 1px 2px rgba(16,43,60,.035); transition: border-color .2s, box-shadow .2s; }
textarea { min-height: 150px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #84919a; }
input:focus, select:focus, textarea:focus { border-color: var(--ener-blue) !important; outline: 0; box-shadow: 0 0 0 4px rgba(42,161,226,.12); }
input[type="checkbox"] { width: 19px; height: 19px; flex: 0 0 auto; accent-color: var(--ener-green); }

.footer { padding: 48px 0 30px; color: #6a7a86; font-size: 13px; }
.foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.foot-links { display: flex; gap: 16px; }

@media (max-width: 1020px) {
  .nav-desktop { display: none; }
  .hamburger { display: inline-flex; }
  .hamburger-text { display: inline-block; }
  .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process-step::after { display: none; }
  .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .solar-layout { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .wrap { width: min(100% - 32px, var(--max)); }
  .header { min-height: 74px; }
  .brand img { width: 46px; height: 46px; border-radius: 13px; }
  .brand .name { font-size: 18px; }
  .grid2, .grid3 { grid-template-columns: 1fr; }
  .services-grid, .solar-fields { grid-template-columns: 1fr; }
  .energy-users-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process-grid, .legal-layout { grid-template-columns: 1fr; }
  .process-step { min-height: auto; }
  .process-number { margin-bottom: 18px; }
  .process-action { align-items: stretch; flex-direction: column; }
  .process-action .btn { width: 100%; }
  .legal-nav { position: static; }
  .page-hero { padding-top: 42px; }
  .h1 { font-size: clamp(36px, 11vw, 52px); }
  .section { padding: 12px 0; }
  .card.pad { padding: 22px; }
  .hero-cta .btn { flex: 1 1 200px; }
  .partner-content { align-items: stretch; flex-direction: column; gap: 20px; }
  .partner-content .btn { width: 100%; }
  .faq-cta { align-items: stretch; flex-direction: column; gap: 22px; }
  .faq-cta .btn { width: 100%; }
  .foot { flex-direction: column; }
}
@media (max-width: 430px) {
  .wrap { width: min(100% - 24px, var(--max)); }
  .brand .name { display: none; }
  .brand .brand-logo-full { width: 158px; height: auto; max-height: 66px; border-radius: 0; background: transparent; box-shadow: none; }
  .hamburger { padding-inline: 11px; }
  .menu-sheet { border-radius: 22px 22px 0 0; }
  .menu-subtitle { max-width: 190px; }
  .h1 { font-size: clamp(34px, 10.8vw, 46px); }
  .lead { font-size: 16px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn, .center .btn { width: 100%; }
  .quote .q { font-size: 20px; }
  .energy-users-grid { grid-template-columns: 1fr; }
  .battery-metrics { grid-template-columns: 1fr; }
  .solar-power { align-items: flex-end; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
