@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}

:root {
  --purple: #0b63ce;
  --purple-2: #084b9a;
  --teal: #f4a021;
  --ink: #0a0a0a;
  --ink-2: #222;
  --muted: #626067;
  --line: #e7e3e9;
  --bg: #fff;
  --soft: #f7f5f8;
  --font: Inter, system-ui, sans-serif;
  --pad: max(clamp(1.25rem, 4vw, 4rem), calc((100vw - 1320px) / 2));
  --section-y: clamp(4.5rem, 8vw, 7rem);
  --section-y-sm: clamp(3rem, 6vw, 5rem);
  --radius: 10px;
  --radius-lg: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.6rem);
  font-weight: 600;
  color: #fff;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

h3 {
  font-size: 1.15rem;
  font-weight: 500;
}

p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker-dark {
  color: var(--purple);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  min-height: 46px;
  border-radius: var(--radius);
  padding: 12px 24px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-dark {
  background: var(--ink-2);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
}

.btn-purple {
  background: var(--purple);
  color: #fff;
}

.btn-purple:hover {
  background: var(--purple-2);
}

.text-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--purple);
  font-weight: 500;
}

.text-link:hover {
  text-decoration: underline;
}

.split-copy p .text-link,
.contact p .text-link,
label .text-link {
  display: inline;
  margin-top: 0;
}

.promo {
  background: var(--purple);
  color: #fff;
  text-align: center;
  padding: 0.62rem var(--pad);
  font-size: 0.86rem;
  font-weight: 400;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 72px;
  padding: 0.8rem var(--pad);
  background: #fff;
  box-shadow: 0 8px 20px rgba(34, 34, 34, 0.06);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--purple);
  color: #fff;
  padding: 0.6rem 1rem;
}

.skip:focus {
  left: var(--pad);
  top: 0.6rem;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  margin: 0 auto;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--purple);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 1.5px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(620px, calc(100svh - 6.5rem), 820px);
  display: flex;
  align-items: flex-end;
}

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

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

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.18) 10%, rgba(10, 10, 10, 0.72) 100%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-lines path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 8;
  stroke-linecap: round;
  opacity: 0.72;
  filter: drop-shadow(0 0 10px rgba(244, 160, 33, 0.55));
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 480px);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: end;
  padding: 4rem var(--pad) clamp(3.5rem, 7vw, 5.5rem);
}

.hero-copy {
  max-width: 48rem;
}

.hero-lead {
  max-width: 39rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero-card {
  background: #fff;
  color: var(--ink-2);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.hero-card h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.hero-card fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 400;
  cursor: pointer;
}

.chip:has(input:checked) {
  border-color: var(--purple);
  background: #fff3df;
  color: var(--purple);
}

.chip input {
  display: none;
}

.hero-card label,
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
}

.hero-card input[type="text"],
.contact-form input[type="text"],
.contact-form input[type="email"] {
  width: 100%;
  margin-bottom: 0.85rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  font-weight: 400;
}

.hero-card .btn,
.contact-form .btn {
  width: 100%;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 2.4rem;
  padding: 1.6rem var(--pad);
  border-bottom: 1px solid var(--line);
}

.logos p {
  color: var(--muted);
  font-size: 0.85rem;
}

.logos ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #999;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.split,
.feature,
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: center;
  padding: var(--section-y) var(--pad);
}

.split-copy p,
.feature-copy p,
.contact p {
  margin-top: 1.15rem;
  color: var(--muted);
  max-width: 36rem;
}

.checks {
  margin: 1.4rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
}

.split-media img,
.feature img {
  width: 100%;
  height: min(62vh, 520px);
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.quotes,
.benefits {
  padding: var(--section-y-sm) var(--pad);
}

.quotes {
  background: var(--soft);
}

.quotes h2,
.benefits h2 {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quote-card {
  margin: 0;
  background: #fff;
  border-radius: 12px;
  padding: 1.4rem;
  min-height: 12rem;
}

.quote-card blockquote {
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
}

.quote-card figcaption {
  color: var(--muted);
  font-size: 0.88rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.benefit-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  background: #fff;
}

.benefits {
  background: var(--soft);
}

.benefit-grid p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.products-wrap,
.process,
.refs {
  padding: var(--section-y) var(--pad);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.2rem, 4vw, 3.5rem);
}

.section-head p:last-child,
.lead {
  margin-top: 0.9rem;
  color: var(--muted);
  max-width: 40rem;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: 0;
}

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

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 2rem var(--pad);
  border-bottom: 1px solid var(--line);
}

.trust > div {
  min-height: 3.5rem;
  padding: 0.15rem clamp(1rem, 2.4vw, 2rem);
  border-left: 1px solid var(--line);
}

.trust > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
}

.trust span {
  color: var(--muted);
  font-size: 0.88rem;
}

.process-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.process-grid li {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 2.5vw, 1.8rem);
}

.process-grid span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--purple);
  font-weight: 500;
}

.process-grid p {
  margin-top: 0.4rem;
  color: var(--muted);
}

.portrait figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.portrait figcaption strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
}

.legal {
  max-width: 44rem;
  padding: clamp(6rem, 12vw, 8rem) var(--pad) 4rem;
}

