:root {
  --solab-yellow: #ffc928;
  --solab-yellow-dark: #f0b800;
  --solab-yellow-soft: #fff3c4;

  --solab-green: #29659c;
  --solab-green-dark: #18332b;

  --solab-dark: #17211d;
  --solab-text: #24322d;
  --solab-muted: #63726c;

  --solab-cream: #f7f2e8;
  --solab-cream-light: #fbf8f1;
  --solab-white: #ffffff;

  --solab-border: rgba(23, 33, 29, 0.12);
  --solab-shadow: 0 18px 50px rgba(23, 33, 29, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--solab-text);
  background: var(--solab-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

/* HEADER */

.solab-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 26px 0;
  pointer-events: none;
}

.solab-header__inner {
  pointer-events: auto;
}

.solab-header {
  transition: padding 0.25s ease, transform 0.25s ease;
}

.solab-header__inner {
  transition: min-height 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

body.is-scrolled .solab-header {
  padding: 14px 0;
}

body.is-scrolled .solab-header__inner {
  min-height: 62px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 42px rgba(23, 33, 29, 0.10);
}

.solab-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 33, 29, 0.08);
  box-shadow: var(--solab-shadow);
  backdrop-filter: blur(14px);
}

.solab-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--solab-dark);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 23px;
  line-height: 1;
}

.solab-logo__sun {
  width: 31px;
  height: 19px;
  border: 6px solid var(--solab-yellow);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  flex: 0 0 auto;
}

.solab-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.solab-nav a {
  position: relative;
  color: var(--solab-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  transition: color 0.2s ease;
}

.solab-nav a:not(.solab-nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--solab-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.solab-nav a:hover {
  color: var(--solab-green);
}

.solab-nav a:hover::after {
  transform: scaleX(1);
}

.solab-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--solab-yellow);
  color: #181407 !important;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(255, 201, 40, 0.2);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.solab-nav__cta:hover {
  background: var(--solab-yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255, 201, 40, 0.26);
}

.solab-nav__cta::after {
  display: none;
}

/* HERO */

.solab-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--solab-cream);
  isolation: isolate;
}

.solab-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../img/solab-hero-pvt.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.solab-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(247, 242, 232, 0.99) 0%,
      rgba(247, 242, 232, 0.96) 27%,
      rgba(247, 242, 232, 0.78) 49%,
      rgba(247, 242, 232, 0.22) 76%,
      rgba(247, 242, 232, 0.04) 100%
    );
}

.solab-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(247, 242, 232, 0) 0%,
      rgba(247, 242, 232, 0.82) 70%,
      rgba(247, 242, 232, 1) 100%
    );
  pointer-events: none;
}

.solab-hero__inner {
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 690px) 1fr;
  align-items: center;
  padding: 154px 0 78px;
  position: relative;
}

.solab-hero__content {
  max-width: 690px;
}

.solab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 26px;
  color: var(--solab-green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solab-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--solab-yellow);
  flex: 0 0 auto;
}

.solab-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(46px, 5.4vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 830;
}

.solab-hero__lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #52615c;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.65;
  font-weight: 450;
}

.solab-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.solab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 820;
  font-size: 15px;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.solab-btn--primary {
  background: var(--solab-yellow);
  color: #181407;
  box-shadow: 0 14px 30px rgba(255, 201, 40, 0.2);
}

.solab-btn--primary:hover {
  background: var(--solab-yellow-dark);
  box-shadow: 0 18px 34px rgba(255, 201, 40, 0.26);
}

.solab-btn--secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--solab-dark);
  border: 1px solid rgba(23, 33, 29, 0.16);
  backdrop-filter: blur(10px);
}

.solab-btn--secondary:hover {
  border-color: rgba(46, 143, 106, 0.35);
  background: rgba(255, 255, 255, 0.92);
}



/* SUBTLE HERO ENERGY ANIMATION */

.solab-hero__energy {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.solab-energy-line {
  position: absolute;
  display: block;
  opacity: 0.55;
  filter: blur(0.2px);
}

/* Gelber solarer Energiefluss über dem Dach */
.solab-energy-line--solar {
  top: 21%;
  right: -8%;
  width: 48%;
  height: 120px;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 201, 40, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 52% 42%, rgba(255, 201, 40, 0.75) 0 2px, transparent 4px),
    radial-gradient(circle at 78% 57%, rgba(255, 201, 40, 0.7) 0 2px, transparent 4px),
    linear-gradient(
      100deg,
      transparent 0%,
      rgba(255, 201, 40, 0) 15%,
      rgba(255, 201, 40, 0.55) 38%,
      rgba(255, 255, 255, 0.9) 48%,
      rgba(255, 201, 40, 0.55) 58%,
      rgba(255, 201, 40, 0) 82%,
      transparent 100%
    );
  clip-path: polygon(
    0 58%,
    12% 45%,
    25% 52%,
    38% 36%,
    52% 42%,
    66% 26%,
    82% 34%,
    100% 16%,
    100% 24%,
    82% 42%,
    66% 34%,
    52% 50%,
    38% 44%,
    25% 60%,
    12% 53%,
    0 66%
  );
  animation: solabSolarFlow 7.5s ease-in-out infinite;
}

/* Türkiser thermischer Energiefluss am Gebäude */
.solab-energy-line--thermal {
  right: 0%;
  bottom: 14%;
  width: 39%;
  height: 170px;
  opacity: 0.42;
  background:
    radial-gradient(circle at 18% 70%, rgba(71, 232, 219, 0.75) 0 2px, transparent 4px),
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(71, 232, 219, 0.0) 18%,
      rgba(71, 232, 219, 0.65) 44%,
      rgba(255, 255, 255, 0.75) 54%,
      rgba(71, 232, 219, 0.50) 66%,
      rgba(71, 232, 219, 0.0) 100%
    );
  clip-path: polygon(
    0 74%,
    20% 74%,
    31% 68%,
    31% 36%,
    38% 24%,
    44% 36%,
    44% 68%,
    58% 74%,
    100% 74%,
    100% 80%,
    58% 80%,
    44% 74%,
    38% 42%,
    31% 74%,
    20% 80%,
    0 80%
  );
  animation: solabThermalPulse 6.8s ease-in-out infinite;
}

/* Sehr leichter Aktivierungs-Glow über den Modulen */
.solab-roof-glow {
  position: absolute;
  right: 8%;
  top: 30%;
  width: 36%;
  height: 32%;
  opacity: 0.16;
  background:
    linear-gradient(
      110deg,
      transparent 0%,
      rgba(255, 255, 255, 0) 36%,
      rgba(255, 255, 255, 0.85) 48%,
      rgba(255, 201, 40, 0.45) 53%,
      rgba(255, 255, 255, 0) 66%,
      transparent 100%
    );
  transform: rotate(-8deg);
  mix-blend-mode: screen;
  animation: solabRoofShimmer 8.5s ease-in-out infinite;
}

/* Dezente technische Punkte rechts oben */
.solab-tech-dots {
  position: absolute;
  top: 12%;
  right: 5%;
  width: 260px;
  height: 180px;
  opacity: 0.22;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 201, 40, 0.65) 0 1px, transparent 1.6px);
  background-size: 22px 22px, 46px 46px;
  background-position: 0 0, 8px 8px;
  animation: solabDotsFloat 10s ease-in-out infinite;
}

/* ANIMATIONS */

@keyframes solabSolarFlow {
  0%, 100% {
    opacity: 0.32;
    transform: translateX(0) translateY(0);
  }

  45% {
    opacity: 0.68;
    transform: translateX(-18px) translateY(4px);
  }

  70% {
    opacity: 0.46;
    transform: translateX(-26px) translateY(0);
  }
}

@keyframes solabThermalPulse {
  0%, 100% {
    opacity: 0.25;
    transform: translateY(0);
  }

  50% {
    opacity: 0.52;
    transform: translateY(-5px);
  }
}

@keyframes solabRoofShimmer {
  0%, 22% {
    opacity: 0;
    transform: translateX(-26%) rotate(-8deg);
  }

  45% {
    opacity: 0.18;
  }

  68%, 100% {
    opacity: 0;
    transform: translateX(42%) rotate(-8deg);
  }
}

@keyframes solabDotsFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.18;
  }

  50% {
    transform: translateY(-8px);
    opacity: 0.28;
  }
}

/* Bewegungen für Nutzer reduzieren, die Animationen deaktiviert haben */
@media (prefers-reduced-motion: reduce) {
  .solab-energy-line--solar,
  .solab-energy-line--thermal,
  .solab-roof-glow,
  .solab-tech-dots {
    animation: none;
  }
}

/* PLACEHOLDER SECTIONS, FALLS DU DIREKT WEITERBAUST */

.solab-section {
  padding: 110px 0;
  background: var(--solab-cream-light);
}

.solab-section--white {
  background: var(--solab-white);
}

.solab-section--cream {
  background: var(--solab-cream);
}

.solab-section__eyebrow {
  margin: 0 0 16px;
  color: var(--solab-green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solab-section h2 {
  max-width: 760px;
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.solab-section__lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--solab-muted);
  font-size: 19px;
  line-height: 1.65;
}


/* OVERVIEW SECTION */

.solab-overview {
  padding: 120px 0;
  background: #ffffff;
}

.solab-overview__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 72px;
  align-items: center;
}

.solab-overview__content {
  max-width: 720px;
}

.solab-overview h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-overview__lead {
  margin: 28px 0 0;
  color: #52615c;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.65;
}

.solab-overview__text {
  margin: 22px 0 0;
  color: var(--solab-muted);
  font-size: 16px;
  line-height: 1.75;
}

.solab-overview__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(23, 33, 29, 0.08);
}

.solab-overview__features {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 34px;
  border-top: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-feature {
  padding-right: 12px;
}

.solab-feature span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--solab-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.solab-feature h3 {
  margin: 0 0 10px;
  color: var(--solab-dark);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.solab-feature p {
  margin: 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .solab-overview {
    padding: 92px 0;
  }

  .solab-overview__intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .solab-overview__media {
    max-width: 720px;
  }

  .solab-overview__features {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 52px;
  }
}

@media (max-width: 720px) {
  .solab-overview {
    padding: 76px 0;
  }

  .solab-overview h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-overview__lead {
    font-size: 18px;
    line-height: 1.65;
  }

  .solab-overview__text {
    font-size: 16px;
    line-height: 1.68;
  }

  .solab-overview__media img {
    border-radius: 14px;
  }

  .solab-feature h3 {
    font-size: 22px;
  }
}

/* CRAFT SECTION */

.solab-craft {
  padding: 0 0 124px;
  background: #ffffff;
}

.solab-craft__grid {
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
  gap: 78px;
  align-items: center;
}

.solab-craft__media {
  position: relative;
}

.solab-craft__media::before {
  content: "";
  position: absolute;
  left: -26px;
  top: -26px;
  width: 48%;
  height: 44%;
  background: var(--solab-cream);
  z-index: 0;
}

.solab-craft__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(23, 33, 29, 0.10);
}

.solab-craft__content {
  max-width: 720px;
}

.solab-craft h2 {
  max-width: 720px;
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.1vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-craft__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #52615c;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.65;
}

.solab-craft__list {
  margin-top: 38px;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(23, 33, 29, 0.11);
}

.solab-craft__list article {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.11);
}

.solab-craft__list article > span {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--solab-yellow);
  box-shadow: 0 0 0 6px rgba(255, 201, 40, 0.16);
}

