:root {
  --ci-green: #0d5869;
  --ci-green-hover: #0b4958;
  --ci-check: #1f9d66;
  --fit-green-base: #45ad82;
  --fit-green-soft: #62bc98;
  --fit-green-lime: #78c9a9;
  --case-graph-green: #62bc98;
  --fit-red: #c94c4c;
  --fit-orange: #e27a53;
  --fit-accent: #cfd4dc;
  --bg: #f7f7f7;
  --surface: #f7f7f7;
  --surface-soft: #ffffff;
  --surface-gray: #ffffff;
  --border: #e7eaee;
  --text: #000000;
  --muted: #000000;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 12px 36px rgba(23, 23, 23, 0.08);
  --container-main: min(1240px, 94vw);
  --container-wide: min(1320px, 94vw);
  --section-space-tight: clamp(3rem, 5.8vw, 4.7rem);
  --section-space: clamp(3.8rem, 7.2vw, 6rem);
  --section-space-loose: clamp(4.4rem, 8.4vw, 6.8rem);
  --copy-max: 62ch;
  --subline-size: clamp(1rem, 1.7vw, 1.14rem);
  --subline-line: 1.6;
  --subline-light: rgba(0, 0, 0, 0.82);
  --subline-dark: rgba(214, 222, 237, 0.94);
  --subline-dark-strong: rgba(255, 255, 255, 0.92);
  --cta-font-size: 0.88rem;
  --cta-font-size-mobile: 0.78rem;
  --cta-font-weight: 700;
  --cta-line-height: 1.2;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

body.booking-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

section[id] {
  scroll-margin-top: 120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.header-shell {
  width: min(1240px, 95vw);
  margin: 0 auto;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  font-size: 1.56rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  color: #000;
  line-height: 1;
  white-space: nowrap;
}

.logo-mark {
  width: 2.35rem;
  height: 2.35rem;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  background: transparent;
}

.header-phone {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #000;
  font-size: clamp(0.84rem, 2.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  margin: 0;
}

.header-phone a {
  text-decoration: none;
  color: #000;
}

.header-phone a:hover {
  color: var(--ci-green);
}

.header-phone-sep {
  color: #6f7785;
}

.main-nav {
  display: none;
}

.main-nav a {
  text-decoration: none;
  color: #000;
  font-size: 0.94rem;
  font-weight: 500;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: var(--cta-font-size);
  font-weight: var(--cta-font-weight);
  letter-spacing: 0;
  line-height: var(--cta-line-height);
  transition: background-color 0.2s ease, transform 0.12s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-header {
  display: none;
  padding: 0.64rem 0.9rem;
  background: var(--ci-green);
  color: #fff;
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--ci-green-hover);
}

.btn-header-label-short {
  display: none;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: #fff;
  color: #000;
  border-radius: var(--radius-pill);
  padding: 0.56rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.mobile-nav {
  width: min(1240px, 95vw);
  margin: 0 auto;
  display: grid;
  gap: 0.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
  padding-bottom: 0;
}

.mobile-nav.is-open {
  max-height: 360px;
  padding-bottom: 0.8rem;
}

.mobile-nav a {
  text-decoration: none;
  color: #000;
  font-size: 0.94rem;
  padding: 0.58rem 0.2rem;
  border-bottom: 1px solid var(--border);
}

.booking-overlay[hidden] {
  display: none;
}

.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
}

.booking-overlay-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 2rem));
  height: min(760px, calc(100vh - 4rem));
  min-height: 560px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.booking-close-btn {
  position: absolute;
  top: max(0.85rem, calc((100% - 662px) / 2));
  right: max(12px, calc((100% - 792px) / 2 + 12px));
  z-index: 3;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #d9dce1;
  border-radius: var(--radius-pill);
  background: #f6f6f7;
  color: #35363a;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06), 0 6px 14px rgba(17, 24, 39, 0.08);
  transition: box-shadow 150ms ease, transform 150ms ease;
}

.booking-overlay[aria-hidden="false"] .booking-close-btn {
  display: none;
}

.booking-close-btn:hover {
  background: #f6f6f7;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.09), 0 8px 16px rgba(17, 24, 39, 0.12);
}

.booking-close-btn:active {
  transform: scale(0.98);
}

.booking-close-btn span {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

.booking-close-btn span::before,
.booking-close-btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 2.15px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.booking-close-btn span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.booking-close-btn span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.booking-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: transparent;
}

.booking-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #27323f;
  font-size: 0.95rem;
  font-weight: 700;
  background: transparent;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.booking-dialog.is-loaded .booking-loading {
  opacity: 0;
  visibility: hidden;
}

.tracking-consent-banner {
  position: fixed;
  left: auto;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 1200;
  width: min(560px, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 0.78rem;
  align-items: center;
  padding: 0.92rem;
  border: 1px solid rgba(196, 204, 214, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.16);
}

.tracking-consent-copy {
  display: grid;
  gap: 0.24rem;
}

.tracking-consent-copy strong {
  color: #000000;
  font-size: 0.92rem;
}

.tracking-consent-copy p {
  margin: 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: 0.84rem;
  line-height: 1.38;
}

.tracking-consent-current {
  min-height: 1em;
  color: rgba(0, 0, 0, 0.68);
  font-size: 0.74rem;
  font-weight: 700;
}

.tracking-consent-current:empty {
  display: none;
}

.tracking-consent-copy a {
  width: fit-content;
  color: #000000;
  font-size: 0.8rem;
  font-weight: 700;
  text-underline-offset: 0.16em;
}

.tracking-consent-actions {
  min-width: 190px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.44rem;
}

.tracking-consent-btn {
  width: 100%;
  min-height: 38px;
  padding: 0.56rem 0.72rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  text-align: center;
}

.tracking-consent-btn-primary {
  border: 1px solid var(--ci-green);
  background: var(--ci-green);
  color: #ffffff;
}

.tracking-consent-btn-primary:hover {
  background: var(--ci-green-hover);
}

.tracking-consent-btn-secondary {
  border: 1px solid #d5ddea;
  background: #ffffff;
  color: #000000;
}

.tracking-consent-btn-secondary:hover {
  border-color: #aeb8c7;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav .btn-mobile {
  margin-top: 0.4rem;
  background: var(--ci-green);
  color: #fff;
  padding: 0.74rem 0.96rem;
  border-bottom: 0;
}

.hero-section {
  padding: 2.8rem 0 3.3rem;
}

.hero-shell {
  width: min(1240px, 95vw);
  margin: 0 auto;
  display: grid;
  gap: 1.45rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 7.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: #000;
}

.hero-copy p {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 3.25vw, 1.16rem);
  color: var(--muted);
  max-width: 62ch;
}

.hero-copy .btn-primary {
  background: var(--ci-green);
  color: #fff;
  padding: 0.9rem 1.26rem;
  font-size: 0.95rem;
}

.hero-copy .btn-primary:hover {
  background: var(--ci-green-hover);
}

.hero-cta-stack {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.64rem;
}

.hero-copy .btn-ghost {
  background: #ffffff;
  color: var(--ci-green);
  border-color: var(--ci-green);
  padding: 0.9rem 1.26rem;
  font-size: 0.93rem;
}

.hero-copy .btn-ghost:hover {
  background: #eef7f4;
}

.fit-card {
  position: relative;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  background: #0d0d0d;
  border: 1px solid #0d0d0d;
  border-radius: 24px;
  box-shadow: none;
  padding: 0.94rem;
}

.fit-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.7rem;
}

.fit-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: #9aa5b8;
  font-weight: 500;
}

.fit-head h2 {
  margin: 0.42rem 0 0;
  font-size: clamp(1.1rem, 3.4vw, 1.44rem);
  line-height: 1.12;
  color: #e9eff8;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.fit-carousel {
  margin-top: 0.84rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "slides slides slides"
    "meta meta meta"
    "prev dots next";
  align-items: center;
  row-gap: 0.72rem;
  column-gap: 0.54rem;
}

.fit-slides {
  grid-area: slides;
  position: relative;
  overflow: hidden;
  min-height: 408px;
}

