:root {
  color-scheme: light;
  --header-height: 64px;
  --content-width: 1160px;
  --wide-width: 1320px;
  --section-y: clamp(3.25rem, 6vw, 5.5rem);
  --section-y-compact: clamp(2rem, 4vw, 3.75rem);
  --radius: 10px;
  --radius-sm: 7px;
  --font-body: "Karla", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: "Comfortaa", "Karla", system-ui, sans-serif;
  --font-brand: "Karla", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --brand-color: #e6194c;
  --brand-darker-color: #b5123b;
  --brand-flat-color: #ffb3c7;
  --theme-color: var(--brand-color);
  --theme-darker-color: var(--brand-darker-color);
  --theme-flat-color: var(--brand-flat-color);
  --business-color: #28a745;
  --business-darker-color: #1f7f36;
  --business-flat-color: #dff4e5;
  --career-color: #007bff;
  --career-darker-color: #0056b3;
  --career-flat-color: #dcecff;
  --life-color: #6f42c1;
  --life-darker-color: #533191;
  --life-flat-color: #eadff8;
  --relations-color: #fd7e14;
  --relations-darker-color: #c65f08;
  --relations-flat-color: #ffe7d2;
  --dark: #2c2c2c;
  --dark-darker: #1d1d1d;
  --light: #ececec;
  --light-darker: #b8b8b8;
  --surface: #ffffff;
  --white: #ffffff;
  --bg: #f6f7fb;
  --soft: #f2f5f8;
  --brand-soft: #fff2f6;
  --text: #2c2c2c;
  --muted: #667381;
  --line: #dde3ea;
  --accent: var(--theme-color);
  --accent-strong: var(--theme-darker-color);
  --shadow: rgba(29, 29, 29, 0.12);
  --warning-text: #6a3d00;
  --warning-bg: #fff4d8;
  --warning-line: #e8c878;
  --on-accent: #ffffff;
  --on-dark: #ffffff;
  --on-dark-muted: rgba(255, 255, 255, 0.76);
  --surface-overlay: rgba(255, 255, 255, 0.94);
}

@font-face {
  font-family: "Karla";
  src: url("/Content/fonts/karla-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Karla";
  src: url("/Content/fonts/karla-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Comfortaa";
  src: url("/Content/fonts/comfortaa-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

.theme-business {
  --theme-color: #28a745;
  --theme-darker-color: #1f7f36;
  --theme-flat-color: #dff4e5;
  --accent: #28a745;
  --accent-strong: #1f7f36;
}

.theme-career {
  --theme-color: #007bff;
  --theme-darker-color: #0056b3;
  --theme-flat-color: #dcecff;
  --accent: #007bff;
  --accent-strong: #0056b3;
}

.theme-life {
  --theme-color: #6f42c1;
  --theme-darker-color: #533191;
  --theme-flat-color: #eadff8;
  --accent: #6f42c1;
  --accent-strong: #533191;
}

.theme-relations {
  --theme-color: #fd7e14;
  --theme-darker-color: #c65f08;
  --theme-flat-color: #ffe7d2;
  --accent: #fd7e14;
  --accent-strong: #c65f08;
}

* {
  box-sizing: border-box;
}

html {
  font-family: var(--font-body);
  font-size: 20px;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-weight: 400;
  line-height: 1.3;
  overflow-x: hidden;
}

a {
  color: var(--accent-strong);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.3;
}

p {
  font-size: 1.15rem;
}

.text-sm {
  font-size: 0.9rem;
}

.text-lg {
  font-size: 1.3rem;
}

.text-center {
  text-align: center;
}

.handwritten {
  font-family: "Kalam", "Segoe Print", "Comic Sans MS", cursive;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 52px;
  padding: 6px clamp(18px, 4vw, 48px);
  background: var(--dark);
  border-top: 0;
  border-bottom: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  white-space: nowrap;
  min-width: 0;
  max-width: min(100%, 18rem);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(24px, calc(var(--header-height, 52px) - 14px), 34px);
  max-width: 100%;
}

.site-nav,
.language-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.site-nav {
  justify-content: center;
  position: relative;
}

.language-nav {
  justify-content: flex-end;
}

@media (min-width: 901px) {
  .site-nav .contact-link {
    position: absolute;
    right: 0;
    top: 50%;
    margin-left: 0;
    transform: translateY(-50%);
  }
}

.site-nav a,
.language-nav a,
.nav-group summary {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 10px;
  color: var(--on-dark);
  font-size: 0.95rem;
  text-decoration: none;
}

.site-nav a:hover,
.language-nav a:hover,
.language-nav a.is-active,
.nav-group[open] summary,
.nav-group summary:hover {
  color: var(--on-dark);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.nav-group {
  position: relative;
}

.nav-group summary {
  cursor: pointer;
  list-style: none;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 45px var(--shadow);
}

.nav-menu-right {
  right: 0;
  left: auto;
}

.nav-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.nav-menu a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--on-dark);
}

.section {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 4vw, 48px);
  scroll-margin-top: 84px;
}

.section:nth-child(even) {
  background: var(--surface);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 12px;
  max-width: 820px;
  font-size: 2.8rem;
}

body:not(.theme-brand) .section h2::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 14px;
  background: var(--accent);
  border-radius: 999px;
}

.hero {
  position: relative;
  box-sizing: border-box;
  height: calc(100dvh - var(--header-height, 60px) - var(--subnav-height, 0px));
  min-height: calc(100dvh - var(--header-height, 60px) - var(--subnav-height, 0px));
  max-height: calc(100dvh - var(--header-height, 60px) - var(--subnav-height, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
  border-bottom: 0;
  padding-top: clamp(0.85rem, 2vw, 1.2rem);
  padding-bottom: clamp(0.85rem, 2vw, 1.2rem);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 36px));
  padding: 2rem;
  text-align: center;
  color: var(--on-dark);
  background: rgba(0, 0, 0, 0.65);
  border-radius: 8px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--on-dark);
  font-size: clamp(1.7rem, 3.45vw, 2.65rem);
  line-height: 1.14;
}

.hero h1::after {
  display: none;
}

.hero-subtitle {
  max-width: 760px;
  margin: 1rem auto 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  border-left: 0;
  font-size: 1.15rem;
  text-align: center;
}

.hero-cta {
  margin-top: 1.25rem;
}

.banner-bg-left {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: auto;
  max-width: none;
  height: 100%;
  pointer-events: none;
}

.banner-bg-right {
  display: none;
}

@media (min-width: 1250px) {
  .banner-bg-right {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    display: block;
    height: 100%;
    pointer-events: none;
  }

  .banner-bg-right img {
    display: block;
    width: auto;
    height: 100%;
  }
}

.section-subtitle,
.section-body {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.15rem;
}

.section-body p:first-child {
  margin-top: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.benefits-media {
  display: grid;
  gap: 16px;
}

.benefits-media img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--bg);
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.prose {
  max-width: 860px;
}

.prose h4 {
  margin: 28px 0 8px;
  color: var(--text);
  font-size: 1.25rem;
}

.prose h4:first-child {
  margin-top: 0;
}

.objective-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.objective-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 8px solid var(--accent);
  border-radius: 8px;
}

.objective-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

.objective-item summary::-webkit-details-marker {
  display: none;
}

.objective-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
  flex: 0 0 auto;
}

.objective-item[open] summary::after {
  transform: rotate(225deg);
}

.objective-description {
  padding: 0 18px 18px;
  color: var(--muted);
}