.solab-craft__list h3 {
  margin: 0 0 7px;
  color: var(--solab-dark);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.solab-craft__list p {
  max-width: 560px;
  margin: 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.65;
}

.solab-craft__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: var(--solab-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 850;
  border-bottom: 2px solid var(--solab-yellow);
  padding-bottom: 6px;
}

.solab-craft__link span {
  transition: transform 0.2s ease;
}

.solab-craft__link:hover span {
  transform: translateX(4px);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .solab-craft {
    padding-bottom: 92px;
  }

  .solab-craft__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .solab-craft__media {
    max-width: 720px;
  }

  .solab-craft__media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  .solab-craft {
    padding-bottom: 78px;
  }

  .solab-craft__grid {
    gap: 38px;
  }

  .solab-craft__media::before {
    left: -14px;
    top: -14px;
  }

  .solab-craft__media img {
    aspect-ratio: 4 / 3;
  }

  .solab-craft h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-craft__lead {
    font-size: 18px;
    line-height: 1.65;
  }

  .solab-craft__list {
    margin-top: 32px;
  }

  .solab-craft__list article {
    gap: 16px;
    padding: 20px 0;
  }

  .solab-craft__list h3 {
    font-size: 20px;
  }
}
/* STRENGTHS / ICON SECTION */

.solab-strengths {
  padding: 112px 0;
  background: #ffffff;
  border-top: 1px solid rgba(23, 33, 29, 0.08);
}

.solab-strengths__head {
  max-width: 760px;
  margin-bottom: 58px;
}

.solab-strengths h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.07;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-strengths__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 33, 29, 0.11);
  border-left: 1px solid rgba(23, 33, 29, 0.11);
}

.solab-strength {
  min-height: 300px;
  padding: 34px 28px;
  border-right: 1px solid rgba(23, 33, 29, 0.11);
  border-bottom: 1px solid rgba(23, 33, 29, 0.11);
  background: #ffffff;
  transition: background 0.2s ease;
}

.solab-strength:hover {
  background: #fbf8f1;
}

.solab-strength__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  border-radius: 14px;
  font-size: 22px;
}

.solab-strength h3 {
  max-width: 230px;
  margin: 0 0 14px;
  color: var(--solab-dark);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-strength p {
  max-width: 260px;
  margin: 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* RESPONSIVE */

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

@media (max-width: 720px) {
  .solab-strengths {
    padding: 78px 0;
  }

  .solab-strengths__head {
    margin-bottom: 42px;
  }

  .solab-strengths h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-strengths__grid {
    grid-template-columns: 1fr;
  }

  .solab-strength {
    min-height: auto;
    padding: 28px 24px;
  }

  .solab-strength__icon {
    margin-bottom: 24px;
  }

  .solab-strength h3,
  .solab-strength p {
    max-width: none;
  }
}


/* RESPONSIVE */

@media (max-width: 1080px) {
  .solab-nav {
    gap: 18px;
  }

  .solab-hero__inner {
    grid-template-columns: minmax(0, 650px) 1fr;
  }
}

@media (max-width: 980px) {
  .solab-header {
    padding: 18px 0;
  }

  .solab-header__inner {
    min-height: 66px;
    border-radius: 14px;
  }

  .solab-hero {
    min-height: auto;
  }

  .solab-hero__bg {
    background-position: 62% center;
  }

  .solab-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(247, 242, 232, 0.99) 0%,
        rgba(247, 242, 232, 0.97) 42%,
        rgba(247, 242, 232, 0.70) 72%,
        rgba(247, 242, 232, 0.50) 100%
      );
  }

  .solab-hero::after {
    height: 220px;
  }

  .solab-hero__inner {
    min-height: auto;
    display: block;
    padding: 136px 0 72px;
  }

  .solab-hero__content {
    max-width: 720px;
  }

  .solab-hero__cards,
  .solab-hero-card,
  .solab-hero__mobile-facts {
    display: none !important;
  }
}

@media (max-width: 820px) {
  .solab-nav a:not(.solab-nav__cta) {
    display: none;
  }

  .solab-header__inner {
    padding-left: 18px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .solab-hero {
    min-height: 100svh;
  }

  .solab-hero__bg {
    background-size: auto 78%;
    background-position: 62% 92%;
  }

  .solab-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(247, 242, 232, 0.99) 0%,
        rgba(247, 242, 232, 0.98) 44%,
        rgba(247, 242, 232, 0.78) 68%,
        rgba(247, 242, 232, 0.54) 86%,
        rgba(247, 242, 232, 0.86) 100%
      );
  }

  .solab-hero::after {
    height: 260px;
    background:
      linear-gradient(
        180deg,
        rgba(247, 242, 232, 0) 0%,
        rgba(247, 242, 232, 0.70) 56%,
        rgba(247, 242, 232, 1) 100%
      );
  }

  .solab-hero__inner {
    min-height: 100svh;
    padding-top: 118px;
    padding-bottom: 40px;
  }

  .solab-hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 62px);
    line-height: 1.03;
    letter-spacing: -0.06em;
  }

  .solab-hero__lead {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.62;
  }

  .solab-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 34px;
  }

  .solab-btn {
    width: 100%;
    min-height: 58px;
    border-radius: 14px;
  }

  .solab-hero__energy {
    opacity: 0.55;
  }

  .solab-energy-line--solar {
    top: 27%;
    right: -26%;
    width: 92%;
    opacity: 0.28;
  }

  .solab-energy-line--thermal {
    right: -28%;
    bottom: 17%;
    width: 92%;
    opacity: 0.20;
  }

  .solab-roof-glow {
    right: -10%;
    top: 58%;
    width: 80%;
    height: 24%;
    opacity: 0.08;
  }

  .solab-tech-dots {
    top: 16%;
    right: 4%;
    opacity: 0.10;
  }

  .solab-section {
    padding: 78px 0;
  }
}

@media (max-width: 520px) {
  .solab-header__inner {
    min-height: 62px;
    padding: 0 14px;
  }

  .solab-logo {
    font-size: 20px;
  }

  .solab-logo__sun {
    width: 28px;
    height: 17px;
    border-width: 5px;
    border-bottom: 0;
  }

  .solab-nav__cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .solab-eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .solab-eyebrow::before {
    width: 26px;
  }

  .solab-hero__bg {
    background-size: auto 74%;
    background-position: 61% 90%;
  }

 .solab-hero__inner {
   padding-top: 116px;
   padding-bottom: 36px;
 }
}

/* APPLICATIONS SECTION */

.solab-applications {
  padding: 116px 0 126px;
  background: #ffffff;
  border-top: 1px solid rgba(23, 33, 29, 0.08);
}

.solab-applications__head {
  max-width: 860px;
  margin-bottom: 58px;
}

.solab-applications h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-applications__head p:not(.solab-section__eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--solab-muted);
  font-size: 18px;
  line-height: 1.7;
}

.solab-applications__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 18px;
}

.solab-application {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  background: var(--solab-cream);
  isolation: isolate;
}

.solab-application--large {
  grid-column: span 2;
  grid-row: span 2;
}

.solab-application img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.solab-application::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(23, 33, 29, 0.08) 0%,
      rgba(23, 33, 29, 0.38) 52%,
      rgba(23, 33, 29, 0.78) 100%
    );
}

.solab-application:hover img {
  transform: scale(1.045);
}

.solab-application div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #ffffff;
}

.solab-application span {
  display: block;
  margin-bottom: 12px;
  color: var(--solab-yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.solab-application h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-application p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

/* RESPONSIVE */

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

  .solab-application--large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 720px) {
  .solab-applications {
    padding: 78px 0 86px;
  }

  .solab-applications__head {
    margin-bottom: 42px;
  }

  .solab-applications h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-applications__head p:not(.solab-section__eyebrow) {
    font-size: 16px;
    line-height: 1.68;
  }

  .solab-applications__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 14px;
  }

  .solab-application--large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .solab-application div {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .solab-application h3 {
    font-size: 24px;
  }
}

/* TECH SECTION */

.solab-tech {
  padding: 116px 0;
  background: #ffffff;
  border-top: 1px solid rgba(23, 33, 29, 0.08);
}

.solab-tech__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.9fr);
  gap: 90px;
  align-items: start;
}

.solab-tech__content {
  position: sticky;
  top: 120px;
  max-width: 720px;
}

.solab-tech h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-tech__lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: #52615c;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.65;
}

.solab-tech__list {
  border-top: 1px solid rgba(23, 33, 29, 0.12);
}

.solab-tech__list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.12);
}

.solab-tech__icon {
  width: 46px;
  height: 46px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 18px;
  flex: 0 0 auto;
}

.solab-tech__icon i {
  line-height: 1;
}

.solab-tech__list h3 {
  margin: 0 0 10px;
  color: var(--solab-dark);
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-tech__list p {
  max-width: 560px;
  margin: 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.68;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .solab-tech {
    padding: 92px 0;
  }

  .solab-tech__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .solab-tech__content {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .solab-tech {
    padding: 78px 0;
  }

  .solab-tech h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-tech__lead {
    font-size: 18px;
    line-height: 1.65;
  }

  .solab-tech__list article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    padding: 26px 0;
  }

  .solab-tech__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 16px;
  }

  .solab-tech__list h3 {
    font-size: 22px;
  }

  .solab-tech__list p {
    font-size: 15px;
  }
}

/* TRUST SECTION */

.solab-trust {
  padding: 116px 0 126px;
  background: #ffffff;
  border-top: 1px solid rgba(23, 33, 29, 0.08);
}

.solab-trust__head {
  max-width: 820px;
  margin-bottom: 58px;
}

.solab-trust h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.1vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-trust__head p:not(.solab-section__eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--solab-muted);
  font-size: 18px;
  line-height: 1.7;
}

.solab-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 33, 29, 0.11);
  border-left: 1px solid rgba(23, 33, 29, 0.11);
}

.solab-trust-card {
  min-height: 245px;
  padding: 30px 28px;
  border-right: 1px solid rgba(23, 33, 29, 0.11);
  border-bottom: 1px solid rgba(23, 33, 29, 0.11);
  background: #ffffff;
}

.solab-trust-card__logo {
  height: 54px;
  display: flex;
  align-items: center;
  margin-bottom: 34px;
}

.solab-trust-card__logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--solab-cream);
  color: var(--solab-dark);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.solab-trust-card h3 {
  margin: 0 0 10px;
  color: var(--solab-dark);
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-trust-card p {
  max-width: 320px;
  margin: 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* echte Logos später */
.solab-trust-card__logo img {
  max-width: 160px;
  max-height: 44px;
  object-fit: contain;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .solab-trust {
    padding: 92px 0 104px;
  }

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

@media (max-width: 720px) {
  .solab-trust {
    padding: 78px 0 86px;
  }

  .solab-trust__head {
    margin-bottom: 42px;
  }

  .solab-trust h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-trust__head p:not(.solab-section__eyebrow) {
    font-size: 16px;
    line-height: 1.68;
  }

  .solab-trust__grid {
    grid-template-columns: 1fr;
  }

  .solab-trust-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .solab-trust-card__logo {
    margin-bottom: 22px;
  }

  .solab-trust-card h3 {
    font-size: 21px;
  }
}

/* PARTNER FINDER */

.solab-partnerfinder {
  padding: 0 0 126px;
  background: #ffffff;
}

.solab-partnerfinder__box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 70px;
  align-items: center;
  padding: 64px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #fbf8f1 0%, #fff6cf 100%);
  border: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-partnerfinder__box::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 201, 40, 0.28);
  pointer-events: none;
}

.solab-partnerfinder__box::after {
  content: "";
  position: absolute;
  right: 46px;
  bottom: 42px;
  width: 130px;
  height: 78px;
  border: 18px solid rgba(255, 201, 40, 0.28);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  pointer-events: none;
}

.solab-partnerfinder__content,
.solab-partnerfinder__form {
  position: relative;
  z-index: 1;
}

.solab-partnerfinder h2 {
  max-width: 700px;
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.1vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-partnerfinder__content p:not(.solab-section__eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--solab-muted);
  font-size: 18px;
  line-height: 1.7;
}

.solab-partnerfinder__form {
  padding: 34px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 22px 54px rgba(23, 33, 29, 0.08);
}

.solab-partnerfinder__form label {
  display: block;
  margin-bottom: 12px;
  color: var(--solab-dark);
  font-size: 15px;
  font-weight: 850;
}

.solab-partnerfinder__inputrow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.solab-partnerfinder__inputrow input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(23, 33, 29, 0.16);
  background: #ffffff;
  color: var(--solab-dark);
  font: inherit;
  font-size: 17px;
  font-weight: 650;
  outline: none;
}