.fit-track {
  display: flex;
  width: 100%;
  transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.fit-slide {
  flex: 0 0 100%;
  min-width: 100%;
  border: 0;
  border-radius: 0;
  padding: 0.24rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.fit-analysis-label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.52rem;
  font-size: 0.78rem;
  color: #b8c2d1;
}

.fit-analysis-icon {
  font-size: 0.96rem;
  color: #b8c2d1;
  line-height: 1;
}

.fit-score {
  margin: 0.72rem 0 0;
  font-size: clamp(2.2rem, 8vw, 3.72rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.fit-score-copy {
  margin: 0.32rem 0 0;
  font-size: clamp(1.02rem, 3vw, 1.26rem);
  color: #d8e0ec;
}

.fit-score--good {
  color: var(--fit-green-soft);
}

.fit-score--lime {
  color: var(--fit-green-lime);
}

.fit-score--warn {
  color: var(--fit-orange);
}

.fit-metric-list {
  margin: 0.78rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.44rem;
}

.fit-metric-list li {
  background: #0d0d0d;
  border: 1px solid #2b2b2b;
  border-radius: 14px;
  padding: 0.52rem 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  color: #d8e0ec;
  font-size: clamp(0.9rem, 2.2vw, 0.98rem);
}

.fit-metric-list span {
  min-width: 0;
}

.fit-more {
  margin: auto 0 0;
  padding-top: 0.7rem;
  color: #95a3ba;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.fit-more-dots {
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: #7f8ea8;
  line-height: 1;
}

.fit-val {
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.fit-val--good {
  color: var(--fit-green-soft);
}

.fit-val--warn {
  color: var(--fit-orange);
}

.fit-val--bad {
  color: var(--fit-red);
}

.fit-carousel-meta {
  grid-area: meta;
  display: grid;
  gap: 0.42rem;
}

.fit-case {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #ffffff;
  font-weight: 700;
}

.fit-progress {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: #2b2b2b;
  overflow: hidden;
}

.fit-progress-bar {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: var(--fit-accent);
  transition: width 0.35s ease;
}

.fit-nav {
  position: static;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #0d0d0d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.14s ease;
}

.fit-nav::before {
  content: "";
  position: relative;
  width: 0.58rem;
  height: 0.58rem;
  border-right: 0.16rem solid currentColor;
  border-bottom: 0.16rem solid currentColor;
  display: block;
  transform-origin: center;
}

.fit-nav:hover {
  background: var(--fit-accent);
  border-color: var(--fit-accent);
  color: #0d0d0d;
}

.fit-nav:active {
  transform: translateY(1px);
}

.fit-nav:focus-visible,
.fit-dot:focus-visible {
  outline: 2px solid var(--fit-accent);
  outline-offset: 2px;
}

.fit-nav-prev {
  grid-area: prev;
  justify-self: start;
  margin-left: 0.14rem;
}

.fit-nav-prev::before {
  transform: rotate(135deg);
  left: 0.05rem;
}

.fit-nav-next {
  grid-area: next;
  justify-self: end;
  margin-right: 0.14rem;
}

.fit-nav-next::before {
  transform: rotate(-45deg);
  left: -0.05rem;
}

.fit-dots {
  grid-area: dots;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.52rem;
}

.fit-dot {
  width: 0.72rem;
  height: 0.72rem;
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
  transition: width 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.fit-dot.is-active {
  width: 1.64rem;
  border-color: #ffffff;
  background: #ffffff;
}

.hero-alt-section {
  padding: clamp(2.4rem, 4.8vw, 4.1rem) 0 clamp(3rem, 5.8vw, 5rem);
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-alt-shell {
  width: min(1240px, 95vw);
  margin: 0 auto;
  display: grid;
  gap: 1.35rem;
  align-items: center;
}

.hero-alt-copy {
  min-width: 0;
}

.hero-copy-mobile {
  display: none;
}

.hero-alt-eyebrow {
  margin: 0 0 0.72rem;
  color: var(--ci-green);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-alt-copy h1 {
  margin: 0;
  max-width: 19ch;
  color: #000;
  font-size: clamp(2.02rem, 7.4vw, 4.18rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0;
}

.hero-alt-subline {
  margin: 1.05rem 0 0;
  max-width: 60ch;
  color: rgba(0, 0, 0, 0.86);
  font-size: clamp(1rem, 2.9vw, 1.16rem);
  line-height: 1.58;
}

.hero-alt-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.68rem;
}

.hero-alt-primary,
.hero-alt-secondary {
  min-height: 50px;
  padding: 0.92rem 1.18rem;
}

.hero-alt-primary {
  background: var(--ci-green);
  color: #ffffff;
}

.hero-alt-primary:hover {
  background: var(--ci-green-hover);
}

.hero-alt-secondary {
  background: #ffffff;
  color: #000;
  border-color: #b9c3cc;
}

.hero-alt-secondary:hover {
  border-color: var(--ci-green);
  color: var(--ci-green);
}

.hero-alt-trust-list {
  margin: 1.28rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.62rem;
  color: #111111;
  font-size: 0.97rem;
  line-height: 1.45;
}

.hero-alt-trust-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.hero-alt-trust-list li.hero-copy-mobile {
  display: none;
}

.hero-alt-trust-list span {
  flex-shrink: 0;
  margin-top: 0.03rem;
  color: var(--ci-check);
  font-weight: 900;
}

.hero-alt-advisors {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.82rem;
}

.hero-alt-avatar-stack {
  display: flex;
  flex: 0 0 auto;
}

.hero-alt-avatar-stack picture {
  display: block;
  flex: 0 0 auto;
}

.hero-alt-avatar-stack img {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background: #e8edf0;
  display: block;
  object-fit: cover;
  object-position: 50% 18%;
}

.hero-alt-avatar-stack picture + picture {
  margin-left: -0.34rem;
}

.hero-alt-avatar-stack .hero-alt-avatar-cp {
  object-position: 50% 18%;
}

.hero-alt-avatar-stack .hero-alt-avatar-ps {
  object-position: 50% 16%;
}

.hero-alt-advisors p {
  margin: 0;
  max-width: 32ch;
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.9rem;
  line-height: 1.38;
}

.hero-results-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 390px);
  justify-self: center;
  --hero-results-accent: #38a6a3;
  border: 1px solid rgba(194, 202, 214, 0.34);
  border-radius: 28px;
  background: #050505;
  color: #ffffff;
  padding: clamp(1.2rem, 3.3vw, 1.82rem);
  box-shadow: none;
}

.hero-results-card::after {
  display: none;
}

.hero-results-card > * {
  position: relative;
  z-index: 1;
}

.hero-results-top {
  display: flex;
  align-items: center;
}

.hero-results-top p {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--hero-results-accent);
  padding: 0;
  font-size: clamp(0.72rem, 1.8vw, 0.88rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.hero-results-icon svg {
  width: 52%;
  height: 52%;
  stroke: currentColor;
  stroke-width: 2.15;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-results-main {
  margin-top: clamp(1.1rem, 2.9vw, 1.7rem);
  padding-bottom: clamp(0.82rem, 2vw, 1rem);
  border-bottom: 2px solid var(--hero-results-accent);
}

.hero-results-main strong {
  display: block;
  color: #ffffff;
  font-size: clamp(3.45rem, 10.6vw, 5.2rem);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: -0.07em;
  white-space: nowrap;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.08);
}

.hero-results-main p {
  margin: 0.5rem 0 0;
  color: #ffffff;
  font-size: clamp(1.45rem, 4.2vw, 2.08rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hero-results-benefit {
  margin-top: clamp(0.86rem, 2vw, 1.08rem);
}

.hero-results-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.94rem, 2vw, 1.04rem);
  line-height: 1.38;
  font-weight: 500;
}

.hero-results-list {
  margin-top: clamp(1rem, 2.4vw, 1.28rem);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-results-item {
  min-height: clamp(5rem, 11vw, 6rem);
  display: grid;
  grid-template-columns: clamp(3.6rem, 8vw, 4.35rem) minmax(0, 1fr);
  gap: clamp(0.85rem, 2.4vw, 1.25rem);
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(0.84rem, 2.2vw, 1.05rem) 0;
}

.hero-results-icon {
  width: clamp(3.6rem, 8vw, 4.35rem);
  height: clamp(3.6rem, 8vw, 4.35rem);
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.025);
  color: var(--hero-results-accent);
}

.hero-results-item strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.75rem, 4.9vw, 2.52rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.hero-results-item p {
  margin: 0.32rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.88rem, 2vw, 1rem);
  line-height: 1.3;
  font-weight: 500;
}

.hero-results-footer {
  margin: clamp(0.84rem, 2vw, 1rem) 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.88rem, 1.9vw, 1rem);
  line-height: 1.42;
  font-weight: 500;
}

.hero-alt-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid #dfe5ee;
  border-radius: 24px;
  background: #f6f8fa;
  padding: 1rem;
}

.hero-alt-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--ci-green);
}

.hero-screening-panel {
  border-color: rgba(98, 188, 152, 0.32);
  background: #0d0d0d;
  color: #ffffff;
  box-shadow:
    0 18px 44px rgba(13, 13, 13, 0.18),
    0 0 0 1px rgba(98, 188, 152, 0.08);
}

.hero-screening-panel::before {
  background: var(--fit-green-soft);
}

.hero-screening-head {
  padding: 0.35rem 0.1rem 0.15rem;
}

.hero-screening-head p {
  margin: 0;
  color: #b8c2d1;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-screening-head h2 {
  margin: 0.44rem 0 0;
  max-width: 20ch;
  color: #ffffff;
  font-size: clamp(1.32rem, 4.8vw, 1.92rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-screening-head h2 span {
  color: var(--fit-green-soft);
}

.hero-market-card {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(98, 188, 152, 0.26);
  border-radius: 20px;
  background:
    radial-gradient(circle at 82% 0%, rgba(98, 188, 152, 0.14), transparent 36%),
    #151515;
}

.hero-market-visual {
  position: relative;
  min-height: 128px;
  border-right: 1px solid rgba(98, 188, 152, 0.22);
  background:
    radial-gradient(circle at 50% 52%, rgba(98, 188, 152, 0.16), transparent 64%),
    linear-gradient(180deg, #151515 0%, #101010 100%);
}

.hero-market-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2.15rem;
  width: 6rem;
  height: 3.35rem;
  transform: translateX(-50%);
  border-bottom: 2px solid var(--fit-green-soft);
  background:
    linear-gradient(to top, var(--fit-green-soft) 0 100%) 0.3rem 1.45rem / 0.46rem 1.9rem no-repeat,
    linear-gradient(to top, var(--fit-green-soft) 0 100%) 0.96rem 0.82rem / 0.46rem 2.54rem no-repeat,
    linear-gradient(to top, var(--fit-green-soft) 0 100%) 1.62rem 0.3rem / 0.46rem 3.06rem no-repeat,
    linear-gradient(to top, var(--fit-green-soft) 0 100%) 2.28rem 0.92rem / 0.46rem 2.44rem no-repeat,
    linear-gradient(to top, var(--fit-green-soft) 0 100%) 2.94rem 0.1rem / 0.46rem 3.26rem no-repeat,
    linear-gradient(to top, var(--fit-green-soft) 0 100%) 3.6rem 1.08rem / 0.46rem 2.28rem no-repeat,
    linear-gradient(to top, var(--fit-green-soft) 0 100%) 4.26rem 0.68rem / 0.46rem 2.68rem no-repeat,
    linear-gradient(to top, var(--fit-green-soft) 0 100%) 4.92rem 1.52rem / 0.46rem 1.84rem no-repeat;
  opacity: 0.96;
}

.hero-market-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1.22rem;
  width: 6.3rem;
  height: 1rem;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(98, 188, 152, 0.66);
  border-radius: 50%;
}

.hero-market-visual span {
  position: absolute;
  left: 50%;
  top: 0.92rem;
  width: 0.18rem;
  height: 4.25rem;
  transform: translateX(-50%);
  background: var(--fit-green-soft);
  box-shadow: 0 -0.78rem 0 -0.04rem var(--fit-green-soft);
}

.hero-market-copy {
  padding: 0.88rem 0.94rem;
}

.hero-market-copy p {
  margin: 0;
  color: var(--fit-green-soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-market-copy strong {
  display: block;
  margin-top: 0.28rem;
  color: var(--fit-green-soft);
  font-size: clamp(2.32rem, 7.2vw, 3.3rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-market-copy > span {
  display: block;
  margin-top: 0.24rem;
  color: #ffffff;
  font-size: clamp(0.98rem, 2.6vw, 1.18rem);
  font-weight: 800;
  line-height: 1.12;
}

.hero-market-copy small {
  display: block;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(98, 188, 152, 0.2);
  color: #c9d2dc;
  font-size: 0.83rem;
  line-height: 1.35;
}

.hero-screening-divider {
  margin-top: 0.82rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.62rem;
  color: var(--fit-green-soft);
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.hero-screening-divider span {
  display: block;
  height: 1px;
  background: #313131;
}

.hero-profile-list {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.7rem;
}

.hero-profile-card {
  border: 1px solid rgba(98, 188, 152, 0.18);
  border-radius: 18px;
  background: #151515;
  padding: 0.62rem;
}

.hero-profile-card--strong {
  border-color: rgba(98, 188, 152, 0.58);
  background: #101d18;
}

.hero-profile-head {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.hero-profile-icon {
  width: 2.24rem;
  height: 2.24rem;
  flex: 0 0 auto;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(98, 188, 152, 0.16);
  color: var(--fit-green-soft);
}

.hero-profile-icon::before {
  color: currentColor;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1;
}

.hero-profile-icon--security::before {
  content: "✓";
}

.hero-profile-icon--return::before {
  content: "↗";
}

.hero-profile-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.02rem, 3vw, 1.28rem);
  line-height: 1.08;
}

.hero-profile-head p {
  display: inline-flex;
  margin: 0.28rem 0 0;
  border-radius: 999px;
  background: rgba(98, 188, 152, 0.12);
  color: var(--fit-green-soft);
  padding: 0.22rem 0.42rem;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.15;
}

.hero-profile-time {
  margin-top: 0.5rem;
  padding-top: 0.46rem;
  border-top: 1px solid rgba(98, 188, 152, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
}

.hero-profile-time span {
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-radius: 4px;
  color: var(--fit-green-soft);
  position: relative;
}

.hero-profile-time span::before,
.hero-profile-time span::after {
  content: "";
  position: absolute;
  top: -0.38rem;
  width: 0.16rem;
  height: 0.34rem;
  background: currentColor;
  border-radius: 999px;
}

.hero-profile-time span::before {
  left: 0.18rem;
}

.hero-profile-time span::after {
  right: 0.18rem;
}

.hero-profile-time strong {
  color: #c9d2dc;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-profile-rows {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.42rem;
}

.hero-profile-rows div {
  min-height: 2.78rem;
  display: grid;
  grid-template-columns: minmax(3.55rem, auto) 1fr;
  align-items: center;
  column-gap: 0.5rem;
  border-radius: 14px;
  border: 1px solid rgba(98, 188, 152, 0.16);
  background: #0d0d0d;
  padding: 0.4rem 0.6rem;
}

.hero-profile-rows div > span {
  color: var(--fit-green-soft);
  font-size: clamp(1.1rem, 3vw, 1.38rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.hero-profile-rows div > strong {
  display: block;
  margin-top: 0;
  color: #c9d2dc;
  font-size: clamp(0.64rem, 1.4vw, 0.7rem);
  line-height: 1.16;
}

.hero-screening-proof {
  margin: 0.62rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero-screening-proof span {
  width: 1.42rem;
  height: 1.42rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(98, 188, 152, 0.16);
  color: var(--fit-green-soft);
  font-size: 0.9rem;
}

.scoreflow-section {
  position: relative;
  width: 100%;
  padding: 2rem 0 3.4rem;
  background: var(--bg);
}

.scoreflow-panel {
  width: min(1240px, 95vw);
  margin: 0 auto;
  background: var(--surface-gray);
  border-radius: 34px;
  padding: 1.6rem;
}

.scoreflow-head {
  width: 100%;
  padding: 0;
}

.scoreflow-head h2 {
  margin: 0;
  font-size: clamp(1.22rem, 3.6vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #000000;
}

.scoreflow-grid {
  width: 100%;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.72rem;
  grid-template-columns: 1fr;
}

.score-card {
  min-height: 130px;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  border: 1px solid #dfe5ee;
  background: var(--bg);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.34rem;
}

.score-card-value {
  margin: 0;
  font-size: clamp(1.5rem, 6vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: #000000;
  text-wrap: balance;
}

.score-card-copy {
  margin: 0;
  font-size: clamp(0.92rem, 2.7vw, 1.06rem);
  line-height: 1.36;
  color: #000000;
}

.cta-check-section {
  padding: clamp(3.1rem, 7vw, 5.4rem) 0 clamp(3.7rem, 7vw, 6.2rem);
  background: var(--bg);
}

.cta-check-shell {
  width: min(1280px, 92vw);
  margin: 0 auto;
}

.cta-check-intro {
  width: min(100%, 1100px);
  margin: 0 auto;
  text-align: center;
}

.cta-check-intro h2 {
  margin: 0;
  color: #000000;
  max-width: 24ch;
  font-size: clamp(2rem, 3.3vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.cta-check-intro p {
  margin: 1.1rem auto 0;
  color: #000000;
  font-size: clamp(0.98rem, 1.4vw, 1.06rem);
  line-height: 1.42;
  max-width: 58ch;
}

.cta-check-layout {
  margin-top: 2.2rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  display: grid;
  gap: clamp(0.9rem, 1.5vw, 1.3rem);
}

.cta-check-formcard {
  background: var(--surface-gray);
  border: 0;
  border-radius: 30px;
  padding: clamp(1rem, 1.7vw, 1.4rem);
}

.cta-form-top {
  text-align: center;
}

.cta-form-icon {
  width: clamp(2rem, 4.8vw, 2.7rem);
  height: clamp(2rem, 4.8vw, 2.7rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  margin: 0 auto;
  position: relative;
}

.cta-form-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000000;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='17' rx='2.2'/%3E%3Cpath d='M8 3.5v3'/%3E%3Cpath d='M16 3.5v3'/%3E%3Cpath d='M3 9h18'/%3E%3Cpath d='M8 12h.01'/%3E%3Cpath d='M12 12h.01'/%3E%3Cpath d='M16 12h.01'/%3E%3Cpath d='M8 16h.01'/%3E%3Cpath d='M12 16h.01'/%3E%3Cpath d='M16 16h.01'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='17' rx='2.2'/%3E%3Cpath d='M8 3.5v3'/%3E%3Cpath d='M16 3.5v3'/%3E%3Cpath d='M3 9h18'/%3E%3Cpath d='M8 12h.01'/%3E%3Cpath d='M12 12h.01'/%3E%3Cpath d='M16 12h.01'/%3E%3Cpath d='M8 16h.01'/%3E%3Cpath d='M12 16h.01'/%3E%3Cpath d='M16 16h.01'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.cta-form-top p {
  margin: 0.95rem 0 0;
  font-size: clamp(1rem, 1.8vw, 1.05rem);
  font-weight: 700;
  color: #000000;
}

.cta-form-top h3 {
  margin: 0.58rem auto 0;
  max-width: 15ch;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000000;
}

.cta-check-form {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.8rem;
}

.cta-input-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.76rem;
  border: 1px solid #d0d5dd;
  background: var(--bg);
  border-radius: 16px;
  min-height: clamp(62px, 5.8vw, 68px);
  padding: 0 1.12rem;
}

.cta-input-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: #7a8597;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.cta-input-icon--user {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='7.5' r='3.2'/%3E%3Cpath d='M5.6 19.2c0-3.4 2.8-5.7 6.4-5.7s6.4 2.3 6.4 5.7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='7.5' r='3.2'/%3E%3Cpath d='M5.6 19.2c0-3.4 2.8-5.7 6.4-5.7s6.4 2.3 6.4 5.7'/%3E%3C/svg%3E");
}

.cta-input-icon--mail {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='5.5' width='17' height='13' rx='2'/%3E%3Cpath d='M4.5 7.2l7.5 6 7.5-6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='5.5' width='17' height='13' rx='2'/%3E%3Cpath d='M4.5 7.2l7.5 6 7.5-6'/%3E%3C/svg%3E");
}

.cta-input-row input {
  appearance: none;
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  color: #000000;
}

.cta-input-row input:focus {
  outline: none;
}

.cta-input-row input::placeholder {
  color: #000000;
}

.cta-consent {
  margin-top: 0.24rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
}

.cta-consent input {
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.18rem;
  accent-color: #000000;
}

.cta-consent span {
  color: #000000;
  font-size: clamp(0.92rem, 1.1vw, 0.98rem);
  line-height: 1.5;
}

.cta-consent a {
  color: #000000;
}

.cta-submit-btn {
  margin-top: 0.5rem;
  width: 100%;
  justify-self: center;
  border: 0;
  border-radius: 18px;
  background: #000000;
  color: #ffffff;
  min-height: clamp(62px, 5.6vw, 72px);
  padding: 0.75rem 1.1rem;
  font: inherit;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cta-submit-btn:hover {
  background: #000000;
}

.cta-check-benefits {
  display: grid;
  align-content: center;
  gap: 1.05rem;
  padding: 0.2rem 0.4rem 0.2rem 0.2rem;
}

.cta-benefit-row {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 0.78rem;
}

.cta-checkmark {
  width: clamp(2.5rem, 4.5vw, 2.8rem);
  height: clamp(2.5rem, 4.5vw, 2.8rem);
  border-radius: 999px;
  background: #62b127;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 2.8vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
}

.cta-benefit-row p {
  margin: 0;
  color: #000000;
  font-size: clamp(0.96rem, 1.12vw, 1.04rem);
  line-height: 1.48;
  max-width: 33ch;
}

.cta-rating {
  margin-top: 0.3rem;
  display: grid;
  gap: 0.36rem;
}

.cta-rating-top {
  display: flex;
  align-items: center;
  gap: 0.86rem;
  flex-wrap: wrap;
}

.cta-avatars {
  display: flex;
  align-items: center;
}

.cta-avatars span {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 2px solid #eceff4;
  margin-right: -0.44rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
}

.cta-avatars span:nth-child(1) {
  background: #0d5869;
}

.cta-avatars span:nth-child(2) {
  background: #244a63;
}

.cta-avatars span:nth-child(3) {
  background: #5a758d;
}

.cta-avatars span:nth-child(4) {
  background: #2c6a59;
}

.cta-stars {
  margin: 0;
  color: #f4ab21;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.cta-rating-copy {
  margin: 0;
  color: #000000;
  font-size: 0.92rem;
}

.final-cta-section {
  background: var(--bg);
  padding: clamp(1.7rem, 3.2vw, 2.7rem) 0 var(--section-space-tight);
}

.final-cta-shell {
  width: var(--container-main);
  margin: 0 auto;
  border-radius: clamp(26px, 3.6vw, 42px);
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  color: #ffffff;
  padding: clamp(1.75rem, 4.1vw, 3.2rem);
  text-align: center;
  box-shadow: none;
}

.final-cta-shell h2 {
  margin: 0 auto;
  max-width: 28ch;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.75vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.final-cta-copy {
  margin: 1.15rem auto 0;
  max-width: var(--copy-max);
  color: var(--subline-dark-strong);
  font-size: var(--subline-size);
  line-height: var(--subline-line);
}

.final-cta-actions {
  margin-top: clamp(1.25rem, 2.3vw, 1.9rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.final-cta-btn {
  min-height: 52px;
  padding: 14px 22px;
}

.final-cta-btn-primary {
  background: var(--ci-green);
  border-color: var(--ci-green);
  color: #ffffff;
}

.final-cta-btn-primary:hover {
  background: var(--ci-green-hover);
  border-color: var(--ci-green-hover);
}

.final-cta-btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
  color: #ffffff;
}

.final-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.56);
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid #dfe5ee;
  padding: clamp(2rem, 4vw, 2.8rem) 0 clamp(1.2rem, 2.2vw, 1.8rem);
}

.site-footer-shell {
  width: var(--container-main);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.3rem, 2.4vw, 2.8rem);
  align-items: start;
}

.site-footer-col {
  display: grid;
  gap: 0.72rem;
  justify-items: start;
}

.site-footer-col:nth-child(2) {
  justify-self: center;
}

.site-footer-col h3 {
  margin: 0 0 0.25rem;
  color: #000000;
  font-size: clamp(1.18rem, 1.6vw, 1.44rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.site-footer-col a {
  color: #000000;
  text-decoration: none;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.45;
  opacity: 0.82;
}

.site-footer-col a:hover {
  color: #000000;
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 0.08em;
}

.site-footer-col a:focus-visible {
  color: #000000;
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 0.08em;
}

.site-footer-address {
  justify-items: end;
  text-align: right;
}

.site-footer-address address {
  margin: 0;
  color: rgba(0, 0, 0, 0.82);
  font-style: normal;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.52;
}

.site-footer-meta {
  width: var(--container-main);
  margin: clamp(1.25rem, 2.2vw, 1.75rem) auto 0;
  text-align: center;
  color: #000000;
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  line-height: 1.45;
  opacity: 0.84;
}

.positioning-section {
  background: var(--bg);
  padding: var(--section-space) 0;
}

.positioning-shell {
  width: var(--container-main);
  margin: 0 auto;
}

.positioning-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 600;
  color: #000000;
}

.positioning-shell h2 {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  color: #000000;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
  max-width: 20ch;
  text-align: center;
  text-wrap: balance;
}

.desktop-break {
  display: none;
}

.positioning-copy {
  margin: 1.14rem 0 0;
  margin-left: auto;
  margin-right: auto;
  color: var(--subline-light);
  font-size: var(--subline-size);
  line-height: var(--subline-line);
  max-width: var(--copy-max);
  text-align: center;
}

.positioning-grid {
  margin-top: clamp(1.7rem, 3vw, 2.4rem);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.positioning-card {
  background: #ffffff;
  border: 1px solid #dfe5ee;
  border-radius: 28px;
  padding: clamp(1.24rem, 1.9vw, 1.6rem);
  display: grid;
  gap: 0.9rem;
}

.positioning-badge {
  width: 3.28rem;
  height: 3.28rem;
  border-radius: 14px;
  border: 1px solid #dfe5ee;
  background: var(--bg);
  color: var(--ci-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.positioning-card h3 {
  margin: 0;
  color: #000000;
  font-size: clamp(1.45rem, 3.1vw, 2.05rem);
  line-height: 1.16;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.positioning-card p {
  margin: 0;
  color: #000000;
  font-size: clamp(0.99rem, 1.8vw, 1.08rem);
  line-height: 1.56;
}

.decision-cta-section {
  background: var(--bg);
  padding: 0 0 var(--section-space);
}

.decision-cta-shell {
  width: var(--container-main);
  margin: 0 auto;
  text-align: center;
  display: grid;
  justify-items: center;
}

.decision-cta-icon {
  width: clamp(4.25rem, 7vw, 5.15rem);
  height: clamp(4.25rem, 7vw, 5.15rem);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--ci-green);
  box-shadow: 0 1px 0 rgba(13, 88, 105, 0.05);
}

.decision-cta-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  stroke: currentColor;
  stroke-width: 1.95;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.decision-cta-kicker {
  margin: 1rem 0 0;
  color: var(--ci-green);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  font-weight: 800;
  line-height: 1.3;
}

.decision-cta-shell h2 {
  margin: 0.95rem auto 0;
  max-width: min(100%, 980px);
  color: #000000;
  font-size: clamp(1.55rem, 2.75vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.018em;
  text-wrap: balance;
  white-space: nowrap;
}

.decision-cta-copy {
  margin: 1.16rem auto 0;
  max-width: 68ch;
  color: var(--subline-light);
  font-size: var(--subline-size);
  line-height: var(--subline-line);
}

.decision-cta-btn {
  margin-top: clamp(1.65rem, 3vw, 2.45rem);
  min-height: 50px;
  padding: 0.92rem 1.18rem;
  background: var(--ci-green);
  color: #ffffff;
  font-size: 0.94rem;
  border-radius: var(--radius-pill);
}

.decision-cta-btn:hover {
  background: var(--ci-green-hover);
}

.founders-team-section {
  background: #ffffff;
  padding: var(--section-space) 0 clamp(2rem, 3.4vw, 2.9rem);
}

.founders-team-shell {
  width: var(--container-main);
  margin: 0 auto;
}

.founders-team-head {
  max-width: min(1060px, 100%);
  margin: 0 auto;
  text-align: center;
}

.founders-team-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #000000;
}

.founders-team-head h2 {
  margin: 0 auto 0;
  max-width: 20ch;
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.3vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.founders-team-copy {
  margin: 1.2rem auto 0;
  max-width: var(--copy-max);
  color: var(--subline-light);
  font-size: var(--subline-size);
  line-height: var(--subline-line);
}

.founders-team-grid {
  margin-top: clamp(1.75rem, 3.2vw, 2.45rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.founder-card {
  border-radius: 30px;
  background: #f7f7f7;
  border: 1px solid #dfe5ee;
  padding: clamp(1.25rem, 2.3vw, 1.8rem);
}

.founder-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}

.founder-photo-frame {
  width: clamp(5.55rem, 8.1vw, 7.15rem);
  height: clamp(5.55rem, 8.1vw, 7.15rem);
  flex: 0 0 auto;
  border-radius: 1.45rem;
  overflow: hidden;
  border: 1px solid #dfe5ee;
  background: #000000;
}

.founder-photo-frame picture {
  width: 100%;
  height: 100%;
  display: block;
}

.founder-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
}

.founder-photo--cp {
  transform: none;
}

.founder-photo--ps {
  transform: none;
}

.founder-initials {
  width: clamp(4.2rem, 8.5vw, 5.2rem);
  height: clamp(4.2rem, 8.5vw, 5.2rem);
  flex: 0 0 auto;
  border-radius: 1.7rem;
  background: #000000;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.founder-card h3 {
  margin: 0;
  color: #000000;
  font-size: clamp(1.5rem, 3.2vw, 2.06rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.founder-role {
  margin: 0.38rem 0 0;
  color: #000000;
  font-size: clamp(0.96rem, 1.55vw, 1.04rem);
  line-height: 1.45;
  font-weight: 500;
  opacity: 0.88;
}

.founder-proof-list {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.founder-proof-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.42rem 0.76rem;
  border-radius: 999px;
  border: 1px solid #d8dee8;
  background: #ffffff;
  color: #000000;
  font-size: clamp(0.86rem, 1.15vw, 0.95rem);
  font-weight: 650;
  line-height: 1.2;
}

.founder-background {
  margin: 1.05rem 0 0;
  color: #000000;
  font-size: clamp(0.99rem, 1.7vw, 1.08rem);
  line-height: 1.6;
}

.founder-background-mobile {
  display: none;
}

.founder-approach-card {
  grid-column: 1 / -1;
  border-radius: 30px;
  border: 1px solid #dfe5ee;
  background: #f7f7f7;
  padding: clamp(1.45rem, 3vw, 2.25rem);
  display: grid;
  gap: 0.95rem;
}

.founder-approach-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 1.5vw, 1.1rem);
}

.founder-approach-kicker {
  margin: 0 0 0.44rem;
  color: var(--ci-green);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.founder-approach-card h3 {
  margin: 0;
  max-width: none;
  color: #000000;
  font-size: clamp(1.78rem, 3.25vw, 2.72rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.founder-approach-card p:not(.founder-approach-kicker) {
  margin: 0;
  max-width: none;
  color: #000000;
  font-size: clamp(1rem, 1.45vw, 1.13rem);
  line-height: 1.58;
}

.founder-approach-card .founder-approach-claim {
  margin-top: clamp(0.5rem, 1.2vw, 0.9rem);
  border-left: 4px solid var(--ci-green);
  padding-left: clamp(0.95rem, 1.8vw, 1.35rem);
  max-width: 60ch;
  font-size: clamp(1.18rem, 2.25vw, 1.7rem);
  font-weight: 800;
  line-height: 1.34;
}

.founder-tags {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.64rem;
}

.founder-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f4f6f8;
  border: 1px solid #dfe5ee;
  color: #000000;
  padding: 0.42rem 0.86rem;
  font-size: clamp(0.97rem, 1.8vw, 1.05rem);
  font-weight: 500;
}

.problem-focus-section {
  background: #ffffff;
  padding: clamp(2.2rem, 3.9vw, 3.45rem) 0 clamp(4.7rem, 9vw, 8.95rem);
}

.problem-focus-shell {
  width: var(--container-main);
  margin: 0 auto;
}

.problem-focus-head {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.problem-focus-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.56rem 1.36rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dfe5ee;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-size: 0.82rem;
  font-weight: 900;
}

.problem-focus-head h2 {
  margin: 1rem auto 0;
  max-width: 34ch;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(1.55rem, 2.75vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: #000000;
  text-wrap: balance;
}

.problem-focus-subline {
  margin: 1.15rem auto 0;
  max-width: var(--copy-max);
  color: var(--subline-light);
  font-size: var(--subline-size);
  font-weight: 400;
  line-height: var(--subline-line);
}

.problem-focus-btn {
  margin-top: 0;
  background: var(--ci-green);
  border-color: var(--ci-green);
  color: #ffffff;
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.015em;
  line-height: 1.16;
  min-height: 52px;
  width: min(100%, 390px);
  box-shadow: none;
}

.problem-focus-btn:hover {
  background: var(--ci-green-hover);
  border-color: var(--ci-green-hover);
}

.problem-focus-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.problem-focus-btn-secondary {
  background: #ffffff;
  border-color: #b9c3cc;
  color: #000000;
  box-shadow: none;
  gap: 0.72rem;
  min-height: 50px;
  padding: 0.92rem 1.18rem;
  font-size: 0.94rem;
  font-weight: 700;
}

.problem-focus-btn-secondary:hover {
  background: #ffffff;
  border-color: var(--ci-green);
  color: var(--ci-green);
}

.problem-focus-phone-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-focus-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

.problem-focus-card {
  background: #f7f7f7;
  border: 1px solid #dfe5ee;
  border-radius: 28px;
  padding: clamp(1.15rem, 2.5vw, 1.75rem);
  box-shadow: none;
}

.problem-focus-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-weight: 950;
  font-size: 1.7rem;
  line-height: 1;
  color: #ffffff;
  background: var(--ci-green);
}

.problem-focus-card h3 {
  margin: 0;
  color: #000000;
  font-size: clamp(1.2rem, 3.8vw, 2.05rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.problem-focus-card p {
  margin: 0.72rem 0 0;
  color: #000000;
  font-size: clamp(0.98rem, 2.7vw, 1.06rem);
  line-height: 1.5;
}

.metrics-proof-section {
  background: #ffffff;
  padding: var(--section-space-tight) 0 var(--section-space);
}

.metrics-proof-shell {
  width: var(--container-main);
  margin: 0 auto;
}

.metrics-proof-head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3.1vw, 2.45rem);
}

.metrics-proof-head h2 {
  margin: 0 auto 0.95rem;
  max-width: 20ch;
  font-family: "Roboto", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: #000000;
  text-wrap: balance;
}

.metrics-proof-subline {
  margin: 0 auto;
  max-width: var(--copy-max);
  color: var(--subline-light);
  font-size: var(--subline-size);
  line-height: var(--subline-line);
}

.metrics-proof-focus {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 16px;
  max-width: 100%;
  margin: 0 auto;
}

.metric-focus-main {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 30px;
  padding: clamp(1.45rem, 2.2vw, 1.9rem) clamp(1.3rem, 2.3vw, 1.7rem) clamp(1.35rem, 2vw, 1.7rem);
  color: #ffffff;
  background: #0d0d0d;
  border: 1px solid #0d0d0d;
}

.metric-focus-kicker {
  margin: 0 0 1rem;
  width: fit-content;
  padding: 0.34rem 0.76rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  font-weight: 700;
}

.metric-focus-main strong {
  display: block;
  margin: 0;
  font-size: clamp(3.8rem, 6.2vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.metric-focus-line {
  margin: 0.7rem 0 0;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.metric-focus-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  margin: 1.05rem 0 0.95rem;
}

.metric-focus-benefit {
  display: block;
  width: 100%;
}

.metric-focus-benefit-icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  border: 1px solid #294878;
  background: rgba(35, 72, 123, 0.28);
  color: #b9cae7;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.metric-focus-benefit-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-focus-copy {
  margin: 0;
  color: #ffffff;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.52;
  max-width: none;
}

.metric-focus-right {
  min-height: 0;
  border: 0;
  background: transparent;
  padding: 0;
}

.metric-focus-title {
  margin: 0;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.metric-quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.metric-quick-item {
  position: relative;
  --mq-icon-col: 3.2rem;
  --mq-col-gap: 1.35rem;
  --mq-pad-x: 1.35rem;
  min-height: 110px;
  padding: 0.92rem var(--mq-pad-x);
  display: grid;
  grid-template-columns: var(--mq-icon-col) 1fr;
  column-gap: var(--mq-col-gap);
  row-gap: 0.16rem;
  grid-template-areas:
    "icon value"
    "icon label";
  border-radius: 22px;
  border: 1px solid #dfe5ee;
  background: #ffffff;
}

.metric-quick-item::before {
  content: "";
  position: absolute;
  left: calc(var(--mq-pad-x) + var(--mq-icon-col) + (var(--mq-col-gap) / 2));
  top: 0.92rem;
  bottom: 0.92rem;
  width: 1px;
  background: #e2e8f0;
}

.metric-quick-icon {
  grid-area: icon;
  width: 2.95rem;
  height: 2.95rem;
  align-self: center;
  justify-self: center;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 88, 105, 0.18);
  background: rgba(13, 88, 105, 0.06);
  color: var(--ci-green);
  transform: translateX(-0.18rem);
}

.metric-quick-icon svg {
  width: 1.34rem;
  height: 1.34rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-quick-icon--symbol {
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
}

.metric-quick-value {
  grid-area: value;
  display: block;
  margin-top: 0;
  padding-left: 0.05rem;
  color: #000000;
  font-size: clamp(2.1rem, 3.2vw, 2.95rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 900;
  align-self: end;
}

.metric-quick-label {
  grid-area: label;
  margin: 0;
  padding-left: 0.1rem;
  color: #000000;
  font-size: 0.99rem;
  line-height: 1.33;
  font-weight: 500;
  align-self: start;
}

.market-filter-section {
  background: #ffffff;
  padding: 0 0 var(--section-space-tight);
}

.market-filter-shell {
  width: var(--container-main);
  margin: 0 auto;
}

.market-filter-panel {
  position: relative;
  overflow: hidden;
  border-radius: clamp(28px, 3.6vw, 42px);
  border: 1px solid rgba(98, 188, 152, 0.24);
  background: #0d0d0d;
  color: #ffffff;
  padding: clamp(1.25rem, 2.75vw, 2.35rem);
  box-shadow: none;
}

.market-filter-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--fit-green-soft);
}

.market-filter-top {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.12fr);
  gap: clamp(1.15rem, 2.4vw, 2rem);
  align-items: stretch;
}

.market-filter-copy-block {
  min-width: 0;
  align-self: center;
}

.market-filter-kicker {
  margin: 0;
  color: #b8c2d1;
  font-size: clamp(0.78rem, 1.15vw, 0.9rem);
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.market-filter-copy-block h2 {
  margin: 0.72rem 0 0;
  max-width: 20ch;
  color: #ffffff;
  font-size: clamp(2rem, 3.55vw, 3.35rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.market-filter-copy-block h2 span {
  color: var(--fit-green-soft);
}

.market-filter-copy-block p:last-child {
  margin: 1.05rem 0 0;
  max-width: 58ch;
  color: var(--subline-dark);
  font-size: clamp(0.98rem, 1.45vw, 1.1rem);
  line-height: 1.58;
}

.market-filter-summary {
  min-width: 0;
  min-height: 214px;
  display: grid;
  grid-template-columns: minmax(140px, 0.52fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(98, 188, 152, 0.28);
  background:
    radial-gradient(circle at 24% 16%, rgba(98, 188, 152, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(98, 188, 152, 0.055));
}

.market-filter-visual {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(98, 188, 152, 0.28);
}

.market-filter-bars {
  position: relative;
  width: min(68%, 200px);
  height: 122px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  color: var(--fit-green-soft);
  border-bottom: 3px solid currentColor;
}

.market-filter-bars::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 68%;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.market-filter-bars::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 100%;
  height: 28px;
  border-bottom: 2px solid rgba(98, 188, 152, 0.6);
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%);
}

.market-filter-bars span {
  width: 10px;
  border-radius: 2px 2px 0 0;
  background: currentColor;
}

.market-filter-bars span:nth-child(1) {
  height: 34px;
}

.market-filter-bars span:nth-child(2) {
  height: 52px;
}

.market-filter-bars span:nth-child(3) {
  height: 68px;
}

.market-filter-bars span:nth-child(4) {
  height: 80px;
}

.market-filter-bars span:nth-child(5) {
  height: 62px;
}

.market-filter-bars span:nth-child(6) {
  height: 50px;
}

.market-filter-bars span:nth-child(7) {
  height: 32px;
}

.market-filter-stat {
  min-width: 0;
  padding: clamp(1.1rem, 2.4vw, 1.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.market-filter-stat p {
  margin: 0;
  color: var(--fit-green-soft);
  font-size: clamp(0.84rem, 1.25vw, 0.96rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.market-filter-stat strong {
  display: block;
  margin: 0.38rem 0 0;
  color: var(--fit-green-soft);
  font-size: clamp(2.95rem, 4.65vw, 4.25rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.market-filter-stat span {
  display: block;
  margin-top: 0.44rem;
  color: #ffffff;
  font-size: clamp(1.18rem, 2.1vw, 1.68rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.market-filter-stat small {
  display: block;
  margin-top: 0.85rem;
  padding-top: 0.78rem;
  border-top: 1px solid rgba(98, 188, 152, 0.24);
  color: rgba(214, 222, 237, 0.94);
  font-size: clamp(0.92rem, 1.35vw, 1.06rem);
  line-height: 1.45;
}

.market-filter-divider {
  margin: clamp(1.25rem, 2.8vw, 2rem) 0 clamp(1rem, 2.2vw, 1.45rem);
  display: grid;
  grid-template-columns: minmax(16px, 1fr) auto minmax(16px, 1fr);
  gap: 0.78rem;
  align-items: center;
  color: var(--fit-green-soft);
  font-size: clamp(0.78rem, 1.15vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.market-filter-divider::before,
.market-filter-divider::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.market-filter-profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.3rem);
}

.market-filter-profile {
  min-width: 0;
  border-radius: 24px;
  border: 1px solid rgba(98, 188, 152, 0.2);
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(0.86rem, 1.7vw, 1.12rem);
}

.market-filter-profile-featured {
  border-color: rgba(98, 188, 152, 0.52);
  background: rgba(11, 42, 32, 0.72);
}

.market-filter-profile-head {
  display: grid;
  grid-template-columns: 2.65rem minmax(0, 1fr);
  gap: 0.68rem;
  align-items: center;
}

.market-filter-profile-icon {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(98, 188, 152, 0.16);
  color: var(--fit-green-soft);
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1;
}

.market-filter-profile-icon-arrow {
  font-size: 1.42rem;
}

.market-filter-profile h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.26rem, 2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.market-filter-profile-head p {
  width: fit-content;
  margin: 0.34rem 0 0;
  border-radius: var(--radius-pill);
  background: rgba(98, 188, 152, 0.13);
  color: var(--fit-green-soft);
  padding: 0.2rem 0.52rem;
  font-size: clamp(0.78rem, 1.18vw, 0.88rem);
  font-weight: 850;
  line-height: 1.1;
}

.market-filter-search {
  margin: 0.78rem 0 0;
  padding-top: 0.68rem;
  border-top: 1px solid rgba(98, 188, 152, 0.24);
  color: #d6deed;
  font-size: clamp(0.88rem, 1.45vw, 1rem);
  font-weight: 800;
  line-height: 1.28;
}

.market-filter-rows {
  margin-top: 0.66rem;
  display: grid;
  gap: 0.5rem;
}

.market-filter-rows p {
  min-height: 52px;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(4.4rem, 0.35fr) minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  border-radius: 16px;
  border: 1px solid rgba(98, 188, 152, 0.14);
  background: #0d0d0d;
  padding: 0.6rem 0.78rem;
}

.market-filter-rows strong {
  color: var(--fit-green-soft);
  font-size: clamp(1.65rem, 3.1vw, 2.55rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.market-filter-rows span {
  min-width: 0;
  color: #d6deed;
  font-size: clamp(0.86rem, 1.35vw, 1rem);
  font-weight: 800;
  line-height: 1.18;
}

.market-filter-proof {
  margin: clamp(1rem, 2.1vw, 1.45rem) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  color: #ffffff;
  text-align: center;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 900;
  line-height: 1.28;
}

.market-filter-proof span {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(98, 188, 152, 0.18);
  color: var(--fit-green-soft);
}

.metrics-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1220px;
  margin: 0 auto;
  justify-content: center;
}

.metric-card {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 26px;
  padding: 20px 24px;
  background: var(--bg);
  border: 1px solid #dfe5ee;
  box-shadow: none;
}

.metric-card.featured {
  color: #ffffff;
  background:
    linear-gradient(135deg, #000000 0%, #1b2330 48%, #242d3a 100%);
  border-color: transparent;
}

.metric-kicker {
  margin-bottom: 10px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  font-weight: 900;
}

.metric-card.featured .metric-kicker {
  color: #9fb3cb;
}

.metric-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.metric-card p {
  margin: 0;
  color: #000000;
  font-size: 1.12rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.metric-card.featured p {
  color: #d2dbe8;
}

.cases-section {
  background: var(--bg);
  padding: var(--section-space-tight) 0 var(--section-space);
}

.cases-shell {
  width: var(--container-wide);
  margin: 0 auto;
}

.cases-head {
  text-align: center;
  margin-bottom: clamp(1.7rem, 2.9vw, 2.3rem);
}

.cases-head h2 {
  margin: 0 auto;
  max-width: 22ch;
  color: #000000;
  font-size: clamp(2rem, 4.3vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.cases-subline {
  margin: 1rem auto 0;
  max-width: var(--copy-max);
  color: var(--subline-light);
  font-size: var(--subline-size);
  line-height: var(--subline-line);
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  max-width: none;
  margin: 0;
}

.case-rich-card {
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #dfe5ee;
  overflow: hidden;
}

.case-rich-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid #e7ecf3;
}

.case-rich-media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.case-rich-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 13, 22, 0) 34%,
    rgba(7, 13, 22, 0.36) 68%,
    rgba(7, 13, 22, 0.78) 100%
  );
  pointer-events: none;
}

.case-rich-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.case-rich-media-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.86rem;
  z-index: 2;
}

.case-rich-media-caption h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.26rem, 2.3vw, 1.72rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.case-room-type {
  white-space: nowrap;
}

.case-rich-body {
  padding: clamp(0.95rem, 1.9vw, 1.2rem);
}

.case-rich-copy-below {
  margin: 0 0 0.86rem;
  color: #000000;
  font-size: clamp(0.94rem, 1.25vw, 1.06rem);
  line-height: 1.5;
  min-height: 3.2em;
}

.case-profile-proof {
  margin: 0 0 1rem;
}

.case-profile-proof p {
  margin: 0;
  color: #000000;
  font-size: clamp(0.94rem, 1.25vw, 1.06rem);
  line-height: 1.42;
}

.case-profile-proof p + p {
  margin-top: 0.36rem;
}

.case-profile-proof strong {
  font-weight: 850;
}

.case-stat-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.case-stat {
  border-radius: 14px;
  border: 1px solid #dfe5ee;
  background: #fbfcfd;
  padding: 0.72rem 0.86rem;
  min-width: 0;
  min-height: 5.45rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-stat-icon {
  display: none;
}

.case-stat-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-stat-label {
  margin: 0;
  color: #000000;
  font-size: 0.78rem;
  line-height: 1.2;
  opacity: 1;
  min-height: 2.4em;
  display: flex;
  align-items: flex-start;
}

.case-stat-value {
  display: block;
  margin-top: 0.16rem;
  color: #000000;
  font-size: clamp(1.24rem, 2.35vw, 1.72rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  white-space: nowrap;
}

.case-stat-value--accent {
  color: var(--case-graph-green);
  white-space: normal;
}

.case-growth {
  margin-top: 0.95rem;
  border-radius: 14px;
  border: 1px solid #dfe5ee;
  background: #ffffff;
  padding: 0.72rem 0.72rem 0.76rem;
}

.case-growth-toggle {
  position: relative;
  margin-top: 0.8rem;
  width: 100%;
  min-height: 46px;
  border: 1px solid #111111;
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 2.9rem 0.72rem 1.1rem;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.15;
  cursor: pointer;
  white-space: nowrap;
}

.case-growth-toggle::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  right: 1.18rem;
  top: 50%;
  border-right: 0.14rem solid currentColor;
  border-bottom: 0.14rem solid currentColor;
  transform: translateY(-62%) rotate(45deg);
  transition: transform 0.18s ease;
}

.case-rich-card.is-expanded .case-growth-toggle::after {
  transform: translateY(-38%) rotate(225deg);
}

.case-rich-card[data-case-collapsible]:not(.is-expanded) .case-growth {
  display: none;
}

.case-growth-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.case-growth-title {
  min-width: 0;
  margin: 0;
  color: #000000;
  font-size: 0.9rem;
  font-weight: 500;
}

.case-growth-info {
  position: relative;
  flex: 0 0 auto;
  z-index: 6;
}

.case-growth-info summary {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #8d9aaa;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  list-style: none;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.case-growth-info summary::-webkit-details-marker {
  display: none;
}

.case-growth-info summary svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-growth-info summary:hover,
.case-growth-info summary:focus-visible,
.case-growth-info[open] summary {
  background: rgba(223, 229, 238, 0.48);
  color: #667587;
}

.case-growth-info summary:focus-visible {
  outline: 2px solid rgba(98, 188, 152, 0.42);
  outline-offset: 2px;
}

.case-growth-info .case-growth-note {
  position: absolute;
  top: calc(100% + 0.48rem);
  right: 0;
  z-index: 8;
  width: min(18rem, calc(100vw - 4rem));
  margin: 0;
  border: 1px solid #dfe5ee;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 31, 48, 0.14);
  padding: 0.68rem 0.76rem;
}

.case-growth-inner {
  margin-top: 0.44rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  gap: 0.36rem;
}

.case-growth-yaxis {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  gap: 0;
  align-items: center;
  padding: 0.4rem 0 1.5rem;
}

.case-growth-yaxis span {
  color: #000000;
  font-size: 0.72rem;
  line-height: 1;
  opacity: 1;
}

.case-growth-canvas {
  position: relative;
  padding-top: 0.2rem;
}

.case-growth-canvas svg {
  width: 100%;
  height: 170px;
  display: block;
}

.case-growth-grid {
  stroke: #dbe5ef;
  stroke-width: 1;
  stroke-dasharray: 3.5 5;
}

.case-growth-axis {
  stroke-dasharray: none;
  stroke: #a6b5c7;
  stroke-width: 1.15;
}

.case-growth-zero-line {
  stroke: #72839b;
  stroke-width: 1.8;
  stroke-dasharray: none;
}

.case-growth-axis-y {
  stroke-width: 1;
}

.case-growth-tick {
  stroke: #a6b5c7;
  stroke-width: 1.1;
}

.case-growth-line {
  fill: none;
  stroke: var(--case-graph-green);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-growth-line-negative {
  stroke: var(--fit-red);
}

.case-growth-area {
  fill: rgba(98, 188, 152, 0.18);
}

.case-growth-area-negative {
  fill: rgba(201, 76, 76, 0.22);
}

.case-growth-canvas circle {
  display: none;
}

.case-growth-point {
  position: absolute;
  left: var(--point-x);
  top: var(--point-y);
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: var(--case-graph-green);
  border: 2px solid #ffffff;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.case-growth-point--negative {
  background: var(--fit-red);
}

.case-growth-label {
  position: absolute;
  color: var(--case-graph-green);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  padding: 0.08rem 0.24rem;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  z-index: 4;
  left: var(--label-x);
  top: var(--label-y);
}

.case-growth-label-start {
  transform: translate(var(--label-tx, -10%), var(--label-ty, -145%));
}

.case-growth-label-mid {
  transform: translate(var(--label-tx, -50%), var(--label-ty, 35%));
}

.case-growth-label-end {
  transform: translate(var(--label-tx, -98%), var(--label-ty, -145%));
}

.case-growth-label--negative {
  color: var(--fit-red);
}

.case-growth-xaxis {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.04rem;
  display: flex;
  justify-content: space-between;
}

.case-growth-xaxis span {
  color: #000000;
  opacity: 1;
  font-size: 0.78rem;
}

.case-rich-card-featured {
  border-color: #dfe5ee;
  box-shadow: none;
}

.case-rich-card-featured .case-rich-media::after {
  content: "";
}

.case-rich-card-featured .case-stat {
  border-color: #dfe5ee;
  background: #fbfcfd;
}

.case-rich-card-featured .case-growth {
  border-color: #dfe5ee;
  background: #fbfcfd;
}

.case-growth-note {
  margin: 0.72rem 0 0;
  color: #000000;
  opacity: 1;
  font-size: 0.82rem;
  line-height: 1.5;
}

.cases-grid-spacer {
  display: none;
}

.cases-note {
  margin: 1rem auto 0;
  max-width: 82ch;
  color: #000000;
  font-size: 0.9rem;
  line-height: 1.46;
  text-align: center;
}

.cases-mobile-more {
  display: none;
}

.eligibility-section {
  background: #ffffff;
  padding: var(--section-space-tight) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 120px;
}

.eligibility-shell {
  width: var(--container-main);
  margin: 0 auto;
}

.eligibility-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.eligibility-kicker {
  width: fit-content;
  margin: 0 auto 0.72rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(13, 88, 105, 0.2);
  background: rgba(13, 88, 105, 0.06);
  color: var(--ci-green);
  padding: 0.34rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.eligibility-head h2 {
  margin: 0 auto;
  max-width: 24ch;
  color: #000000;
  font-size: clamp(2rem, 4.1vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.eligibility-head p {
  margin: 1rem auto 0;
  max-width: var(--copy-max);
  color: var(--subline-light);
  font-size: var(--subline-size);
  line-height: var(--subline-line);
}

.eligibility-grid {
  margin-top: clamp(1.7rem, 3vw, 2.3rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.eligibility-card {
  min-width: 0;
  min-height: 100%;
  border-radius: 24px;
  border: 1px solid #dfe5ee;
  background: #fbfcfd;
  padding: clamp(1.05rem, 1.8vw, 1.3rem);
}

.eligibility-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(13, 88, 105, 0.18);
  background: rgba(13, 88, 105, 0.06);
  color: var(--ci-green);
}

.eligibility-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eligibility-card h3 {
  margin: 0.9rem 0 0;
  color: #000000;
  font-size: clamp(1.16rem, 1.6vw, 1.36rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.eligibility-card p {
  margin: 0.62rem 0 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: 0.98rem;
  line-height: 1.52;
}

.eligibility-cta {
  margin: clamp(1.5rem, 2.8vw, 2rem) auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.86rem 1rem;
  text-align: center;
}

.eligibility-btn {
  min-height: 52px;
  background: var(--ci-green);
  color: #ffffff;
  padding: 0.94rem 1.24rem;
  font-size: 0.96rem;
}

.eligibility-btn:hover {
  background: var(--ci-green-hover);
}

.eligibility-cta p {
  flex: 1 1 360px;
  max-width: 56ch;
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.96rem;
  line-height: 1.48;
}

.process-transfer-section {
  background: var(--bg);
  padding: var(--section-space) 0 clamp(2.2rem, 4vw, 3.2rem);
}

.process-transfer-shell {
  width: var(--container-main);
  margin: 0 auto;
}

.process-transfer-intro {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.process-transfer-tag {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.54rem 1.15rem;
  border-radius: 999px;
  border: 1px solid #dfe5ee;
  background: #ffffff;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-size: 0.8rem;
  font-weight: 900;
}

.process-transfer-intro h2 {
  margin: 0 auto;
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: clamp(2rem, 4.1vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  max-width: 24ch;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.process-transfer-intro p {
  margin: 1.2rem auto 0;
  color: var(--subline-light);
  opacity: 1;
  font-size: var(--subline-size);
  line-height: var(--subline-line);
  max-width: var(--copy-max);
}

.process-transfer-list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.86rem;
  min-width: 0;
  width: min(82%, 980px);
  max-width: none;
  margin: clamp(2rem, 3.8vw, 2.7rem) auto 0;
}

.process-transfer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: stretch;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  margin-top: clamp(2rem, 3.8vw, 2.7rem);
}

.process-transfer-grid .process-transfer-list {
  width: 100%;
  margin: 0;
}

.process-transfer-list::before {
  content: "";
  position: absolute;
  top: 1.65rem;
  bottom: 1.65rem;
  left: 3.1rem;
  width: 1px;
  background: #dfe5ee;
}

.process-transfer-item {
  position: relative;
  display: grid;
  grid-template-columns: 4.15rem minmax(0, 1fr);
  column-gap: 1.1rem;
  align-items: start;
  border-radius: 30px;
  border: 1px solid #dfe5ee;
  background: #ffffff;
  box-shadow: none;
  padding: 1.18rem 1.32rem;
}

.process-transfer-num {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 3.55rem;
  min-height: 3.55rem;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(13, 88, 105, 0.18);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ci-green);
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.22rem, 1.5vw, 1.58rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}

.process-transfer-item h3 {
  grid-column: 2;
  margin: 0.08rem 0 0;
  color: #000000;
  font-size: clamp(1.22rem, 1.6vw, 1.58rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: none;
  text-wrap: balance;
}

.process-transfer-item p {
  grid-column: 2;
  margin: 0.48rem 0 0;
  color: #000000;
  opacity: 0.82;
  font-size: clamp(0.95rem, 1.08vw, 1.02rem);
  line-height: 1.56;
  max-width: 72ch;
}

.process-app-card {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  border: 0;
  background: transparent;
  padding: 0;
  overflow: visible;
}

.process-app-card .app-control-device {
  width: min(172%, 700px);
  margin: 0 auto;
  overflow: visible;
  transform: translateX(10%);
  transform-origin: center center;
}

.process-app-card .app-control-device picture {
  clip-path: inset(0 14% 0 14%);
  transform: scale(1.42);
  transform-origin: center center;
}

.app-control-section {
  background: var(--bg);
  padding: var(--section-space) 0;
  overflow: hidden;
  scroll-margin-top: 120px;
}

.app-control-shell {
  width: var(--container-main);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.app-control-copy {
  max-width: 740px;
}

.app-control-kicker {
  margin: 0 0 0.72rem;
  color: var(--ci-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.app-control-copy h2 {
  margin: 0;
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: clamp(2.05rem, 4.15vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0;
  max-width: 20ch;
  scroll-margin-top: 120px;
  text-wrap: balance;
}

.app-control-subline {
  margin: 1.18rem 0 0;
  color: var(--subline-light);
  opacity: 1;
  font-size: var(--subline-size);
  line-height: var(--subline-line);
  max-width: var(--copy-max);
}

.app-control-list {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
}

.app-control-list li {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  align-items: start;
  gap: 0.72rem;
  color: #000000;
  font-size: clamp(1rem, 1.18vw, 1.1rem);
  line-height: 1.48;
  letter-spacing: 0;
}

.app-control-list span {
  color: var(--ci-check);
  font-weight: 900;
  line-height: 1;
  transform: translateY(0.11rem);
}

.app-control-note {
  max-width: 55ch;
  margin: 1.24rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--ci-green);
  color: #000000;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  font-weight: 700;
  line-height: 1.5;
}

.app-control-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-control-device {
  width: clamp(340px, 32vw, 500px);
  min-height: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0;
}

.app-control-device picture {
  width: 100%;
  max-width: 100%;
  display: block;
}

.app-control-device img {
  width: 100%;
  max-width: 100%;
  max-height: none;
  height: auto;
  display: block;
  object-fit: contain;
}

#einwaende {
  padding: clamp(2.4rem, 4.4vw, 3.8rem) 0 clamp(1.8rem, 3.2vw, 2.8rem);
  background: var(--bg);
}

#einwaende .container {
  width: var(--container-main);
  margin: 0 auto;
}

#einwaende .two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

#einwaende .section-head {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(1.55rem, 2.9vw, 2.2rem);
  text-align: center;
}

#einwaende .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dfe5ee;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-size: 12px;
  font-weight: 900;
}

#einwaende h2 {
  margin: 0 0 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.1vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: #000000;
  text-wrap: balance;
}

#einwaende .objection-title-line {
  display: inline;
}

#einwaende .section-subline {
  margin: 0 auto;
  max-width: var(--copy-max);
  color: var(--subline-light);
  opacity: 1;
  font-size: var(--subline-size);
  line-height: var(--subline-line);
}

@media (min-width: 900px) {
  #einwaende .section-head {
    max-width: 980px;
  }

  #einwaende .objection-title-line {
    display: block;
  }
}

#einwaende h3 {
  margin: 0 0 0.44rem;
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #000000;
}

#einwaende .muted {
  color: #000000;
  opacity: 0.82;
  line-height: 1.58;
}

#einwaende .objection-card {
  background: #ffffff;
  border: 1px solid #dfe5ee;
  border-radius: 32px;
  padding: clamp(1.3rem, 2.6vw, 2.1rem);
  box-shadow: none;
}

#einwaende .objection {
  padding: clamp(1.05rem, 2vw, 1.35rem) 0;
  border-top: 1px solid #d8e0ec;
}

#einwaende .objection:first-child {
  border-top: 0;
  padding-top: 0;
}

#einwaende .objection:last-child {
  padding-bottom: 0;
}

#kontakt {
  padding: clamp(2.3rem, 4vw, 3.2rem) 0 var(--section-space);
  background: var(--bg);
}

#kontakt .container {
  width: var(--container-main);
  margin: 0 auto;
}

#kontakt .cta-panel {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(1.4rem, 2.6vw, 2.2rem);
  align-items: center;
  border-radius: 32px;
  padding: clamp(1.6rem, 3.2vw, 2.5rem);
  color: #f5f8ff;
  border: 1px solid #1f1f1f;
  background: #0d0d0d;
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.24);
}

#kontakt .tag.dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-size: 12px;
  font-weight: 900;
}

#kontakt h2 {
  margin: 0 0 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.3vw, 3.45rem);
  line-height: 1.07;
  letter-spacing: -0.022em;
  max-width: 18ch;
  text-wrap: balance;
}

#kontakt h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.68rem, 2.25vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

#kontakt .muted {
  color: #b0bbce;
}

#kontakt .kontakt-intro-copy {
  margin: 0 0 1.15rem;
  max-width: 46ch;
  color: var(--subline-dark);
  font-size: var(--subline-size);
  line-height: var(--subline-line);
}

#kontakt .bullet-list {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

#kontakt .bullet-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

#kontakt .bullet-list span {
  flex: 0 0 auto;
  font-weight: 950;
  color: #73d2ae;
}

#kontakt .form-card {
  background: var(--bg);
  color: #000000;
  border: 1px solid #dfe5ee;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.11);
}

#kontakt .form-card .muted {
  color: #000000;
}

#kontakt .field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

#kontakt label {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
}

#kontakt input,
#kontakt select {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid #d5ddea;
  padding: 0 16px;
  color: #000000;
  background: var(--bg);
  font: inherit;
}

#kontakt .field-error {
  display: none;
  margin: 0;
  color: #b91c1c;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

#kontakt .field-error.is-visible {
  display: block;
}

#kontakt .iti {
  width: 100%;
  display: block;
}

#kontakt .iti input {
  width: 100%;
  padding-left: 7.25rem;
}

#kontakt .iti--separate-dial-code .iti__selected-flag {
  background: #eef2f6;
  border-right: 1px solid #d5ddea;
  border-radius: 18px 0 0 18px;
  padding: 0 0.75rem 0 1rem;
}

#kontakt .iti--separate-dial-code .iti__selected-dial-code {
  color: #111827;
  font-weight: 800;
}

#kontakt .iti__arrow {
  border-top-color: #5a6471 !important;
}

#kontakt .iti.is-invalid input {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.iti--container {
  z-index: 4000;
}

.iti--container:not(.iti--fullscreen-popup) .iti__country-list {
  max-height: min(300px, calc(100vh - 180px));
  padding: 4px 0;
}

.iti--container:not(.iti--fullscreen-popup) .iti__country {
  padding: 10px 14px;
  font-size: 14px;
}

.iti--container:not(.iti--fullscreen-popup) .iti__country.iti__highlight {
  background: #edf3f7;
}

.iti--container:not(.iti--fullscreen-popup) .iti__dial-code {
  color: #7f8591;
  font-weight: 500;
}

#kontakt select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a5363' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
}

#kontakt select::-ms-expand {
  display: none;
}

#kontakt .btn {
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.12s ease;
  text-align: center;
  white-space: normal;
}

#kontakt .btn-bronze {
  background: var(--ci-green);
  color: #ffffff;
  box-shadow: none;
  width: 100%;
}

#kontakt .btn-bronze:hover {
  background: var(--ci-green-hover);
}

#kontakt .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

#kontakt .form-status {
  display: none;
  margin: 0.72rem 0 0;
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.38;
}

#kontakt .form-status.is-visible {
  display: block;
}