.example-results {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.result-preview {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.result-bar {
  height: 18px;
  width: 76%;
  background: var(--theme-flat-color);
  border-radius: 999px;
}

.result-bar-strong {
  width: 92%;
  background: var(--accent);
}

.result-bar-soft {
  width: 58%;
  background: var(--soft);
}

.result-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.result-card-row span {
  height: 72px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.highlight-item {
  position: relative;
  min-height: 100%;
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(18, 23, 34, 0.08);
}

.highlight-item.has-section-icon {
  padding-top: 48px;
}

.highlight-item h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.highlight-item p {
  margin: 0 0 10px;
  color: var(--muted);
}

.support-notice {
  padding: clamp(24px, 4vw, 42px);
  background: var(--warning-bg);
  border: 1px solid var(--warning-line);
  border-radius: 8px;
}

.support-notice h2 {
  font-size: 2rem;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  counter-increment: steps;
  position: relative;
  padding: 22px 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 16px 38px rgba(18, 23, 34, 0.08);
}

.step-list li.has-section-icon {
  padding-top: 48px;
}

.step-list li::before {
  content: counter(steps);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  color: var(--on-accent);
  font-weight: 700;
  background: var(--accent-strong);
  border-radius: 999px;
}

.step-list strong,
.step-list span {
  display: block;
}

.step-list span {
  margin-top: 6px;
  color: var(--muted);
}

.staging-gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
}

.staging-gate form {
  width: min(420px, 100%);
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.staging-gate h1 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.staging-gate p {
  margin: 0 0 18px;
  color: var(--muted);
}

.staging-gate input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.staging-gate button {
  width: 100%;
  min-height: 44px;
  margin-top: 12px;
  color: var(--on-accent);
  font-weight: 700;
  background: var(--accent-strong);
  border: 0;
  border-radius: 8px;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.item {
  position: relative;
  min-height: 100%;
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(18, 23, 34, 0.08);
}

.item.has-section-icon {
  padding-top: 48px;
}

.section:nth-child(even) .item {
  background: var(--bg);
}

.item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.item h3 a {
  color: var(--accent-strong);
  text-decoration: none;
}

.item h3 a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.item p {
  color: var(--muted);
  margin: 0 0 10px;
}

.item-meta {
  display: inline-flex;
  margin-right: 10px;
  color: var(--muted);
  font-size: 13px;
}

.section-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: -60px auto 18px;
  color: var(--accent);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(18, 23, 34, 0.12);
}

.section-icon svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.item-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  padding: 4px 8px;
  color: var(--on-accent);
  background: var(--accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.cta-section {
  background: var(--accent-strong);
  color: var(--on-accent);
}

.section.cta-section {
  background: var(--accent);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}

.section.cta-section.bg-brand {
  background: var(--brand-flat-color);
}

.section.cta-section.bg-theme {
  background: var(--accent);
}

.section.cta-section.bg-business {
  background: var(--business-flat-color);
}

.section.cta-section.bg-career {
  background: var(--career-flat-color);
}

.section.cta-section.bg-life {
  background: var(--life-flat-color);
}

.section.cta-section.bg-relations {
  background: var(--relations-flat-color);
}

.section.cta-section.bg-brand,
.section.cta-section.bg-theme,
.section.cta-section.bg-business,
.section.cta-section.bg-career,
.section.cta-section.bg-life,
.section.cta-section.bg-relations {
  color: var(--on-accent);
  border-color: var(--accent);
}

.cta-inner {
  display: grid;
  gap: 10px;
}

.cta-section h2 {
  color: var(--on-accent);
}

.section.cta-section.bg-brand h2,
.section.cta-section.bg-theme h2,
.section.cta-section.bg-business h2,
.section.cta-section.bg-career h2,
.section.cta-section.bg-life h2,
.section.cta-section.bg-relations h2 {
  color: var(--on-accent);
}

.cta-section p {
  max-width: 720px;
  margin: 0;
  color: var(--on-dark-muted);
  font-size: 1.15rem;
}

.section.cta-section.bg-brand p,
.section.cta-section.bg-theme p,
.section.cta-section.bg-business p,
.section.cta-section.bg-career p,
.section.cta-section.bg-life p,
.section.cta-section.bg-relations p {
  color: var(--on-dark-muted);
}

.questionnaire-start {
  background: var(--theme-flat-color);
  border-top: 8px solid var(--accent);
  box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
}

.questionnaire-start.section-size-full {
  padding-block: 0;
}

.questionnaire-embed-card {
  padding: clamp(1rem, 2.8vw, 1.5rem);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(29, 29, 29, 0.08);
}

.warning {
  padding: 14px 16px;
  color: var(--warning-text);
  background: var(--warning-bg);
  border: 1px solid var(--warning-line);
  border-radius: 8px;
}

.start-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.start-steps div {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.start-steps strong,
.start-steps span {
  display: block;
}

.start-steps span {
  margin-top: 5px;
  color: var(--muted);
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 22px;
  padding: 10px 16px;
  color: var(--on-accent);
  font-weight: 700;
  text-decoration: none;
  background: var(--accent-strong);
  border-radius: 8px;
}

.button-link:hover {
  background: var(--accent);
}

.anchor-nav-inner {
  display: flex;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.desktop-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  width: 100%;
}

.desktop-anchor-nav a,
.anchor-dropdown a {
  color: var(--on-dark);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
}

.desktop-anchor-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  border-bottom: 3px solid transparent;
}

.desktop-anchor-nav a:hover,
.desktop-anchor-nav a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.mobile-anchor-nav {
  display: none;
}

.anchor-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--on-dark);
  font-size: 1.25rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  cursor: pointer;
}

.anchor-step:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.anchor-step:disabled {
  color: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.12);
  cursor: default;
}

.anchor-current {
  position: relative;
  flex: 1 1 auto;
}

.anchor-current summary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 36px 8px 14px;
  color: var(--on-dark);
  font-weight: 700;
  text-align: center;
  list-style: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  cursor: pointer;
}

.anchor-current summary::-webkit-details-marker {
  display: none;
}

.anchor-current summary::after {
  position: absolute;
  right: 14px;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.anchor-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  gap: 2px;
  padding: 8px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.anchor-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
}

.anchor-dropdown a:hover,
.anchor-dropdown a.is-active {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin-top: 28px;
}

.faq-tabs {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  margin-top: 30px;
}

.faq-tab-input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.faq-tab-labels {
  display: grid;
  gap: 8px;
  border-left: 0;
  padding-left: 0;
}

.faq-tab-label {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
}

.faq-tab-label:hover,
.faq-tab-label:focus {
  border-color: var(--accent);
  color: var(--accent);
}

.faq-tab-panels {
  min-width: 0;
}

.faq-empty-state {
  display: block;
  margin: 0;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(18, 23, 34, 0.055);
}

.faq-empty-state p:first-child {
  margin-top: 0;
}

.faq-empty-state p:last-child {
  margin-bottom: 0;
}

.faq-tab-panel {
  display: none;
  scroll-margin-top: 96px;
}

.contact-section {
  background: var(--soft);
}

.contact-inner {
  max-width: 760px;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-note {
  margin: -4px 18px 18px;
  padding: 10px 12px;
  border-left: 3px solid var(--accent);
  background: var(--soft);
  color: var(--text);
  font-size: 14px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.testimonial-carousel-shell {
  position: relative;
  margin-top: 34px;
  padding-inline: 54px;
}

.testimonial-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 42%);
  direction: ltr;
  justify-content: start;
  align-items: stretch;
  gap: 22px;
  padding: 4px 2px;
  overflow-x: auto;
  overflow-y: hidden;
  overflow-anchor: none;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--on-dark);
  cursor: pointer;
  transform: translateY(-50%);
}

.testimonial-carousel-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.testimonial-carousel-button-prev {
  left: 0;
}

.testimonial-carousel-button-prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.testimonial-carousel-button-next {
  right: 0;
}

.testimonial-carousel-button-next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.testimonial-carousel-button:hover,
.testimonial-carousel-button:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--on-accent);
}

.testimonial-carousel-button:disabled {
  opacity: 0.38;
  cursor: default;
}

.testimonial-carousel-button:disabled:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--on-dark);
}

.section.testimonials-section {
  background: var(--dark);
  color: var(--on-dark);
}

.testimonials-section h2,
.testimonials-section .section-subtitle {
  color: var(--on-dark) !important;
}

.testimonial {
  margin: 0;
  padding: 20px;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  scroll-snap-align: start;
}

.testimonial blockquote {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.22rem;
  line-height: 1.35;
}

.testimonial figcaption {
  margin-top: 14px;
  color: var(--accent-strong);
  font-weight: 700;
}

.rating {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .testimonial-carousel-shell {
    padding-inline: 44px;
  }

  .testimonial-carousel {
    grid-auto-columns: minmax(260px, 86%);
  }
}

@media (min-width: 768px) {
  .testimonial blockquote {
    font-family: var(--font-body);
  }
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  transform: none;
}

.numbers-section {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: #fff;
  color: var(--text);
  position: relative;
  z-index: 1;
  overflow: visible;
}

.section.numbers-section,
.section.numbers-section.section-size-xl {
  padding-top: 0;
}

.numbers-section h2,
.numbers-section .section-subtitle {
  color: var(--text);
}