.solab-partnerfinder__inputrow input:focus {
  border-color: var(--solab-green);
  box-shadow: 0 0 0 4px rgba(46, 143, 106, 0.12);
}

.solab-partnerfinder__inputrow button {
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  background: var(--solab-yellow);
  color: #181407;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.solab-partnerfinder__inputrow button:hover {
  background: var(--solab-yellow-dark);
  transform: translateY(-1px);
}

.solab-partnerfinder__form p {
  margin: 14px 0 0;
  color: var(--solab-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .solab-partnerfinder {
    padding-bottom: 104px;
  }

  .solab-partnerfinder__box {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 46px;
  }

  .solab-partnerfinder__form {
    max-width: 640px;
  }
}

@media (max-width: 720px) {
  .solab-partnerfinder {
    padding-bottom: 86px;
  }

  .solab-partnerfinder__box {
    padding: 34px 24px;
  }

  .solab-partnerfinder h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-partnerfinder__content p:not(.solab-section__eyebrow) {
    font-size: 16px;
    line-height: 1.68;
  }

  .solab-partnerfinder__form {
    padding: 24px;
  }

  .solab-partnerfinder__inputrow {
    grid-template-columns: 1fr;
  }

  .solab-partnerfinder__inputrow button {
    width: 100%;
  }
}

/* FOOTER */

.solab-footer {
  background: var(--solab-cream);
  border-top: 1px solid rgba(23, 33, 29, 0.08);
}

.solab-footer__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  padding: 96px 0 72px;
  border-bottom: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-footer__cta h2 {
  max-width: 820px;
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-footer__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 14px;
  background: var(--solab-yellow);
  color: #181407;
  text-decoration: none;
  font-size: 16px;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(255, 201, 40, 0.20);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.solab-footer__cta-link:hover {
  background: var(--solab-yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(255, 201, 40, 0.26);
}

.solab-footer__cta-link span {
  transition: transform 0.2s ease;
}

.solab-footer__cta-link:hover span {
  transform: translateX(4px);
}

.solab-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(160px, 0.7fr));
  gap: 54px;
  padding: 58px 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-footer__brand {
  max-width: 420px;
}

.solab-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--solab-dark);
  text-decoration: none;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.solab-footer__logo strong {
  font-weight: 900;
}

.solab-footer__brand p,
.solab-footer__col p {
  margin: 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.7;
}

.solab-footer__col h3 {
  margin: 0 0 18px;
  color: var(--solab-dark);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.solab-footer__col a {
  display: block;
  width: fit-content;
  margin: 0 0 12px;
  color: var(--solab-muted);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.solab-footer__col a:hover {
  color: var(--solab-green);
}

.solab-footer__bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--solab-muted);
  font-size: 14px;
}

.solab-footer__bottom p {
  margin: 0;
}

.solab-footer__bottom div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.solab-footer__bottom a {
  color: var(--solab-muted);
  text-decoration: none;
}

.solab-footer__bottom a:hover {
  color: var(--solab-green);
}

/* FOOTER RESPONSIVE */

@media (max-width: 980px) {
  .solab-footer__cta {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 82px 0 58px;
  }

  .solab-footer__cta-link {
    width: fit-content;
  }

  .solab-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
  }

  .solab-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .solab-footer__cta {
    padding: 72px 0 48px;
  }

  .solab-footer__cta h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-footer__cta-link {
    width: 100%;
    min-height: 58px;
  }

  .solab-footer__main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 46px 0;
  }

  .solab-footer__bottom {
    min-height: auto;
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .solab-footer__bottom div {
    gap: 18px;
    flex-wrap: wrap;
  }
}
.solab-feature__mark {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--solab-yellow);
}

/* ABSORBER SUBPAGE */

.absorber-page {
  background: #ffffff;
}

/* SUB HERO */

.solab-subhero {
  position: relative;
  overflow: hidden;
  padding: 158px 0 96px;
  background: var(--solab-cream);
  isolation: isolate;
}

.solab-subhero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 201, 40, 0.24) 0%, rgba(255, 201, 40, 0) 34%),
    linear-gradient(135deg, #fbf8f1 0%, #ffffff 58%, #fff4c9 100%);
}

.solab-subhero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -210px;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 201, 40, 0.22);
  pointer-events: none;
}

.solab-subhero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  gap: 80px;
  align-items: center;
}

.solab-subhero__content {
  max-width: 760px;
}

.solab-subhero h1 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 860;
}

.solab-subhero__lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #52615c;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.65;
}

.solab-subhero__media {
  position: relative;
}

.solab-subhero__media::before {
  content: "";
  position: absolute;
  left: -26px;
  bottom: -26px;
  width: 68%;
  height: 64%;
  background: var(--solab-yellow);
  opacity: 0.82;
  z-index: -1;
}

.solab-subhero__media::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 130px;
  height: 78px;
  border: 18px solid rgba(255, 201, 40, 0.42);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  z-index: 1;
  pointer-events: none;
}

.solab-subhero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.25;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(23, 33, 29, 0.12);
}

/* ABSORBER HERO VARIATION */

.solab-absorber-hero .solab-subhero__media img {
  object-position: center;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .solab-subhero {
    padding: 138px 0 82px;
  }

  .solab-subhero__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .solab-subhero__media {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .solab-subhero {
    padding: 126px 0 72px;
  }

  .solab-subhero h1 {
    font-size: clamp(40px, 12vw, 62px);
    line-height: 1.03;
  }

  .solab-subhero__lead {
    font-size: 17px;
    line-height: 1.65;
  }

  .solab-subhero__media::before {
    left: -14px;
    bottom: -14px;
  }

  .solab-subhero__media::after {
    right: -14px;
    top: -14px;
    width: 96px;
    height: 58px;
    border-width: 13px;
    border-bottom: 0;
  }
}
/* ABSORBER INTRO */

.solab-absorber-intro {
  padding: 116px 0;
  background: #ffffff;
}

.solab-absorber-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  gap: 88px;
  align-items: start;
}

.solab-absorber-intro__content {
  max-width: 780px;
}

.solab-absorber-intro h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-absorber-intro__lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--solab-text);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.65;
}

.solab-absorber-intro__text {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--solab-muted);
  font-size: 16px;
  line-height: 1.75;
}

.solab-absorber-intro__facts {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(23, 33, 29, 0.12);
}

.solab-absorber-intro__facts article {
  display: grid;
  gap: 12px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.12);
}

.solab-absorber-intro__icon {
  width: 44px;
  height: 44px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 17px;
}

.solab-absorber-intro__facts h3 {
  margin: 0 0 8px;
  color: var(--solab-dark);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-absorber-intro__facts p {
  max-width: 520px;
  margin: 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .solab-absorber-intro {
    padding: 92px 0;
  }

  .solab-absorber-intro__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .solab-absorber-intro__facts {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .solab-absorber-intro {
    padding: 78px 0;
  }

  .solab-absorber-intro h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-absorber-intro__lead {
    font-size: 17px;
    line-height: 1.65;
  }

  .solab-absorber-intro__facts article {
    gap: 16px;
    padding: 26px 0;
  }

  .solab-absorber-intro__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 16px;
  }

  .solab-absorber-intro__facts h3 {
    font-size: 21px;
  }
}

/* ABSORBER TYPES */

.solab-absorber-types {
  padding: 116px 0;
  background: var(--solab-cream-light);
  border-top: 1px solid rgba(23, 33, 29, 0.08);
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
}

.solab-absorber-types__head {
  max-width: 840px;
  margin-bottom: 58px;
}

.solab-absorber-types h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-absorber-types__head p:not(.solab-section__eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--solab-muted);
  font-size: 18px;
  line-height: 1.7;
}

.solab-absorber-types__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.solab-absorber-type {
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 18px 50px rgba(23, 33, 29, 0.05);
}

.solab-absorber-type summary {
  list-style: none;
  min-height: 104px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  cursor: pointer;
}

.solab-absorber-type summary::-webkit-details-marker {
  display: none;
}

.solab-absorber-type__title {
  display: grid;
  gap: 8px;
}

.solab-absorber-type__title strong {
  color: var(--solab-dark);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 840;
}

.solab-absorber-type__title small {
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.55;
}

.solab-absorber-type__toggle {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--solab-yellow);
  color: #181407;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.solab-absorber-type__toggle::after {
  content: "+";
  margin-left: 10px;
  font-size: 18px;
  line-height: 1;
}

.solab-absorber-type[open] .solab-absorber-type__toggle::after {
  content: "–";
}

.solab-absorber-type__body {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 34px;
  padding: 0 32px 34px;
}

.solab-absorber-type__media {
  background: var(--solab-cream);
  border: 1px solid rgba(23, 33, 29, 0.10);
  padding: 16px;
}

.solab-absorber-type__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 2.7;
  object-fit: contain;
}

.solab-absorber-type__text {
  max-width: 680px;
  align-self: center;
}

.solab-absorber-type__text p {
  margin: 0 0 18px;
  color: var(--solab-text);
  font-size: 16px;
  line-height: 1.7;
}

.solab-absorber-type__text ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solab-absorber-type__text li {
  position: relative;
  padding-left: 22px;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.55;
}

.solab-absorber-type__text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--solab-yellow);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .solab-absorber-types {
    padding: 92px 0;
  }

  .solab-absorber-type__body {
    grid-template-columns: 1fr;
  }

  .solab-absorber-type__media {
    max-width: 420px;
  }
}

@media (max-width: 720px) {
  .solab-absorber-types {
    padding: 78px 0;
  }

  .solab-absorber-types__head {
    margin-bottom: 42px;
  }

  .solab-absorber-types h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-absorber-types__head p:not(.solab-section__eyebrow) {
    font-size: 16px;
    line-height: 1.68;
  }

  .solab-absorber-type summary {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .solab-absorber-type__title strong {
    font-size: 23px;
  }

  .solab-absorber-type__body {
    padding: 0 24px 28px;
    gap: 24px;
  }

  .solab-absorber-type__toggle {
    width: fit-content;
  }
}

/* ABSORBER QUALITY */

.solab-absorber-quality {
  padding: 116px 0;
  background: #ffffff;
}

.solab-absorber-quality__head {
  max-width: 920px;
  margin-bottom: 58px;
}

.solab-absorber-quality h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-absorber-quality__head p:not(.solab-section__eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--solab-muted);
  font-size: 18px;
  line-height: 1.7;
}

.solab-absorber-quality__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.solab-absorber-quality-card {
  min-height: 300px;
  padding: 30px 26px;
  background: var(--solab-cream-light);
  border: 1px solid rgba(23, 33, 29, 0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.solab-absorber-quality-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(23, 33, 29, 0.08);
}

.solab-absorber-quality-card__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 18px;
}

.solab-absorber-quality-card h3 {
  margin: 0 0 12px;
  color: var(--solab-dark);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-absorber-quality-card p {
  margin: 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .solab-absorber-quality__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solab-absorber-quality-card {
    min-height: 250px;
  }
}

@media (max-width: 720px) {
  .solab-absorber-quality {
    padding: 78px 0;
  }

  .solab-absorber-quality__head {
    margin-bottom: 42px;
  }

  .solab-absorber-quality h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-absorber-quality__head p:not(.solab-section__eyebrow) {
    font-size: 16px;
    line-height: 1.68;
  }

  .solab-absorber-quality__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solab-absorber-quality-card {
    min-height: auto;
    padding: 26px 24px;
  }

  .solab-absorber-quality-card__icon {
    margin-bottom: 24px;
  }

  .solab-absorber-quality-card h3 {
    font-size: 22px;
  }
}

/* ABSORBER DETAIL */

.solab-absorber-detail {
  padding: 116px 0 126px;
  background: var(--solab-cream-light);
  border-top: 1px solid rgba(23, 33, 29, 0.08);
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
}

.solab-absorber-detail__head {
  max-width: 920px;
  margin-bottom: 66px;
}

.solab-absorber-detail h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-absorber-detail__head p:not(.solab-section__eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--solab-muted);
  font-size: 18px;
  line-height: 1.7;
}

.solab-absorber-detail__blocks {
  display: grid;
  gap: 34px;
}

