:root {
  color-scheme: dark;
  --ink: #07110e;
  --ink-soft: #10221b;
  --forest: #123e30;
  --forest-bright: #1e6b4e;
  --sun: #f6ad16;
  --sun-bright: #ffc83d;
  --paper: #f5f4ef;
  --paper-deep: #e7e4da;
  --white: #fffefa;
  --muted: #a7b0aa;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(7, 17, 14, 0.16);
  --max: 1240px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--sun);
  color: var(--ink);
  padding: 12px 16px;
  font-weight: 800;
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 14, 0.94);
  border-color: var(--line-dark);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 186px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 1.7vw, 28px);
}

.brand {
  display: inline-flex;
  width: 186px;
  height: 64px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 62px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: clamp(10px, 1.35vw, 22px);
  min-width: 0;
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
}

.site-nav a[data-nav-wrap="balanced"] {
  max-width: 136px;
  min-height: 44px;
  white-space: normal;
  text-wrap: balance;
  line-height: 1.2;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--sun);
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.solutions-menu {
  position: relative;
}

.solutions-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.solutions-menu summary::-webkit-details-marker {
  display: none;
}

.solutions-menu summary span {
  color: var(--sun-bright);
  transition: transform 180ms ease;
}

.solutions-menu[open] summary span {
  transform: rotate(180deg);
}

.solutions-menu summary:focus-visible {
  outline: 3px solid var(--sun-bright);
  outline-offset: 3px;
}

.solutions-panel a:focus-visible {
  outline: 3px solid var(--forest-bright);
  outline-offset: 3px;
}

.solutions-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(620px, calc(100vw - 48px));
  padding: 22px;
  border: 1px solid rgba(246, 173, 22, 0.32);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
  color: var(--ink);
  transform: translateX(-34%);
}

.solutions-panel > a,
.solutions-submenu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 12px;
  color: var(--ink);
}

.solutions-panel > a {
  border-top: 1px solid var(--line-light);
  font-weight: 800;
}

.solutions-panel > .solutions-panel__primary {
  border-top: 0;
  color: var(--forest-bright);
  font-size: 18px;
}

.solutions-submenu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 12px;
  margin: 0 0 10px 12px;
  padding: 2px 0 6px 16px;
  border-left: 3px solid var(--sun);
}

.solutions-submenu a {
  font-size: 13px;
  font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
  .solutions-menu:hover summary,
  .solutions-menu[open] summary {
    color: var(--white);
  }
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  background: rgba(7, 17, 14, 0.5);
  border-radius: 4px;
  padding: 11px 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 46%;
  animation: hero-settle 1800ms cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 12, 9, 0.94) 0%, rgba(4, 12, 9, 0.74) 36%, rgba(4, 12, 9, 0.18) 72%),
    linear-gradient(180deg, rgba(4, 12, 9, 0.3) 0%, rgba(4, 12, 9, 0.08) 58%, rgba(4, 12, 9, 0.74) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin: calc(var(--header-height) + 24px) auto 64px;
}

.hero-kicker,
.eyebrow {
  margin: 0;
  color: var(--sun-bright);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-kicker span {
  width: 42px;
  height: 2px;
  background: var(--sun);
}

.hero h1 {
  max-width: 820px;
  margin: 22px 0 0;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 750;
}

.hero h1 strong {
  color: var(--sun-bright);
  font-weight: 750;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--sun);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--sun-bright);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(7, 17, 14, 0.2);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
}

.hero-trust span {
  padding: 0 16px;
  border-right: 1px solid var(--line-dark);
}

.hero-trust span:first-child {
  padding-left: 0;
}

.hero-trust span:last-child {
  border-right: 0;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.scroll-cue i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-style: normal;
}

.results-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.6fr;
  gap: 64px;
  align-items: end;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 62px 0 72px;
}

.results-intro h2,
.section-heading h2,
.simulator-heading h2,
.journey-copy h2,
.about h2,
.closing h2 {
  margin: 14px 0 0;
  font-size: 42px;
  line-height: 1.08;
}

.result-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.result-numbers div {
  padding: 0 28px;
  border-left: 1px solid var(--line-dark);
}

.result-numbers dt {
  color: var(--sun-bright);
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
}

.result-numbers sup {
  font-size: 20px;
}

.result-numbers dd {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 112px max(24px, calc((100vw - var(--max)) / 2));
}

.simulator,
.projects,
.faq {
  background: var(--paper);
  color: var(--ink);
}

.simulator-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.25fr 0.8fr;
  gap: 36px;
  align-items: end;
}

.simulator-heading h2 {
  margin: 0;
}

.simulator-heading > p:last-child,
.section-heading > p:not(.eyebrow),
.section-heading-split > p {
  margin: 0;
  color: #526158;
  font-size: 16px;
  line-height: 1.7;
}

.eyebrow-dark {
  color: var(--forest-bright);
}

.eyebrow-gold {
  color: var(--sun-bright);
}