.number-item {
  position: relative;
  min-height: 100%;
  padding: 72px 20px 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(43, 43, 43, 0.98), rgba(30, 30, 30, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.number-item.has-section-icon {
  margin-top: 0;
}

.numbers-section .number-item .section-icon {
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  color: var(--accent);
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.numbers-section .number-item .section-icon svg {
  width: 48px;
  height: 48px;
}

.number-item strong {
  display: block;
  color: var(--on-dark);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 700;
}

.number-item span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.site-footer {
  padding: 36px clamp(18px, 4vw, 48px) 36px;
  background: var(--dark-darker);
  color: var(--on-dark);
}

@media (min-width: 980px) {
  .numbers-grid {
    --numbers-overlap: clamp(6.75rem, 11vw, 9rem);
    transform: translateY(var(--numbers-overlap));
  }

  .numbers-section {
    padding-bottom: 0;
  }

  .site-footer {
    padding-top: calc(56px + clamp(6.75rem, 11vw, 9rem));
  }
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(240px, 2fr);
  gap: 28px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
  text-decoration: none;
}

.footer-brand-logo {
  display: block;
  width: auto;
  height: 92px;
  max-width: min(48vw, 220px);
}

.site-footer p {
  max-width: 460px;
  margin: 0;
  font-size: 1rem;
  color: var(--on-dark-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-content: start;
  justify-content: flex-end;
}

.footer-nav a {
  color: var(--on-dark-muted);
  font-size: 14px;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--on-dark);
}

.text-brand { color: var(--brand-color); }
.text-theme { color: var(--theme-color); }
.text-business { color: var(--business-color); }
.text-career { color: var(--career-color); }
.text-life { color: var(--life-color); }
.text-relations { color: var(--relations-color); }

.bg-brand { background-color: var(--brand-flat-color); }
.bg-theme { background-color: var(--theme-flat-color); }
.bg-business { background-color: var(--business-flat-color); }
.bg-career { background-color: var(--career-flat-color); }
.bg-life { background-color: var(--life-flat-color); }
.bg-relations { background-color: var(--relations-flat-color); }

.border-light { border-color: var(--light); border-style: solid; }
.border-dark { border-color: var(--dark); border-style: solid; }
.border-brand { border-color: var(--brand-color); border-style: solid; }
.border-theme { border-color: var(--theme-color); border-style: solid; }
.border-business { border-color: var(--business-color); border-style: solid; }
.border-career { border-color: var(--career-color); border-style: solid; }
.border-life { border-color: var(--life-color); border-style: solid; }
.border-relations { border-color: var(--relations-color); border-style: solid; }

@media (max-width: 760px) {
  html {
    font-size: 18px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .brand {
    font-size: 36px;
  }

  .section h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-inner {
    padding: 1.35rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .site-nav,
  .language-nav {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .nav-group,
  .nav-menu {
    width: 100%;
  }

  .nav-menu {
    position: static;
    margin-top: 8px;
    box-shadow: none;
  }

  .language-nav .nav-group {
    width: auto;
  }

  .language-nav .nav-menu,
  .language-nav .nav-menu-right {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: max-content;
    min-width: 220px;
    margin-top: 0;
    box-shadow: 0 18px 45px var(--shadow);
  }

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

  .footer-brand-block {
    align-items: flex-start;
  }

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

  .desktop-anchor-nav {
    display: none;
  }

  .mobile-anchor-nav {
    display: flex;
    gap: 8px;
    width: 100%;
  }

  .split-section,
  .example-results,
  .faq-tabs {
    grid-template-columns: 1fr;
  }

  .faq-tab-labels {
    display: flex;
    overflow-x: auto;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 12px;
  }

  .faq-tab-label {
    flex: 0 0 auto;
  }
}

body {
  background: var(--bg);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

main,
.section,
.section-inner {
  max-width: 100%;
}

a {
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(230, 25, 76, 0.34);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a,
button,
summary {
  overflow-wrap: anywhere;
}

p,
li {
  line-height: 1.62;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: var(--header-height);
  grid-template-columns: auto minmax(0, 1fr) auto;
  max-width: none;
  padding: 0.32rem clamp(1rem, 4vw, 3rem);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, opacity 180ms ease;
}

.brand {
  min-width: 0;
  font-size: clamp(2rem, 4vw, 2.65rem);
  max-width: min(100%, clamp(8.5rem, 17vw, 15rem));
}

.site-nav,
.language-nav {
  min-width: 0;
}

.site-nav a,
.language-nav a,
.nav-group summary {
  border-radius: var(--radius-sm);
  line-height: 1.1;
}

.site-nav a[aria-current="page"],
.language-nav a[aria-current="page"],
.nav-menu a[aria-current="page"] {
  color: var(--on-dark);
  background: rgba(255, 255, 255, 0.16);
}

.nav-menu {
  border-radius: var(--radius);
}

.nav-menu a {
  white-space: normal;
}

.section {
  padding-block: var(--section-y);
  scroll-margin-top: calc(var(--header-height) + 72px);
}

.section-inner {
  width: min(var(--content-width), 100%);
}

.section h2 {
  max-width: 900px;
  margin-bottom: 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.18;
}

.section-subtitle,
.section-body {
  max-width: 78ch;
}

.section-body p {
  max-width: 78ch;
}

.hero {
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.28) 52%, rgba(0, 0, 0, 0.5));
}

.banner-bg-left,
.banner-bg-right {
  opacity: 0.85;
}

.hero-inner {
  width: min(92vw, 920px);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(18, 19, 24, 0.72);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(1.7rem, 3.45vw, 2.65rem);
  line-height: 1.14;
  text-wrap: balance;
}

.anchor-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.desktop-anchor-nav {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.desktop-anchor-nav a {
  white-space: nowrap;
}

.mobile-anchor-nav {
  min-height: 52px;
}

.anchor-current summary,
.mobile-anchor-nav button {
  min-height: 42px;
  border-radius: var(--radius-sm);
}

.item-grid,
.highlight-grid,
.testimonial-grid,
.numbers-grid,
.start-steps,
.step-list {
  gap: clamp(1rem, 2vw, 1.4rem);
}

.item,
.highlight-item,
.testimonial,
.number-item,
.start-steps div,
.step-list li,
.objective-item,
.faq-item,
.result-preview {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.item,
.highlight-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.item h3,
.highlight-item h3 {
  line-height: 1.25;
}

.item-meta {
  margin-top: auto;
}

.button-link,
.staging-gate button {
  min-height: 44px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.button-link:hover,
.staging-gate button:hover {
  transform: translateY(-1px);
}

.section.cta-section {
  padding-block: var(--section-y-compact);
  border: 0;
}

.cta-inner {
  width: min(100%, 900px);
}

.cta-section h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.75rem);
}

.questionnaire-start {
  box-sizing: border-box;
  height: auto;
  min-height: calc(100dvh - var(--header-height, 60px) - var(--subnav-height, 0px));
  scroll-margin-top: calc(var(--header-height) + 72px);
}

.example-results-section {
  box-sizing: border-box;
  display: block;
  height: calc(100dvh - var(--header-height, 60px) - 4px);
  min-height: calc(100dvh - var(--header-height, 60px) - 4px);
  max-height: calc(100dvh - var(--header-height, 60px) - 4px);
  scroll-margin-top: calc(var(--header-height) + 72px);
  padding: 0 !important;
  overflow: hidden;
}

.example-results-section > .section-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.example-results-section > :not(script) {
  min-height: 100%;
}

.example-results-section > .section-inner > :not(script) {
  min-height: 100%;
}

.example-results-section.section-size-full {
  display: block;
  min-height: calc(100dvh - var(--header-height, 60px) - 4px);
  max-height: calc(100dvh - var(--header-height, 60px) - 4px);
  padding: 0 !important;
}

.example-results-section .example-results-embed-shell {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
}

.example-results-section .example-results-embed-shell[data-ss-quest-state="pending"],
.example-results-section .example-results-embed-shell[data-ss-quest-state="loading"] {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(29, 119, 211, 0.08), rgba(214, 31, 69, 0.08)),
    #ffffff;
}

.example-results-section .example-results-embed-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: clamp(1.25rem, 2vw, 1.6rem);
  pointer-events: none;
}

.example-results-section .example-results-embed-placeholder-bar {
  display: block;
  width: min(100%, 22rem);
  height: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.32));
  background-size: 220% 100%;
  animation: exampleEmbedPlaceholderShift 1.8s ease-in-out infinite;
}

.example-results-section .example-results-embed-placeholder-bar.is-wide {
  width: min(100%, 34rem);
}

.example-results-section .example-results-embed-shell[data-ss-quest-state="loaded"] .example-results-embed-placeholder,
.example-results-section .example-results-embed-shell[data-ss-quest-state="error"] .example-results-embed-placeholder {
  display: none;
}

@keyframes exampleEmbedPlaceholderShift {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

.example-results-section .example-results-embed-shell > script + ss-quest-example,
.example-results-section .example-results-embed-shell > ss-quest-example {
  display: block;
  width: 100%;
  max-width: none !important;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  flex: 1 1 100%;
}

.example-results-section ss-quest-example {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime {
  display: block !important;
  width: 100%;
  max-width: none !important;
  height: 100%;
  min-height: 0 !important;
  max-height: 100%;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .page,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime main,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime #show-results,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .results-page,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .results-main,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .report-page,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .report-shell,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .report,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .page,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime main,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime #show-results,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .results-page,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .results-main,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .report-page,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .report-shell,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .report {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto;
  min-height: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .wrapper-md,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .results-notices,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .hero-shell,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .hero-head,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .hero-title-row,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .subject-strip,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .share-bar,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .report-section,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .radar-card,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .subject-card,
.example-results-section .example-results-embed-shell > ss-quest-example .ss-example-runtime .question-card,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .wrapper-md,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .results-notices,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .hero-shell,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .hero-head,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .hero-title-row,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .subject-strip,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .share-bar,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .report-section,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .radar-card,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .subject-card,
.example-results-section .example-results-embed-shell > script + ss-quest-example .ss-example-runtime .question-card {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

[data-ss-quest-shell] {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

[data-ss-quest-shell] > script + ss-quest-input,
[data-ss-quest-shell] > ss-quest-input,
[data-ss-quest-shell] > script + ss-quest-public,
[data-ss-quest-shell] > ss-quest-public,
[data-ss-quest-shell] > script + ss-quest-report,
[data-ss-quest-shell] > ss-quest-report {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.report-host-page {
  width: 100%;
  min-height: calc(100dvh - var(--header-height, 60px));
  margin: 0;
  padding: 0;
}

.report-host-shell {
  width: 100%;
  min-height: calc(100dvh - var(--header-height, 60px));
  margin: 0;
  padding: 0;
}

.report-host-embed-shell {
  display: block;
  width: 100%;
  height: calc(100dvh - var(--header-height, 60px));
  min-height: calc(100dvh - var(--header-height, 60px));
  margin: 0;
  padding: 0;
}

.report-host-embed-shell[data-ss-quest-state="pending"],
.report-host-embed-shell[data-ss-quest-state="loading"] {
  overflow: hidden;
}

.report-host-embed-shell > script + ss-quest-public,
.report-host-embed-shell > ss-quest-public,
.report-host-embed-shell > script + ss-quest-report,
.report-host-embed-shell > ss-quest-report {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

.contact-form input,
.contact-form textarea {
  min-height: 48px;
  border-radius: var(--radius-sm);
}

.site-footer {
  margin-top: 0;
  padding-block: var(--section-y-compact);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .brand {
    width: fit-content;
    max-width: 100%;
  }

  .site-nav,
  .language-nav {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
  }

  .section {
    padding-block: var(--section-y-compact);
    padding-inline: clamp(0.85rem, 4vw, 1.25rem);
  }

  .hero-inner {
    width: min(94vw, 560px);
    padding: 1.35rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .site-nav a,
  .language-nav a,
  .nav-group summary {
    width: 100%;
  }

  .mobile-anchor-nav {
    align-items: center;
  }

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

/* ---------- nav update: non-sticky subnav + compact mobile header ---------- */
.site-nav-toggle {
  display: none;
}

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.55rem;
    align-items: center;
    overflow: visible;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
  }

  .language-nav {
    grid-column: 3;
    grid-row: 1;
    width: auto;
    justify-content: flex-end;
    overflow: visible;
  }

  .language-nav .nav-group summary {
    width: auto;
  }

  .site-nav-toggle {
    grid-column: 1;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    width: 44px;
    min-height: 44px;
    padding: 0.45rem 0.75rem;
    color: var(--on-dark);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-sm);
    cursor: pointer;
  }

  .site-nav-toggle:hover,
  .site-nav-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.16);
  }

  .site-nav-toggle-icon,
  .site-nav-toggle-icon::before,
  .site-nav-toggle-icon::after {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
  }

  .site-nav-toggle-icon {
    position: relative;
  }

  .site-nav-toggle-icon::before,
  .site-nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .site-nav-toggle-icon::before {
    top: -7px;
  }

  .site-nav-toggle-icon::after {
    top: 7px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    width: 100%;
    padding-top: 0.25rem;
    justify-content: flex-start;
  }

  .site-header.is-nav-open .site-nav {
    display: flex;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
  }

  .site-nav a,
  .site-nav .nav-group,
  .site-nav .nav-group summary {
    width: 100%;
  }

}

/* ---------- mobile nav control polish ---------- */
@media (max-width: 900px) {
  .site-header {
    padding-block: 0.4rem;
  }

  .site-nav-toggle {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: none;
  }

  .site-nav-toggle:hover,
  .site-nav-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.36);
  }

  .site-nav-toggle-icon,
  .site-nav-toggle-icon::before,
  .site-nav-toggle-icon::after {
    width: 22px;
    height: 2px;
  }

  .site-nav-toggle-icon::before {
    top: -6px;
  }

  .site-nav-toggle-icon::after {
    top: 6px;
  }

  .language-nav .nav-group summary {
    gap: 0.35rem;
    min-height: 42px;
    padding: 0.35rem 0.55rem;
  }

  .language-nav .nav-group summary::after,
  .anchor-current summary::after {
    width: 8px;
    height: 8px;
    margin-left: 0;
    border-right-width: 1.5px;
    border-bottom-width: 1.5px;
    transform: rotate(45deg) translateY(-1px);
  }
}

@media (max-width: 760px) {
  .anchor-nav-inner {
    padding: 0.5rem;
  }

  .mobile-anchor-nav {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 0.45rem;
    align-items: center;
  }

  .anchor-step {
    width: 38px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
  }

  .anchor-step::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
  }

  .anchor-step[data-section-prev]::before {
    transform: rotate(-45deg) translate(1px, 1px);
  }

  .anchor-step[data-section-next]::before {
    transform: rotate(135deg) translate(1px, 1px);
  }

  .anchor-step:hover:not(:disabled),
  .anchor-step:focus-visible:not(:disabled) {
    color: var(--on-dark);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.36);
  }

  .anchor-current {
    min-width: 0;
  }

  .anchor-current summary {
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.55rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .anchor-current summary:hover,
  .anchor-current summary:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.36);
  }
}

/* ---------- subnav dropdown chevron fix ---------- */
@media (max-width: 760px) {
  .anchor-current summary {
    padding-inline: 0.75rem;
  }

  .anchor-current summary::after {
    content: "";
    position: static;
    right: auto;
    display: inline-block;
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-left: 0.35rem;
    border: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
  }

  .anchor-current[open] summary::after {
    transform: rotate(225deg) translateY(-1px);
  }
}

/* ---------- readable item badges ---------- */
.item-kicker {
  align-items: center;
  min-height: 28px;
  padding: 0.35rem 0.65rem;
  color: var(--on-accent);
  background: var(--accent-strong);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: none;
}

.theme-brand .item-kicker,
.theme-business .item-kicker,
.theme-career .item-kicker,
.theme-life .item-kicker,
.theme-relations .item-kicker {
  color: #ffffff;
}

/* ---------- themed questionnaire area cards ---------- */
.item-category-business,
.item-category-career,
.item-category-life,
.item-category-relations {
  border-top-color: var(--item-theme);
}

.item-category-business {
  --item-theme: var(--business-color);
  --item-theme-strong: var(--business-darker-color);
  background: linear-gradient(180deg, var(--business-flat-color), var(--surface) 58%);
}

.item-category-career {
  --item-theme: var(--career-color);
  --item-theme-strong: var(--career-darker-color);
  background: linear-gradient(180deg, var(--career-flat-color), var(--surface) 58%);
}

.item-category-life {
  --item-theme: var(--life-color);
  --item-theme-strong: var(--life-darker-color);
  background: linear-gradient(180deg, var(--life-flat-color), var(--surface) 58%);
}

.item-category-relations {
  --item-theme: var(--relations-color);
  --item-theme-strong: var(--relations-darker-color);
  background: linear-gradient(180deg, var(--relations-flat-color), var(--surface) 58%);
}

.item-category-business h3 a,
.item-category-career h3 a,
.item-category-life h3 a,
.item-category-relations h3 a {
  color: var(--item-theme-strong);
}

.item-category-business h3 a:hover,
.item-category-business h3 a:focus-visible,
.item-category-career h3 a:hover,
.item-category-career h3 a:focus-visible,
.item-category-life h3 a:hover,
.item-category-life h3 a:focus-visible,
.item-category-relations h3 a:hover,
.item-category-relations h3 a:focus-visible {
  color: var(--item-theme);
}

.item-category-business .item-kicker,
.item-category-career .item-kicker,
.item-category-life .item-kicker,
.item-category-relations .item-kicker {
  background: var(--item-theme-strong);
}

/* ---------- shared section sizing ---------- */
.section-size-sm {
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

.section-size-md {
  padding-block: clamp(3rem, 5.5vw, 5rem);
}

.section-size-xl {
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.section-size-full:not(.hero) {
  min-height: calc(100dvh - var(--header-height, 60px) - var(--subnav-height, 0px));
  display: grid;
  align-items: center;
  padding-block: clamp(1.25rem, 2.5vw, 2rem);
}

.section-size-sm .section-inner {
  width: min(960px, 100%);
}

.section-size-md .section-inner {
  width: min(var(--content-width), 100%);
}

.section-size-xl .section-inner,
.section-size-full:not(.hero) .section-inner {
  width: min(var(--wide-width), 100%);
}

.example-results-section.section-size-full > .section-inner.example-results-embed-shell,
.example-results-section.section-size-xl > .section-inner.example-results-embed-shell,
.example-results-section > .section-inner.example-results-embed-shell {
  width: 100%;
  max-width: none;
  margin: 0;
}

.questionnaire-start,
.example-results-section {
  background: var(--surface) !important;
  border-top: 8px solid var(--accent);
  border-bottom: 8px solid var(--accent);
}

.questionnaire-start {
  min-height: calc(100dvh - var(--header-height, 60px) - var(--subnav-height, 0px));
}

.example-results-section {
  min-height: calc(100dvh - var(--header-height, 60px) - 4px);
  max-height: calc(100dvh - var(--header-height, 60px) - 4px);
}

.section-questionnaire-categories .item {
  position: relative;
  padding-right: 5.4rem;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.section-questionnaire-categories .item-card-link {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.section-questionnaire-categories .item-card-link h3,
.section-questionnaire-categories .item-card-link p,
.section-questionnaire-categories .item-card-link span {
  color: inherit;
}

.section-questionnaire-categories .item::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  color: #fff;
  background: var(--item-theme, var(--accent));
  border-radius: 999px;
  box-shadow: 0 12px 26px color-mix(in srgb, var(--item-theme, var(--accent)) 24%, transparent);
  content: "→";
  font-size: 1.35rem;
  font-weight: 700;
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.section-questionnaire-categories .item:hover,
.section-questionnaire-categories .item:focus-within {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--item-theme, var(--accent)) 30%, white);
  box-shadow: 0 18px 42px rgba(18, 23, 34, 0.1);
}

.section-questionnaire-categories .item:hover::after,
.section-questionnaire-categories .item:focus-within::after {
  background: var(--item-theme-strong, var(--accent-strong));
  box-shadow: 0 16px 34px color-mix(in srgb, var(--item-theme, var(--accent)) 32%, transparent);
  transform: translate(4px, -50%);
}

.section-questionnaire-categories {
  position: relative;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, white), color-mix(in srgb, var(--accent) 3%, white));
  border-bottom: 0;
  z-index: 4;
  overflow: visible;
  isolation: isolate;
}

.section-questionnaire-categories .section-inner {
  position: relative;
  z-index: 1;
}

.section-questionnaire-categories .item-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.25rem);
  max-width: 1180px;
  margin-inline: auto;
}