.legal h1 {
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.legal h2,
.legal h3 {
  margin: 1.6rem 0 0.6rem;
  font-size: 1.15rem;
}

.legal p {
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.legal a {
  color: var(--purple);
}

.product {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 32px rgba(34, 20, 40, 0.055);
}

.product img {
  width: 100%;
  height: clamp(12rem, 18vw, 15rem);
  object-fit: cover;
}

.product > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem 1.4rem 1.55rem;
}

.product p {
  margin: 0.4rem 0 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.product a {
  margin-top: auto;
  padding-top: 0.5rem;
  color: var(--purple);
  font-weight: 500;
  font-size: 0.92rem;
}

.feature-flip {
  direction: rtl;
}

.feature-flip > * {
  direction: ltr;
}

.contact {
  background: var(--soft);
  align-items: start;
}

address {
  margin-top: 1.6rem;
  font-style: normal;
  line-height: 1.8;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 16px 44px rgba(34, 20, 40, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.checks-inline {
  border: 0;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.checks-inline legend {
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.checks-inline label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.form-note {
  margin-top: 0.8rem;
  color: var(--purple);
  font-weight: 500;
}

.footer {
  background: var(--ink-2);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 1.8rem;
}

.footer-top strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

.footer-top p,
.footer-copy {
  color: #b5b5b5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin: 1.6rem 0;
  color: #ddd;
  font-size: 0.92rem;
}

.footer-copy {
  margin-top: 0.4rem;
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1rem var(--pad) 1.3rem;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid,
  .split,
  .feature,
  .contact,
  .quote-row,
  .benefit-grid,
  .products,
  .products-3,
  .trust,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 8rem;
  }

  .split-media img,
  .feature img,
  .page-hero {
    height: 16rem;
    min-height: 16rem;
  }

  .footer-grid,
  .foerder-stats,
  .foerder-cards,
  .spec-row {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 48vh, 560px);
  display: flex;
  align-items: flex-end;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.92);
}

.page-hero .hero-veil {
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 10, 0.76) 0%,
      rgba(8, 8, 10, 0.62) 38%,
      rgba(8, 8, 10, 0.28) 72%,
      rgba(8, 8, 10, 0.12) 100%
    ),
    linear-gradient(180deg, rgba(8, 8, 10, 0.12), rgba(8, 8, 10, 0.52));
}

.page-hero .hero-copy {
  position: relative;
  z-index: 3;
  padding: 4rem var(--pad) clamp(6rem, 9vw, 8rem);
  max-width: 58rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  text-shadow:
    0 3px 24px rgba(0, 0, 0, 0.58),
    0 1px 3px rgba(0, 0, 0, 0.78);
}

.page-hero .hero-lead {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

.page-hero .kicker {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.page-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(5.5rem, 9vw, 8rem);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.14) 35%,
    rgba(255, 255, 255, 0.92) 100%
  );
  pointer-events: none;
}

.hero-followup:not(.hero-followup--stats) {
  position: relative;
  z-index: 4;
  margin-top: -3.5rem;
  border-radius: 34px 34px 0 0;
  background: #fff;
  box-shadow: 0 -22px 55px rgba(32, 22, 36, 0.09);
}

.foerder-stats.hero-followup--stats {
  position: relative;
  z-index: 4;
  margin: -3.5rem var(--pad) 0;
  box-shadow: 0 18px 48px rgba(32, 22, 36, 0.18);
}

.page-intro {
  padding: var(--section-y-sm) var(--pad) 0;
}

.solar-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  min-height: clamp(500px, 58vh, 680px);
  padding: clamp(4.5rem, 8vw, 7rem) var(--pad);
  background:
    radial-gradient(circle at 72% 25%, rgba(11, 99, 206, 0.34), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(244, 160, 33, 0.12), transparent 32%),
    linear-gradient(135deg, #101d26 0%, #132b3a 58%, #19445a 100%);
  color: #fff;
}

.solar-intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8rem;
  top: -14rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(255, 255, 255, 0.018),
    0 0 0 10rem rgba(255, 255, 255, 0.012);
}

.solar-intro__copy {
  max-width: 53rem;
}

.solar-intro .kicker {
  color: var(--teal);
}

.solar-intro h1 {
  max-width: 52rem;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 1.04;
  text-wrap: balance;
}

.solar-intro .lead {
  max-width: 43rem;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.solar-intro__action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.solar-intro__cta {
  gap: 0.65rem;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.solar-intro__cta span {
  font-size: 1.1rem;
  line-height: 1;
}

.solar-intro__steps {
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.solar-intro__steps-head {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1.1rem;
}

.solar-intro__steps-head span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solar-intro__steps-head strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
}

.solar-intro__steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.solar-intro__steps li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.solar-intro__steps li > span {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(244, 160, 33, 0.12);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 600;
}

.solar-intro__steps li strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.contact--solar {
  grid-template-columns: 1fr;
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.cta-band {
  margin: 0 var(--pad) var(--section-y-sm);
  padding: clamp(2.4rem, 6vw, 4.5rem);
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  color: #fff;
  text-align: center;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  max-width: 34rem;
  margin: 0.8rem auto 1.4rem;
  color: rgba(255, 255, 255, 0.75);
}

.list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--teal);
}

.split-flip {
  direction: rtl;
}

.split-flip > * {
  direction: ltr;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) var(--pad) 2rem;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
}

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

.faq-list details p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.solar-check h2 {
  max-width: 35rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--ink);
}

.solar-check .form-group,
.solar-check label.form-group {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
}

.solar-check fieldset.form-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.solar-check input[type="text"],
.solar-check input[type="email"],
.solar-check input[type="tel"],
.solar-check textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfafc;
  font: inherit;
  color: var(--ink);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.solar-check textarea {
  min-height: 7rem;
  resize: vertical;
}

.solar-check input[type="text"]:focus,
.solar-check input[type="email"]:focus,
.solar-check input[type="tel"]:focus,
.solar-check textarea:focus {
  border-color: var(--purple);
  background: #fff;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(11, 99, 206, 0.1);
}

.solar-check {
  max-width: 52rem;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: 0 24px 70px rgba(45, 26, 52, 0.09);
}

.solar-check__progress {
  margin-bottom: clamp(1.7rem, 4vw, 2.5rem);
}

.solar-check__progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.solar-check__progress-meta [data-progress-label] {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #fff3df;
  color: var(--purple);
  letter-spacing: 0;
  text-transform: none;
}

.solar-check__track {
  height: 6px;
  background: #eee9f0;
  border-radius: 99px;
  overflow: hidden;
}

.solar-check__bar {
  display: block;
  height: 100%;
  width: 20%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), #2d7fe0);
  transition: width 0.3s ease;
}