.solab-absorber-detail-block {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
  gap: 62px;
  align-items: center;
  padding: 34px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 20px 56px rgba(23, 33, 29, 0.06);
}

.solab-absorber-detail-block--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
}

.solab-absorber-detail-block--reverse .solab-absorber-detail-block__media {
  order: 2;
}

.solab-absorber-detail-block--reverse .solab-absorber-detail-block__content {
  order: 1;
}

.solab-absorber-detail-block__media {
  position: relative;
  overflow: hidden;
  background: var(--solab-cream);
}

.solab-absorber-detail-block__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 201, 40, 0.16), rgba(255, 255, 255, 0) 52%);
  pointer-events: none;
}

.solab-absorber-detail-block__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.solab-absorber-detail-block:hover .solab-absorber-detail-block__media img {
  transform: scale(1.035);
}

.solab-absorber-detail-block__content {
  max-width: 680px;
}

.solab-absorber-detail-block__content h3 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 820;
}

.solab-absorber-detail-block__content p:not(.solab-section__eyebrow) {
  margin: 22px 0 0;
  color: var(--solab-text);
  font-size: 17px;
  line-height: 1.7;
}

.solab-absorber-detail-block__content ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.solab-absorber-detail-block__content li {
  position: relative;
  padding-left: 24px;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.6;
}

.solab-absorber-detail-block__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--solab-yellow);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .solab-absorber-detail {
    padding: 92px 0 104px;
  }

  .solab-absorber-detail-block,
  .solab-absorber-detail-block--reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .solab-absorber-detail-block--reverse .solab-absorber-detail-block__media,
  .solab-absorber-detail-block--reverse .solab-absorber-detail-block__content {
    order: initial;
  }

  .solab-absorber-detail-block__media {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .solab-absorber-detail {
    padding: 78px 0 86px;
  }

  .solab-absorber-detail__head {
    margin-bottom: 42px;
  }

  .solab-absorber-detail h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-absorber-detail__head p:not(.solab-section__eyebrow) {
    font-size: 16px;
    line-height: 1.68;
  }

  .solab-absorber-detail-block {
    padding: 24px;
  }

  .solab-absorber-detail-block__content h3 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .solab-absorber-detail-block__content p:not(.solab-section__eyebrow) {
    font-size: 16px;
  }
}

/* ABSORBER LAYER */

.solab-absorber-layer {
  padding: 116px 0;
  background: #ffffff;
}

.solab-absorber-layer__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
  gap: 78px;
  align-items: center;
}

.solab-absorber-layer__media {
  position: relative;
}

.solab-absorber-layer__media::before {
  content: "";
  position: absolute;
  left: -26px;
  bottom: -26px;
  width: 64%;
  height: 58%;
  background: var(--solab-yellow);
  opacity: 0.78;
  z-index: 0;
}

.solab-absorber-layer__media figure {
  position: relative;
  z-index: 1;
  margin: 0;
  background: var(--solab-cream-light);
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 24px 70px rgba(23, 33, 29, 0.10);
}

.solab-absorber-layer__media img {
  display: block;
  width: 100%;
  padding: 34px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #ffffff;
}

.solab-absorber-layer__media figcaption {
  padding: 14px 18px 16px;
  border-top: 1px solid rgba(23, 33, 29, 0.10);
  color: var(--solab-muted);
  font-size: 12px;
  line-height: 1.45;
  background: var(--solab-cream-light);
}

.solab-absorber-layer__content {
  max-width: 720px;
}

.solab-absorber-layer h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-absorber-layer__lead {
  margin: 24px 0 0;
  color: var(--solab-text);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.65;
}

.solab-absorber-layer__points {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid rgba(23, 33, 29, 0.12);
}

.solab-absorber-layer__points article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.12);
}

.solab-absorber-layer__points article > span {
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--solab-yellow);
}

.solab-absorber-layer__points h3 {
  margin: 0 0 7px;
  color: var(--solab-dark);
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 820;
}

.solab-absorber-layer__points p {
  max-width: 560px;
  margin: 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .solab-absorber-layer {
    padding: 92px 0;
  }

  .solab-absorber-layer__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .solab-absorber-layer__media {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .solab-absorber-layer {
    padding: 78px 0;
  }

  .solab-absorber-layer h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-absorber-layer__lead {
    font-size: 17px;
    line-height: 1.65;
  }

  .solab-absorber-layer__media::before {
    left: -14px;
    bottom: -14px;
  }

  .solab-absorber-layer__media img {
    padding: 22px;
  }

  .solab-absorber-layer__media figcaption {
    font-size: 11px;
  }

  .solab-absorber-layer__points {
    margin-top: 32px;
  }

  .solab-absorber-layer__points article {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 14px;
  }

  .solab-absorber-layer__points h3 {
    font-size: 19px;
  }
}

/* COOLING CAPABILITIES */

.solab-cooling-capabilities {
  padding: 116px 0;
  background: #ffffff;
}

.solab-cooling-capabilities__head {
  max-width: 900px;
  margin-bottom: 58px;
}

.solab-cooling-capabilities h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-cooling-capabilities__head p:not(.solab-section__eyebrow) {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--solab-muted);
  font-size: 18px;
  line-height: 1.7;
}

.solab-cooling-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.solab-cooling-capabilities__grid article {
  min-height: 280px;
  padding: 30px 26px;
  background: var(--solab-cream-light);
  border: 1px solid rgba(23, 33, 29, 0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.solab-cooling-capabilities__grid article:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(23, 33, 29, 0.08);
}

.solab-cooling-capabilities__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 18px;
}

.solab-cooling-capabilities__grid h3 {
  margin: 0 0 12px;
  color: var(--solab-dark);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-cooling-capabilities__grid p {
  margin: 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .solab-cooling-capabilities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solab-cooling-capabilities__grid article {
    min-height: 240px;
  }
}

@media (max-width: 720px) {
  .solab-cooling-capabilities {
    padding: 78px 0;
  }

  .solab-cooling-capabilities__head {
    margin-bottom: 42px;
  }

  .solab-cooling-capabilities h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-cooling-capabilities__head p:not(.solab-section__eyebrow) {
    font-size: 16px;
    line-height: 1.68;
  }

  .solab-cooling-capabilities__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solab-cooling-capabilities__grid article {
    min-height: auto;
    padding: 26px 24px;
  }

  .solab-cooling-capabilities__icon {
    margin-bottom: 24px;
  }

  .solab-cooling-capabilities__grid h3 {
    font-size: 22px;
  }
}
/* COOLING PRODUCTION */

.solab-cooling-production {
  padding: 0 0 126px;
  background: #ffffff;
}

.solab-cooling-production__grid {
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
  gap: 78px;
  align-items: center;
}

.solab-cooling-production__media {
  position: relative;
}

.solab-cooling-production__media::before {
  content: "";
  position: absolute;
  left: -26px;
  bottom: -26px;
  width: 64%;
  height: 58%;
  background: var(--solab-yellow);
  opacity: 0.78;
  z-index: 0;
}

.solab-cooling-production__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(23, 33, 29, 0.10);
}

.solab-cooling-production__content {
  max-width: 720px;
}

.solab-cooling-production h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-cooling-production__lead {
  margin: 24px 0 0;
  color: var(--solab-text);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.65;
}

.solab-cooling-production__list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(23, 33, 29, 0.12);
}

.solab-cooling-production__list article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.12);
}

.solab-cooling-production__list article > span {
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--solab-yellow);
}

.solab-cooling-production__list h3 {
  margin: 0 0 7px;
  color: var(--solab-dark);
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 820;
}

.solab-cooling-production__list p {
  max-width: 560px;
  margin: 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .solab-cooling-production {
    padding: 0 0 104px;
  }

  .solab-cooling-production__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .solab-cooling-production__media {
    max-width: 640px;
  }
}

@media (max-width: 720px) {
  .solab-cooling-production {
    padding: 0 0 86px;
  }

  .solab-cooling-production h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-cooling-production__lead {
    font-size: 17px;
    line-height: 1.65;
  }

  .solab-cooling-production__media::before {
    left: -14px;
    bottom: -14px;
  }

  .solab-cooling-production__list article {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 14px;
  }

  .solab-cooling-production__list h3 {
    font-size: 19px;
  }
}

/* CONTACT PAGE */

.contact-page {
  background: #ffffff;
}

.solab-contact-hero {
  padding-bottom: 96px;
}

.solab-contact-hero__content {
  max-width: 940px;
}

.solab-contact-main {
  padding: 116px 0;
  background: #ffffff;
}

.solab-contact-main__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
  gap: 86px;
  align-items: start;
}

.solab-contact-main__content {
  max-width: 760px;
}

.solab-contact-main h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-contact-main__lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--solab-text);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.65;
}

.solab-contact-main__areas {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(23, 33, 29, 0.12);
}

.solab-contact-main__areas article {
  padding: 24px 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.12);
}

.solab-contact-main__areas h3 {
  margin: 0 0 8px;
  color: var(--solab-dark);
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-contact-main__areas p {
  max-width: 620px;
  margin: 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* FORM SIDE */

.solab-contact-side {
  position: sticky;
  top: 120px;
}

.solab-contact-form {
  padding: 34px;
  background: var(--solab-cream-light);
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 22px 54px rgba(23, 33, 29, 0.08);
}

.solab-contact-form h3 {
  margin: 0 0 26px;
  color: var(--solab-dark);
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 820;
}

.solab-contact-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--solab-dark);
  font-size: 14px;
  font-weight: 850;
}

.solab-contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.solab-contact-form input,
.solab-contact-form select,
.solab-contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(23, 33, 29, 0.16);
  background: #ffffff;
  color: var(--solab-dark);
  font: inherit;
  font-size: 15px;
  outline: none;
  border-radius: 0;
}

.solab-contact-form textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.solab-contact-form input:focus,
.solab-contact-form select:focus,
.solab-contact-form textarea:focus {
  border-color: var(--solab-green);
  box-shadow: 0 0 0 4px rgba(46, 143, 106, 0.12);
}

.solab-contact-form button {
  width: fit-content;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  background: var(--solab-yellow);
  color: #181407;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.solab-contact-form button:hover {
  background: var(--solab-yellow-dark);
  transform: translateY(-1px);
}

.solab-contact-form button span {
  margin-left: 8px;
}

/* CONTACT INFO NEXT TO FORM */