.section-questionnaire-categories .item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 3.1rem;
  align-items: center;
  column-gap: 0.85rem;
  min-height: 8.5rem;
  padding-block: 1.15rem;
  padding-right: 1.15rem;
}

.section-questionnaire-categories .item h3 {
  grid-column: 1;
  font-size: 1.25rem;
}

.section-questionnaire-categories .item-meta {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  width: fit-content;
  margin-top: 0.55rem;
  margin-right: 0.4rem;
  padding: 0.28rem 0.55rem;
  color: color-mix(in srgb, var(--item-theme-strong, var(--accent-strong)) 78%, #111);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid color-mix(in srgb, var(--item-theme, var(--accent)) 22%, white);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(18, 23, 34, 0.05);
  font-size: 0.78rem;
  line-height: 1;
}

.section-questionnaire-categories .item::after {
  position: static;
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: end;
  transform: none;
}

.section-questionnaire-categories .item:hover::after,
.section-questionnaire-categories .item:focus-within::after {
  transform: translateX(4px);
}

.section-questionnaire-categories .item-meta:first-of-type::before {
  content: "⏱";
}

.section-questionnaire-categories .item-meta:last-of-type::before {
  content: "👁";
}

@media (max-width: 860px) {
  .section-questionnaire-categories .item-grid {
    grid-template-columns: 1fr;
  }
}

.section-results-features .section-body,
.section-feature-ai-coaching .section-body,
.section-support-features .section-body,
.about-section .section-body {
  max-width: none;
  margin-inline: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.section-results-features .section-body p,
.section-feature-ai-coaching .section-body p,
.section-support-features .section-body p,
.about-section .section-body p {
  max-width: none;
}

.section-support-features .support-features-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.section-support-features .support-features-layout .section-body {
  max-width: none;
  margin: 0;
}

.section-support-features .support-cheer-panel {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 1rem;
  padding-top: 0.35rem;
}

.section-support-features .support-cheer-badge {
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
  border: 1px solid color-mix(in srgb, var(--accent) 20%, white);
  border-radius: 999px;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 14%, transparent);
}

.section-support-features .support-cheer-badge svg {
  width: 68%;
  height: 68%;
  fill: currentColor;
}

.section-support-features .support-cheer-badge-lg {
  width: clamp(5.5rem, 11vw, 7.25rem);
  height: clamp(5.5rem, 11vw, 7.25rem);
  transform: rotate(-8deg);
}

.section-support-features .support-cheer-badge-md {
  width: clamp(4.4rem, 8.6vw, 5.8rem);
  height: clamp(4.4rem, 8.6vw, 5.8rem);
  transform: translateX(-1.4rem) rotate(7deg);
}

.section-support-features .support-cheer-badge-sm {
  width: clamp(3.8rem, 7vw, 4.8rem);
  height: clamp(3.8rem, 7vw, 4.8rem);
  transform: translateX(1.15rem) rotate(-4deg);
}

.section-features,
.about-section {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding-top: calc(var(--section-y) + clamp(1rem, 2.5vw, 1.8rem));
  padding-bottom: calc(var(--section-y) + clamp(1rem, 2.5vw, 1.8rem));
}

.section-features::before,
.section-features::after,
.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: -1;
  height: clamp(1.8rem, 4vw, 3.2rem);
  background: inherit;
  pointer-events: none;
}