.solar-check__intro {
  max-width: 39rem;
  margin: 0.65rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.solar-check__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.solar-check__choices > .solar-choice:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.solar-choice {
  display: grid;
  grid-template-columns: 1.3rem minmax(0, 1fr);
  grid-template-areas:
    "radio title"
    "radio hint";
  column-gap: 0.85rem;
  align-content: center;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.solar-choice:hover {
  border-color: rgba(11, 99, 206, 0.45);
  box-shadow: 0 10px 28px rgba(65, 34, 78, 0.07);
  transform: translateY(-1px);
}

.solar-choice:has(input:checked) {
  border-color: var(--purple);
  background: #f6f8fa;
  box-shadow: 0 0 0 3px rgba(11, 99, 206, 0.09);
}

.solar-choice input {
  grid-area: radio;
  align-self: center;
  appearance: none;
  width: 1.22rem;
  height: 1.22rem;
  margin: 0;
  border: 1.5px solid #aaa4ad;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.solar-choice input:checked {
  border-color: var(--purple);
  background: var(--purple);
  box-shadow: inset 0 0 0 4px #fff;
}

.solar-choice input:focus-visible {
  outline: 3px solid rgba(244, 160, 33, 0.55);
  outline-offset: 3px;
}

.solar-choice__title {
  grid-area: title;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.solar-choice__hint {
  grid-area: hint;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.35;
}

.solar-check__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.solar-check__actions--forward {
  justify-content: flex-end;
}

.solar-check__actions .btn {
  min-width: 132px;
}

.solar-check__actions [data-step-next]::after {
  content: "\2192";
  margin-left: 0.55rem;
  font-size: 1.15em;
  line-height: 1;
}

.privacy-consent,
.solar-check label.privacy-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin: 1.25rem 0;
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
}

.privacy-consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.15rem 0 0;
  accent-color: var(--purple);
}

.solar-check [data-step]:not([hidden]) {
  animation: solar-step-in 0.25s ease both;
}

.solar-check [data-step].is-advancing {
  pointer-events: none;
  animation: solar-step-out 0.36s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.solar-check [data-step].is-advancing .solar-choice:has(input:checked) {
  box-shadow: 0 0 0 5px rgba(11, 99, 206, 0.13), 0 14px 30px rgba(11, 99, 206, 0.12);
}

@keyframes solar-step-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes solar-step-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .solar-check [data-step]:not([hidden]) {
    animation: none;
  }

  .solar-check [data-step].is-advancing {
    animation: none;
  }

  .solar-choice,
  .solar-check__bar {
    transition: none;
  }
}

/* Homepage project path: documentary image and a guided, card-free sequence */
.process--story {
  overflow: clip;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(11, 99, 206, 0.035), transparent 18rem),
    #fff;
}

.process--story .process__head {
  max-width: 47rem;
  margin-bottom: clamp(2.75rem, 5vw, 4.75rem);
}

.process--story .process__head h2 {
  max-width: 16ch;
}

.process__layout {
  display: grid;
  grid-template-columns: minmax(19rem, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.75rem, 6vw, 6.5rem);
  align-items: start;
}

.process__visual {
  position: sticky;
  top: 7rem;
  margin: 0;
}

.process__visual img {
  width: 100%;
  height: clamp(26rem, 42vw, 37rem);
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: 48% center;
}

.process__visual figcaption {
  max-width: 31rem;
  margin-top: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--teal);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.process--story .process__timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: none;
}

.process--story .process__timeline::before {
  content: "";
  position: absolute;
  top: 1.8rem;
  bottom: 1.8rem;
  left: 1.55rem;
  width: 1px;
  background: linear-gradient(var(--purple), rgba(11, 99, 206, 0.14));
}

.process--story .process__timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: clamp(1.25rem, 2.4vw, 2rem);
  min-width: 0;
  padding: 0 0 clamp(2rem, 4vw, 3rem);
  border: 0;
  border-radius: 0;
}

.process--story .process__timeline li:last-child {
  padding-bottom: 0;
}