.simulator-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  margin-top: 54px;
  border: 1px solid var(--line-light);
  background: var(--white);
  box-shadow: 0 26px 70px rgba(7, 17, 14, 0.1);
}

.simulator-form {
  padding: 44px;
}

.simulator-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.simulator-form legend,
.field-label-row > label,
.input-field > span:first-child,
.select-field > span {
  display: block;
  margin-bottom: 13px;
  color: #26382f;
  font-size: 13px;
  font-weight: 800;
}

.segment-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.segment-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segment-control span {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid #c9cec9;
  border-radius: 4px;
  color: #435047;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.segment-control input:checked + span {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.segment-control input:focus-visible + span {
  outline: 3px solid rgba(246, 173, 22, 0.5);
  outline-offset: 2px;
}

.bill-control {
  margin-top: 34px;
}

.field-label-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.currency-input {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--ink);
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.currency-input input {
  width: 108px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 6px 4px 6px 8px;
  font-size: 24px;
  font-weight: 800;
  outline: none;
}

.bill-range {
  width: 100%;
  height: 4px;
  margin: 24px 0 0;
  accent-color: var(--sun);
  cursor: pointer;
}

.range-limits {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #7a837d;
  font-size: 11px;
}

.technical-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.input-field {
  display: block;
}

.unit-input {
  display: flex;
  align-items: center;
  min-height: 50px;
  border: 1px solid #c9cec9;
  border-radius: 4px;
  background: var(--white);
}

.unit-input input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 4px 0 14px;
  font-size: 16px;
  outline: none;
}

.unit-input input[readonly] {
  color: #526158;
  cursor: default;
}

.unit-input strong {
  padding: 0 14px 0 6px;
  color: #526158;
  font-size: 12px;
}

.unit-input:focus-within {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(11, 102, 86, 0.12);
}

.technical-fields .select-field {
  margin-top: 0;
}

.location-fields {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 14px;
  margin-top: 30px;
}

.location-fields .select-field {
  margin-top: 0;
}

.text-input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #c9cec9;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
  font-size: 16px;
  outline: none;
}

.text-input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(11, 102, 86, 0.12);
}

.select-field {
  display: block;
  margin-top: 30px;
}

.select-field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid #c9cec9;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
}

.form-note {
  margin: 24px 0 0;
  color: #6a746e;
  font-size: 12px;
}

.lead-intake {
  background: var(--paper);
  color: var(--ink);
}

.lead-intake--embedded {
  margin-top: 40px;
  padding: 32px;
  border: 1px solid var(--line-light);
}

.lead-intake--embedded .lead-intake__form {
  max-width: none;
}

.lead-intake__form.simulator-lead-form {
  max-width: none;
  margin-top: 28px;
  padding: 28px 0 0;
  border: 0;
  border-top: 1px solid var(--line-light);
  background: transparent;
}

.lead-intake h2,
.privacy-content h1 {
  margin: 12px 0 0;
  font-size: 42px;
  line-height: 1.08;
}

.lead-intake > .service-shell > p:not(.eyebrow),
.privacy-content p {
  max-width: 820px;
  color: #536059;
  line-height: 1.7;
}

.lead-intake__form {
  max-width: 920px;
  margin-top: 34px;
  padding: 32px;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.lead-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 18px;
}

.lead-fields .input-field > input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #c9cec9;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
  font-size: 16px;
  outline: none;
}

.lead-fields .input-field > input:focus,
.lead-fields .input-field > input:focus-visible,
.lead-fields .select-field select:focus-visible {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(11, 102, 86, 0.12);
}

.lead-intake__form [aria-invalid="true"],
.simulator-form [aria-invalid="true"] {
  outline: 2px solid #b42318;
  outline-offset: 2px;
}

.lead-fields--location {
  margin-top: 22px;
}

.lead-fields--location .select-field {
  margin-top: 0;
}

.lead-fields--location select:disabled {
  color: #7a837d;
  background: #f1f3f0;
  cursor: not-allowed;
}

.lead-area-note,
.lead-privacy,
.lead-status,
.lead-receipt,
.lead-fallback,
.lead-low-actions,
.lead-alternatives {
  color: #536059;
  font-size: 13px;
  line-height: 1.65;
}

.lead-area-note {
  margin: 22px 0 0;
}

.lead-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 24px 0 0;
  padding: 16px;
  border: 1px solid var(--line-light);
}

.lead-choice legend {
  padding: 0 6px;
  color: #26382f;
  font-size: 13px;
  font-weight: 800;
}

.lead-choice label {
  color: #435047;
  font-size: 14px;
  font-weight: 700;
}

.lead-intake__form > [data-lead-submit] {
  margin-top: 28px;
}

.lead-privacy {
  margin: 14px 0 0;
}

.lead-privacy a,
.lead-fallback a,
.privacy-content a {
  color: var(--forest-bright);
  font-weight: 800;
}