.section-features::before,
.about-section::before {
  top: 0;
  transform: translateY(-100%);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.section-features::after,
.about-section::after {
  bottom: 0;
  transform: translateY(100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.section-features .item,
.section-results-features .item,
.section-social-features .item,
.section-support-features .item,
.section-feature-ai-coaching .highlight-item {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  border: 1px solid rgba(221, 227, 234, 0.92);
  border-top: 0;
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(18, 23, 34, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.section-features .item:hover,
.section-results-features .item:hover,
.section-social-features .item:hover,
.section-support-features .item:hover,
.section-feature-ai-coaching .highlight-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 123, 255, 0.24);
  box-shadow: 0 18px 42px rgba(18, 23, 34, 0.09);
}

.section-features .item.has-section-icon,
.section-results-features .item.has-section-icon,
.section-social-features .item.has-section-icon,
.section-support-features .item.has-section-icon,
.section-feature-ai-coaching .highlight-item.has-section-icon {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  margin-top: 2.1rem;
  padding-top: 2.95rem;
  text-align: center;
}

.section-features .section-icon,
.section-results-features .section-icon,
.section-social-features .section-icon,
.section-support-features .section-icon,
.section-feature-ai-coaching .section-icon {
  display: inline-grid;
  width: 3.95rem;
  height: 3.95rem;
  place-items: center;
  margin: -4.95rem 0 0.65rem;
  color: inherit;
  font-size: 2.25rem;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
  border: 1px solid rgba(221, 227, 234, 0.95);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(18, 23, 34, 0.13);
  filter: none;
}

.section-features .section-icon svg,
.section-results-features .section-icon svg,
.section-social-features .section-icon svg,
.section-support-features .section-icon svg,
.section-feature-ai-coaching .section-icon svg {
  width: 2.4rem;
  height: 2.4rem;
}

.section-features .item-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 3.5rem;
}

.section-results-features .item-grid,
.section-feature-ai-coaching .highlight-grid {
  grid-template-columns: 1fr;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 520ms ease, transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-on-scroll.reveal-soft {
  transform: translateY(0.65rem);
}

.reveal-on-scroll.reveal-pop {
  transform: translateY(0.9rem) scale(0.985);
}

.reveal-on-scroll.reveal-pop.is-visible {
  transform: none;
}

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

@media (max-width: 620px) {
  .section-features .item-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.example-results-section .example-results {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.example-results-section .result-preview {
  display: grid;
  gap: 12px;
  padding: 24px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.example-results-section .result-bar {
  height: 18px;
  width: 76%;
  background: var(--theme-flat-color);
  border-radius: 999px;
}

.example-results-section .result-card-row span {
  height: 72px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.example-results-section .result-bar-strong {
  width: 92%;
  background: var(--accent);
}

.example-results-section .result-bar-soft {
  width: 58%;
  background: var(--soft);
}

.example-results-section .result-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.section-features,
.section-results-features,
.section-social-features,
.section-support-features,
.section-feature-ai-coaching,
.about-section {
  position: relative;
  isolation: isolate;
}

.section-results-features .item-grid,
.section-social-features .item-grid,
.section-support-features .item-grid,
.section-feature-ai-coaching .highlight-grid {
  align-items: stretch;
}

.section-features .item,
.section-results-features .item,
.section-social-features .item,
.section-support-features .item,
.section-feature-ai-coaching .highlight-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  border: 1px solid rgba(221, 227, 234, 0.92);
  border-top: 0;
  box-shadow: 0 10px 26px rgba(18, 23, 34, 0.055);
}

.section-features .item:hover,
.section-results-features .item:hover,
.section-social-features .item:hover,
.section-support-features .item:hover,
.section-feature-ai-coaching .highlight-item:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 24%, white);
  box-shadow: 0 18px 42px rgba(18, 23, 34, 0.09);
}

.section-features .section-icon,
.section-results-features .section-icon,
.section-social-features .section-icon,
.section-support-features .section-icon,
.section-feature-ai-coaching .section-icon {
  border-radius: 999px;
  color: var(--accent);
}

.about-section .about-block {
  max-width: min(920px, 100%);
}

.about-section .section-body {
  color: var(--text);
}

.about-section .section-body p {
  max-width: 78ch;
}

.cta-section .button-link {
  width: fit-content;
  max-width: 100%;
  background: var(--accent-strong);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--accent) 24%, transparent);
}

@media (max-width: 980px) {
  .questionnaire-start .start-steps,
  .example-results-section .example-results,
  .section-support-features .support-features-layout {
    grid-template-columns: 1fr;
  }

  .section-support-features .support-cheer-panel {
    grid-auto-flow: column;
    justify-content: start;
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .questionnaire-start .button-link,
  .cta-section .button-link {
    width: 100%;
  }
}

.hero-inner.hero-split {
  display: grid;
  width: min(95vw, 1120px);
  grid-template-columns: minmax(0, 1.42fr) minmax(220px, 0.34fr);
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
  align-items: stretch;
  align-content: center;
  text-align: left;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-title-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(250px, 29vh, 338px);
  padding: clamp(1.1rem, 2.4vw, 1.9rem);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(18, 19, 24, 0.72);
  box-shadow: var(--shadow-strong);
  overflow: visible;
  container-type: inline-size;
}

.hero-title-card h1 {
  max-width: 100%;
  margin: 0;
  text-align: left;
  line-height: 1.12;
  font-size: var(--hero-title-size, clamp(1.35rem, 8.4cqi, 3rem));
  text-wrap: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
}

.hero-title-card .section-body,
.hero-title-card .section-body p {
  max-width: none;
  color: rgba(255, 255, 255, 0.84);
}

.hero-facts {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.8rem;
}

.hero-fact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  color: var(--on-dark);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(18, 19, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-fact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 179, 199, 0.34);
  box-shadow: 0 22px 54px rgba(230, 25, 76, 0.14), 0 18px 42px rgba(0, 0, 0, 0.24);
}

.hero-fact-card strong {
  display: block;
  font-size: clamp(1.35rem, 2.7vw, 1.85rem);
  line-height: 1.05;
}

.hero-fact-card span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.78rem, 1.3vw, 0.9rem);
  line-height: 1.25;
}