.solab-contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.solab-contact-info article {
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-contact-info h3 {
  margin: 0 0 10px;
  color: var(--solab-dark);
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 820;
}

.solab-contact-info p,
.solab-contact-info a {
  margin: 0;
  color: var(--solab-muted);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
}

.solab-contact-info a:hover {
  color: var(--solab-green);
}

/* CONTACT PERSONS */

.solab-contacts {
  padding: 116px 0 126px;
  background: var(--solab-cream-light);
  border-top: 1px solid rgba(23, 33, 29, 0.08);
}

.solab-contacts__head {
  max-width: 860px;
  margin-bottom: 58px;
}

.solab-contacts h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-contacts__head p:not(.solab-section__eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--solab-muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.solab-contact-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 18px 50px rgba(23, 33, 29, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.solab-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(23, 33, 29, 0.08);
}

.solab-contact-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
  background: var(--solab-cream);
}

.solab-contact-card div {
  padding: 24px;
}

.solab-contact-card p {
  margin: 0 0 8px;
  color: var(--solab-green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.solab-contact-card h3 {
  margin: 0 0 16px;
  color: var(--solab-dark);
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-contact-card a {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: var(--solab-muted);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
}

.solab-contact-card a:hover {
  color: var(--solab-green);
}

/* DEPARTMENTS */

.solab-contact-departments {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.solab-contact-departments article {
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-contact-departments h3 {
  margin: 0 0 10px;
  color: var(--solab-dark);
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 820;
}

.solab-contact-departments a {
  color: var(--solab-muted);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.solab-contact-departments a:hover {
  color: var(--solab-green);
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .solab-contact-main__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .solab-contact-side {
    position: relative;
    top: auto;
    max-width: 760px;
  }

  .solab-contacts__grid {
    grid-template-columns: 1fr;
  }

  .solab-contact-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .solab-contact-card img {
    height: 100%;
    aspect-ratio: auto;
  }

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

@media (max-width: 720px) {
  .solab-contact-hero {
    padding-bottom: 72px;
  }

  .solab-contact-main {
    padding: 78px 0;
  }

  .solab-contact-main h2,
  .solab-contacts h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-contact-main__lead {
    font-size: 17px;
    line-height: 1.65;
  }

  .solab-contact-main__areas {
    margin-top: 34px;
  }

  .solab-contact-form {
    padding: 24px;
  }

  .solab-contact-form h3 {
    font-size: 28px;
  }

  .solab-contact-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .solab-contact-form button {
    width: 100%;
  }

  .solab-contact-info article {
    padding: 20px;
  }

  .solab-contacts {
    padding: 78px 0 86px;
  }

  .solab-contacts__head {
    margin-bottom: 42px;
  }

  .solab-contacts__head p:not(.solab-section__eyebrow) {
    font-size: 16px;
    line-height: 1.68;
  }

  .solab-contact-card {
    display: block;
  }

  .solab-contact-card img {
    aspect-ratio: 4 / 3.2;
  }

  .solab-contact-departments {
    grid-template-columns: 1fr;
  }
}

.solab-contact-side {
  position: sticky;
  top: 120px;
}

.solab-contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

/* COMPANY VISUALS */

.solab-company-visuals {
  padding: 116px 0;
  background: var(--solab-cream-light);
  border-top: 1px solid rgba(23, 33, 29, 0.08);
}

.solab-company-visuals__head {
  max-width: 900px;
  margin-bottom: 58px;
}

.solab-company-visuals h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-company-visuals__head p:not(.solab-section__eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--solab-muted);
  font-size: 18px;
  line-height: 1.7;
}

.solab-company-visuals__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
}

.solab-company-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--solab-cream);
  border: 1px solid rgba(23, 33, 29, 0.10);
  isolation: isolate;
}

.solab-company-visual--large {
  min-height: 520px;
}

.solab-company-visual img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.solab-company-visual:hover img {
  transform: scale(1.035);
}

.solab-company-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(23, 33, 29, 0.04) 0%,
      rgba(23, 33, 29, 0.28) 52%,
      rgba(23, 33, 29, 0.78) 100%
    );
}

.solab-company-visual div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #ffffff;
}

.solab-company-visual p {
  margin: 0 0 10px;
  color: var(--solab-yellow);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.solab-company-visual h3 {
  max-width: 560px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 820;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .solab-company-visuals {
    padding: 92px 0;
  }

  .solab-company-visuals__grid {
    grid-template-columns: 1fr;
  }

  .solab-company-visual,
  .solab-company-visual--large {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .solab-company-visuals {
    padding: 78px 0;
  }

  .solab-company-visuals__head {
    margin-bottom: 42px;
  }

  .solab-company-visuals h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-company-visuals__head p:not(.solab-section__eyebrow) {
    font-size: 16px;
    line-height: 1.68;
  }

  .solab-company-visual,
  .solab-company-visual--large {
    min-height: 360px;
  }

  .solab-company-visual div {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .solab-company-visual h3 {
    font-size: clamp(24px, 7.5vw, 34px);
  }
}
/* RESPONSIVE CONTACT CARDS */

@media (max-width: 1080px) {
  .solab-contacts__grid {
    grid-template-columns: 1fr;
  }

  .solab-contact-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: stretch;
  }

  .solab-contact-card img {
    width: 220px;
    height: 100%;
    min-height: 240px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .solab-contact-card div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .solab-contact-card {
    display: block;
  }

  .solab-contact-card img {
    width: 100%;
    height: auto;
    max-height: 320px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .solab-contact-card div {
    display: block;
    padding: 22px;
  }

  .solab-contact-card h3,
  .solab-contact-card p,
  .solab-contact-card a {
    overflow-wrap: anywhere;
  }
}

/* MOBILE NAV */

.solab-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.solab-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--solab-dark);
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.solab-header.is-open .solab-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.solab-header.is-open .solab-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.solab-header.is-open .solab-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 920px) {
  .solab-header__inner {
    position: relative;
  }

  .solab-nav-toggle {
    display: inline-flex;
  }

  .solab-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(23, 33, 29, 0.10);
    box-shadow: 0 18px 50px rgba(23, 33, 29, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .solab-header.is-open .solab-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .solab-nav a {
    display: flex !important;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 10px;
    color: var(--solab-dark);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
  }

  .solab-nav a:hover {
    background: var(--solab-cream-light);
    color: var(--solab-green);
  }

  .solab-nav__cta {
    justify-content: center;
    margin-top: 6px;
    background: var(--solab-yellow);
    color: #181407 !important;
  }

  .solab-nav__cta:hover {
    background: var(--solab-yellow-dark) !important;
    color: #181407 !important;
  }
}

@media (max-width: 520px) {
  .solab-nav {
    left: 0;
    right: 0;
  }

  .solab-nav-toggle {
    width: 40px;
    height: 40px;
  }
}

/* PARTNER PAGE */

.partner-page {
  background: #ffffff;
}

.solab-partner-hero .solab-subhero__media img {
  object-position: center;
}

/* PARTNER SEARCH */

.solab-partner-search {
  padding: 116px 0;
  background: #ffffff;
}

.solab-partner-search__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  gap: 82px;
  align-items: start;
}

.solab-partner-search__content {
  max-width: 760px;
}

.solab-partner-search h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-partner-search__content p:not(.solab-section__eyebrow) {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--solab-muted);
  font-size: 18px;
  line-height: 1.7;
}

.solab-partner-search__box {
  position: sticky;
  top: 120px;
  padding: 34px;
  background: var(--solab-cream-light);
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 22px 54px rgba(23, 33, 29, 0.08);
}

.solab-partner-search__form {
  display: grid;
  gap: 14px;
}

.solab-partner-search__form label {
  color: var(--solab-dark);
  font-size: 14px;
  font-weight: 850;
}

.solab-partner-search__form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.solab-partner-search__form input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(23, 33, 29, 0.16);
  background: #ffffff;
  color: var(--solab-dark);
  font: inherit;
  font-size: 17px;
  font-weight: 750;
  outline: none;
  border-radius: 0;
}

.solab-partner-search__form input:focus {
  border-color: var(--solab-green);
  box-shadow: 0 0 0 4px rgba(46, 143, 106, 0.12);
}

.solab-partner-search__form button {
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  background: var(--solab-yellow);
  color: #181407;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.solab-partner-search__form button:hover {
  background: var(--solab-yellow-dark);
  transform: translateY(-1px);
}

.solab-partner-search__form button span {
  margin-left: 8px;
}

.solab-partner-search__error {
  margin: 2px 0 0;
  color: #a33120;
  font-size: 14px;
  line-height: 1.5;
}

/* PARTNER RESULTS */

.solab-partner-results {
  margin-top: 74px;
}

.solab-partner-results__head {
  max-width: 860px;
  margin-bottom: 34px;
}

.solab-partner-results__head h3,
.solab-partner-empty h3 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 820;
}

.solab-partner-results__head p:not(.solab-section__eyebrow),
.solab-partner-empty p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--solab-muted);
  font-size: 17px;
  line-height: 1.7;
}

.solab-partner-results__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.solab-partner-card {
  padding: 28px;
  background: var(--solab-cream-light);
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 18px 50px rgba(23, 33, 29, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.solab-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(23, 33, 29, 0.08);
}

.solab-partner-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.solab-partner-card__top span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  border-radius: 999px;
  font-size: 13px;
}

.solab-partner-card__top p {
  margin: 0;
  color: var(--solab-green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.solab-partner-card h4 {
  margin: 0;
  color: var(--solab-dark);
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 820;
}

.solab-partner-card__location {
  margin: 14px 0 0;
  color: var(--solab-text);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 750;
}

.solab-partner-card__street {
  margin: 4px 0 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.55;
}

.solab-partner-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.solab-partner-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  color: var(--solab-dark);
  font-size: 12px;
  font-weight: 800;
}

.solab-partner-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.solab-partner-card__links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.12);
  color: var(--solab-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.solab-partner-card__links a:hover {
  background: var(--solab-green);
  border-color: var(--solab-green);
  color: #ffffff;
}

/* EMPTY STATE */

.solab-partner-empty {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 38px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 201, 40, 0.22) 0%, rgba(255, 201, 40, 0) 34%),
    var(--solab-cream-light);
  border: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-partner-empty__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}

/* BENEFITS */

.solab-partner-benefits {
  padding: 116px 0;
  background: var(--solab-cream-light);
  border-top: 1px solid rgba(23, 33, 29, 0.08);
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
}

.solab-partner-benefits__head {
  max-width: 920px;
  margin-bottom: 58px;
}

.solab-partner-benefits h2,
.solab-partner-suggest h2,
.solab-partner-apply h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-partner-benefits__head p:not(.solab-section__eyebrow),
.solab-partner-suggest__content > p,
.solab-partner-apply__grid > div > p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--solab-muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.solab-partner-benefits__grid article {
  padding: 30px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 16px 46px rgba(23, 33, 29, 0.045);
}

.solab-partner-benefits__grid article > div {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  border-radius: 14px;
  font-size: 18px;
}

.solab-partner-benefits__grid h3 {
  margin: 0;
  color: var(--solab-dark);
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-partner-benefits__grid p {
  margin: 14px 0 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* SUGGEST SECTION */

.solab-partner-suggest {
  padding: 116px 0;
  background: #ffffff;
}

.solab-partner-suggest__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  gap: 86px;
  align-items: start;
}

.solab-partner-suggest__content {
  max-width: 760px;
}

.solab-partner-note {
  margin-top: 40px;
  padding: 28px;
  background: var(--solab-cream-light);
  border-left: 6px solid var(--solab-yellow);
}

.solab-partner-note h3 {
  margin: 0;
  color: var(--solab-dark);
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-partner-note p {
  margin: 14px 0 0;
  color: var(--solab-text);
  font-size: 16px;
  line-height: 1.7;
}

/* APPLY SECTION */

.solab-partner-apply {
  padding: 116px 0 126px;
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 201, 40, 0.25) 0%, rgba(255, 201, 40, 0) 32%),
    linear-gradient(135deg, #17211d 0%, #20382f 100%);
  color: #ffffff;
}

.solab-partner-apply .solab-section__eyebrow {
  color: var(--solab-yellow);
}

.solab-partner-apply h2 {
  color: #ffffff;
}

.solab-partner-apply__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 0.88fr);
  gap: 86px;
  align-items: start;
}

.solab-partner-apply__grid > div {
  max-width: 720px;
  position: sticky;
  top: 120px;
}

.solab-partner-apply__grid > div > p {
  color: rgba(255, 255, 255, 0.76);
}

/* PARTNER FORMS */

.solab-partner-form {
  padding: 34px;
  background: var(--solab-cream-light);
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 22px 54px rgba(23, 33, 29, 0.08);
}

.solab-partner-form--dark {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.solab-partner-form h3 {
  margin: 0 0 26px;
  color: var(--solab-dark);
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 820;
}

.solab-partner-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--solab-dark);
  font-size: 14px;
  font-weight: 850;
}

.solab-partner-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.solab-partner-form input,
.solab-partner-form select,
.solab-partner-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(23, 33, 29, 0.16);
  background: #ffffff;
  color: var(--solab-dark);
  font: inherit;
  font-size: 15px;
  outline: none;
  border-radius: 0;
}

.solab-partner-form textarea {
  min-height: 138px;
  padding-top: 14px;
  resize: vertical;
}

.solab-partner-form input:focus,
.solab-partner-form select:focus,
.solab-partner-form textarea:focus {
  border-color: var(--solab-green);
  box-shadow: 0 0 0 4px rgba(46, 143, 106, 0.12);
}

.solab-partner-form button {
  width: fit-content;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  background: var(--solab-yellow);
  color: #181407;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.solab-partner-form button:hover {
  background: var(--solab-yellow-dark);
  transform: translateY(-1px);
}

