:root {
  --ink: #17201d;
  --muted: #60706a;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #dfe5dc;
  --orange: #f36b2a;
  --orange-dark: #c54d1b;
  --green: #285948;
  --mint: #dcebe0;
  --blue: #d7e6ea;
  --shadow: 0 24px 70px rgba(23, 32, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

main {
  display: flex;
  flex-direction: column;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(223, 229, 220, 0.88);
  backdrop-filter: blur(18px);
}

.header-menu {
  display: contents;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--orange);
  border: 2px solid currentColor;
  border-radius: 50%;
}

.brand-mark svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 14px;
  font-weight: 650;
  color: #30413b;
}

.site-nav a,
.footer-links a,
.phone-link {
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-links a:hover,
.phone-link:hover {
  color: var(--orange-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-link {
  font-size: 14px;
  font-weight: 720;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #fff;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(243, 107, 42, 0.25);
  font-size: 14px;
  font-weight: 780;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow: 0 18px 36px rgba(197, 77, 27, 0.28);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.button-dark {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 14px 30px rgba(23, 32, 29, 0.18);
}

.button-dark:hover {
  background: #2b3733;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transform: translate(-50%, calc(-50% - 4px));
  transition: transform 180ms ease, background 180ms ease;
}

.menu-toggle span:last-child {
  transform: translate(-50%, calc(-50% + 4px));
}

.menu-toggle:hover {
  border-color: rgba(243, 107, 42, 0.45);
  box-shadow: 0 10px 24px rgba(23, 32, 29, 0.08);
}

.site-header.nav-open .menu-toggle {
  background: #fff7f1;
  border-color: rgba(243, 107, 42, 0.58);
}

.site-header.nav-open .menu-toggle span:first-child {
  background: var(--orange-dark);
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:last-child {
  background: var(--orange-dark);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
  position: relative;
  order: 1;
  display: grid;
  min-height: min(700px, calc(82svh - 78px));
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: center;
  gap: 32px;
  overflow: hidden;
  padding: clamp(48px, 6vw, 76px) clamp(20px, 5vw, 72px) clamp(28px, 4vw, 42px);
  color: #fff;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(14, 20, 19, 0.82), rgba(14, 20, 19, 0.42) 52%, rgba(14, 20, 19, 0.12)),
    linear-gradient(0deg, rgba(14, 20, 19, 0.74), transparent 54%);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta .eyebrow {
  color: #ffb089;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6.2vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0;
}

.lede {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.1vw, 24px);
}

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

.hero-panel {
  align-self: end;
  padding: 24px;
  background: rgba(251, 250, 246, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.panel-label {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-stat {
  display: grid;
  gap: 2px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-stat strong {
  font-size: 54px;
  line-height: 0.95;
}

.panel-stat span {
  color: var(--muted);
  font-weight: 650;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.panel-grid a {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 10px;
  background: var(--mint);
  border: 1px solid rgba(40, 89, 72, 0.08);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 760;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.panel-grid a:hover,
.panel-grid a:focus-visible {
  color: var(--green);
  background: #eef7f1;
  border-color: rgba(40, 89, 72, 0.26);
  transform: translateY(-1px);
}

.panel-grid a:focus-visible {
  outline: 2px solid rgba(243, 107, 42, 0.64);
  outline-offset: 3px;
}

.trust-band {
  order: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  padding: 28px clamp(18px, 3vw, 36px);
  background: var(--surface);
}

.trust-band div:first-child {
  min-width: 0;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.trust-band span,
.section p,
.solution-grid p,
.timeline p,
.proof p,
.faq p {
  color: var(--muted);
}

.trust-band a {
  color: var(--green);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: rgba(40, 89, 72, 0.34);
  text-underline-offset: 3px;
}

.section {
  order: 8;
  padding: clamp(74px, 9vw, 130px) clamp(20px, 5vw, 72px);
}

.split {
  order: 4;
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 1.16fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 118px;
}

.section-copy p {
  max-width: 560px;
  font-size: 18px;
}

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

.solution-grid article,
.timeline article,
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.solution-grid article {
  min-height: 250px;
  padding: 26px;
}

.solution-grid span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 860;
}

.image-strip {
  order: 5;
  display: grid;
  grid-template-columns: 1.04fr 0.92fr 1.04fr;
  gap: 14px;
  align-items: stretch;
  padding: 0 clamp(20px, 5vw, 72px) clamp(24px, 4vw, 44px);
}

.image-feature {
  position: relative;
  min-height: clamp(280px, 34vw, 460px);
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: 8px;
  background: #dfe5dc;
}

.image-feature::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, transparent 42%, rgba(14, 20, 19, 0.78)),
    linear-gradient(90deg, rgba(14, 20, 19, 0.14), transparent 54%);
}

.image-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.image-feature:hover img {
  transform: scale(1.025);
}

.image-feature-large {
  min-height: clamp(300px, 36vw, 480px);
}

.image-feature-tall {
  min-height: clamp(340px, 40vw, 520px);
  transform: translateY(28px);
}

.image-feature figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 22px;
  color: #fff;
}

.image-feature strong,
.image-feature span {
  display: block;
}

.image-feature strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.05;
}

.image-feature span {
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 36px;
}

.process {
  order: 6;
  margin-top: 32px;
  background: #edf4ef;
}

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

.timeline article {
  min-height: 280px;
  padding: 24px;
}

.timeline span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 48px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 850;
}

.proof {
  order: 7;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 7vw, 92px);
  padding: clamp(74px, 9vw, 130px) clamp(20px, 5vw, 72px);
  color: #fff;
  background: var(--green);
}

.partners {
  order: 3;
  display: grid;
  grid-template-columns: minmax(230px, 0.62fr) minmax(420px, 1.38fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  padding: clamp(24px, 3.8vw, 42px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.partners-copy {
  max-width: 560px;
}

.partners h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 2.8vw, 36px);
}

.partner-marquee {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: partner-scroll 46s linear infinite;
}

.partner-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
}

.logo-card {
  display: inline-grid;
  width: clamp(154px, 16vw, 218px);
  height: 104px;
  flex: 0 0 auto;
  place-items: center;
  padding: 16px;
  background: rgba(247, 248, 244, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #35443f;
  opacity: 0.88;
  text-align: center;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease, opacity 160ms ease;
}

.logo-card:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(243, 107, 42, 0.42);
  opacity: 1;
  transform: translateY(-2px);
}

.logo-card img {
  max-width: 98%;
  max-height: 68px;
  object-fit: contain;
}

.logo-palmetto img {
  max-height: 76px;
}

.logo-greentech,
.logo-concert {
  padding-inline: 12px;
}

.logo-greentech img,
.logo-concert img {
  max-width: 100%;
  max-height: 78px;
}

.logo-climate img,
.logo-enfin img {
  max-height: 74px;
}

.logo-tesla img,
.logo-aurora img,
.logo-generac img,
.logo-igs img,
.logo-sungage img,
.logo-slice img {
  max-height: 62px;
}

.logo-qcells img {
  max-height: 76px;
}

.logo-skylight img {
  max-width: 96%;
  max-height: 64px;
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

.proof .eyebrow {
  color: #9ed1a9;
}

.proof h2 {
  max-width: 660px;
}

.proof p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.quote-stack {
  display: grid;
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

blockquote p {
  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.14;
}

cite {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-weight: 760;
}

.reviews blockquote {
  padding: 24px;
}

.review-meta {
  display: grid;
  gap: 2px;
  margin-bottom: 18px;
}

.review-meta strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.review-meta span {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 650;
}

.reviews blockquote::before {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  content: "★★★★★";
  font-size: 20px;
  letter-spacing: 0;
}

.reviews blockquote p {
  font-size: clamp(18px, 2vw, 22px);
}

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

.faq details {
  padding: 22px 24px;
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 780;
}

.faq p {
  margin: 16px 0 0;
}

.cta {
  order: 9;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 0 clamp(20px, 5vw, 72px) clamp(20px, 5vw, 72px);
  padding: clamp(34px, 6vw, 64px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 32, 29, 0.88), rgba(23, 32, 29, 0.38)),
    url("https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/bPSfPRIzOjD8yEFaDZzy/media/947a49b3-da47-4cca-bcc3-49c9af1703df.png") center / cover;
  border-radius: 8px;
}

.cta h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 32px clamp(20px, 5vw, 72px);
  color: #fff;
  background: #121816;
}

.brand-footer {
  font-size: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 650;
}

.legal-line {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 2vw, 18px);
}

.design-page {
  min-height: 100svh;
  background: #f7f7f4;
}

.design-header {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 5vw, 56px);
  background: rgba(247, 247, 244, 0.92);
}

.design-shell {
  display: grid;
  min-height: calc(100svh - 86px);
  grid-template-columns: minmax(420px, 1.34fr) minmax(360px, 0.66fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  padding: 0 clamp(20px, 4vw, 56px) clamp(20px, 4vw, 56px);
}

.design-visual {
  position: relative;
  min-height: min(760px, calc(100svh - 142px));
  overflow: hidden;
  isolation: isolate;
  border-radius: 8px;
  background: #dde5e6;
}

.design-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, transparent 44%, rgba(14, 20, 19, 0.74)),
    linear-gradient(90deg, rgba(14, 20, 19, 0.14), transparent 56%);
}

.design-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.design-visual-copy {
  position: absolute;
  left: clamp(22px, 4vw, 44px);
  right: clamp(22px, 4vw, 44px);
  bottom: clamp(22px, 4vw, 44px);
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 520px;
  color: #fff;
}

.design-visual-copy span {
  color: #ffb089;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.design-visual-copy strong {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.design-card {
  max-width: 520px;
  justify-self: center;
  width: 100%;
}

.design-form {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(223, 229, 220, 0.92);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(23, 32, 29, 0.1);
}

.design-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.design-progress span {
  width: 8px;
  height: 8px;
  background: #d4d9d2;
  border-radius: 50%;
}

.design-progress span.is-active {
  background: var(--ink);
}

.design-step {
  display: none;
}

.design-step.is-active {
  display: grid;
  gap: 16px;
}

.design-card h1,
.design-card h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.design-card h2 {
  font-size: clamp(32px, 3vw, 42px);
}

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

.field-label,
.choice-fieldset legend {
  color: #5d6864;
  font-size: 14px;
  font-weight: 780;
}

.address-field {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  background: #f0f1ee;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: background 160ms ease, border-color 160ms ease;
}

.address-field:focus-within,
.text-field:focus {
  background: #fff;
  border-color: rgba(40, 89, 72, 0.28);
  outline: none;
}

.address-field span {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid #52615c;
  border-radius: 50%;
}

.address-field span::after {
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 9px;
  height: 2px;
  background: #52615c;
  border-radius: 999px;
  content: "";
  transform: rotate(45deg);
}

.address-field input,
.text-field {
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 650;
}

.address-field input:focus,
.text-field:focus {
  outline: none;
}

.text-field {
  min-height: 52px;
  padding: 0 16px;
  background: #f0f1ee;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: background 160ms ease, border-color 160ms ease;
}

.choice-fieldset {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.choice-fieldset-wrap {
  grid-template-columns: repeat(2, 1fr);
}

.choice-fieldset button {
  min-height: 46px;
  padding: 0 14px;
  color: #65716d;
  background: #fff;
  border: 1px solid #d6ddd4;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.choice-fieldset button:hover,
.choice-fieldset button.is-selected {
  color: var(--ink);
  background: var(--mint);
  border-color: rgba(40, 89, 72, 0.28);
}

.choice-fieldset button:focus-visible {
  outline: 2px solid rgba(243, 107, 42, 0.64);
  outline-offset: 3px;
}

.design-next {
  width: 100%;
  margin-top: 8px;
}

.design-next:disabled {
  cursor: not-allowed;
  background: #a8b9f0;
  border-color: #a8b9f0;
  box-shadow: none;
  opacity: 0.68;
  transform: none;
}

.design-note {
  text-align: center;
  font-size: 13px;
  font-weight: 650;
}

.design-summary {
  padding: 14px 16px;
  background: #edf4ef;
  border: 1px solid rgba(40, 89, 72, 0.12);
  border-radius: 6px;
  font-weight: 650;
}

.design-actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12px;
  margin-top: 6px;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
  }

  .header-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: clamp(18px, 5vw, 42px);
    right: clamp(18px, 5vw, 42px);
    z-index: 30;
    display: grid;
    gap: 18px;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(223, 229, 220, 0.96);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(23, 32, 29, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    visibility: hidden;
    transition: opacity 170ms ease, transform 170ms ease, visibility 0ms linear 170ms;
  }

  .site-header.nav-open .header-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
    transition-delay: 0ms;
  }

  .site-nav {
    display: grid;
    justify-content: stretch;
    gap: 6px;
  }

  .site-nav a {
    padding: 12px 10px;
    border-radius: 6px;
    font-size: 16px;
  }

  .site-nav a:hover {
    background: #f6f3ec;
  }

  .header-actions {
    display: grid;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .header-actions .button {
    width: 100%;
  }

  .phone-link {
    padding: 0 10px;
    font-size: 16px;
  }

  .hero,
  .split,
  .partners,
  .proof,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .section-copy {
    position: static;
  }

  .trust-band,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-band {
    overflow-x: auto;
    grid-auto-columns: minmax(260px, 42vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .trust-band::-webkit-scrollbar {
    display: none;
  }

  .trust-band div {
    min-height: 128px;
    scroll-snap-align: start;
  }

  .design-shell {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .design-visual {
    min-height: 420px;
  }

  .design-card {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .design-header {
    padding: 16px 18px;
  }

  .design-header .phone-link {
    display: none;
  }

  .design-shell {
    gap: 18px;
    padding: 0 18px 18px;
  }

  .design-visual {
    min-height: 260px;
  }

  .design-visual-copy strong {
    font-size: 28px;
  }

  .design-form {
    padding: 22px;
  }

  .choice-fieldset,
  .choice-fieldset-wrap,
  .design-actions {
    grid-template-columns: 1fr;
  }

  .brand {
    font-size: 21px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding: 78px 18px 28px;
  }

  h1 {
    font-size: clamp(42px, 13.4vw, 54px);
  }

  .lede {
    font-size: 17px;
  }

  .hero-actions,
  .button,
  .button-secondary,
  .button-dark {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .solution-grid,
  .image-strip,
  .timeline,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-band {
    grid-auto-columns: minmax(255px, 78vw);
  }

  .trust-band div {
    min-height: 120px;
    padding: 22px 24px;
  }

  .partner-marquee {
    margin-inline: -18px;
  }

  .logo-card {
    width: 168px;
    height: 92px;
  }

  .section,
  .proof {
    padding: 64px 18px;
  }

  .image-strip {
    gap: 12px;
    padding: 0 18px 24px;
  }

  .image-feature,
  .image-feature-large,
  .image-feature-tall {
    min-height: 260px;
    transform: none;
  }

  .image-feature figcaption {
    padding: 18px;
  }

  .solution-grid article,
  .timeline article {
    min-height: auto;
  }

  .solution-grid span,
  .timeline span {
    margin-bottom: 28px;
  }

  .cta {
    margin: 0 18px 18px;
    padding: 30px 22px;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