.hero-action-row {
  grid-column: 1 / -1;
  display: flex;
}

.hero-action-row .hero-cta {
  width: 100%;
  color: #fff;
  border: 1px solid rgba(255, 179, 199, 0.38);
  background:
    linear-gradient(180deg, rgba(230, 25, 76, 0.78), rgba(181, 18, 59, 0.68)),
    rgba(230, 25, 76, 0.5);
  box-shadow:
    0 14px 32px rgba(181, 18, 59, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-action-row .hero-cta:hover,
.hero-action-row .hero-cta:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 47, 109, 0.84), rgba(181, 18, 59, 0.74)),
    rgba(230, 25, 76, 0.58);
}

.best-in-class-section,
.section-best-in-class {
  position: relative;
  z-index: 5;
  isolation: isolate;
  overflow: visible;
  padding-block: clamp(6rem, 11vw, 8rem);
  background-color: #f3f5f7;
  background: #f3f5f7 !important;
}

.best-in-class-section .section-inner,
.section-best-in-class .section-inner {
  background: transparent;
}

.best-in-class-section::before,
.best-in-class-section::after,
.section-best-in-class::before,
.section-best-in-class::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 4.8rem;
  background-color: #f3f5f7;
  background-repeat: repeat-x;
  background-size: 240px 100%;
  content: "";
  pointer-events: none;
}

.best-in-class-section::before,
.section-best-in-class::before {
  top: -4.75rem;
  z-index: 4;
  background-image: none;
  clip-path: polygon(0 34%, 4% 28%, 10% 40%, 16% 56%, 22% 62%, 28% 50%, 34% 34%, 40% 30%, 46% 45%, 52% 60%, 58% 62%, 64% 48%, 70% 34%, 76% 30%, 82% 42%, 88% 57%, 94% 62%, 100% 52%, 100% 100%, 0 100%);
}

.best-in-class-section::after,
.section-best-in-class::after {
  bottom: -4.7rem;
  z-index: 2;
  background-image: none;
  clip-path: polygon(0 0, 100% 0, 100% 52%, 94% 62%, 88% 57%, 82% 42%, 76% 30%, 70% 34%, 64% 48%, 58% 62%, 52% 60%, 46% 45%, 40% 30%, 34% 34%, 28% 50%, 22% 62%, 16% 56%, 10% 40%, 4% 28%, 0 34%);
  box-shadow: 0 18px 18px rgba(18, 23, 34, 0.14);
}

.section-best-in-class + .cta-section,
.best-in-class-section + .cta-section {
  padding-top: clamp(5.4rem, 9vw, 7rem);
}

.best-in-class-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: stretch;
}

.award-card {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    linear-gradient(160deg, color-mix(in srgb, var(--accent) 86%, #111), #15171d);
  border: 1px solid color-mix(in srgb, var(--accent) 34%, white);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px color-mix(in srgb, var(--accent) 18%, transparent);
  overflow: hidden;
}

.award-card::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 12rem;
  height: 12rem;
  background: color-mix(in srgb, var(--brand-color) 26%, transparent);
  border-radius: 50%;
  content: "";
  filter: blur(2px);
}

.award-kicker {
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.award-card h2,
.award-card p {
  position: relative;
  z-index: 1;
}

.award-card h2 {
  max-width: 16ch;
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.85vw, 2.3rem);
  line-height: 1.08;
}

.award-card h2::after {
  margin-left: 0;
  background: var(--brand-color);
}

.award-card p {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.5;
}

.award-proof-list {
  display: grid;
  gap: 0.85rem;
}

.award-proof {
  display: block;
  align-items: start;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(18, 23, 34, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.award-proof:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 28%, white);
  box-shadow: 0 18px 42px rgba(18, 23, 34, 0.09);
}

.award-proof h3 {
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.2;
}

.award-proof p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.award-proof-icon {
  display: inline-grid;
  place-items: center;
  width: 2.3rem;
  min-width: 2.3rem;
  height: 2.3rem;
  margin-right: 0.75rem;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-size: 1.85rem;
  line-height: 1;
  vertical-align: -0.22em;
  color: var(--accent);
}

.award-proof-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.section-social-features .section-inner {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.6rem);
}

.section-social-features .section-inner > h2,
.section-social-features .section-inner > .section-subtitle {
  text-align: left;
  margin-inline: 0;
}

.section-social-features .section-inner > h2::after {
  margin-left: 0;
}

.social-feature-flow {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3.25rem);
}

.social-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(1.5rem, 4vw, 2.8rem);
  align-items: center;
}

.social-feature-row-cheers {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
}

.social-feature-copy {
  max-width: 44rem;
  color: var(--text);
  display: grid;
  gap: 0.8rem;
}