.solab-partner-form button span {
  margin-left: 8px;
}

/* RESPONSIVE PARTNER PAGE */

@media (max-width: 1080px) {
  .solab-partner-search__grid,
  .solab-partner-suggest__grid,
  .solab-partner-apply__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .solab-partner-search__box,
  .solab-partner-apply__grid > div {
    position: relative;
    top: auto;
  }

  .solab-partner-results__grid,
  .solab-partner-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solab-partner-empty {
    grid-template-columns: 1fr;
  }

  .solab-partner-empty__actions {
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .solab-partner-search,
  .solab-partner-benefits,
  .solab-partner-suggest {
    padding: 78px 0;
  }

  .solab-partner-apply {
    padding: 78px 0 86px;
  }

  .solab-partner-search h2,
  .solab-partner-benefits h2,
  .solab-partner-suggest h2,
  .solab-partner-apply h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-partner-search__content p:not(.solab-section__eyebrow),
  .solab-partner-benefits__head p:not(.solab-section__eyebrow),
  .solab-partner-suggest__content > p,
  .solab-partner-apply__grid > div > p {
    font-size: 16px;
    line-height: 1.68;
  }

  .solab-partner-search__box,
  .solab-partner-form {
    padding: 24px;
  }

  .solab-partner-search__form > div {
    grid-template-columns: 1fr;
  }

  .solab-partner-search__form button {
    width: 100%;
  }

  .solab-partner-results {
    margin-top: 54px;
  }

  .solab-partner-results__grid,
  .solab-partner-benefits__grid {
    grid-template-columns: 1fr;
  }

  .solab-partner-card {
    padding: 24px;
  }

  .solab-partner-card h4 {
    font-size: 25px;
  }

  .solab-partner-empty {
    padding: 26px;
  }

  .solab-partner-empty__actions {
    flex-direction: column;
  }

  .solab-partner-empty__actions .solab-btn {
    width: 100%;
    justify-content: center;
  }

  .solab-partner-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .solab-partner-form button {
    width: 100%;
  }

  .solab-partner-note {
    padding: 24px;
  }
}

/* FORM FEEDBACK */

.solab-form-feedback {
  padding: 112px 0 0;
  background: var(--solab-cream);
}

.solab-form-feedback__success,
.solab-form-feedback__error {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  border: 1px solid rgba(23, 33, 29, 0.12);
  background: #ffffff;
}

.solab-form-feedback__success {
  color: var(--solab-green-dark);
  border-left: 6px solid var(--solab-green);
}

.solab-form-feedback__error {
  color: #9b2c1f;
  border-left: 6px solid #c73d2b;
}

/* PRIVACY CHECKBOX */

.solab-privacy-check {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  margin: 8px 0 22px;
  color: var(--solab-muted) !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.55;
}

.solab-privacy-check input {
  width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 2px 0 0;
  padding: 0 !important;
  accent-color: var(--solab-yellow);
  cursor: pointer;
}

.solab-privacy-check span {
  display: block;
}

.solab-privacy-check a {
  color: var(--solab-green);
  font-weight: 850;
  text-decoration: none;
}

.solab-privacy-check a:hover {
  text-decoration: underline;
}

/* ADMIN */

.solab-admin-page,
.solab-admin-login {
  min-height: 100vh;
  background: var(--solab-cream-light);
  color: var(--solab-dark);
}

.solab-admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(23, 33, 29, 0.10);
  backdrop-filter: blur(18px);
}

.solab-admin-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.solab-admin-header nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.solab-admin-header nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  color: var(--solab-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.solab-admin-header nav a:hover {
  background: var(--solab-yellow);
}

.solab-admin-main {
  padding: 72px 0 100px;
}

.solab-admin-title {
  max-width: 900px;
  margin-bottom: 34px;
}

.solab-admin-title p {
  margin: 0 0 10px;
  color: var(--solab-green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.solab-admin-title h1 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.solab-admin-alert {
  margin-bottom: 24px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.12);
  font-size: 15px;
  font-weight: 800;
}

.solab-admin-alert--success {
  color: var(--solab-green-dark);
  border-left: 6px solid var(--solab-green);
}

.solab-admin-alert--error {
  color: #9b2c1f;
  border-left: 6px solid #c73d2b;
}

.solab-admin-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.solab-admin-stats article {
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-admin-stats span {
  display: block;
  margin-bottom: 10px;
  color: var(--solab-muted);
  font-size: 13px;
  font-weight: 800;
}

.solab-admin-stats strong {
  display: block;
  color: var(--solab-dark);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.solab-admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.solab-admin-filters a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  color: var(--solab-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.solab-admin-filters a.is-active,
.solab-admin-filters a:hover {
  background: var(--solab-yellow);
  border-color: var(--solab-yellow);
}

.solab-admin-list {
  display: grid;
  gap: 16px;
}

.solab-admin-empty {
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  color: var(--solab-muted);
  font-weight: 750;
}

.solab-admin-company {
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 16px 46px rgba(23, 33, 29, 0.045);
}

.solab-admin-company__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 28px;
  padding: 26px;
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
}

.solab-admin-company__meta {
  margin: 0 0 8px;
  color: var(--solab-green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.solab-admin-company h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 830;
}

.solab-admin-company__location {
  margin: 10px 0 0;
  color: var(--solab-text);
  font-size: 16px;
  font-weight: 760;
}

.solab-admin-company__trades {
  margin: 8px 0 0;
  color: var(--solab-muted);
  font-size: 14px;
  line-height: 1.5;
}

.solab-admin-company__contact {
  display: grid;
  gap: 7px;
  align-content: start;
  min-width: 0;
}

.solab-admin-company__contact span,
.solab-admin-company__contact a {
  color: var(--solab-muted);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.solab-admin-company__contact a:hover {
  color: var(--solab-green);
}

.solab-admin-company__form {
  padding: 22px 26px 26px;
}

.solab-admin-company__controls {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
}

.solab-admin-company__form label {
  display: grid;
  gap: 8px;
  color: var(--solab-dark);
  font-size: 13px;
  font-weight: 850;
}

.solab-admin-company__form select,
.solab-admin-company__form textarea,
.solab-admin-login__box input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(23, 33, 29, 0.16);
  background: #ffffff;
  color: var(--solab-dark);
  font: inherit;
  font-size: 14px;
  outline: none;
  border-radius: 0;
}

.solab-admin-company__form textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.solab-admin-company__form button,
.solab-admin-login__box button {
  min-height: 48px;
  margin-top: 14px;
  padding: 0 18px;
  border: 0;
  background: var(--solab-yellow);
  color: #181407;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.solab-admin-company__form button:hover,
.solab-admin-login__box button:hover {
  background: var(--solab-yellow-dark);
}

.solab-admin-check {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px !important;
  align-items: center !important;
  min-height: 46px;
}

.solab-admin-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--solab-yellow);
}

.solab-admin-check span {
  font-size: 14px;
  font-weight: 850;
}

/* ADMIN LOGIN */

.solab-admin-login__page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.solab-admin-login__box {
  width: min(100%, 440px);
  padding: 34px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 24px 70px rgba(23, 33, 29, 0.10);
}

.solab-admin-login__box .solab-logo {
  margin-bottom: 34px;
}

.solab-admin-login__box h1 {
  margin: 0;
  color: var(--solab-dark);
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 850;
}

.solab-admin-login__box p {
  margin: 14px 0 24px;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.6;
}

.solab-admin-login__box label {
  display: grid;
  gap: 8px;
  color: var(--solab-dark);
  font-size: 14px;
  font-weight: 850;
}

/* ADMIN RESPONSIVE */

@media (max-width: 1080px) {
  .solab-admin-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solab-admin-company__main {
    grid-template-columns: 1fr;
  }

  .solab-admin-company__controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .solab-admin-header__inner {
    min-height: 72px;
    gap: 14px;
  }

  .solab-admin-header nav {
    gap: 6px;
  }

  .solab-admin-header nav a {
    padding: 0 10px;
    font-size: 12px;
  }

  .solab-admin-main {
    padding: 48px 0 76px;
  }

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

  .solab-admin-company__main,
  .solab-admin-company__form {
    padding: 22px;
  }

  .solab-admin-company h2 {
    font-size: 24px;
  }

  .solab-admin-login__box {
    padding: 26px;
  }
}

.solab-admin-form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.solab-admin-company__form input,
.solab-admin-company__form select,
.solab-admin-company__form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(23, 33, 29, 0.16);
  background: #ffffff;
  color: var(--solab-dark);
  font: inherit;
  font-size: 14px;
  outline: none;
  border-radius: 0;
}

.solab-admin-company__form textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.solab-admin-trades {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.solab-admin-trades label {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px !important;
  min-height: 36px;
  padding: 0 12px;
  background: var(--solab-cream-light);
  border: 1px solid rgba(23, 33, 29, 0.10);
  color: var(--solab-dark);
  font-size: 13px;
  font-weight: 800;
}

.solab-admin-trades input {
  width: 16px !important;
  height: 16px !important;
  min-height: 16px !important;
  padding: 0 !important;
  accent-color: var(--solab-yellow);
}

@media (max-width: 1180px) {
  .solab-admin-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .solab-admin-form-grid {
    grid-template-columns: 1fr;
  }
}

/* FLEXIBLE PVT SOLUTIONS */

.solab-solutions {
  padding: 116px 0;
  background: var(--solab-cream-light);
  border-top: 1px solid rgba(23, 33, 29, 0.08);
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
}

.solab-solutions__head {
  max-width: 920px;
  margin-bottom: 58px;
}

.solab-solutions__head h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-solutions__head > p:not(.solab-section__eyebrow) {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--solab-muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.solab-solution-card {
  position: relative;
  padding: 34px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 18px 50px rgba(23, 33, 29, 0.05);
}

.solab-solution-card--retrofit {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 201, 40, 0.20) 0%,
      rgba(255, 201, 40, 0) 34%
    ),
    #ffffff;
}

.solab-solution-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 19px;
}

.solab-solution-card__eyebrow {
  margin: 0 0 10px;
  color: var(--solab-green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.solab-solution-card h3 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 820;
}

.solab-solution-card__intro {
  margin: 20px 0 0;
  color: var(--solab-text);
  font-size: 17px;
  line-height: 1.65;
}

.solab-solution-card__list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.solab-solution-card__list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.solab-solution-card__list li > span {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--solab-yellow-soft);
  color: var(--solab-green-dark);
  font-size: 10px;
}

.solab-solution-card__list p {
  margin: 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.58;
}

.solab-solution-card__note {
  margin: 26px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(23, 33, 29, 0.10);
  color: var(--solab-dark);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 780;
}

/* HEAT PUMP CALLOUT */

.solab-heatpump {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 30px 34px;
  background: var(--solab-dark);
  color: #ffffff;
}

.solab-heatpump__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 21px;
}

.solab-heatpump .solab-section__eyebrow {
  color: var(--solab-yellow);
}

.solab-heatpump h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 820;
}