#kontakt .form-status.is-error {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #9f1239;
}

#kontakt .form-status.is-success {
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #166534;
}

#kontakt .small {
  color: #000000;
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 0.68rem 0 0;
}

#kontakt .small a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

#kontakt .risk {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  color: #000000;
  border: 1px solid #dfe5ee;
  font-size: 14px;
}

@media (max-width: 1020px) {
  #kontakt .cta-panel {
    grid-template-columns: 1fr;
    padding: 2.1rem 1.3rem;
    gap: 1.4rem;
  }

  #kontakt h3 {
    font-size: 1.7rem;
  }
}

@media (min-width: 640px) {
  .scoreflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .header-shell {
    grid-template-columns: auto 1fr auto;
    min-height: 82px;
  }

  .main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .btn-header {
    display: inline-flex;
    padding: 0.78rem 1.18rem;
  }

  .hero-section {
    padding: 5rem 0 4.8rem;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 2rem;
  }

  .fit-card {
    justify-self: end;
    width: min(100%, 444px);
    padding: 1.06rem;
  }

  .fit-carousel {
    row-gap: 0.8rem;
  }

  .fit-slides {
    min-height: 426px;
  }

  .fit-case {
    font-size: 0.76rem;
  }

  .fit-progress {
    height: 6px;
  }

  .fit-nav {
    width: 2.58rem;
    height: 2.58rem;
  }

  .fit-nav-prev {
    margin-left: 0.22rem;
  }

  .fit-nav-next {
    margin-right: 0.22rem;
  }

  .fit-dot {
    width: 0.72rem;
    height: 0.72rem;
  }

  .fit-dot.is-active {
    width: 1.64rem;
  }

  .hero-alt-section {
    padding: 3.4rem 0 5.2rem;
  }

  .hero-alt-shell {
    grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.9fr);
    gap: clamp(2rem, 3vw, 2.6rem);
    align-items: start;
  }

  .hero-alt-copy h1 {
    max-width: 16.5ch;
    font-size: clamp(3.1rem, 4.25vw, 4.35rem);
  }

  .hero-alt-eyebrow {
    margin-bottom: 0.7rem;
    font-size: 0.82rem;
  }

  .hero-alt-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-alt-panel {
    justify-self: end;
    width: min(100%, 540px);
    padding: 1.24rem;
    border-radius: 28px;
  }

  .hero-results-card {
    align-self: stretch;
    justify-self: end;
    width: min(100%, 510px);
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    padding: 1.55rem;
  }

  .hero-results-main {
    margin-top: 1.18rem;
    padding-bottom: 0.9rem;
  }

  .hero-results-main strong {
    font-size: clamp(3.45rem, 5.32vw, 4.86rem);
  }

  .hero-results-main p {
    font-size: clamp(1.4rem, 2.38vw, 1.9rem);
  }

  .hero-results-benefit {
    margin-top: 0.82rem;
  }

  .hero-results-benefit p {
    font-size: clamp(0.74rem, 1.15vw, 0.88rem);
    line-height: 1.34;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  .hero-results-list {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    margin-top: 0.96rem;
  }

  .hero-results-item {
    flex: 1 1 0;
    grid-template-columns: 3.82rem minmax(0, 1fr);
    min-height: 5.26rem;
    gap: 1.02rem;
    padding: 0.88rem 0;
  }

  .hero-results-icon {
    width: 3.82rem;
    height: 3.82rem;
  }

  .hero-results-item strong {
    font-size: clamp(1.64rem, 2.42vw, 2.18rem);
  }

  .hero-results-item p {
    font-size: 0.88rem;
  }

  .hero-results-footer {
    margin-top: 0.8rem;
    font-size: 0.86rem;
    line-height: 1.38;
  }

  .hero-screening-head {
    padding-top: 0.55rem;
  }

  .hero-profile-list {
    margin-top: 1.15rem;
  }

  .hero-profile-card {
    padding: 0.78rem;
  }

  .cta-check-section {
    padding: 5rem 0 7rem;
  }

  .cta-check-shell {
    width: min(1320px, 80vw);
  }

  .cta-check-intro h2 {
    max-width: 24ch;
    margin: 0 auto;
    font-size: clamp(2.3rem, 3vw, 3.6rem);
    line-height: 1.06;
  }

  .cta-check-intro p {
    margin-top: 1.16rem;
    font-size: 0.98rem;
    max-width: 66ch;
  }

  .cta-check-layout {
    margin-top: 2.5rem;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    border-radius: 0;
    padding: 0;
    gap: 1.5rem;
  }

  .cta-check-formcard {
    border-radius: 24px;
    padding: 1.5rem 1.35rem 1.2rem;
  }

  .cta-form-top h3 {
    max-width: 15ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 2.4vw, 3rem);
  }

  .cta-check-form {
    margin-top: 1.12rem;
    gap: 0.82rem;
  }

  .cta-input-row {
    min-height: 66px;
    padding: 0 1.22rem;
  }

  .cta-input-icon {
    width: 1.45rem;
    height: 1.45rem;
  }

  .cta-input-row input {
    font-size: 1.02rem;
  }

  .cta-submit-btn {
    border-radius: 17px;
    min-height: 70px;
    font-size: 1.4rem;
  }

  .cta-checkmark {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.7rem;
  }

  .cta-benefit-row p {
    font-size: 1rem;
    max-width: 34ch;
  }

  .cta-check-benefits {
    gap: 1rem;
    padding: 0.25rem 0.55rem 0.2rem 0.1rem;
  }

  .cta-rating {
    margin-top: 0.15rem;
  }

  .metrics-proof-section {
    padding: var(--section-space) 0 var(--section-space-loose);
  }

  .metrics-proof-head h2 {
    margin-bottom: 1.05rem;
    max-width: 20ch;
    white-space: normal;
    font-size: clamp(2.15rem, 3.3vw, 3.2rem);
  }

  .cases-section {
    padding: var(--section-space-tight) 0 var(--section-space-loose);
  }

  .cases-shell {
    display: block;
  }

  .cases-head {
    text-align: center;
    margin-bottom: clamp(1.9rem, 3vw, 2.5rem);
    padding-top: 0;
  }

  .cases-head h2 {
    margin: 0 auto;
    max-width: 21ch;
    font-size: clamp(2.1rem, 3vw, 3.15rem);
  }

  .cases-subline {
    margin: 1rem auto 0;
    max-width: 74ch;
  }

  .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    align-items: start;
  }

  .cases-grid-spacer {
    display: none;
  }

  .case-rich-body {
    padding: 1.04rem 1.06rem 1.1rem;
  }

  .case-rich-media-caption h3 {
    max-width: 19ch;
  }

  .positioning-section {
    padding: var(--section-space) 0;
  }

  .positioning-shell h2 {
    max-width: 19ch;
    font-size: clamp(2.2rem, 3.3vw, 3.55rem);
  }

  .desktop-break {
    display: block;
  }

  .positioning-copy {
    margin-top: 1.12rem;
    font-size: 1.07rem;
    max-width: 58ch;
  }

  .positioning-grid {
    margin-top: 2.1rem;
    gap: 1.15rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .positioning-card {
    min-height: 0;
    padding: 1.4rem 1.3rem;
    border-radius: 30px;
    gap: 0.92rem;
  }

  .positioning-card h3 {
    font-size: clamp(1.72rem, 2.15vw, 2.15rem);
    max-width: 12ch;
  }

  .positioning-card p {
    font-size: 1.02rem;
  }

  .founders-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .founder-card {
    min-height: 0;
    padding: 1.7rem 1.6rem;
  }

  .founder-approach-card {
    padding: 2rem 1.8rem;
  }

  .founder-approach-content {
    gap: 0.85rem;
  }

  .founder-approach-card p:not(.founder-approach-kicker) {
    max-width: none;
  }

  .problem-focus-grid {
    margin-top: 2rem;
    gap: 1.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .problem-focus-card {
    min-height: 356px;
    padding: 1.7rem;
  }

  .problem-focus-card h3 {
    font-size: clamp(1.72rem, 2.15vw, 2.22rem);
  }

  .problem-focus-card p {
    font-size: 1rem;
  }

  .scoreflow-section {
    padding: 3rem 0 4.8rem;
  }

  .scoreflow-panel {
    border-radius: 42px;
    padding: 2.2rem 2.1rem 2rem;
  }

  .scoreflow-head h2 {
    white-space: nowrap;
    font-size: clamp(1.6rem, 2.5vw, 2.45rem);
  }

  .scoreflow-grid {
    margin-top: 1.65rem;
    gap: 0.88rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }

  .score-card {
    min-height: 178px;
    padding: 1.14rem 1.24rem;
    border-radius: 26px;
    height: 100%;
  }

  .score-card-value {
    font-size: clamp(2rem, 2.85vw, 2.68rem);
  }

  .score-card-copy {
    font-size: 1.02rem;
  }
}

@media (min-width: 700px) and (max-width: 899px) {
  .problem-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-focus-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1021px) and (max-width: 1280px) {
  .case-stat-value {
    font-size: clamp(1.28rem, 1.95vw, 1.56rem);
  }

  .case-growth-toggle {
    font-size: clamp(0.86rem, 1vw, 0.92rem);
  }

  .process-app-card .app-control-device {
    width: min(132%, 540px);
    transform: translateX(5%);
  }

  .process-app-card .app-control-device picture {
    clip-path: inset(0 11% 0 11%);
    transform: scale(1.24);
  }
}

@media (min-width: 1021px) {
  .hero-alt-secondary,
  .final-cta-btn-secondary {
    display: none !important;
  }

  .case-profile-proof {
    min-height: 9rem;
  }

  .case-profile-proof p:last-child {
    min-height: calc(1.42em * 2);
  }
}

@media (hover: hover) and (pointer: fine) {
  .hero-alt-secondary,
  .final-cta-btn-secondary {
    display: none !important;
  }
}

@media (max-width: 1020px) {
  .metrics-proof-focus {
    grid-template-columns: 1fr;
    max-width: 848px;
  }

  .market-filter-top {
    grid-template-columns: 1fr;
  }

  .market-filter-copy-block h2 {
    max-width: 18ch;
  }

  .market-filter-summary {
    min-height: 200px;
  }

  .metric-focus-main,
  .metric-focus-right {
    min-height: 0;
  }

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

  .cases-shell {
    display: block;
  }

  .cases-head {
    text-align: center;
    margin-bottom: 1.75rem;
    padding-top: 0;
  }

  .cases-head h2 {
    margin: 0 auto;
    max-width: 22ch;
  }

  .cases-subline {
    margin: 0.94rem auto 0;
    max-width: 70ch;
  }

  .cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.05rem;
  }

  .cases-grid-spacer {
    display: none;
  }

  .app-control-shell {
    grid-template-columns: 1fr;
    gap: 1.55rem;
    max-width: 760px;
  }

  .app-control-copy h2 {
    max-width: 18ch;
    font-size: clamp(1.95rem, 5.4vw, 2.8rem);
  }

  .app-control-subline {
    margin-top: 1rem;
    max-width: var(--copy-max);
  }

  .app-control-list {
    margin-top: 1.12rem;
    gap: 0.68rem;
  }

  .app-control-list li {
    font-size: clamp(1rem, 2.3vw, 1.1rem);
    gap: 0.62rem;
  }

  .app-control-visual {
    justify-content: center;
  }

  .app-control-device {
    width: min(68vw, 390px);
    min-height: 0;
    border-radius: 0;
    padding: 0;
  }

  .app-control-device img {
    width: 100%;
    max-height: none;
  }

  .process-transfer-intro h2 {
    font-size: clamp(1.95rem, 5.2vw, 2.85rem);
    max-width: 19ch;
  }

  .process-transfer-list {
    width: 100%;
  }

  .process-transfer-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }

  .process-app-card {
    display: grid;
    justify-items: center;
    min-height: 0;
    order: -1;
    grid-template-columns: minmax(0, 0.9fr) minmax(220px, 300px);
    align-items: center;
    padding: 0.2rem 0 0.65rem;
  }

  .process-transfer-list::before {
    display: none;
  }

  .process-transfer-intro p {
    margin-top: 1rem;
    max-width: 58ch;
  }

  .process-transfer-item {
    display: block;
    border-radius: 26px;
    padding: 1.24rem 1.16rem 1.3rem;
  }

  .process-transfer-num {
    width: auto;
    min-height: 0;
    display: block;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 1.5rem;
  }

  .process-transfer-item h3 {
    margin-top: 0.68rem;
    font-size: clamp(1.2rem, 3.2vw, 1.52rem);
    max-width: none;
  }

  .process-transfer-item p {
    margin-top: 0.54rem;
    font-size: 0.96rem;
    max-width: none;
  }

  .process-app-card .app-control-device {
    width: clamp(230px, 42vw, 320px);
    transform: none;
  }

  .process-app-card .app-control-device picture {
    clip-path: inset(0 8% 0 8%);
    transform: scale(1.05);
  }

  .final-cta-shell h2 {
    max-width: 20ch;
  }

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

  .site-footer-address {
    grid-column: 1 / -1;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.72rem;
  }

  .logo {
    gap: 0.5rem;
    font-size: clamp(1.12rem, 4.8vw, 1.26rem);
  }

  .logo-mark {
    width: 2.22rem;
    height: 2.22rem;
  }

  .header-phone {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .btn-header {
    display: inline-flex;
    padding: 0.58rem 0.78rem;
    font-size: var(--cta-font-size-mobile);
  }

  .btn-header-label-full {
    display: none;
  }

  .btn-header-label-short {
    display: inline;
  }

  .decision-cta-shell h2 {
    max-width: 24ch;
    font-size: clamp(1.6rem, 7vw, 1.9rem);
    white-space: normal;
  }

  .metrics-proof-focus {
    margin-bottom: 0.9rem;
    gap: 0.85rem;
  }

  .metric-focus-main {
    min-height: 0;
    border-radius: 22px;
    padding: 1.2rem 1.08rem 1.12rem;
  }

  .metric-focus-kicker {
    font-size: 1.06rem;
    margin-bottom: 0.45rem;
  }

  .metric-focus-main strong {
    font-size: clamp(2.5rem, 14vw, 3.65rem);
  }

  .metric-focus-line {
    font-size: clamp(1.2rem, 5.2vw, 1.48rem);
  }

  .metric-focus-copy {
    margin-top: 0;
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .metric-focus-right {
    min-height: 0;
    border-radius: 22px;
    padding: 0;
  }

  .metric-focus-title {
    font-size: 1.02rem;
  }

  .metric-quick-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .metric-quick-item {
    --mq-icon-col: 2.95rem;
    --mq-col-gap: 1.02rem;
    --mq-pad-x: 0.92rem;
    min-height: 98px;
    padding: 0.72rem var(--mq-pad-x);
    border-radius: 16px;
  }

  .metric-quick-item::before {
    left: calc(var(--mq-pad-x) + var(--mq-icon-col) + (var(--mq-col-gap) / 2));
    top: 0.72rem;
    bottom: 0.72rem;
  }

  .metric-quick-icon {
    transform: translateX(-0.3rem);
  }

  .metric-quick-icon svg {
    stroke-width: 1.9;
  }

  .metric-quick-value {
    margin-top: 0;
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .metric-quick-label {
    margin-top: 0;
    font-size: 0.95rem;
  }

  .market-filter-section {
    padding: 0 0 2.9rem;
  }

  .market-filter-shell {
    width: min(100% - 24px, 540px);
  }

  .market-filter-panel {
    border-radius: 24px;
    padding: 1.02rem;
  }

  .market-filter-kicker {
    font-size: 0.7rem;
  }

  .market-filter-copy-block h2 {
    max-width: none;
    font-size: clamp(1.78rem, 8vw, 2.25rem);
    line-height: 1.06;
  }

  .market-filter-copy-block p:last-child {
    margin-top: 0.78rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .market-filter-summary {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 19px;
  }

  .market-filter-visual {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid rgba(98, 188, 152, 0.28);
  }

  .market-filter-bars {
    height: 104px;
    width: min(62%, 178px);
    gap: 6px;
  }

  .market-filter-bars span {
    width: 8px;
  }

  .market-filter-bars span:nth-child(1) {
    height: 30px;
  }

  .market-filter-bars span:nth-child(2) {
    height: 44px;
  }

  .market-filter-bars span:nth-child(3) {
    height: 58px;
  }

  .market-filter-bars span:nth-child(4) {
    height: 70px;
  }

  .market-filter-bars span:nth-child(5) {
    height: 56px;
  }

  .market-filter-bars span:nth-child(6) {
    height: 42px;
  }

  .market-filter-bars span:nth-child(7) {
    height: 29px;
  }

  .market-filter-stat {
    padding: 0.98rem;
  }

  .market-filter-stat p {
    font-size: 0.74rem;
  }

  .market-filter-stat strong {
    font-size: clamp(2.85rem, 15vw, 3.7rem);
  }

  .market-filter-stat span {
    font-size: clamp(1.1rem, 5.2vw, 1.38rem);
  }

  .market-filter-stat small {
    font-size: 0.9rem;
  }

  .market-filter-divider {
    margin: 1rem 0 0.82rem;
    grid-template-columns: 1fr;
    gap: 0.48rem;
    font-size: 0.7rem;
    text-align: left;
  }

  .market-filter-divider::before,
  .market-filter-divider::after {
    display: none;
  }

  .market-filter-profiles {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .market-filter-profile {
    border-radius: 19px;
    padding: 0.86rem;
  }

  .market-filter-profile-head {
    grid-template-columns: 2.45rem minmax(0, 1fr);
    gap: 0.62rem;
  }

  .market-filter-profile-icon {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.16rem;
  }

  .market-filter-profile h3 {
    font-size: clamp(1.28rem, 6.6vw, 1.62rem);
  }

  .market-filter-profile-head p {
    margin-top: 0.32rem;
    font-size: 0.78rem;
  }

  .market-filter-search {
    margin-top: 0.78rem;
    padding-top: 0.68rem;
    font-size: 0.88rem;
  }

  .market-filter-rows {
    gap: 0.5rem;
  }

  .market-filter-rows p {
    min-height: 52px;
    grid-template-columns: minmax(5.2rem, 0.36fr) minmax(0, 1fr);
    border-radius: 14px;
    padding: 0.6rem 0.68rem;
    gap: 0.62rem;
  }

  .market-filter-rows strong {
    font-size: clamp(1.46rem, 7.4vw, 1.88rem);
  }

  .market-filter-rows span {
    font-size: 0.84rem;
  }

  .market-filter-proof {
    justify-content: flex-start;
    text-align: left;
    font-size: 0.92rem;
    line-height: 1.36;
  }

  .market-filter-proof span {
    width: 1.72rem;
    height: 1.72rem;
  }

  .metrics-proof-grid {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 150px;
    padding: 22px;
    border-radius: 22px;
  }

  .metric-card strong {
    font-size: clamp(40px, 14vw, 58px);
  }

  .cases-head h2 {
    max-width: 19ch;
    white-space: normal;
  }

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

  .case-rich-card {
    border-radius: 22px;
  }

  .case-rich-body {
    padding: 0.98rem 0.92rem 1rem;
  }

  .case-rich-media-caption {
    left: 0.72rem;
    right: 0.72rem;
    bottom: 0.66rem;
  }

  .case-rich-media-caption h3 {
    max-width: none;
    font-size: clamp(1.02rem, 5.2vw, 1.42rem);
  }

  .case-rich-copy-below {
    margin-bottom: 0.68rem;
    font-size: clamp(0.87rem, 3.2vw, 0.98rem);
    min-height: 0;
  }

  .case-profile-proof {
    margin-bottom: 0.72rem;
  }

  .case-profile-proof p {
    font-size: clamp(0.87rem, 3.2vw, 0.98rem);
    line-height: 1.38;
  }

  .case-profile-proof p + p {
    margin-top: 0.34rem;
  }

  .case-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .case-stat {
    padding: 0.58rem 0.58rem;
    min-height: 5.15rem;
  }

  .case-stat-label {
    font-size: 0.7rem;
  }

  .case-stat-value {
    font-size: clamp(1.18rem, 6vw, 1.46rem);
  }

  .case-growth-toggle {
    position: relative;
    margin-top: 0.72rem;
    width: 100%;
    min-height: 46px;
    border: 1px solid #111111;
    border-radius: var(--radius-pill);
    background: #ffffff;
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 2.9rem 0.72rem 1.1rem;
    font-family: inherit;
    font-size: clamp(0.82rem, 3.7vw, 0.94rem);
    font-weight: 500;
    line-height: 1.15;
    cursor: pointer;
    white-space: nowrap;
  }

  .case-growth-toggle::after {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    position: absolute;
    right: 1.18rem;
    top: 50%;
    border-right: 0.14rem solid currentColor;
    border-bottom: 0.14rem solid currentColor;
    transform: translateY(-62%) rotate(45deg);
    transition: transform 0.18s ease;
  }

  .case-rich-card.is-expanded .case-growth-toggle::after {
    transform: translateY(-38%) rotate(225deg);
  }

  .case-rich-card[data-case-collapsible]:not(.is-expanded) .case-growth {
    display: none;
  }

  .case-stat-icon {
    width: 2.3rem;
    height: 2.3rem;
  }

  .case-stat-icon svg {
    width: 1.12rem;
    height: 1.12rem;
  }

  .case-growth {
    margin-top: 0.72rem;
    padding: 0.58rem 0.62rem 0.64rem;
  }

  .case-growth-canvas svg {
    height: 128px;
  }

  .case-growth-yaxis span {
    font-size: 0.66rem;
  }

  .case-growth-label {
    font-size: 0.65rem;
  }

  .case-growth-note {
    font-size: 0.77rem;
    line-height: 1.46;
  }

  .cases-grid:not(.is-mobile-expanded) .case-card-secondary,
  .cases-grid:not(.is-mobile-expanded) .case-card-tertiary {
    display: none;
  }

  .cases-mobile-more {
    width: 100%;
    min-height: 48px;
    margin-top: 0.9rem;
    border: 1px solid #111111;
    border-radius: var(--radius-pill);
    background: #ffffff;
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1rem;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.15;
    cursor: pointer;
  }

  .cases-mobile-more.is-hidden {
    display: none;
  }

  .hero-alt-section {
    padding: 2rem 0 3rem;
  }

  .hero-alt-shell {
    gap: 1.15rem;
  }

  .hero-alt-copy h1 {
    max-width: none;
    font-size: clamp(2.06rem, 8.55vw, 2.82rem);
    line-height: 1.05;
    text-align: center;
  }

  .hero-alt-eyebrow {
    margin-bottom: 1.35rem;
    font-size: 0.8rem;
    line-height: 1.2;
    text-align: center;
  }

  .hero-alt-subline {
    margin: 0.86rem auto 0;
    max-width: none;
    width: 100%;
    font-size: 1rem;
    line-height: 1.52;
    text-align: center;
  }

  .hero-alt-trust-list {
    margin-top: 1.35rem;
    font-size: 0.95rem;
    line-height: 1.44;
  }

  .hero-alt-actions {
    width: calc(100% - 1.5rem);
    max-width: 24rem;
    margin: 2.7rem auto 0;
    gap: 0.56rem;
  }

  .hero-alt-primary,
  .hero-alt-secondary {
    width: 100%;
    min-height: 52px;
    text-align: center;
  }

  .hero-alt-secondary {
    display: inline-flex;
  }

  .hero-alt-panel {
    border-radius: 22px;
    padding: 0.9rem;
  }

  .hero-results-card {
    border-radius: 24px;
    margin-top: 1.45rem;
    padding: 0.95rem;
  }

  .hero-results-top p {
    padding: 0;
    font-size: 0.72rem;
  }

  .hero-results-main strong {
    font-size: clamp(3rem, 15.1vw, 4rem);
  }

  .hero-results-main p {
    font-size: clamp(1.32rem, 6.7vw, 1.78rem);
  }

  .hero-results-list {
    margin-top: 0.85rem;
  }

  .hero-results-item {
    grid-template-columns: 3.1rem minmax(0, 1fr);
    min-height: 4.72rem;
    gap: 0.72rem;
    padding: 0.76rem 0;
  }

  .hero-results-icon {
    width: 3.1rem;
    height: 3.1rem;
  }

  .hero-results-item strong {
    font-size: clamp(1.66rem, 8.2vw, 2.12rem);
  }

  .hero-results-item p {
    font-size: 0.9rem;
  }

  .hero-market-card {
    grid-template-columns: minmax(6.2rem, 0.62fr) minmax(0, 1fr);
  }

  .hero-market-copy {
    padding: 0.8rem 0.7rem;
  }

  .hero-market-copy strong {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }

  .hero-screening-head h2 {
    max-width: none;
  }

  .hero-profile-card {
    border-radius: 16px;
    padding: 0.74rem;
  }

  .app-control-section {
    padding: 2.65rem 0 3rem;
  }

  .app-control-shell {
    width: min(100% - 24px, 540px);
    gap: 1.25rem;
  }

  .app-control-kicker {
    margin-bottom: 0.56rem;
    font-size: 0.7rem;
  }

  .app-control-copy h2 {
    max-width: 18ch;
    font-size: clamp(1.78rem, 7.4vw, 2.12rem);
    line-height: 1.08;
  }

  .app-control-subline {
    margin-top: 0.82rem;
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.54;
  }

  .app-control-list {
    margin-top: 0.98rem;
    gap: 0.54rem;
  }

  .app-control-list li {
    grid-template-columns: 1.2rem 1fr;
    font-size: 0.94rem;
    line-height: 1.43;
    gap: 0.5rem;
  }

  .app-control-list span {
    transform: translateY(0.09rem);
  }

  .app-control-note {
    margin-top: 0.95rem;
    padding-left: 0.78rem;
    font-size: 0.93rem;
    line-height: 1.46;
  }

  .app-control-device {
    width: min(78vw, 292px);
    min-height: 0;
    border-radius: 0;
    padding: 0;
  }

  .app-control-device img {
    width: 100%;
    max-height: none;
  }

  .process-transfer-intro h2 {
    margin-top: 0;
    font-size: clamp(2rem, 8.4vw, 2.62rem);
    line-height: 1.08;
    max-width: none;
  }

  .founder-background-desktop {
    display: none;
  }

  .founder-background-mobile {
    display: inline;
  }

  .process-transfer-intro p {
    margin-top: 0.9rem;
    max-width: 40ch;
  }

  .process-transfer-item {
    border-radius: 22px;
    padding: 1.1rem 0.95rem 1.15rem;
  }

  .process-transfer-num {
    font-size: 1.36rem;
  }

  .process-transfer-item h3 {
    margin-top: 0.6rem;
    font-size: clamp(1.12rem, 6.3vw, 1.48rem);
  }

  .process-transfer-item p {
    margin-top: 0.5rem;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .process-app-card {
    display: none;
  }

  .process-app-card .app-control-device {
    width: min(76vw, 280px);
  }

  .process-app-card .app-control-device picture {
    clip-path: inset(0 6% 0 6%);
    transform: scale(1);
  }

  #einwaende {
    padding: 2.15rem 0 1.55rem;
    border-top: 1px solid var(--border);
  }

  #einwaende .section-head {
    margin-bottom: 1.35rem;
  }

  #einwaende .objection-card {
    border-radius: 24px;
    padding: 1.16rem;
  }

  #einwaende .objection {
    padding: 0.98rem 0;
  }

  #einwaende h3 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.22rem, 5.6vw, 1.42rem);
    line-height: 1.16;
  }

  #einwaende .muted {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .final-cta-shell h2 {
    max-width: none;
    font-size: clamp(1.68rem, 7.2vw, 1.92rem);
    line-height: 1.08;
  }

  .final-cta-copy {
    max-width: none;
    margin-top: 0.9rem;
  }

  .final-cta-actions {
    margin-top: 1rem;
    flex-direction: column;
    gap: 0.68rem;
  }

  .final-cta-btn {
    width: 100%;
    min-height: 52px;
    font-size: var(--cta-font-size);
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-footer {
    padding: 2.1rem 0;
  }

  .site-footer-shell {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .site-footer-col:nth-child(2) {
    justify-self: start;
  }

  .site-footer-col {
    gap: 0.6rem;
  }

  .site-footer-address {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 360px) {
  .logo {
    gap: 0.42rem;
    font-size: 1.04rem;
  }

  .logo-mark {
    width: 1.96rem;
    height: 1.96rem;
  }

  .btn-header {
    padding: 0.58rem 0.68rem;
    font-size: 0.74rem;
  }

  .btn-header-label-full {
    display: none;
  }

  .btn-header-label-short {
    display: inline;
  }
}

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

@media (max-width: 640px) {
  .eligibility-section {
    padding: 2.7rem 0;
  }

  .eligibility-head {
    text-align: left;
  }

  .eligibility-kicker {
    margin-left: 0;
    margin-right: 0;
  }

  .eligibility-head h2,
  .eligibility-head p {
    margin-left: 0;
    margin-right: 0;
  }

  .eligibility-grid {
    grid-template-columns: 1fr;
    gap: 0.78rem;
  }

  .eligibility-card {
    border-radius: 20px;
    padding: 1rem;
  }

  .eligibility-cta {
    display: grid;
    justify-items: stretch;
    text-align: left;
  }

  .eligibility-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .hero-copy-desktop {
    display: none;
  }

  .hero-copy-mobile {
    display: inline;
  }

  .hero-alt-trust-list li.hero-copy-desktop {
    display: none;
  }

  .hero-alt-trust-list li.hero-copy-mobile {
    display: flex;
  }

  .logo-mark {
    width: 2.22rem;
    height: 2.22rem;
    background: transparent;
  }

  .hero-alt-secondary {
    display: inline-flex !important;
  }

  .cases-grid:not(.is-mobile-expanded) .case-card-secondary,
  .cases-grid:not(.is-mobile-expanded) .case-card-tertiary {
    display: none;
  }

  .cases-mobile-more {
    width: 100%;
    min-height: 48px;
    margin-top: 0.9rem;
    border: 1px solid #111111;
    border-radius: var(--radius-pill);
    background: #ffffff;
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1rem;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.15;
    cursor: pointer;
  }

  .cases-mobile-more.is-hidden {
    display: none;
  }

  .founder-background-desktop {
    display: none;
  }

  .founder-background-mobile {
    display: inline;
  }

  .process-transfer-intro h2 {
    font-size: clamp(2rem, 8.4vw, 2.62rem);
    line-height: 1.08;
    max-width: none;
  }

  .process-app-card {
    display: none !important;
  }

  #kontakt {
    padding: 2.75rem 0;
    background: #0d0d0d;
  }

  #kontakt .container {
    width: 100%;
  }

  #kontakt .cta-panel {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 1rem;
  }

  #kontakt h2 {
    max-width: none;
    font-size: clamp(1.74rem, 7.3vw, 2.08rem);
  }

  #kontakt .kontakt-intro-copy {
    max-width: none;
  }

  #kontakt .form-card {
    border-radius: 22px;
    padding: 1.12rem;
    box-shadow: none;
  }

  #kontakt input,
  #kontakt select {
    min-height: 50px;
    border-radius: 15px;
    font-size: 0.96rem;
  }

  #kontakt .btn {
    min-height: 50px;
    font-size: var(--cta-font-size-mobile);
  }

  .tracking-consent-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    width: auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0.6rem;
    padding: 0.72rem;
    border-radius: 18px;
  }

  .tracking-consent-copy {
    gap: 0.16rem;
  }

  .tracking-consent-copy strong {
    font-size: 0.9rem;
  }

  .tracking-consent-copy p {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .tracking-consent-current,
  .tracking-consent-copy a {
    font-size: 0.72rem;
  }

  .tracking-consent-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
    gap: 0.44rem;
  }

  .tracking-consent-btn {
    width: 100%;
    min-height: 36px;
    padding: 0.48rem 0.52rem;
    font-size: 0.76rem;
  }

  .booking-overlay {
    padding: 0;
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .booking-overlay-backdrop {
    display: none;
  }

  .booking-dialog {
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .booking-close-btn {
    top: max(0.7rem, env(safe-area-inset-top));
    right: max(0.7rem, env(safe-area-inset-right));
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.35rem;
  }
}

@media (min-width: 1200px) {
  .hero-profile-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .positioning-shell h2,
  .founders-team-head h2,
  .problem-focus-head h2,
  .metrics-proof-head h2,
  .cases-head h2,
  .process-transfer-intro h2,
  #einwaende h2 {
    max-width: 30ch;
  }

  .app-control-copy h2 {
    max-width: 20ch;
  }

  .final-cta-shell h2 {
    max-width: 28ch;
  }
}
