:root {
  color-scheme: light;
  --font-body: "Karla", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: "Comfortaa", "Karla", system-ui, sans-serif;
  --font-brand: "Oleo Script", "Karla", system-ui, 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;
}

@font-face {
  font-family: "Oleo Script";
  src: url("/Content/fonts/oleo-script-regular.woff2") format("woff2");
  font-weight: 400;
  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: 60px;
  padding: 8px clamp(18px, 4vw, 48px);
  background: var(--dark);
  border-top: 0;
  border-bottom: 0;
}

.brand {
  color: var(--brand-color);
  font-family: var(--font-brand);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand:hover {
  color: var(--brand-flat-color);
}

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

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

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

.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;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
  border-bottom: 0;
}

.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: 2.5rem;
}

.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;
}

.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: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(18, 23, 34, 0.12);
}

.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);
}

.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);
}

.section.section-anchor-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0;
  background: var(--dark);
  border-bottom: 0;
}

.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: 700;
  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: "v";
  font-size: 0.8rem;
}

.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: 1px solid var(--line);
  padding-left: 14px;
}

.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-label::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 9px;
  background: var(--accent);
  border-radius: 999px;
  flex: 0 0 auto;
}

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

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

.faq-tab-panel h3 {
  margin: 0 0 16px;
  font-size: 1.25rem;
}

.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;
}

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

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

.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);
}

.testimonial blockquote {
  margin: 0;
  color: var(--text);
  font-family: var(--font-brand);
  font-size: 1.35rem;
  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;
}

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

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

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

.number-item {
  position: relative;
  padding: 24px 20px;
  text-align: center;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

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

.number-item strong {
  display: block;
  color: var(--on-dark);
  font-size: 2.4rem;
  line-height: 1;
}

.number-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

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

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

.footer-brand {
  color: var(--on-dark);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer p {
  max-width: 460px;
  margin: 10px 0 0;
  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;
  }

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

  .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;
  }
}