.solab-heatpump__content > p:not(.solab-section__eyebrow) {
  max-width: 820px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.solab-heatpump .solab-craft__link {
  flex-shrink: 0;
  color: var(--solab-yellow);
}

.solab-heatpump .solab-craft__link:hover {
  color: #ffffff;
}

@media (max-width: 1080px) {
  .solab-solutions__grid {
    grid-template-columns: 1fr;
  }

  .solab-heatpump {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .solab-heatpump .solab-craft__link {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .solab-solutions {
    padding: 78px 0;
  }

  .solab-solutions__head {
    margin-bottom: 42px;
  }

  .solab-solutions__head h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-solutions__head > p:not(.solab-section__eyebrow) {
    font-size: 16px;
    line-height: 1.68;
  }

  .solab-solution-card {
    padding: 26px;
  }

  .solab-solution-card h3 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .solab-solution-card__intro {
    font-size: 16px;
  }

  .solab-heatpump {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .solab-heatpump .solab-craft__link {
    grid-column: auto;
  }
}

.solab-systemclip {
  padding: 116px 0;
  background: #ffffff;
}

.solab-systemclip__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.solab-systemclip__content h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-systemclip__lead {
  margin: 22px 0 0;
  color: var(--solab-muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 680px;
}

.solab-systemclip__points {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.solab-systemclip__points article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-systemclip__points span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
}

.solab-systemclip__points h3 {
  margin: 0;
  color: var(--solab-dark);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.solab-systemclip__points p {
  margin: 8px 0 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.6;
}

.solab-systemclip__link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--solab-dark);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.solab-systemclip__link:hover {
  color: var(--solab-green);
}

.solab-systemclip__media {
  min-width: 0;
}

.solab-systemclip__video-wrap {
  position: relative;
  overflow: hidden;
  background: #f4f1ea;
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 24px 60px rgba(23, 33, 29, 0.08);
}

.solab-systemclip__video {
  display: block;
  width: 100%;
  height: auto;
}

.solab-systemclip__caption {
  margin: 14px 0 0;
  color: var(--solab-muted);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .solab-systemclip__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .solab-systemclip {
    padding: 78px 0;
  }

  .solab-systemclip__content h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .solab-systemclip__lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .solab-systemclip__points article {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .solab-systemclip__points h3 {
    font-size: 19px;
  }
}

/* REAL LOGO WITH CSS FALLBACK */

.solab-brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: auto;
  min-width: 0;
  text-decoration: none;
}

.solab-brand-logo__image {
  display: block;
  width: auto;
  height: 46px;
  max-width: 190px;
  object-fit: contain;
}

.solab-brand-logo__fallback {
  display: none;
  align-items: center;
  gap: 11px;
  color: var(--solab-dark);
}

.solab-brand-logo.has-logo-fallback .solab-brand-logo__fallback {
  display: inline-flex;
}

.solab-brand-logo__name {
  color: inherit;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

/* Footer logo */

.solab-brand-logo--footer .solab-brand-logo__image {
  height: 56px;
  max-width: 220px;
}

.solab-brand-logo--footer .solab-brand-logo__fallback {
  color: #ffffff;
}

.solab-brand-logo--footer .solab-brand-logo__name {
  font-size: 28px;
}

/* Make sure the old fallback sun retains its layout */

.solab-brand-logo__fallback .solab-logo__sun {
  flex: 0 0 auto;
}

/* Responsive logo sizes */

@media (max-width: 720px) {
  .solab-brand-logo__image {
    height: 38px;
    max-width: 155px;
  }

  .solab-brand-logo__name {
    font-size: 21px;
  }

  .solab-brand-logo--footer .solab-brand-logo__image {
    height: 48px;
    max-width: 190px;
  }

  .solab-brand-logo--footer .solab-brand-logo__name {
    font-size: 25px;
  }
}

/* KNOWLEDGE PAGE */

.knowledge-page {
  background: #ffffff;
}

/* HERO */

.solab-knowledge-hero {
  padding-bottom: 104px;
}

.solab-knowledge-hero__content {
  max-width: 920px;
}

.solab-knowledge-hero h1 {
  max-width: 860px;
}

/* TOPIC OVERVIEW */

.solab-knowledge-topics {
  padding: 116px 0;
  background: #ffffff;
}

.solab-knowledge-topics__head {
  max-width: 900px;
  margin-bottom: 56px;
}

.solab-knowledge-topics__head h2,
.solab-knowledge-section h2,
.solab-knowledge-feature h2,
.solab-knowledge-retrofit h2,
.solab-knowledge-applications h2,
.solab-knowledge-faq h2,
.solab-knowledge-glossary h2,
.solab-knowledge-next h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.solab-knowledge-topics__head > p:not(.solab-section__eyebrow),
.solab-knowledge-retrofit__head > p:not(.solab-section__eyebrow),
.solab-knowledge-applications__head > p:not(.solab-section__eyebrow),
.solab-knowledge-faq__head > p:not(.solab-section__eyebrow),
.solab-knowledge-glossary__head > p:not(.solab-section__eyebrow),
.solab-knowledge-next__box > div > p:not(.solab-section__eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--solab-muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.solab-knowledge-topic {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 150px;
  padding: 26px;
  background: var(--solab-cream-light);
  border: 1px solid rgba(23, 33, 29, 0.10);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.solab-knowledge-topic:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 143, 106, 0.26);
  box-shadow: 0 20px 54px rgba(23, 33, 29, 0.07);
}

.solab-knowledge-topic > span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 18px;
}

.solab-knowledge-topic h3 {
  margin: 0;
  color: var(--solab-dark);
  font-size: 23px;
  line-height: 1.16;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-knowledge-topic p {
  margin: 9px 0 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* GENERAL KNOWLEDGE SECTIONS */

.solab-knowledge-section {
  padding: 116px 0;
  background: var(--solab-cream-light);
  border-top: 1px solid rgba(23, 33, 29, 0.08);
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
}

.solab-knowledge-section:nth-of-type(even) {
  background: #ffffff;
}

.solab-knowledge-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.82fr);
  gap: 86px;
  align-items: start;
}

.solab-knowledge-section__content {
  max-width: 760px;
}

.solab-knowledge-section__lead {
  margin: 26px 0 0;
  color: var(--solab-text);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.65;
}

.solab-knowledge-section__content > p:not(.solab-section__eyebrow):not(.solab-knowledge-section__lead) {
  margin: 20px 0 0;
  color: var(--solab-muted);
  font-size: 16px;
  line-height: 1.72;
}

/* PROCESS LIST */

.solab-knowledge-process {
  display: grid;
  gap: 16px;
}

.solab-knowledge-process article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 16px 42px rgba(23, 33, 29, 0.045);
}

.solab-knowledge-process__icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 17px;
}

.solab-knowledge-process h3 {
  margin: 0;
  color: var(--solab-dark);
  font-size: 23px;
  line-height: 1.17;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-knowledge-process p {
  margin: 8px 0 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.62;
}

/* FEATURE DARK */

.solab-knowledge-feature {
  padding: 116px 0;
}

.solab-knowledge-feature--dark {
  background:
    radial-gradient(
      circle at 84% 10%,
      rgba(255, 201, 40, 0.22) 0%,
      rgba(255, 201, 40, 0) 34%
    ),
    linear-gradient(135deg, #17211d 0%, #20382f 100%);
  color: #ffffff;
}

.solab-knowledge-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 84px;
  align-items: center;
}

.solab-knowledge-feature--dark .solab-section__eyebrow {
  color: var(--solab-yellow);
}

.solab-knowledge-feature--dark h2 {
  color: #ffffff;
}

.solab-knowledge-feature__content > p:not(.solab-section__eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.solab-knowledge-feature__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.solab-knowledge-feature__facts article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.solab-knowledge-feature__facts h3 {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 820;
}

.solab-knowledge-feature__facts p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.58;
}

/* SYSTEM FLOW */

.solab-knowledge-feature__visual {
  min-width: 0;
}

.solab-knowledge-system {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.20);
}

.solab-knowledge-system article {
  width: 100%;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: var(--solab-cream-light);
  border: 1px solid rgba(23, 33, 29, 0.09);
}

.solab-knowledge-system article span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 18px;
}

.solab-knowledge-system article p {
  margin: 0;
  color: var(--solab-dark);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 820;
}

.solab-knowledge-system > i {
  color: var(--solab-yellow-dark);
  font-size: 18px;
}

/* ABSORBER CARDS */

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

.solab-knowledge-cards article {
  padding: 26px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 16px 44px rgba(23, 33, 29, 0.04);
}

.solab-knowledge-cards article > div {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 17px;
}

.solab-knowledge-cards h3 {
  margin: 0;
  color: var(--solab-dark);
  font-size: 22px;
  line-height: 1.17;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-knowledge-cards p {
  margin: 12px 0 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.62;
}

/* RETROFIT */

.solab-knowledge-retrofit {
  padding: 116px 0;
  background: #ffffff;
}

.solab-knowledge-retrofit__head {
  max-width: 900px;
  margin-bottom: 52px;
}

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

.solab-knowledge-retrofit__grid article {
  padding: 30px;
  background: var(--solab-cream-light);
  border: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-knowledge-retrofit__grid article > span {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 18px;
}

.solab-knowledge-retrofit__grid h3 {
  margin: 0;
  color: var(--solab-dark);
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-knowledge-retrofit__grid p {
  margin: 13px 0 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.65;
}

.solab-knowledge-retrofit__note {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 20px;
  padding: 22px 24px;
  background: var(--solab-yellow-soft);
  border-left: 6px solid var(--solab-yellow);
}

.solab-knowledge-retrofit__note i {
  margin-top: 2px;
  color: var(--solab-green-dark);
}

.solab-knowledge-retrofit__note p {
  margin: 0;
  color: var(--solab-text);
  font-size: 15px;
  line-height: 1.65;
}

/* APPLICATIONS */

.solab-knowledge-applications {
  padding: 116px 0;
  background: var(--solab-cream-light);
  border-top: 1px solid rgba(23, 33, 29, 0.08);
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
}

.solab-knowledge-applications__head {
  max-width: 860px;
  margin-bottom: 52px;
}

.solab-knowledge-applications__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solab-knowledge-applications__grid article {
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-knowledge-applications__grid i {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--solab-green);
  font-size: 24px;
}

.solab-knowledge-applications__grid h3 {
  margin: 0;
  color: var(--solab-dark);
  font-size: 23px;
  line-height: 1.16;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-knowledge-applications__grid p {
  margin: 12px 0 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.62;
}

/* FAQ */

.solab-knowledge-faq {
  padding: 116px 0;
  background: #ffffff;
}

.solab-knowledge-faq__head {
  max-width: 860px;
  margin-bottom: 52px;
}

.solab-knowledge-faq__list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.solab-knowledge-faq__item {
  background: var(--solab-cream-light);
  border: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-knowledge-faq__item summary {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  color: var(--solab-dark);
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 820;
}

.solab-knowledge-faq__item summary::-webkit-details-marker {
  display: none;
}

.solab-knowledge-faq__item summary i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border-radius: 999px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 13px;
  transition: transform 0.22s ease;
}

.solab-knowledge-faq__item[open] summary i {
  transform: rotate(45deg);
}

.solab-knowledge-faq__item > div {
  padding: 0 24px 24px;
}

.solab-knowledge-faq__item > div p {
  max-width: 840px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 33, 29, 0.10);
  color: var(--solab-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* GLOSSARY */

.solab-knowledge-glossary {
  padding: 116px 0;
  background: var(--solab-cream-light);
  border-top: 1px solid rgba(23, 33, 29, 0.08);
}

.solab-knowledge-glossary__head {
  max-width: 860px;
  margin-bottom: 52px;
}

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

.solab-knowledge-glossary__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-knowledge-glossary__item > span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 17px;
  font-weight: 900;
}

.solab-knowledge-glossary__item h3 {
  margin: 0;
  color: var(--solab-dark);
  font-size: 22px;
  line-height: 1.17;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.solab-knowledge-glossary__item p {
  margin: 9px 0 0;
  color: var(--solab-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* NEXT STEP */

.solab-knowledge-next {
  padding: 88px 0 116px;
  background: var(--solab-cream-light);
}

.solab-knowledge-next__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 42px;
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(255, 201, 40, 0.28) 0%,
      rgba(255, 201, 40, 0) 34%
    ),
    #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  box-shadow: 0 20px 54px rgba(23, 33, 29, 0.05);
}

.solab-knowledge-next h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.solab-knowledge-next__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .solab-knowledge-topics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solab-knowledge-section__grid,
  .solab-knowledge-feature__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .solab-knowledge-feature__facts {
    grid-template-columns: 1fr;
  }

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

  .solab-knowledge-next__box {
    grid-template-columns: 1fr;
  }

  .solab-knowledge-next__actions {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .solab-knowledge-hero {
    padding-bottom: 78px;
  }

  .solab-knowledge-topics,
  .solab-knowledge-section,
  .solab-knowledge-feature,
  .solab-knowledge-retrofit,
  .solab-knowledge-applications,
  .solab-knowledge-faq,
  .solab-knowledge-glossary {
    padding: 78px 0;
  }

  .solab-knowledge-next {
    padding: 62px 0 82px;
  }

  .solab-knowledge-topics__head,
  .solab-knowledge-retrofit__head,
  .solab-knowledge-applications__head,
  .solab-knowledge-faq__head,
  .solab-knowledge-glossary__head {
    margin-bottom: 40px;
  }

  .solab-knowledge-topics__head h2,
  .solab-knowledge-section h2,
  .solab-knowledge-feature h2,
  .solab-knowledge-retrofit h2,
  .solab-knowledge-applications h2,
  .solab-knowledge-faq h2,
  .solab-knowledge-glossary h2,
  .solab-knowledge-next h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
  }

  .solab-knowledge-topics__head > p:not(.solab-section__eyebrow),
  .solab-knowledge-retrofit__head > p:not(.solab-section__eyebrow),
  .solab-knowledge-applications__head > p:not(.solab-section__eyebrow),
  .solab-knowledge-faq__head > p:not(.solab-section__eyebrow),
  .solab-knowledge-glossary__head > p:not(.solab-section__eyebrow),
  .solab-knowledge-next__box > div > p:not(.solab-section__eyebrow),
  .solab-knowledge-feature__content > p:not(.solab-section__eyebrow) {
    font-size: 16px;
    line-height: 1.68;
  }

  .solab-knowledge-topics__grid,
  .solab-knowledge-retrofit__grid,
  .solab-knowledge-applications__grid,
  .solab-knowledge-glossary__grid,
  .solab-knowledge-cards {
    grid-template-columns: 1fr;
  }

  .solab-knowledge-topic {
    min-height: 0;
    padding: 22px;
  }

  .solab-knowledge-process article,
  .solab-knowledge-glossary__item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    padding: 22px;
  }

  .solab-knowledge-system {
    padding: 22px;
  }

  .solab-knowledge-system article {
    padding: 16px;
  }

  .solab-knowledge-faq__item summary {
    min-height: 68px;
    padding: 18px 20px;
    font-size: 18px;
  }

  .solab-knowledge-faq__item > div {
    padding: 0 20px 20px;
  }

  .solab-knowledge-next__box {
    padding: 28px;
  }

  .solab-knowledge-next__actions {
    flex-direction: column;
  }

  .solab-knowledge-next__actions .solab-btn {
    width: 100%;
    justify-content: center;
  }
}

/* LEGAL PAGE */

.solab-legal-page {
  background: #ffffff;
}

.solab-legal-hero {
  position: relative;
  overflow: hidden;
  padding: 164px 0 92px;
  background: var(--solab-cream);
  isolation: isolate;
}

.solab-legal-hero .solab-subhero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.solab-legal-hero__content {
  max-width: 860px;
}

.solab-legal-hero h1 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(52px, 6.2vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 860;
}

.solab-legal-hero__content > p:not(.solab-eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--solab-muted);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.65;
}

/* CONTENT LAYOUT */

.solab-legal-content {
  padding: 110px 0 126px;
  background: #ffffff;
}

.solab-legal-content__grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.28fr) minmax(0, 1fr);
  gap: 76px;
  align-items: start;
}

/* SIDE NAVIGATION */

.solab-legal-navigation {
  position: sticky;
  top: 122px;
  padding: 26px;
  background: var(--solab-cream-light);
  border: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-legal-navigation nav {
  display: grid;
  margin-top: 8px;
}

.solab-legal-navigation nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid rgba(23, 33, 29, 0.09);
  color: var(--solab-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 780;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.solab-legal-navigation nav a:last-child {
  border-bottom: 0;
}

.solab-legal-navigation nav a:hover {
  padding-left: 6px;
  color: var(--solab-green);
}

/* LEGAL SECTIONS */

.solab-legal-sections {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.solab-legal-section {
  padding: 38px;
  background: var(--solab-cream-light);
  border: 1px solid rgba(23, 33, 29, 0.10);
  scroll-margin-top: 120px;
}

.solab-legal-section:nth-child(even) {
  background: #ffffff;
}

.solab-legal-section h2 {
  margin: 0;
  color: var(--solab-dark);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 830;
}

.solab-legal-section > p:not(.solab-section__eyebrow),
.solab-legal-section > address {
  max-width: 820px;
  margin: 20px 0 0;
  color: var(--solab-muted);
  font-size: 16px;
  line-height: 1.72;
  font-style: normal;
}

.solab-legal-section > p + p {
  margin-top: 14px;
}

/* ADDRESS */

.solab-legal-address {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 28px;
}

.solab-legal-address > i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 16px;
}

.solab-legal-address address {
  margin: 0;
  color: var(--solab-text);
  font-size: 17px;
  line-height: 1.65;
  font-style: normal;
  font-weight: 700;
}

/* STRUCTURED DATA */

.solab-legal-data {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  border-top: 1px solid rgba(23, 33, 29, 0.11);
}

.solab-legal-data > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.11);
}

.solab-legal-data dt {
  color: var(--solab-muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 750;
}

.solab-legal-data dd {
  margin: 0;
  color: var(--solab-dark);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 820;
}

/* CONTACT BLOCKS */

.solab-legal-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.solab-legal-contact > a,
.solab-legal-contact__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 84px;
  padding: 17px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.solab-legal-contact > a:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 143, 106, 0.30);
  box-shadow: 0 14px 38px rgba(23, 33, 29, 0.06);
}

.solab-legal-contact > a > span,
.solab-legal-contact__item > span,
.solab-legal-credit > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 15px;
}