.lead-status,
.lead-receipt {
  min-height: 1.65em;
  margin: 16px 0 0;
}

.lead-fallback,
.lead-low-actions,
.lead-alternatives {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line-light);
  background: var(--paper-deep);
}

.lead-fallback p,
.lead-low-actions p,
.lead-alternatives p {
  margin: 0 0 12px;
}

.lead-fallback .button,
.lead-low-actions .button,
.lead-alternatives .button {
  margin: 4px 8px 0 0;
}

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

.privacy-content {
  background: var(--paper);
  color: var(--ink);
}

.privacy-content h2 {
  margin: 38px 0 0;
  font-size: 27px;
}

.privacy-content p {
  margin: 12px 0 0;
}

.privacy-content li {
  color: #536059;
  line-height: 1.7;
}

.estimate-charges-note {
  margin: 14px 0 0;
  color: #d7e0dc;
  font-size: 12px;
  line-height: 1.65;
}

.estimate {
  display: flex;
  flex-direction: column;
  background: var(--forest);
  color: var(--white);
  padding: 44px;
}

.estimate-label {
  margin: 0;
  color: #c6d5cd;
  font-size: 13px;
  font-weight: 750;
}

.estimate-main {
  margin-top: 8px;
  color: var(--sun-bright);
  font-size: 58px;
  line-height: 1;
}

.estimate-main.is-empty {
  font-size: 30px;
}

.estimate-track {
  height: 4px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.18);
}

.estimate-track span {
  display: block;
  width: 88%;
  height: 100%;
  background: var(--sun);
  transition: width 220ms ease;
}

.estimate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.estimate-grid div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

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

.estimate-grid span {
  color: #b8c8c0;
  font-size: 11px;
}

.estimate-grid strong {
  margin-top: 7px;
  font-size: 18px;
}

.estimate-grid div:last-child {
  grid-column: 1 / -1;
}

.estimate-basis {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #d5e2dc;
  font-size: 11px;
  line-height: 1.65;
}

.estimate-provenance {
  margin: -10px 0 22px;
  color: #91a79d;
  font-size: 10px;
  line-height: 1.5;
}

.estimate-disclaimer {
  margin: 18px 0 24px;
  color: #b8c8c0;
  font-size: 11px;
  line-height: 1.6;
}

.button-dark {
  width: 100%;
  margin-top: auto;
  background: var(--sun);
  color: var(--ink);
}

.button-dark:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.solutions {
  background: var(--ink);
}

.section-heading {
  max-width: 780px;
}

.section-heading > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
}

.solution-list {
  margin-top: 64px;
  border-top: 1px solid var(--line-dark);
}

.solution-item {
  display: grid;
  grid-template-columns: 70px 1fr 1.15fr auto;
  gap: 34px;
  align-items: center;
  min-height: 152px;
  border-bottom: 1px solid var(--line-dark);
}

.solution-index,
.solution-tag {
  color: var(--sun);
  font-size: 12px;
  font-weight: 800;
}

.solution-tag {
  margin: 0 0 5px;
  text-transform: uppercase;
}

.solution-item h3 {
  margin: 0;
  font-size: 25px;
}

.solution-item > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.solution-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
  min-width: 150px;
}

.solution-actions > a {
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid rgba(246, 173, 22, 0.46);
  border-radius: 4px;
  color: var(--sun-bright);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.solution-actions .solution-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.solution-actions .solution-selector a {
  min-height: 44px;
  border-radius: 4px;
  text-align: left;
}

.solution-item--panel :focus-visible {
  outline: 3px solid var(--sun-bright);
  outline-offset: 3px;
}

.journey {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  background: var(--forest);
}

.journey-copy {
  align-self: center;
}

.journey-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: #c5d3cb;
  font-size: 17px;
  line-height: 1.7;
}

.button-light {
  margin-top: 24px;
  background: var(--white);
  color: var(--ink);
}

.journey-steps {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-steps::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.journey-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  min-height: 112px;
}

.journey-steps li > span {
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: var(--forest);
  color: var(--sun-bright);
  font-size: 11px;
  font-weight: 800;
}

.journey-steps h3 {
  margin: 4px 0 5px;
  font-size: 21px;
}

.journey-steps p {
  margin: 0;
  color: #b9c8c0;
  font-size: 14px;
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  align-items: end;
}

.section-heading-split > p {
  color: #526158;
}

.project-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-auto-rows: 330px;
  gap: 14px;
  margin-top: 58px;
}

.project {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 6px;
  background: #d5d2c9;
}

.project-large {
  grid-row: span 2;
}

.project-wide {
  grid-column: 1 / -1;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project:hover img {
  transform: scale(1.035);
}

.project::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(4, 12, 9, 0.84));
}

.project figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 24px 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
}

.project figcaption span {
  font-size: 13px;
  font-weight: 750;
}

.project figcaption strong {
  color: var(--sun-bright);
  font-size: 22px;
}

.testimonials {
  background: var(--white);
  color: var(--ink);
}