.process--story .process__timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(11, 99, 206, 0.24);
  border-radius: 6px;
  color: var(--purple);
  font-size: 0.74rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.process--story .process__timeline strong {
  display: block;
  padding-top: 0.15rem;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.process--story .process__timeline p {
  max-width: 42rem;
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (hover: hover) and (pointer: fine) {
  .process--story .process__timeline li:hover span {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
  }
}

@media (max-width: 980px) {
  .process__layout {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .process__visual {
    position: static;
  }

  .process__visual img {
    height: clamp(20rem, 62vw, 32rem);
  }

  .process--story .process__timeline {
    max-width: 44rem;
  }

  .process--story .process__timeline li {
    padding-top: 0;
    padding-bottom: 2.25rem;
  }
}

@media (max-width: 640px) {
  .process--story .process__head {
    margin-bottom: 2.25rem;
  }

  .process__layout {
    gap: 2.25rem;
  }

  .process__visual img {
    height: 18rem;
  }

  .process__visual figcaption {
    margin-top: 1rem;
  }

  .process--story .process__timeline::before {
    left: 1.3rem;
  }

  .process--story .process__timeline li {
    grid-template-columns: 2.65rem minmax(0, 1fr);
    gap: 1rem;
  }

  .process--story .process__timeline span {
    width: 2.65rem;
    height: 2.65rem;
  }

  .process--story .process__timeline strong {
    padding-top: 0;
    font-size: 1.06rem;
  }

  .process--story .process__timeline p {
    margin-top: 0.35rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.form-error {
  display: block;
  margin-top: 0.4rem;
  color: #9b1c1c;
  font-size: 0.82rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.feedback {
  display: none;
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 8px;
}

.feedback.visible {
  display: block;
}

.feedback--ok {
  background: #ecfdf5;
  color: #065f46;
}

.feedback--err {
  background: #fef2f2;
  color: #9b1c1c;
}

.foerder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem var(--pad) 0;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  color: #fff;
  text-align: center;
}

.foerder-stats strong {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: var(--teal);
}

.foerder-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  padding: clamp(2.2rem, 6vw, 4rem) var(--pad);
  background: linear-gradient(180deg, #fff 0%, #fbfafc 35%, #fff 100%);
}

.foerder-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  background: #fff;
}

.foerder-cards .foerder-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-color: #e6e1e8;
  border-radius: 22px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 18px 48px rgba(39, 25, 45, 0.075);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.foerder-cards .foerder-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--purple), #2d7fe0 65%, var(--teal));
}

.foerder-cards .foerder-card--tax::before {
  background: linear-gradient(90deg, #d16b18, var(--teal));
}

.foerder-cards .foerder-card--local::before {
  background: linear-gradient(90deg, #c46112, #f59e0b);
}

.foerder-cards .foerder-card:hover {
  transform: translateY(-3px);
  border-color: #d8cfdd;
  box-shadow: 0 24px 60px rgba(39, 25, 45, 0.11);
}

.foerder-cards .foerder-card h3 {
  margin: 0 0 0.75rem;
  color: #17212b;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
}

.foerder-cards .foerder-card > p:not(.note) {
  max-width: 42rem;
  color: #4f4b53;
  font-size: 0.98rem;
  line-height: 1.7;
}

.foerder-cards .foerder-card .list {
  display: grid;
  gap: 0.25rem;
  margin: 1.35rem 0 1.5rem;
}

.foerder-cards .foerder-card .list li {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  color: #66616b;
  line-height: 1.5;
}

.foerder-cards .foerder-card .list li::before {
  top: 0.95rem;
  box-shadow: 0 0 0 4px rgba(244, 160, 33, 0.12);
}

.foerder-cards .foerder-card .note {
  position: relative;
  margin-top: auto;
  padding: 1rem 1rem 1rem 3.25rem;
  border: 1px solid #ebe7ed;
  border-radius: 14px;
  background: #f6f8fa;
  color: #66616b;
  line-height: 1.55;
}

.foerder-cards .foerder-card .note::before {
  content: "i";
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #fff3df;
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 700;
  font-style: normal;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 99px;
  background: #fff3df;
  color: var(--purple);
  font-size: 0.74rem;
  font-weight: 600;
}

.badge::before {
  content: "";
  flex: 0 0 auto;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.8;
}

.badge-warn {
  background: #fff7ed;
  color: #9a3412;
}

.badge-off {
  background: #f3f4f6;
  color: #6b7280;
}

.table-wrap {
  overflow-x: auto;
  padding: 0 var(--pad) clamp(3rem, 7vw, 5rem);
  scrollbar-color: rgba(11, 99, 206, 0.35) transparent;
}

.table-wrap:focus-visible {
  outline: 3px solid rgba(244, 160, 33, 0.55);
  outline-offset: 4px;
}

.foerder-card__table {
  margin: 1.5rem 0;
  padding: 0 !important;
  border: 1px solid #e7e2e9;
  border-radius: 14px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th,
td {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--ink);
  font-weight: 500;
}

.foerder-card__table table {
  min-width: 34rem;
  border-collapse: separate;
  border-spacing: 0;
}

.foerder-card__table thead {
  background: #f5f7f8;
}

.foerder-card__table th {
  padding: 0.85rem 1rem;
  color: #5c5361;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.foerder-card__table td {
  padding: 0.95rem 1rem;
  color: #4e4952;
}

.foerder-card__table td:not(:first-child) {
  color: #1d2d3a;
  font-weight: 600;
  white-space: nowrap;
}

.foerder-card__table tbody tr {
  transition: background 0.18s ease;
}

.foerder-card__table tbody tr:hover {
  background: #f8fafb;
}

.foerder-card__table tbody tr:last-child td {
  border-bottom: 0;
}

.spec-row {
  display: flex;
  gap: 1rem;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.spec-row strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
}

.reference-grid {
  gap: clamp(1.25rem, 2.4vw, 2rem);
  align-items: stretch;
}

.reference-card {
  border-color: #e6e2e8;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(37, 24, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reference-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(37, 24, 42, 0.14);
}

.reference-card > img {
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.reference-card > .reference-card__body {
  padding: clamp(1.5rem, 2.7vw, 2.15rem);
}

.reference-card .reference-card__number {
  align-self: flex-start;
  margin: 0 0 0.55rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #f1eff3;
  color: #5d5862;
  font-size: 0.76rem;
  font-weight: 600;
}

.reference-card .reference-card__category {
  margin: 0 0 0.8rem;
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.reference-card h3 {
  max-width: 24rem;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.reference-card .reference-card__description {
  margin: 1rem 0 1.6rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.reference-card .spec-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: auto;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
}

.reference-card .spec-row > div {
  min-width: 0;
  color: #74707a;
  font-size: 0.76rem;
  line-height: 1.35;
}

.reference-card .spec-row strong {
  margin-bottom: 0.2rem;
  color: #1e2f3d;
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  font-weight: 600;
  white-space: nowrap;
}

.note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}

.footer-grid h3 {
  margin-bottom: 0.7rem;
  color: #fff;
  font-size: 0.95rem;
}

.footer-grid a {
  display: block;
  margin: 0.3rem 0;
  color: #ddd;
}

.footer-grid a:hover {
  color: var(--teal);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(244, 160, 33, 0.55);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero-grid {
    gap: 2.5rem;
    padding-top: 7rem;
  }

  .trust > div {
    padding: 1rem 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust > div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .footer-grid,
  .foerder-stats,
  .foerder-cards {
    grid-template-columns: 1fr;
  }

  .spec-row {
    flex-wrap: wrap;
  }

  .solar-intro {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .solar-intro__copy {
    max-width: 48rem;
  }

  .solar-intro__steps {
    max-width: 40rem;
  }

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

  .page-hero {
    height: auto;
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-y: 4rem;
    --section-y-sm: 3.25rem;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .promo {
    font-size: 0.78rem;
  }

  .nav {
    min-height: 64px;
  }

  .brand img {
    height: 30px;
  }

  .hero-grid {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }

  .hero-card {
    border-radius: 14px;
  }

  .split,
  .feature,
  .contact {
    gap: 2.25rem;
  }

  .split-media img,
  .feature img {
    height: 15rem;
    min-height: 15rem;
  }

  .page-hero {
    height: auto;
    min-height: 480px;
  }

  .page-hero .hero-copy {
    padding-bottom: 6.5rem;
  }

  .page-hero::after {
    height: 6rem;
  }

  .hero-followup:not(.hero-followup--stats) {
    margin-top: -2rem;
    border-radius: 24px 24px 0 0;
  }

  .foerder-stats.hero-followup--stats {
    margin-top: -2rem;
  }

  .solar-intro {
    gap: 2.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .solar-intro h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .solar-intro__action {
    align-items: flex-start;
    flex-direction: column;
  }

  .solar-intro__cta {
    width: 100%;
  }

  .solar-intro__steps {
    width: 100%;
  }

  .product img {
    height: 13rem;
  }

  .cta-band {
    padding: 2.25rem 1.25rem;
  }

  .solar-check__actions {
    flex-direction: column-reverse;
  }

  .solar-check__actions .btn {
    width: 100%;
  }

  .solar-check__choices {
    grid-template-columns: 1fr;
  }

  .solar-check__choices > .solar-choice:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .solar-choice {
    min-height: 82px;
  }

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

  .reference-card > img {
    aspect-ratio: 16 / 9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reference-card,
  .foerder-cards .foerder-card,
  .foerder-card__table tbody tr {
    transition: none;
  }

  .reference-card:hover,
  .foerder-cards .foerder-card:hover {
    transform: none;
  }
}

/* Quality pass: shared interaction, editorial rhythm and responsive polish */
body.nav-open {
  overflow: hidden;
}

.chip {
  position: relative;
}

.chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.chip:has(input:focus-visible) {
  outline: 3px solid rgba(244, 160, 33, 0.55);
  outline-offset: 3px;
}

.section-action {
  margin-top: 1.4rem;
}

.content-cta {
  margin-top: 1.4rem;
}

.content-cta--compact {
  margin-top: 1.2rem;
}

.note--spaced {
  margin-top: 1rem;
}

.process-grid--single {
  grid-template-columns: 1fr;
}

.foerder-card--dark {
  background: var(--ink-2);
  color: #fff;
}

.foerder-card--dark h3 {
  color: #fff;
}

.foerder-card--dark li,
.foerder-card--dark p {
  color: #ddd;
}

.split:nth-of-type(even) {
  background: linear-gradient(135deg, #fbfcfd 0%, #f6f8fa 100%);
}

#speicher {
  background: linear-gradient(135deg, #fbfcfd 0%, #f6f8fa 100%);
}

.portrait figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.8rem;
  align-items: center;
  margin: -2.8rem 1rem 0;
  position: relative;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 35px rgba(38, 24, 43, 0.12);
  backdrop-filter: blur(12px);
}

.portrait figcaption::before {
  content: "";
  grid-row: 1 / 3;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(244, 160, 33, 0.13);
}

.reference-card {
  isolation: isolate;
}

.reference-card > img {
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.35s ease;
}

.reference-card:hover > img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  max-width: 56rem;
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.faq-list details {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(45, 26, 52, 0.045);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-list details:hover {
  border-color: rgba(11, 99, 206, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(45, 26, 52, 0.075);
}

.faq-list details[open] {
  border-color: rgba(11, 99, 206, 0.32);
  box-shadow: 0 18px 46px rgba(45, 26, 52, 0.08);
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2rem;
  gap: 1.25rem;
  align-items: center;
  min-height: 4.6rem;
  padding: 1.15rem 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff3df;
  color: var(--purple);
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--purple);
  color: #fff;
  transform: rotate(180deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 4.5rem 1.35rem 1.25rem;
  line-height: 1.75;
}

.legal-hero {
  padding: clamp(4rem, 8vw, 6.5rem) var(--pad) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 86% 18%, rgba(244, 160, 33, 0.16), transparent 24rem),
    linear-gradient(135deg, #142f44, #0c1d2b);
}

.legal-hero__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(2.3rem, 6vw, 4.4rem);
}

.legal-hero p:last-child {
  max-width: 40rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.legal {
  display: grid;
  grid-template-columns: minmax(13rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  width: min(100%, 72rem);
  max-width: none;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad);
}

.legal__aside {
  align-self: start;
  position: sticky;
  top: 7rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}

.legal__aside strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.legal__aside p {
  margin: 0;
  font-size: 0.9rem;
}

.legal__content {
  min-width: 0;
}

.legal__content h2,
.legal__content h3 {
  scroll-margin-top: 7rem;
  padding-top: 1.8rem;
  margin-top: 1.8rem;
  border-top: 1px solid var(--line);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.legal__content h2:first-child,
.legal__content h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal__content p,
.legal__content a {
  overflow-wrap: anywhere;
}

.legal__updated {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #fff3df;
  color: var(--purple) !important;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
}

.table-wrap {
  position: relative;
}

.table-scroll-hint {
  display: none;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.8rem;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 600;
}

.table-scroll-hint::before {
  content: "↔";
  font-size: 1.05rem;
}

.table-wrap th {
  background: #fff;
}

.page-intro + .faq-list {
  margin-top: -1rem;
}

.page-intro__title {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 980px) {
  .nav-links {
    max-height: calc(100svh - 64px);
    overflow-y: auto;
  }

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

  .legal__aside {
    position: static;
  }

  .process-grid {
    gap: 0.75rem;
  }

  .process-grid li {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}

@media (max-width: 640px) {
  .promo {
    padding-top: 0.48rem;
    padding-bottom: 0.48rem;
    line-height: 1.35;
  }

  .page-intro {
    padding-top: 3.6rem;
    padding-bottom: 2.25rem;
  }

  .page-intro .lead {
    font-size: 1rem;
  }

  .faq-list summary {
    gap: 0.8rem;
    min-height: 4.2rem;
    padding: 1rem;
  }

  .faq-list details p {
    padding: 0 1rem 1.15rem;
    font-size: 0.94rem;
  }

  .legal-hero {
    padding-top: 3.25rem;
    padding-bottom: 3rem;
  }

  .legal-hero h1 {
    overflow-wrap: normal;
    hyphens: none;
    font-size: clamp(2rem, 8.5vw, 2.35rem);
    line-height: 1.05;
  }

  .legal {
    padding-top: 2.5rem;
  }

  .legal__aside {
    padding: 1rem;
  }

  .table-scroll-hint {
    display: flex;
  }

  .table-wrap table {
    min-width: 34rem;
  }

  .foerder-card__table {
    border: 0;
    border-radius: 0;
  }

  .foerder-card__table table {
    min-width: 31rem;
  }

  .foerder-cards {
    padding-top: 1rem;
  }

  .foerder-card {
    padding: 1.25rem;
  }

  .process-grid p {
    margin-top: 0.25rem;
  }

  .portrait figcaption {
    margin-left: 0.65rem;
    margin-right: 0.65rem;
  }
}

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

  .faq-list details,
  .faq-list summary::after,
  .reference-card > img {
    transition: none;
  }
}

/* Funding directory and guided process */
.funding-overview {
  padding: clamp(4.5rem, 8vw, 7rem) var(--pad);
  border-top: 1px solid #eee9f0;
  border-bottom: 1px solid #eee9f0;
  background:
    radial-gradient(circle at 88% 4%, rgba(11, 99, 206, 0.07), transparent 24rem),
    linear-gradient(180deg, #fbfcfd 0%, #f5f7f8 100%);
}

.funding-overview__inner,
.funding-journey__inner {
  width: min(100%, 82.5rem);
  margin: 0 auto;
}

.funding-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.funding-section-head > div {
  max-width: 48rem;
}

.funding-section-head h2 {
  max-width: 44rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.funding-section-head > div > p:last-child {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.funding-date {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid #dfd5e4;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #5f5863;
  font-size: 0.82rem;
  font-weight: 600;
}

.funding-date::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(244, 160, 33, 0.14);
}

.funding-programs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.funding-program {
  position: relative;
  overflow: hidden;
  min-height: 13.5rem;
  padding: 1.45rem;
  border: 1px solid #e3dee6;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(45, 26, 52, 0.055);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.funding-program::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), #2d7fe0);
}

.funding-program--review::before {
  background: linear-gradient(90deg, #d16b18, #f59e0b);
}

.funding-program--inactive::before {
  background: #b8b4bb;
}

.funding-program:hover {
  transform: translateY(-3px);
  border-color: #d2c7d7;
  box-shadow: 0 20px 48px rgba(45, 26, 52, 0.095);
}

.funding-program__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.35rem;
}

.funding-program__meta > span:first-child {
  color: #766f79;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.funding-program .badge {
  margin: 0;
}

.funding-program h3 {
  margin-bottom: 0.6rem;
  color: #14212b;
  font-size: 1.25rem;
  font-weight: 600;
}

.funding-program p {
  color: #666068;
  font-size: 0.92rem;
  line-height: 1.65;
}

.funding-program--inactive {
  background: rgba(245, 243, 246, 0.9);
  box-shadow: none;
}

.funding-journey {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) var(--pad);
  background:
    radial-gradient(circle at 82% 16%, rgba(11, 99, 206, 0.34), transparent 30rem),
    radial-gradient(circle at 15% 88%, rgba(244, 160, 33, 0.09), transparent 26rem),
    #13222d;
  color: #fff;
}

.funding-journey__head {
  max-width: 50rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.funding-journey__head h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4.5vw, 3.7rem);
}

.funding-journey__head > p:last-child {
  max-width: 40rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.05rem;
}

.funding-journey__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.funding-steps {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.funding-steps::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  bottom: 2.2rem;
  left: 1.55rem;
  width: 1px;
  background: linear-gradient(var(--teal), rgba(255, 255, 255, 0.12));
}

.funding-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 1.35rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.funding-steps li:first-child {
  padding-top: 0;
}

.funding-steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.funding-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(244, 160, 33, 0.48);
  border-radius: 50%;
  background: #172731;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.funding-steps strong {
  display: block;
  margin: 0.15rem 0 0.35rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}

.funding-steps p {
  max-width: 37rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.65;
}

.funding-check {
  position: sticky;
  top: 7rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: #fff;
  color: var(--ink-2);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.funding-check__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.funding-check__eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
}

.funding-check h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.18;
}

.funding-check > p {
  color: var(--muted);
  font-size: 0.94rem;
}

.funding-check ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.funding-check li {
  position: relative;
  padding-left: 1.55rem;
  color: #4f4952;
  font-size: 0.9rem;
}

.funding-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9a3412;
  font-weight: 700;
}

.funding-check .btn {
  width: 100%;
}

.funding-check small {
  display: block;
  margin-top: 0.8rem;
  color: #817b83;
  text-align: center;
  font-size: 0.76rem;
}

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

  .funding-journey__layout {
    grid-template-columns: 1fr;
  }

  .funding-check {
    position: static;
    max-width: 38rem;
  }
}

@media (max-width: 640px) {
  .funding-overview,
  .funding-journey {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .funding-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .funding-programs {
    grid-template-columns: 1fr;
  }

  .funding-program {
    min-height: 0;
    padding: 1.25rem;
  }

  .funding-journey__layout {
    gap: 3rem;
  }

  .funding-steps::before {
    left: 1.3rem;
  }

  .funding-steps li {
    grid-template-columns: 2.65rem minmax(0, 1fr);
    gap: 1rem;
  }

  .funding-steps li > span {
    width: 2.6rem;
    height: 2.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .funding-program {
    transition: none;
  }

  .funding-program:hover {
    transform: none;
  }
}

/* Compact brand lockup: integrate the logo into the navigation */
.nav {
  min-height: 68px;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(231, 227, 233, 0.9);
  background:
    linear-gradient(90deg, rgba(255, 247, 234, 0.72) 0%, rgba(255, 255, 255, 0.96) 25%, #fff 100%);
  box-shadow: 0 8px 24px rgba(34, 20, 40, 0.055);
}

.nav::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, #f4a021 0%, rgba(244, 160, 33, 0.32) 18%, rgba(244, 160, 33, 0) 38%);
}

.brand {
  flex: 0 0 auto;
  gap: 0.85rem;
  min-width: max-content;
  padding: 0.25rem 0;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.82;
}

.brand::after {
  content: "Solartechnik · Düsseldorf";
  display: block;
  max-width: 8.5rem;
  padding-left: 0.85rem;
  border-left: 1px solid #e7d8c5;
  color: #746c74;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.brand img {
  height: 31px;
}

@media (max-width: 1100px) {
  .brand::after {
    content: "Solartechnik aus Düsseldorf";
    max-width: 7.6rem;
    font-size: 0.62rem;
  }
}

@media (max-width: 980px) {
  .nav {
    min-height: 58px;
    padding-top: 0.42rem;
    padding-bottom: 0.42rem;
  }

  .brand img {
    height: 28px;
  }
}

@media (max-width: 640px) {
  .nav {
    gap: 0.75rem;
    min-height: 60px;
  }

  .brand {
    gap: 0.55rem;
    min-width: 0;
  }

  .brand::after {
    content: "Solartechnik ·\A Düsseldorf";
    display: block;
    max-width: 5.9rem;
    padding-left: 0.55rem;
    white-space: pre-line;
    font-size: 0.54rem;
    letter-spacing: 0.045em;
    line-height: 1.28;
  }

  .brand img {
    height: 26px;
  }

  .nav-toggle {
    flex: 0 0 2.2rem;
  }
}

/* FAQ page: editorial overview and guided accordion */
.faq-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(4.75rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
  border-bottom: 1px solid #eee9f0;
  background:
    radial-gradient(circle at 87% 18%, rgba(244, 160, 33, 0.14), transparent 17rem),
    radial-gradient(circle at 73% 105%, rgba(11, 99, 206, 0.11), transparent 24rem),
    linear-gradient(135deg, #fff 0%, #f8fafb 58%, #f3f6f8 100%);
}

.faq-hero::after {
  content: "?";
  position: absolute;
  z-index: -1;
  right: max(var(--pad), calc((100vw - 1320px) / 2));
  top: 50%;
  color: rgba(11, 99, 206, 0.045);
  font-size: clamp(15rem, 24vw, 25rem);
  font-weight: 600;
  line-height: 0.7;
  transform: translateY(-42%);
}

.faq-hero__copy {
  width: min(100%, 82.5rem);
  margin: 0 auto;
}

.faq-hero .page-intro__title {
  max-width: 67rem;
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  line-height: 1.04;
}

.faq-hero .lead {
  max-width: 48rem;
  margin-top: 1.45rem;
}

.faq-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.7rem;
}

.faq-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 0.75rem;
  border: 1px solid rgba(11, 99, 206, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #5f5861;
  font-size: 0.78rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.faq-hero__meta span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(244, 160, 33, 0.11);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 7vw, 7rem);
  width: calc(100% - var(--pad) - var(--pad));
  max-width: 82.5rem;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.faq-aside {
  align-self: start;
  position: sticky;
  top: 7.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(11, 99, 206, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(248, 244, 250, 0.96));
  box-shadow: 0 18px 50px rgba(40, 22, 46, 0.075);
}

.faq-aside h2 {
  margin-top: 0.65rem;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.faq-aside > p:not(.kicker) {
  margin: 1rem 0 1.35rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-aside__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.faq-aside__topics span {
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  background: #fff3df;
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 600;
}

.faq-aside .text-link {
  margin-top: 0;
}

.faq-section .faq-list {
  align-content: start;
  gap: 0.85rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.faq-section .faq-list details {
  border-color: #e6e0e8;
  border-radius: 18px;
  box-shadow: 0 9px 30px rgba(45, 26, 52, 0.045);
}

.faq-section .faq-list summary {
  grid-template-columns: minmax(0, 1fr) 2.25rem;
  gap: 1rem;
  min-height: 5.2rem;
  padding: 1.15rem 1.2rem;
  font-size: 1.02rem;
}

.faq-section .faq-list summary::before {
  display: none;
}

.faq-section .faq-list summary::after {
  width: 2.25rem;
  height: 2.25rem;
}

.faq-section .faq-list details[open] summary {
  color: var(--purple);
}

.faq-section .faq-list details p {
  margin-left: 1.2rem;
  padding: 0 4.7rem 1.55rem 0;
  color: #5d5860;
}

.faq-section .faq-list summary:focus-visible {
  outline: 3px solid rgba(244, 160, 33, 0.45);
  outline-offset: -3px;
  border-radius: 16px;
}

.faq-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: calc(100% - var(--pad) - var(--pad));
  max-width: 82.5rem;
  margin-right: auto;
  margin-left: auto;
  background:
    radial-gradient(circle at 85% 20%, rgba(244, 160, 33, 0.18), transparent 15rem),
    linear-gradient(135deg, #102536 0%, #183b52 100%);
  box-shadow: 0 24px 65px rgba(36, 18, 42, 0.18);
}

.faq-cta .kicker {
  color: var(--teal);
}

.faq-cta h2 {
  margin-top: 0.6rem;
}

@media (max-width: 980px) {
  .faq-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .faq-hero {
    padding-top: 3.75rem;
    padding-bottom: 3.25rem;
  }

  .faq-hero::after {
    right: -1rem;
    font-size: 13rem;
  }

  .faq-hero .page-intro__title {
    font-size: clamp(2.15rem, 10vw, 2.85rem);
  }

  .faq-hero__meta {
    gap: 0.45rem;
  }

  .faq-hero__meta span {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
  }

  .faq-section {
    width: calc(100% - var(--pad) - var(--pad));
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .faq-aside {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .faq-section .faq-list summary {
    grid-template-columns: minmax(0, 1fr) 2rem;
    gap: 0.7rem;
    min-height: 4.6rem;
    padding: 0.95rem;
    font-size: 0.94rem;
  }

  .faq-section .faq-list summary::after {
    width: 2rem;
    height: 2rem;
  }

  .faq-section .faq-list details p {
    margin-left: 0.95rem;
    padding: 0 1rem 1.2rem 0;
    font-size: 0.92rem;
  }

  .faq-cta {
    width: calc(100% - var(--pad) - var(--pad));
  }
}

/* Brand-aligned primary action in the navigation */
.nav .nav-cta {
  border: 1px solid rgba(11, 99, 206, 0.22);
  background: linear-gradient(135deg, var(--purple) 0%, #2d7fe0 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(11, 99, 206, 0.2);
}

.nav .nav-cta:hover {
  background: linear-gradient(135deg, #084b9a 0%, #0b63ce 100%);
  box-shadow: 0 11px 27px rgba(11, 99, 206, 0.27);
  transform: translateY(-1px);
}

.nav .nav-cta:focus-visible {
  outline: 3px solid rgba(244, 160, 33, 0.52);
  outline-offset: 3px;
}

/* Refined tabular trust strip below the homepage hero */
.trust {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 var(--pad);
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(11, 99, 206, 0.09);
  border-bottom: 1px solid #e7e2e9;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(11, 99, 206, 0.035), transparent 32%, rgba(244, 160, 33, 0.035)),
    #faf9fb;
  box-shadow: none;
  backdrop-filter: none;
}

.trust > div {
  position: relative;
  display: block;
  min-height: 7rem;
  padding: 1.45rem clamp(1.2rem, 2.5vw, 2.2rem);
  border-left: 1px solid #dfd9e2;
  transition: background 0.2s ease;
}

.trust > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust > div:hover {
  background: rgba(255, 255, 255, 0.62);
}

.trust > div::before {
  content: "";
  display: block;
  width: 1.9rem;
  height: 3px;
  margin-bottom: 0.72rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
}

.trust strong {
  display: block;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.3;
}

.trust span {
  display: block;
  margin-top: 0.18rem;
  color: #68626b;
  font-size: 0.82rem;
  line-height: 1.5;
}

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

  .trust > div,
  .trust > div:first-child {
    min-height: 0;
    padding: 1.25rem;
    border-top: 0;
  }

  .trust > div:nth-child(odd) {
    border-left: 0;
  }

  .trust > div:nth-child(n + 3) {
    border-top: 1px solid #ebe6ed;
  }
}

@media (max-width: 640px) {
  .trust {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0 var(--pad);
  }

  .trust > div,
  .trust > div:first-child {
    min-height: 0;
    padding: 1rem;
    border-top: 1px solid #ebe6ed;
    border-left: 0;
  }

  .trust > div:first-child {
    border-top: 0;
  }
}

/* Homepage: consultation promise */
.benefits {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  border-top: 1px solid rgba(11, 99, 206, 0.08);
  background:
    radial-gradient(circle at 92% 8%, rgba(11, 99, 206, 0.1), transparent 25rem),
    radial-gradient(circle at 3% 94%, rgba(244, 160, 33, 0.09), transparent 22rem),
    #f6f8fb;
}

.benefits__inner {
  width: min(100%, 82.5rem);
  margin: 0 auto;
}

.benefits__head {
  max-width: 54rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.benefits__head .kicker {
  margin-bottom: 0.8rem;
}

.benefits__head h2 {
  max-width: 48rem;
  margin: 0;
  font-size: clamp(2.25rem, 4.1vw, 3.65rem);
  line-height: 1.07;
  text-wrap: balance;
}

.benefits__head .lead {
  max-width: 43rem;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

.benefits .benefit-grid {
  grid-template-columns: 1.16fr 0.92fr 0.92fr;
  grid-template-areas:
    "planning personal technical"
    "planning service service";
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
}

.benefits .benefit-grid article {
  position: relative;
  min-height: 12rem;
  padding: clamp(1.55rem, 2.7vw, 2.25rem);
  overflow: hidden;
  border: 1px solid rgba(11, 99, 206, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(35, 63, 88, 0.065);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.benefits .benefit-grid article:nth-child(1) {
  grid-area: planning;
  display: flex;
  min-height: 25rem;
  flex-direction: column;
  justify-content: flex-end;
  border-color: rgba(11, 99, 206, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.35), transparent 55%),
    #e7f1fc;
}

.benefits .benefit-grid article:nth-child(2) {
  grid-area: personal;
}

.benefits .benefit-grid article:nth-child(3) {
  grid-area: technical;
}

.benefits .benefit-grid article:nth-child(4) {
  grid-area: service;
  padding-right: clamp(2rem, 8vw, 7rem);
  border-color: rgba(244, 160, 33, 0.2);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.94) 0 68%, rgba(244, 160, 33, 0.09)),
    #fff;
}

.benefits .benefit-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(1.55rem, 2.7vw, 2.25rem);
  width: 3.25rem;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--purple);
}

.benefits .benefit-grid article:nth-child(4)::before {
  background: var(--teal);
}

.benefits .benefit-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 99, 206, 0.24);
  box-shadow: 0 20px 48px rgba(26, 48, 68, 0.11);
}

.benefits .benefit-grid h3 {
  font-size: clamp(1.08rem, 1.35vw, 1.25rem);
  font-weight: 600;
  line-height: 1.25;
}

.benefits .benefit-grid p {
  max-width: 34rem;
  margin-top: 0.75rem;
  line-height: 1.65;
}

@media (max-width: 1799px) {
  .benefits .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "planning personal"
      "technical service";
  }

  .benefits .benefit-grid article:nth-child(1) {
    min-height: 0;
    justify-content: flex-start;
  }

  .benefits .benefit-grid article:nth-child(4) {
    padding-right: clamp(1.55rem, 2.7vw, 2.25rem);
  }
}

@media (max-width: 760px) {
  .benefits .benefit-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "planning"
      "personal"
      "technical"
      "service";
  }

  .benefits .benefit-grid article {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .benefits {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .benefits .benefit-grid article,
  .benefits .benefit-grid article:nth-child(1) {
    min-height: 0;
  }

  .benefits .benefit-grid article:nth-child(4) {
    padding-right: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefits .benefit-grid article {
    transition: none;
  }
}