.solab-legal-contact small,
.solab-legal-credit small {
  display: block;
  margin-bottom: 4px;
  color: var(--solab-muted);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.solab-legal-contact strong,
.solab-legal-credit strong {
  display: block;
  color: var(--solab-dark);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 820;
  overflow-wrap: anywhere;
}

/* IMAGE CREDIT */

.solab-legal-credit {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 420px;
  margin-top: 26px;
  padding: 17px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-legal-section__note {
  padding-top: 20px;
  border-top: 1px solid rgba(23, 33, 29, 0.10);
  font-size: 14px !important;
}

/* UPDATE NOTICE */

.solab-legal-update {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  background: var(--solab-yellow-soft);
  border-left: 5px solid var(--solab-yellow);
}

.solab-legal-update i {
  color: var(--solab-green-dark);
}

.solab-legal-update p {
  margin: 0;
  color: var(--solab-text);
  font-size: 14px;
  font-weight: 750;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .solab-legal-content__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .solab-legal-navigation {
    position: relative;
    top: auto;
  }

  .solab-legal-navigation nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .solab-legal-navigation nav a {
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(23, 33, 29, 0.10);
    background: #ffffff;
  }

  .solab-legal-navigation nav a:hover {
    padding-left: 12px;
    background: var(--solab-yellow);
    color: var(--solab-dark);
  }
}

@media (max-width: 720px) {
  .solab-legal-hero {
    padding: 132px 0 70px;
  }

  .solab-legal-hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .solab-legal-content {
    padding: 74px 0 86px;
  }

  .solab-legal-navigation {
    padding: 22px;
  }

  .solab-legal-navigation nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solab-legal-section {
    padding: 26px;
  }

  .solab-legal-section h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .solab-legal-data > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .solab-legal-section > p:not(.solab-section__eyebrow),
  .solab-legal-section > address {
    font-size: 15px;
    line-height: 1.68;
  }
}

/* TERMS / AGB PAGE */

.solab-terms-page .solab-legal-hero__content {
  max-width: 1020px;
}

.solab-terms-page .solab-legal-hero h1 {
  max-width: 980px;
  font-size: clamp(48px, 5.4vw, 80px);
}

.solab-terms-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
}

.solab-terms-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--solab-text);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.solab-terms-meta i {
  color: var(--solab-green);
}

.solab-terms-intro__date {
  color: var(--solab-dark) !important;
  font-weight: 820;
}

.solab-terms-section {
  scroll-margin-top: 120px;
}

.solab-terms-section > p:not(.solab-section__eyebrow) {
  max-width: none;
}

.solab-terms-list {
  display: grid;
  gap: 20px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: solab-terms-counter;
}

.solab-terms-list > li {
  position: relative;
  padding-left: 52px;
  color: var(--solab-muted);
  font-size: 16px;
  line-height: 1.75;
  counter-increment: solab-terms-counter;
}

.solab-terms-list > li::before {
  content: counter(solab-terms-counter) ".";
  position: absolute;
  top: 1px;
  left: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.solab-terms-page .solab-legal-navigation nav a {
  line-height: 1.35;
}

@media (max-width: 980px) {
  .solab-terms-page .solab-legal-navigation nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .solab-terms-page .solab-legal-hero h1 {
    font-size: clamp(40px, 11.5vw, 58px);
    line-height: 1;
  }

  .solab-terms-meta {
    display: grid;
    gap: 10px;
  }

  .solab-terms-list {
    gap: 18px;
  }

  .solab-terms-list > li {
    padding-left: 44px;
    font-size: 15px;
    line-height: 1.7;
  }

  .solab-terms-list > li::before {
    width: 30px;
    height: 30px;
  }

  .solab-terms-page .solab-legal-navigation nav {
    grid-template-columns: 1fr;
  }
}

/* PRIVACY PAGE */

.solab-privacy-page .solab-legal-hero__content {
  max-width: 940px;
}

.solab-privacy-page .solab-legal-section {
  scroll-margin-top: 120px;
}

.solab-privacy-page .solab-legal-section a {
  color: var(--solab-green);
  text-decoration: none;
  font-weight: 760;
}

.solab-privacy-page .solab-legal-section a:hover {
  color: var(--solab-green-dark);
  text-decoration: underline;
}

.solab-privacy-list {
  display: grid;
  gap: 11px;
  max-width: 820px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.solab-privacy-list li {
  position: relative;
  padding-left: 28px;
  color: var(--solab-muted);
  font-size: 16px;
  line-height: 1.68;
}

.solab-privacy-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--solab-yellow);
  box-shadow: 0 0 0 4px rgba(255, 201, 40, 0.20);
}

.solab-privacy-provider {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  max-width: 580px;
  margin-top: 26px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
}

.solab-privacy-provider > span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--solab-yellow);
  color: var(--solab-dark);
  font-size: 17px;
}

.solab-privacy-provider small {
  display: block;
  margin-bottom: 5px;
  color: var(--solab-muted);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.solab-privacy-provider strong {
  display: block;
  color: var(--solab-dark);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 830;
}

.solab-privacy-provider p {
  margin: 8px 0 0;
  color: var(--solab-muted);
  font-size: 14px;
  line-height: 1.6;
}

.solab-privacy-provider a {
  display: inline-block;
  margin-top: 7px;
  font-size: 14px;
}

.solab-privacy-note {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 24px;
  padding: 20px 22px;
  background: var(--solab-yellow-soft);
  border-left: 5px solid var(--solab-yellow);
}

.solab-privacy-note i {
  margin-top: 3px;
  color: var(--solab-green-dark);
}

.solab-privacy-note p {
  margin: 0;
  color: var(--solab-text);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .solab-privacy-list li {
    font-size: 15px;
    line-height: 1.65;
  }

  .solab-privacy-provider {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 18px;
  }

  .solab-privacy-provider > span {
    width: 40px;
    height: 40px;
  }
}


/* CONTACT FORM STATUS */

.solab-form-alert {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 22px 0;
  padding: 16px 18px;
  border-left: 5px solid;
}

.solab-form-alert i {
  margin-top: 3px;
}

.solab-form-alert p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.solab-form-alert--success {
  background: rgba(46, 143, 106, 0.10);
  border-color: var(--solab-green);
  color: var(--solab-green-dark);
}

.solab-form-alert--error {
  background: rgba(180, 55, 55, 0.08);
  border-color: #b43737;
  color: #742323;
}

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

.solab-contact-form__required {
  margin: 12px 0 0;
  color: var(--solab-muted);
  font-size: 12px;
  line-height: 1.5;
}

.solab-contact-form label > span[aria-hidden="true"] {
  color: #a52d2d;
}