.testimonial-intro h2 {
  margin: 14px 0 0;
  font-size: 42px;
  line-height: 1.08;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line-light);
  background: var(--paper);
  overflow-wrap: anywhere;
}

.testimonial-card > p {
  margin: 0;
  color: #25352d;
  font-size: 16px;
  line-height: 1.65;
}

.testimonial-stars {
  margin-bottom: 18px;
  color: #8a5b00;
  letter-spacing: 0.08em;
}

.testimonial-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  font-size: 12px;
}

.testimonial-card footer span {
  color: #6d7771;
}

.testimonial-source {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
  color: var(--forest-bright);
  font-size: 13px;
  font-weight: 800;
}

.testimonial-source:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 110px;
  background: var(--ink-soft);
}

.about-statement h2 {
  font-size: 48px;
}

.about-copy > p {
  margin: 0;
  color: #c2cec7;
  font-size: 17px;
  line-height: 1.8;
}

.about-copy dl {
  margin: 40px 0 0;
}

.about-copy dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
}

.about-copy dt {
  color: var(--sun-bright);
  font-size: 12px;
  font-weight: 850;
}

.about-copy dd {
  margin: 0;
  color: #c2cec7;
  font-size: 13px;
  line-height: 1.6;
}

.faq-list {
  margin-top: 50px;
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  padding: 26px 52px 26px 0;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 820px;
  margin: -4px 0 26px;
  color: #536059;
  line-height: 1.75;
}

.closing {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 17, 14, 0.96), rgba(7, 17, 14, 0.62)),
    url("./assets/progressol-sunrise-hero.png?v=cb9a24bbe581") center 68% / cover no-repeat;
}

.closing-inner {
  width: min(calc(100% - 48px), var(--max));
  text-align: center;
}

.closing h2 {
  font-size: 62px;
}

.closing p:not(.eyebrow) {
  margin: 20px auto 0;
  color: #c5d0ca;
  font-size: 17px;
}

.closing-actions {
  justify-content: center;
}

.site-footer {
  padding: 72px max(24px, calc((100vw - var(--max)) / 2)) 24px;
  background: #040a08;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.6fr;
  gap: 72px;
}

.footer-brand img {
  width: 190px;
  height: 74px;
  object-fit: contain;
}

.footer-brand p,
.footer-main address {
  color: #8f9e96;
  font-size: 13px;
  line-height: 1.7;
  font-style: normal;
}