.social-feature-copy p {
  max-width: none;
  margin: 0;
  color: inherit;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.social-motion-stage {
  position: relative;
  isolation: isolate;
  min-height: clamp(220px, 24vw, 280px);
  padding: clamp(1.05rem, 2.9vw, 1.45rem);
  overflow: hidden;
  background: transparent;
}

.social-token-cloud {
  position: relative;
  z-index: 1;
  min-height: clamp(200px, 21.5vw, 250px);
}

.social-token {
  --token-delay: 0s;
  --token-size: 3.8rem;
  --token-color: var(--text);
  --token-shadow: color-mix(in srgb, var(--token-color), #000 25%);
  display: inline-flex;
  position: absolute;
  top: var(--token-y, 50%);
  left: var(--token-x, 50%);
  align-items: center;
  justify-content: center;
  width: var(--token-size);
  height: var(--token-size);
  padding: 0.15rem;
  color: var(--token-color, var(--accent));
  background: transparent;
  line-height: 1;
  transform: translate(-50%, -50%);
  animation: social-token-float 6.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: var(--token-delay);
}

.social-token svg {
  display: block;
  width: calc(100% - 0.44rem);
  height: calc(100% - 0.44rem);
  fill: currentColor;
  stroke: currentColor;
  filter: drop-shadow(0 10px 16px color-mix(in srgb, var(--token-shadow) 26%, transparent));
}

.social-token strong {
  display: none;
}

.social-token-whatsapp { --token-color: #25d366; }
.social-token-telegram { --token-color: #229ed9; }
.social-token-linkedin { --token-color: #0a66c2; }
.social-token-facebook { --token-color: #1877f2; }
.section-social-features .social-token-x { --token-color: #1f2937; }
.section-social-features .social-token-email { --token-color: #6b7280; }
.cheer-token { --token-color: #26313d; }
.cheer-token-primary { --token-color: #1976d2; }

.section-social-features .social-token svg path,
.section-social-features .social-token svg rect {
  stroke: currentColor;
  fill: none;
}

.section-social-features .social-token-x svg path,
.cheer-token svg path {
  fill: currentColor;
  stroke: none !important;
}

@keyframes social-token-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0.02rem) rotate(-4deg);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-0.8rem) rotate(3deg);
  }
}

@media (max-width: 900px) {
  .hero-inner.hero-split,
  .best-in-class-layout,
  .social-feature-row,
  .social-feature-row-cheers {
    grid-template-columns: 1fr;
  }

  .hero-title-card {
    min-height: 0;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .social-feature-row-cheers .social-motion-stage {
    order: 2;
  }
}

@media (max-width: 520px) {
  .hero-facts {
    grid-template-columns: 1fr;
  }
}
.section.waves,
.section.waves-bottom {
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.section.waves::before,
.section.waves-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(1.4rem, 3.8vw, 2.6rem);
  background: inherit;
  pointer-events: none;
  z-index: -1;
}

.section.waves::before {
  top: 0;
  transform: translateY(-100%);
  clip-path: polygon(0 100%, 4% 28%, 10% 40%, 16% 56%, 22% 62%, 28% 50%, 34% 34%, 40% 30%, 46% 45%, 52% 60%, 58% 62%, 64% 48%, 70% 34%, 76% 30%, 82% 42%, 88% 57%, 94% 62%, 100% 52%, 100% 100%, 0 100%);
}

.section.waves-bottom::after {
  bottom: 0;
  transform: translateY(100%);
  clip-path: polygon(0 0, 100% 0, 100% 48%, 94% 62%, 88% 57%, 82% 42%, 76% 30%, 70% 34%, 64% 48%, 58% 62%, 52% 60%, 46% 45%, 40% 30%, 34% 34%, 28% 50%, 22% 62%, 16% 56%, 10% 40%, 4% 28%, 0 34%);
}

.section.cta-section {
  --cta-pattern-shift: 0px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(220px, 30vh, 320px);
  padding-block: clamp(2.75rem, 6vw, 4.25rem);
  color: var(--text);
  border-top-width: 6px;
  border-bottom-width: 6px;
  background: var(--theme-flat-color) !important;
  background-attachment: fixed;
  background-position: center center;
  background-size: auto, auto;
  border: 0;
}

.section.cta-section::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: none;
  pointer-events: none;
  opacity: 0.38;
  transform: translate3d(0, var(--cta-pattern-shift), 0);
  will-change: transform;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(100%, 860px);
  margin: 0 auto;
  text-align: center;
  padding: clamp(1.45rem, 3vw, 2.15rem);
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(29, 29, 29, 0.1);
  backdrop-filter: blur(10px);
}

.cta-section h2 {
  color: var(--text);
}

.section.cta-section h2::after {
  content: none;
}

.section.cta-section .section-subtitle,
.section.cta-section .section-body,
.section.cta-section .section-body p {
  color: var(--text);
}

.section.cta-section .section-subtitle {
  width: auto;
  margin: 0;
  padding: 0.75rem 1.1rem;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(230, 25, 76, 0.78), rgba(181, 18, 59, 0.68)),
    rgba(230, 25, 76, 0.5);
  border: 1px solid rgba(255, 179, 199, 0.38);
  border-radius: var(--radius);
  box-shadow:
    0 14px 32px rgba(181, 18, 59, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.section.cta-section .section-subtitle:hover,
.section.cta-section .section-subtitle:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 47, 109, 0.84), rgba(181, 18, 59, 0.74)),
    rgba(230, 25, 76, 0.58);
  color: #fff;
}

.section.testimonials-section {
  background: var(--dark);
  color: var(--on-dark);
}

.section.testimonials-section .section-inner {
  margin-inline: auto;
}

.testimonials-section.section-size-full {
  min-height: 0;
  display: block;
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2.25rem, 4vw, 3.5rem);
}

.section.testimonials-section h2,
.section.testimonials-section .section-subtitle {
  color: var(--on-dark) !important;
}

.testimonial-carousel-shell {
  position: relative;
  margin-top: 34px;
  margin-inline: auto;
  width: min(100%, 1180px);
  padding-inline: 54px;
}

.testimonial-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 42%);
  gap: 22px;
  padding: 4px 2px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial {
  margin: 0;
  padding: 20px;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  scroll-snap-align: start;
}

.testimonial blockquote {
  margin: 0;
  color: var(--text);
  font-family: var(--font-brand);
  font-size: 1.16rem;
  line-height: 1.35;
}

.testimonial figcaption {
  margin-top: 14px;
  color: var(--accent-strong);
  font-weight: 700;
}

.rating {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .testimonial-carousel-shell {
    padding-inline: 44px;
  }

  .testimonial-carousel {
    grid-auto-columns: minmax(260px, 86%);
  }
}

.uvp-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(40, 167, 69, 0.1), transparent 22rem),
    var(--surface);
}

.uvp-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.uvp-heading {
  display: grid;
  gap: 1rem;
}

.uvp-heading h2,
.uvp-heading .section-subtitle {
  text-align: left;
  margin-inline: 0;
}

.uvp-heading h2::after {
  margin-left: 0;
}

.uvp-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.uvp-point {
  min-height: 104px;
  padding: 1rem;
  color: var(--text);
  background: transparent;
  border: 0;
  border-left: 3px solid color-mix(in srgb, var(--accent) 52%, white);
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.uvp-point:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 34%, white);
}

.uvp-point strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.18;
}

.uvp-point span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(29, 29, 29, 0.68);
  font-size: 0.86rem;
  line-height: 1.25;
}

.uvp-copy-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(221, 227, 234, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(29, 29, 29, 0.1);
  backdrop-filter: blur(10px);
}

.uvp-copy-panel .section-body {
  max-width: none;
}

.uvp-copy-panel .section-body p {
  font-size: 1.03rem;
}

.uvp-copy-panel .section-body p:first-child {
  color: var(--text);
}

.objectives-section .objective-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 94%, var(--theme-flat-color) 6%), color-mix(in srgb, var(--surface) 82%, var(--bg) 18%));
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(29, 29, 29, 0.08);
}