.footer-main h2 {
  margin: 0 0 18px;
  color: var(--sun-bright);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-main > div:not(.footer-brand) a,
.footer-main address {
  display: block;
  margin: 9px 0;
  color: #c5d0ca;
  font-size: 13px;
}

.footer-main a:hover,
.footer-main a:focus-visible {
  color: var(--sun-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #77847d;
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: #1f9c68;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(4, 12, 9, 0.3);
  font-size: 12px;
  font-weight: 900;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-settle {
  from { opacity: 0.55; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1020px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-inner {
    grid-template-columns: 190px 1fr auto;
    gap: 18px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .results-band,
  .simulator-heading,
  .journey,
  .testimonials,
  .about {
    grid-template-columns: 1fr;
  }

  .results-band,
  .journey,
  .testimonials,
  .about {
    gap: 54px;
  }

  .simulator-heading {
    gap: 20px;
  }

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

  .solution-item {
    grid-template-columns: 54px 0.9fr 1.1fr auto;
    gap: 20px;
  }

  .journey-steps {
    max-width: 720px;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 72px;
  }

  .site-header.is-scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  html:not(.js) .site-header {
    position: static;
    height: auto;
    background: var(--ink);
  }

  .header-inner {
    width: min(calc(100% - 32px), var(--max));
    grid-template-columns: 1fr auto;
  }

  html:not(.js) .header-inner {
    height: auto;
    min-height: var(--header-height);
    padding-bottom: 16px;
  }

  .brand {
    width: 158px;
    height: 58px;
  }

  .brand img {
    height: 58px;
  }

  .js .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
    position: static;
    display: grid;
    gap: 0;
    align-content: start;
    width: 100%;
    background: rgba(7, 17, 14, 0.98);
    border-top: 1px solid var(--line-dark);
    padding: 10px 24px 24px;
    transition: transform 220ms ease, opacity 220ms ease;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .js .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
  }

  .js .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-dark);
    white-space: normal;
  }

  .site-nav a[data-nav-wrap="balanced"] {
    max-width: none;
    white-space: normal;
    text-wrap: wrap;
    line-height: inherit;
  }

  .solutions-menu {
    width: 100%;
  }

  .solutions-menu summary {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-dark);
  }

  .solutions-panel {
    position: static;
    width: 100%;
    padding: 6px 0 12px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--white);
    transform: none;
  }

  .solutions-panel > a,
  .solutions-submenu a {
    min-height: 44px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.9);
    border-color: var(--line-dark);
  }

  .solutions-panel > .solutions-panel__primary {
    color: var(--sun-bright);
  }

  .solutions-panel a:focus-visible {
    outline-color: var(--sun-bright);
  }

  .solutions-submenu {
    grid-template-columns: 1fr;
    margin-left: 10px;
    border-left-color: var(--sun);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: 91svh;
    align-items: end;
  }

  .hero-media {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(4, 12, 9, 0.22) 0%, rgba(4, 12, 9, 0.66) 38%, rgba(4, 12, 9, 0.96) 100%);
  }

  .hero-inner {
    width: calc(100% - 32px);
    margin: calc(var(--header-height) + 60px) auto 68px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: 48px;
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 560px;
    font-size: 16px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 82px 20px;
  }

  .results-band {
    width: calc(100% - 40px);
    padding: 54px 0;
  }

  .result-numbers {
    border-top: 1px solid var(--line-dark);
  }

  .result-numbers div {
    padding: 24px 14px 0;
  }

  .result-numbers div:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .result-numbers dt {
    font-size: 38px;
  }

  .results-intro h2,
  .section-heading h2,
  .simulator-heading h2,
  .journey-copy h2,
  .about h2,
  .testimonial-intro h2 {
    font-size: 36px;
  }

  .solution-item {
    grid-template-columns: 44px 1fr auto;
    min-height: 0;
    padding: 28px 0;
  }

  .solution-item > p {
    grid-column: 2 / -1;
    margin: 0;
  }

  .solution-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .project-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 300px;
  }

  .project-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .project-wide {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-kicker,
  .eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 41px;
  }

  .hero-actions,
  .closing-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 7px;
  }

  .hero-trust span {
    padding: 0;
    border-right: 0;
  }

  .result-numbers {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .result-numbers div,
  .result-numbers div:first-child {
    padding: 0 0 20px;
    border-left: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .simulator-form,
  .estimate {
    padding: 28px 22px;
  }

  .segment-control {
    grid-template-columns: 1fr;
  }

  .field-label-row {
    align-items: start;
    flex-direction: column;
  }

  .currency-input {
    width: 100%;
  }

  .currency-input input {
    flex: 1;
  }

  .estimate-main {
    font-size: 46px;
  }

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

  .technical-fields {
    grid-template-columns: 1fr;
  }

  .location-fields {
    grid-template-columns: 1fr;
  }

  .lead-intake__form.simulator-lead-form {
    margin-top: 22px;
    padding-top: 22px;
  }

  .solution-item {
    grid-template-columns: 34px 1fr;
  }

  .solution-actions {
    grid-column: 2;
    grid-row: auto;
    min-width: 0;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .project-large,
  .project-wide {
    grid-column: auto;
  }

  .about-statement h2 {
    font-size: 38px;
  }

  .about-copy dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .closing {
    min-height: 520px;
  }

  .closing h2 {
    font-size: 44px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  html:not(.js) .whatsapp-float {
    position: static;
    margin: 24px 14px 14px auto;
  }

  .js body.menu-open .whatsapp-float {
    visibility: hidden;
    pointer-events: none;
  }
}

@media (min-width: 361px) and (max-width: 560px) {
  .js .faq-list details,
  .js .closing-actions {
    margin-right: 56px;
  }

  .js .journey-copy > .button {
    width: calc(100% - 56px);
  }
}

@media (max-width: 360px) {
  .whatsapp-float {
    display: none;
  }
}

/* Catálogo canônico e páginas comerciais */
.solution-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 48px 0 26px;
}

.solution-selector a {
  padding: 11px 15px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #d8e2dc;
  font-size: 12px;
  font-weight: 800;
}

.solution-selector a:hover,
.solution-selector a:focus-visible,
.solution-selector a[aria-current="true"] {
  border-color: var(--sun);
  color: var(--sun-bright);
}

.solution-group {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.solution-group + .solution-group {
  margin-top: 70px;
}

.solution-group__heading {
  max-width: 760px;
  padding: 0 0 22px;
}

.solution-group__heading h3 {
  margin: 0;
  font-size: 34px;
}

.solution-group__heading > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
}

.solution-item > p small {
  display: block;
  margin-top: 8px;
  color: #84928a;
  font-size: 11px;
  line-height: 1.55;
}

.solution-item--primary {
  min-height: 228px;
  margin-top: 12px;
  padding: 28px 30px;
  border: 1px solid rgba(246, 173, 22, 0.7);
  border-left: 6px solid var(--sun);
  background: linear-gradient(110deg, rgba(30, 107, 78, 0.36), rgba(7, 17, 14, 0.2));
  grid-template-columns: 70px 1.15fr 1fr auto;
}

.solution-item--panel {
  min-height: 210px;
  margin-top: 16px;
  padding: 28px 30px;
  border: 1px solid rgba(246, 173, 22, 0.34);
  border-left: 5px solid var(--forest-bright);
  border-radius: 10px;
  background: linear-gradient(115deg, rgba(30, 107, 78, 0.22), rgba(7, 17, 14, 0.34));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.solution-item--secondary {
  border-left-color: var(--sun);
  background: linear-gradient(115deg, rgba(246, 173, 22, 0.12), rgba(7, 17, 14, 0.34));
}

.solution-item--supporting {
  border-left-color: #6fb596;
  background: linear-gradient(115deg, rgba(30, 107, 78, 0.18), rgba(16, 34, 27, 0.5));
}

.solution-item--panel.solution-item--primary {
  min-height: 228px;
  border-color: rgba(246, 173, 22, 0.7);
  border-left: 6px solid var(--sun);
  background: linear-gradient(110deg, rgba(30, 107, 78, 0.36), rgba(7, 17, 14, 0.2));
}

.solution-item--primary h3 {
  font-size: 34px;
}

.solution-item--primary > a {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--sun);
  color: var(--ink);
}

.service-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.service-page,
.portfolio-page {
  background: var(--paper);
  color: var(--ink);
}

.service-page main,
.portfolio-page main {
  overflow: hidden;
}

.service-hero,
.portfolio-hero {
  padding: calc(var(--header-height) + 100px) max(24px, calc((100vw - var(--max)) / 2)) 100px;
  background:
    linear-gradient(90deg, rgba(7, 17, 14, 0.98), rgba(7, 17, 14, 0.72)),
    url("./assets/progressol-sunrise-hero.png?v=cb9a24bbe581") center 55% / cover no-repeat;
  color: var(--white);
}

.service-hero__inner,
.portfolio-hero .service-shell {
  max-width: var(--max);
}

.service-hero h1,
.portfolio-hero h1 {
  max-width: 900px;
  margin: 20px 0 0;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
}

.service-lead,
.portfolio-hero .service-shell > p:last-child {
  max-width: 720px;
  margin: 26px 0 0;
  color: #d1ddd6;
  font-size: 19px;
  line-height: 1.7;
}

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

.service-fit,
.service-process-section,
.service-faq,
.portfolio-catalog {
  background: var(--paper);
  color: var(--ink);
}

.service-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.service-grid h2,
.service-proof h2,
.service-process-section h2,
.service-faq h2,
.service-closing h2 {
  margin: 12px 0 0;
  font-size: 42px;
  line-height: 1.08;
}

.service-grid > div > p:last-child {
  color: #536059;
  line-height: 1.75;
}

.service-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-checklist li {
  position: relative;
  padding: 20px 0 20px 38px;
  border-top: 1px solid var(--line-light);
  color: #26382f;
  font-weight: 700;
}

.service-checklist li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  color: var(--forest-bright);
  font-weight: 900;
}

.service-not-fit {
  grid-column: 1 / -1;
  padding: 28px 32px;
  border-left: 5px solid var(--sun);
  background: var(--white);
}

.service-not-fit h2,
.service-legal h2 {
  margin: 0;
  font-size: 22px;
}

.service-not-fit p,
.service-legal p {
  margin: 10px 0 0;
  color: #536059;
  line-height: 1.75;
}

.service-proof {
  background: var(--ink-soft);
  color: var(--white);
}

.service-proof__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.service-proof__card {
  padding: 32px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
}

.service-proof__card > span {
  color: var(--sun);
  font-size: 12px;
  font-weight: 900;
}

.service-proof__card h3 {
  margin: 30px 0 0;
  font-size: 25px;
}

.service-proof__card p {
  color: #bdcbc3;
  line-height: 1.7;
}

.service-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.service-process__step {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.service-process__step > span {
  color: var(--forest-bright);
  font-size: 12px;
  font-weight: 900;
}

.service-process__step h3 {
  margin: 26px 0 0;
  font-size: 20px;
}

.service-process__step p {
  margin: 10px 0 0;
  color: #536059;
  font-size: 14px;
  line-height: 1.65;
}

.service-closing {
  background: var(--forest);
  color: var(--white);
}

.service-closing__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.service-closing__inner > div > p:last-child {
  max-width: 700px;
  color: #c5d3cb;
}

.service-closing__inner .service-actions {
  margin-top: 0;
}

.service-legal {
  padding: 46px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line-light);
  background: var(--paper-deep);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.portfolio-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.portfolio-card--primary {
  grid-column: 1 / -1;
  min-height: 390px;
  padding: 54px;
  border: 2px solid var(--sun);
  background: linear-gradient(115deg, var(--forest), #10291f);
  color: var(--white);
}

.portfolio-card__index {
  color: var(--sun);
  font-size: 12px;
  font-weight: 900;
}

.portfolio-card h3 {
  margin: 24px 0 0;
  font-size: 28px;
}

.portfolio-card--primary h3 {
  max-width: 700px;
  font-size: 48px;
}

.portfolio-card > p:not(.solution-tag) {
  color: #526158;
  line-height: 1.7;
}

.portfolio-card--primary > p:not(.solution-tag),
.portfolio-card--primary small {
  max-width: 760px;
  color: #c5d3cb;
}

.portfolio-card small {
  color: #6b756f;
  line-height: 1.6;
}

.portfolio-card a {
  margin-top: auto;
  padding-top: 28px;
  color: var(--forest-bright);
  font-weight: 850;
}

.portfolio-card--primary a {
  color: var(--sun-bright);
}

.service-context {
  background: var(--paper-deep);
  color: var(--ink);
}

.service-context__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 28px;
  align-items: stretch;
}

.service-context h2 {
  margin: 12px 0 0;
  font-size: 42px;
  line-height: 1.08;
}

.service-context__grid > div > p:last-child,
.service-context__partner > p:last-of-type {
  color: #536059;
  line-height: 1.7;
}

.service-context__partner {
  padding: 30px;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.service-context__partner h3 {
  margin: 12px 0 0;
  font-size: 28px;
}

.service-context__partner a {
  display: inline-block;
  margin-top: 18px;
  color: var(--forest-bright);
  font-weight: 850;
}

.owned-solar-segments {
  background: var(--white);
  color: var(--ink);
}

.owned-solar-segments h2,
.owned-solar-projects h2,
.owned-solar-aftercare h2 {
  margin: 12px 0 0;
  font-size: 42px;
  line-height: 1.08;
}

.owned-solar-segments__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.owned-solar-segments__grid article {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line-light);
  background: var(--paper);
}

.owned-solar-segments__grid h3 {
  margin: 0;
  font-size: 25px;
}

.owned-solar-segments__grid p {
  color: #536059;
  line-height: 1.7;
}

.owned-solar-projects {
  background: var(--paper);
  color: var(--ink);
}

.owned-solar-aftercare {
  background: var(--ink-soft);
  color: var(--white);
}

.owned-solar-aftercare p {
  max-width: 720px;
  color: #c5d3cb;
  line-height: 1.75;
}

.service-page :where(h1, h2, h3, p, li, a),
.portfolio-page :where(h1, h2, h3, p, li, a) {
  overflow-wrap: anywhere;
}

@media (max-width: 1020px) {
  .service-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 800px) {
  .solution-item--panel {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 24px 20px;
  }

  .solution-item--panel > p,
  .solution-item--panel .solution-actions {
    grid-column: 2;
  }

  .solution-actions {
    flex-direction: row;
    flex-wrap: wrap;
    grid-row: auto;
  }

  .solution-actions > a,
  .solution-actions .solution-selector {
    flex: 1 1 220px;
  }

  .solution-item--primary {
    grid-template-columns: 44px 1fr auto;
    padding: 24px 20px;
  }

  .solution-item--primary > p {
    grid-column: 2 / -1;
  }

  .service-grid,
  .service-proof__grid,
  .owned-solar-segments__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-hero,
  .portfolio-hero {
    padding: calc(var(--header-height) + 70px) 20px 72px;
  }

  .portfolio-card--primary {
    min-height: 330px;
    padding: 38px;
  }
}

@media (max-width: 560px) {
  .solution-selector {
    display: grid;
  }

  .solution-group__heading h3,
  .solution-item--primary h3 {
    font-size: 27px;
  }

  .solution-item--primary {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .solution-item--panel {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 22px 18px;
  }

  .solution-actions,
  .solution-actions > a,
  .solution-actions .solution-selector {
    width: 100%;
  }

  .solution-item--primary > a {
    grid-column: 2;
  }

  .service-hero h1,
  .portfolio-hero h1 {
    font-size: 42px;
  }

  .service-lead,
  .portfolio-hero .service-shell > p:last-child {
    font-size: 16px;
  }

  .service-grid h2,
  .service-proof h2,
  .service-process-section h2,
  .service-faq h2,
  .service-closing h2,
  .service-context h2,
  .owned-solar-segments h2,
  .owned-solar-projects h2,
  .owned-solar-aftercare h2 {
    font-size: 34px;
  }

  .service-process,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .service-not-fit,
  .service-proof__card,
  .service-process__step,
  .portfolio-card,
  .portfolio-card--primary {
    padding: 24px 20px;
  }

  .portfolio-card--primary {
    grid-column: auto;
    min-height: 360px;
  }

  .portfolio-card--primary h3 {
    font-size: 35px;
  }
}

.home-financing,
.service-financing-link,
.financing-steps,
.financing-cta,
.financing-area {
  background: var(--ink-soft);
  color: var(--white);
}

.home-financing .service-closing__inner,
.service-financing-link .service-closing__inner {
  align-items: center;
}

.home-financing__heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.home-financing__heading h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.acquisition-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: acquisition-step;
}

.acquisition-journey li {
  position: relative;
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
}

.acquisition-journey li > span {
  color: var(--sun-bright);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.acquisition-journey h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.acquisition-journey p {
  margin: 0;
  color: #c5d3cb;
}

.home-financing__cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 34px;
  padding: 30px;
  background: var(--paper);
  color: var(--ink);
}

.home-financing__cta h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.home-financing__offer {
  min-width: 0;
}

.home-financing__banks {
  display: grid;
  grid-template-columns: repeat(6, minmax(84px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.home-financing__bank {
  display: grid;
  min-width: 0;
  min-height: 70px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.home-financing__bank:hover,
.home-financing__bank:focus-visible {
  border-color: var(--forest-bright);
}

.home-financing__bank:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.home-financing__bank-logo {
  display: block;
  width: 100%;
  max-width: 112px;
  height: 44px;
  object-fit: contain;
}

.home-financing__cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #415049;
}

@media (max-width: 900px) {
  .acquisition-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-financing__cta {
    grid-template-columns: 1fr;
  }

  .home-financing__banks {
    grid-template-columns: repeat(3, minmax(84px, 1fr));
  }
}

@media (max-width: 560px) {
  .acquisition-journey,
  .home-financing__cta {
    grid-template-columns: 1fr;
  }

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

  .acquisition-journey {
    gap: 0;
    padding-left: 12px;
    border-left: 2px solid var(--sun);
  }

  .acquisition-journey li {
    padding: 22px 18px;
    border-width: 0 0 1px;
  }

  .home-financing__cta {
    padding: 24px 20px;
  }
}

.home-financing__heading p:not(.eyebrow),
.service-financing-link p:not(.eyebrow),
.financing-steps p,
.financing-cta p,
.financing-area p {
  color: #c5d3cb;
}

.financing-page :where(h1, h2, h3, p, li, a, span) {
  overflow-wrap: anywhere;
}

.financing-hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 86px) 24px 96px;
  background: radial-gradient(circle at 78% 22%, rgba(246, 173, 22, 0.18), transparent 28%), linear-gradient(140deg, var(--ink), var(--forest));
}

.financing-hero__inner {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.financing-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.financing-card-grid,
.financing-cta-grid,
.financing-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.financing-card,
.financing-reference {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line-light);
  background: var(--white);
  color: var(--ink);
}

.financing-card h3,
.financing-reference h3 {
  margin: 0;
  font-size: 28px;
}

.financing-card p,
.financing-reference p,
.financing-reference span,
.financing-reference small {
  margin: 0;
  color: #415049;
}

.financing-reference p {
  color: var(--forest-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.financing-reference a {
  margin-top: 12px;
  color: var(--forest-bright);
  font-weight: 800;
}

.financing-reference__brand {
  display: grid;
  min-height: 86px;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line-light);
  background: var(--paper);
}

.financing-reference__logo {
  display: block;
  width: 100%;
  max-width: 170px;
  height: 58px;
  object-fit: contain;
}

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

.financing-step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}

.financing-step-list li {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line-dark);
}

.financing-step-list li > span {
  color: var(--sun-bright);
  font-weight: 900;
}

.financing-step-list h3 {
  margin: 20px 0 10px;
}

.financing-step-list p {
  margin: 0;
}

.financing-deliverables,
.financing-profiles,
.financing-references,
.financing-page .service-faq {
  background: var(--paper);
  color: var(--ink);
}

.financing-deliverables__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.financing-deliverables ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.financing-deliverables li {
  padding: 22px 24px;
  border-left: 4px solid var(--sun);
  background: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.financing-disclaimer {
  padding: 34px 24px;
  background: var(--sun);
  color: var(--ink);
}

.financing-disclaimer .service-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.financing-disclaimer strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.financing-disclaimer p {
  margin: 0;
  font-weight: 700;
}

.financing-cta-grid {
  align-items: stretch;
}

.financing-cta-option {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  min-width: 0;
}

.financing-cta-option h3 {
  margin: 0;
  color: var(--sun-bright);
}

.financing-cta-grid .button {
  min-width: 0;
  min-height: 88px;
  justify-content: center;
  text-align: center;
}

@media (max-width: 900px) {
  .financing-card-grid,
  .financing-cta-grid,
  .financing-step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .financing-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 62px) 20px 70px;
  }

  .financing-hero h1 {
    font-size: 44px;
  }

  .financing-card-grid,
  .financing-cta-grid,
  .financing-reference-grid,
  .financing-step-list,
  .financing-deliverables__grid,
  .financing-disclaimer .service-shell {
    grid-template-columns: 1fr;
  }

  .financing-card,
  .financing-reference,
  .financing-step-list li {
    padding: 22px 20px;
  }

  .financing-page .header-cta {
    display: none;
  }
}

@media (max-width: 360px) {
  .financing-hero {
    padding: calc(var(--header-height) + 34px) 20px 44px;
  }

  .financing-hero__inner {
    gap: 16px;
  }

  .financing-hero h1 {
    font-size: 36px;
    line-height: 0.96;
  }

  .financing-hero .service-lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .financing-hero .button {
    width: 100%;
    padding-inline: 14px;
    font-size: 13px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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