.objectives-section .objective-item::before {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 180px;
  height: 180px;
  color: var(--dark);
  background: currentColor;
  content: "";
  opacity: 0.14;
  transform: translate(25%, 25%);
  pointer-events: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 -960 960 960' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M480.24-380Q522-380 551-409.24q29-29.23 29-71Q580-522 550.76-551q-29.23-29-71-29Q438-580 409-550.76q-29 29.23-29 71Q380-438 409.24-409q29.23 29 71 29Zm.03 300q-82.74 0-155.5-31.5Q252-143 197.5-197.5t-86-127.34Q80-397.68 80-480.5t31.5-155.66Q143-709 197.5-763t127.34-85.5Q397.68-880 480.5-880t155.66 31.5Q709-817 763-763t85.5 127Q880-563 880-480.27q0 82.74-31.5 155.5Q817-252 763-197.68q-54 54.31-127 86Q563-80 480.27-80Zm.23-60Q622-140 721-239.5t99-241Q820-622 721.19-721T480-820q-141 0-240.5 98.81T140-480q0 141 99.5 240.5t241 99.5Zm-.5-340Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 -960 960 960' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M480.24-380Q522-380 551-409.24q29-29.23 29-71Q580-522 550.76-551q-29.23-29-71-29Q438-580 409-550.76q-29 29.23-29 71Q380-438 409.24-409q29.23 29 71 29Zm.03 300q-82.74 0-155.5-31.5Q252-143 197.5-197.5t-86-127.34Q80-397.68 80-480.5t31.5-155.66Q143-709 197.5-763t127.34-85.5Q397.68-880 480.5-880t155.66 31.5Q709-817 763-763t85.5 127Q880-563 880-480.27q0 82.74-31.5 155.5Q817-252 763-197.68q-54 54.31-127 86Q563-80 480.27-80Zm.23-60Q622-140 721-239.5t99-241Q820-622 721.19-721T480-820q-141 0-240.5 98.81T140-480q0 141 99.5 240.5t241 99.5Zm-.5-340Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.objectives-section .objective-item:hover,
.objectives-section .objective-item:focus-within {
  transform: translate(-2px, -5px);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.24);
}

.objectives-section .objective-item summary {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 1rem 4.5rem 1rem 3.25rem;
  color: var(--text);
}

.objectives-section .objective-item summary::-webkit-details-marker {
  display: none;
}

.objectives-section .objective-item summary::after {
  position: absolute;
  top: 50%;
  left: 1.15rem;
  width: 0.62rem;
  height: 0.62rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-62%) rotate(45deg);
  transition: transform 160ms ease;
}

.objectives-section .objective-item[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.objectives-section .objective-description {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 7rem);
  padding: 0 1.15rem 1.15rem;
}

/* ---------- anchor and anchor-scroll offsets ---------- */
:root {
  --subnav-height: 68px;
  --hero-gap: 0.8rem;
  --anchor-offset: var(--subnav-height);
}

html {
  scroll-padding-top: var(--anchor-offset);
}

.section[id] {
  scroll-margin-top: var(--anchor-offset);
}

.questionnaire-start,
.example-results-section,
.objectives-section,
.uvp-section,
.benefits-section,
.faq-section {
  scroll-margin-top: var(--subnav-height, 0px);
}

.site-header {
  background: var(--dark);
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.section.section-anchor-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  width: 100%;
  margin: 0;
  min-height: var(--subnav-height);
  height: var(--subnav-height);
  padding: 0;
  background: var(--dark);
  border-top: 0;
  border-bottom: 0;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: none;
  overflow: hidden;
}

.section-anchor-nav .section-inner,
.section-anchor-nav .anchor-nav-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: var(--subnav-height);
  height: var(--subnav-height);
  display: block;
  align-items: stretch;
}

.desktop-anchor-nav {
  width: min(1160px, calc(100% - 36px));
  min-height: var(--subnav-height);
  height: var(--subnav-height);
  margin: 0 auto;
  padding: 0;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.desktop-anchor-nav::-webkit-scrollbar {
  display: none;
}

.desktop-anchor-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--subnav-height);
  height: var(--subnav-height);
  margin: 0;
  padding: 0 17px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 0;
  transition: color 160ms ease, background-color 160ms ease;
}

.desktop-anchor-nav a.anchor-top-link,
.anchor-dropdown a.anchor-top-link {
  color: rgba(255, 255, 255, 0.72);
}

.desktop-anchor-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  border-bottom-color: transparent;
}

.desktop-anchor-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border-bottom-color: transparent;
}

.desktop-anchor-nav a:not(.is-active):hover::after {
  position: absolute;
  right: 13px;
  bottom: 0;
  left: 13px;
  height: 3px;
  background: var(--brand-color);
  border-radius: 999px 999px 0 0;
  content: "";
}

.desktop-anchor-nav a.is-active::after {
  position: absolute;
  right: 13px;
  bottom: 0;
  left: 13px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px 999px 0 0;
  content: "";
}

.desktop-anchor-nav a.is-active,
.desktop-anchor-nav a[aria-current="true"],
.desktop-anchor-nav a[aria-current="page"] {
  border-bottom: 3px solid transparent;
}

.mobile-anchor-nav {
  min-height: var(--subnav-height);
  padding: 0 8px;
  gap: 8px;
  background: transparent;
}

.anchor-step,
.anchor-current summary {
  min-height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.anchor-current summary {
  font-weight: 400;
}

.anchor-current summary::after {
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.anchor-dropdown {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #2c2c2c;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.anchor-dropdown a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
}

.anchor-dropdown a:hover,
.anchor-dropdown a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .language-nav .header-contact-link {
    display: none !important;
  }

  .site-nav .site-contact-link {
    display: inline-flex;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

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

  .best-in-class-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
.hero {
  box-sizing: border-box;
  height: calc(100dvh - var(--header-height, 60px) - var(--subnav-height, 0px));
  min-height: calc(100dvh - var(--header-height, 60px) - var(--subnav-height, 0px));
  max-height: calc(100dvh - var(--header-height, 60px) - var(--subnav-height, 0px));
  padding-block: 0.75rem;
}

  .section.section-anchor-nav,
  .section-anchor-nav .section-inner,
  .section-anchor-nav .anchor-nav-inner {
    overflow: visible;
  }

  .section.section-anchor-nav.mobile-dropdown-up .anchor-dropdown {
    top: auto;
    bottom: calc(100% + 8px);
  }

  .hero-inner {
    padding-block: 0.75rem;
  }

  .banner-bg-left {
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    max-width: none;
    opacity: 0.78;
  }

  .hero-inner.hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title-card {
    justify-content: center;
    min-height: 0;
    padding: 1.15rem;
    text-align: center;
  }

  .hero-title-card h1 {
    max-width: none;
    line-height: 1.14;
    font-size: clamp(1.55rem, 6.6vw, 2.2rem);
  }

  .hero-facts {
    display: none;
  }

  .hero-action-row {
    margin-top: 0;
  }

  .desktop-anchor-nav {
    display: none;
  }

  .section.waves::before,
  .section.waves-bottom::after {
    content: none;
  }

  .section.cta-section {
    min-height: 0;
    padding-block: 2.25rem;
    background-attachment: scroll;
  }

  .section.cta-section::before {
    inset: 0;
    background: none !important;
    opacity: 0 !important;
    transform: none !important;
    will-change: auto;
  }

  .cta-inner {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 24px rgba(29, 29, 29, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .section.cta-section .section-subtitle {
    box-shadow: 0 10px 22px rgba(181, 18, 59, 0.14);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .testimonial-carousel-shell {
    padding-inline: 12px;
  }

  .testimonial-carousel {
    grid-auto-columns: minmax(248px, 85%);
    gap: 16px;
  }

  .testimonial {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  }

  .testimonial blockquote {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.45;
  }

  main > .section:not(.hero):not(.section-anchor-nav) {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}

@media (max-width: 1100px) and (min-width: 768px) {
  .hero-inner.hero-split {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }

  .hero-title-card {
    min-height: clamp(220px, 26vh, 300px);
  }

  .hero-title-card h1 {
    max-width: none;
    line-height: 1.12;
    font-size: clamp(1.65rem, 6.8cqi, 2.45rem);
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }
}

@media (min-width: 768px) {
  .mobile-anchor-nav {
    display: none;
  }
}

.section.cta-section {
  background: var(--theme-flat-color) !important;
}

.section.cta-section::before {
  background: none !important;
  opacity: 0 !important;
}

@media (min-width: 768px) {
  .section.cta-section::before {
    background: url("/Content/img/bg/pattern_cta.png") center center / 460px 460px fixed !important;
    opacity: 0.42 !important;
  }
}

.cta-section .section-subtitle,
.cta-section .button-link {
  position: relative;
  z-index: 1;
}

body .section.cta-section h2,
body .section.cta-section.bg-brand h2,
body .section.cta-section.bg-theme h2,
body .section.cta-section.bg-business h2,
body .section.cta-section.bg-career h2,
body .section.cta-section.bg-life h2,
body .section.cta-section.bg-relations h2 {
  color: var(--text) !important;
}

body:not(.theme-brand) .section.cta-section h2::after,
body:not(.theme-brand) .section.cta-section.bg-brand h2::after,
body:not(.theme-brand) .section.cta-section.bg-theme h2::after,
body:not(.theme-brand) .section.cta-section.bg-business h2::after,
body:not(.theme-brand) .section.cta-section.bg-career h2::after,
body:not(.theme-brand) .section.cta-section.bg-life h2::after,
body:not(.theme-brand) .section.cta-section.bg-relations h2::after {
  content: none !important;
  display: none !important;
}




