:root {
  --green-950: #0a2a1e;
  --logo-green: #0a2a1e;
  --green-900: #0e3627;
  --green-850: #124633;
  --green-800: #123c2d;
  --green-700: #1a5540;
  --green-card: #1a3528;
  --cream-100: #fbf6ea;
  --cream-150: #f5ecd9;
  --cream-200: #eadcc0;
  --beige-300: #d9c39f;
  --gold-muted: #b99f72;
  --orange: #ff6200;
  --ink: #082016;
  --muted: #5e6a60;
  --white: #ffffff;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(8, 32, 22, 0.14);
  --line-transformation: rgba(251, 246, 234, 0.38);
  --shadow: 0 26px 80px rgba(6, 27, 19, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--green-950);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-muted);
  outline-offset: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--logo-green);
  border-bottom: 1px solid var(--line-dark);
}

.nav {
  width: min(1320px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: rgba(251, 246, 234, 0.86);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--cream-100);
}

.nav-links .nav-cta {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--cream-100);
  background: transparent;
  border: 1px solid rgba(251, 246, 234, 0.62);
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links .nav-cta:hover {
  border-color: var(--cream-100);
}

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

.nav-toggle-label {
  display: none;
}

.nav-toggle:focus-visible + .nav-toggle-label {
  outline: 3px solid var(--gold-muted);
  outline-offset: 4px;
}

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

.section-dark,
.section-light,
.section-cream {
  padding: 78px 0;
}

.section-dark {
  color: var(--cream-100);
  background: var(--green-950);
}

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

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

.faq {
  background: var(--cream-150);
}

.hero {
  position: relative;
  min-height: calc(86vh - 82px);
  padding: 32px 0 58px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 50%;
  background: transparent;
  border-left: 1px solid rgba(251, 246, 234, 0.2);
  pointer-events: none;
}

.stats-section {
  padding: 38px 0;
  color: var(--green-950);
  background: var(--cream-150);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.stats-section .container {
  width: min(1520px, calc(100% - 56px));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  min-height: 125px;
  padding: 18px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--line-light);
}

.stat-value {
  margin: 0 0 10px;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

.stat-accent {
  color: var(--orange);
  font-size: 0.48em;
  font-style: italic;
  vertical-align: 0.18em;
}

.stat-label {
  margin: 0;
  color: var(--green-700);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.35;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  grid-template-columns: 50% 50%;
  gap: 0;
  transform: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: min(860px, calc(100% - 80px));
  margin-left: auto;
  margin-right: -12px;
}

.hero-copy h1 {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
}

.hero-copy .hero-statement {
  max-width: 680px;
  font-size: clamp(3.2rem, 5.7vw, 6.1rem);
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

h1 em,
h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: inherit;
}

.section-light h2,
.section-cream h2 {
  color: var(--green-950);
}

.section-dark h2 {
  color: var(--cream-100);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.35;
}

.hero-lead,
.section-lead {
  max-width: 760px;
  color: inherit;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero-lead {
  max-width: 560px;
  font-size: clamp(0.98rem, 1.35vw, 1.15rem);
  line-height: 1.48;
  margin-left: 0;
  margin-right: auto;
  text-align: justify;
  text-align-last: left;
}

.section-dark .hero-lead,
.section-dark .section-lead {
  color: rgba(251, 246, 234, 0.82);
}

.section-light .section-lead,
.section-cream .section-lead {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin: 28px 0 18px;
}

.hero-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.hero-contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  color: rgba(251, 246, 234, 0.82);
  border: 1px solid rgba(251, 246, 234, 0.32);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hero-contact-links a:hover,
.hero-contact-links a:focus-visible {
  color: var(--cream-100);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  color: var(--green-950);
  background: transparent;
  border: 1px solid rgba(10, 42, 30, 0.68);
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  border-color: var(--green-950);
}

.section-dark .button,
.analysis-form .button {
  color: var(--cream-100);
  background: transparent;
  border-color: rgba(251, 246, 234, 0.62);
}

.section-dark .button:hover,
.analysis-form .button:hover {
  border-color: var(--cream-100);
}

.button-primary {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.section-light .button-primary,
.section-cream .button-primary {
  color: var(--green-950);
  background: transparent;
  border-color: rgba(10, 42, 30, 0.68);
}

.button-secondary {
  color: inherit;
  border-color: currentColor;
  background: transparent;
}

.button-hero-secondary {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.text-link {
  color: var(--cream-100);
  font-weight: 800;
  text-underline-offset: 6px;
}

.inline-contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
}

.inline-contact-cta--center {
  justify-content: center;
  text-align: center;
}

.inline-contact-cta .button {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.72rem;
}

.hero-panel {
  position: relative;
  align-self: start;
  min-height: calc(86vh + 32px);
  width: 100%;
  margin-left: 0;
  margin-top: -32px;
  margin-right: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-trust-photo {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hero-trust-photo img {
  width: 100%;
  max-width: none;
  height: calc(86vh + 32px);
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
}

.panel-kicker {
  margin-bottom: 14px;
  color: var(--cream-200);
  font-weight: 800;
}

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--gold-muted);
  border-radius: 999px;
}

.section-heading {
  max-width: 940px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 820px;
}

.section-logo-mark {
  width: clamp(118px, 12vw, 168px);
  height: auto;
  margin: 0 0 18px;
}

.section-logo-mark-corner {
  margin: 22px 0 -22px auto;
}

.section-logo-mark-center {
  margin: 22px auto -22px;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.recognition-grid p {
  position: relative;
  min-height: 158px;
  margin: 0;
  padding: 48px 22px 22px;
  display: flex;
  align-items: flex-end;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: 1.08rem;
  font-weight: 680;
  line-height: 1.45;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.recognition-grid p::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 20px;
  width: 18px;
  height: 18px;
  background: url("images/P%20lichtbeige.png") center / contain no-repeat;
}

.difference {
  padding: 58px 0 64px;
}

.difference-statement {
  max-width: 900px;
  text-align: center;
}

.difference-logo {
  width: min(220px, 62vw);
  height: auto;
  margin: 0 auto 26px;
}

.difference-statement h2 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 58px;
  max-width: 820px;
}

.difference-statement .button {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 0.66rem;
  letter-spacing: 0.05em;
}

.transformation {
  padding: 54px 0 58px;
  overflow: hidden;
  background: var(--green-950);
}

.transformation h2 {
  color: var(--cream-100);
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 1px solid var(--line-transformation);
}

.transformation-grid p {
  position: relative;
  min-height: 108px;
  margin: 0;
  padding: 24px 42px 24px 54px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-transformation);
  color: var(--cream-100);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.45vw, 1.42rem);
  font-weight: 500;
  line-height: 1.28;
  transition: transform 180ms ease, background-color 180ms ease;
}

.transformation-grid p:nth-child(odd) {
  padding-left: max(54px, calc((100vw - var(--container)) / 2 + 54px));
  border-right: 1px solid var(--line-transformation);
}

.transformation-grid p:nth-child(even) {
  padding-right: max(44px, calc((100vw - var(--container)) / 2 + 44px));
}

.transformation-grid p::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 28px;
  width: 15px;
  height: 15px;
  background: url("images/P%20donkergroen.png") center / contain no-repeat;
}

.transformation-grid p:nth-child(odd)::before {
  left: max(26px, calc((100vw - var(--container)) / 2 + 26px));
}

.transformation .inline-contact-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(520px, calc(100vw - 48px));
  margin: 30px auto 0;
}

.transformation .inline-contact-cta .button {
  width: min(230px, 100%);
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.62rem;
}

.transformation .inline-contact-cta .button:first-child {
  justify-self: end;
}

.transformation .inline-contact-cta .button:last-child {
  justify-self: start;
}

.comparison {
  display: grid;
  gap: 16px;
}

.comparison-item {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
}

.comparison-item span,
.track-label {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.comparison-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.22;
}

.comparison-item.accent {
  color: var(--cream-100);
  background: var(--green-card);
  border-color: var(--green-card);
}

.comparison-item.accent span {
  color: var(--orange);
}

.comparison-logo {
  width: 150px;
  height: auto;
  margin-bottom: 16px;
}

.comparison-item.muted span {
  color: var(--green-700);
}

.editorial-number {
  display: block;
  margin-bottom: 28px;
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
}

.section-dark .editorial-number {
  color: var(--orange);
}

.collaboration-grid,
.track-grid,
.process-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

.track-card,
.process-grid article,
.review-grid figure {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.process-grid article,
.collaboration-grid article {
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.track-card p,
.review-grid figcaption {
  color: rgba(251, 246, 234, 0.72);
}

.track-card > p:not(.track-label) {
  font-size: 0.95rem;
  line-height: 1.45;
}

.track-card .track-label {
  color: var(--orange);
}

.section-light .process-grid p {
  color: var(--muted);
}

.audience-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 28px;
}

.audience-strip span {
  padding: 9px 12px;
  color: var(--green-950);
  background: var(--cream-150);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.collaboration-grid {
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.collaboration-grid article {
  min-height: 236px;
  padding: 24px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.collaboration-grid p {
  color: var(--muted);
}

.track-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.pricing-switch {
  max-width: 560px;
  margin: -8px auto 34px;
  text-align: center;
}

.pricing-switch p {
  margin: 0 0 12px;
  color: rgba(251, 246, 234, 0.68);
  font-size: 0.78rem;
  line-height: 1.2;
  white-space: nowrap;
}

.pricing-toggle {
  width: min(218px, 100%);
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 3px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.pricing-toggle-option {
  min-height: 30px;
  padding: 6px 9px;
  color: rgba(251, 246, 234, 0.78);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}

.pricing-toggle-option.active {
  color: var(--green-950);
  background: var(--cream-100);
}

.pricing-toggle-option:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.track-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  background: var(--green-card);
  transition: transform 180ms ease, border-color 180ms ease;
}

.track-card:hover,
.track-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 98, 0, 0.42);
}

.track-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 14px;
}

.track-card .button {
  margin-top: auto;
  text-align: center;
}

.track-card.featured .button-primary {
  color: var(--green-950);
  background: transparent;
  border-color: rgba(10, 42, 30, 0.68);
}

.track-card.featured {
  background: var(--cream-100);
  color: var(--ink);
  border-color: var(--cream-100);
  transform: translateY(-14px);
}

.track-card.featured:hover,
.track-card.featured:focus-within {
  transform: translateY(-22px);
}

.track-card.featured p {
  color: var(--muted);
}

.track-card .track-label,
.track-card.featured .track-label {
  color: var(--orange);
  text-align: center;
  font-size: 0.9rem;
}

.track-scope {
  margin: 18px 0 4px;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  color: rgba(251, 246, 234, 0.72);
}

.track-scope span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.track-scope strong {
  display: block;
  color: var(--cream-100);
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.2;
}

.track-card.featured .track-scope {
  color: rgba(10, 42, 30, 0.24);
}

.track-card.featured .track-scope strong {
  color: var(--green-950);
}

.track-price {
  margin: 18px 0 20px;
  text-align: center;
  transition: opacity 180ms ease;
}

.track-price.updating {
  opacity: 0.72;
}

.track-price-value {
  margin: 0;
  color: var(--cream-100);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.track-price-vat {
  margin: 7px 0 0;
  color: rgba(251, 246, 234, 0.7);
  font-size: 0.92rem;
  font-weight: 400;
}

.track-payment-note {
  margin: 12px 0 0;
  color: rgba(251, 246, 234, 0.68);
  font-size: 0.78rem;
  line-height: 1.35;
}

.track-card.featured .track-price-value {
  color: var(--green-950);
}

.track-card.featured .track-price-vat,
.track-card.featured .track-payment-note {
  color: var(--muted);
}

.track-guidance {
  position: relative;
  max-width: 850px;
  margin: 34px auto 0;
  padding-left: 24px;
  color: rgba(251, 246, 234, 0.62);
  font-size: 0.9rem;
  line-height: 1.55;
}

.track-guidance::before {
  content: "";
  position: absolute;
  top: 0.36em;
  left: 0;
  width: 14px;
  height: 14px;
  background: url("images/P%20donkergroen.png") center / contain no-repeat;
}

.analysis-form {
  position: relative;
  padding: 26px;
  background: var(--green-900);
  color: var(--cream-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.analysis-form-logo {
  position: absolute;
  top: 16px;
  right: 26px;
  width: 108px;
  height: auto;
  pointer-events: none;
}

.analysis-form label {
  display: block;
  margin: 0 0 8px;
  color: var(--cream-100);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.analysis-form input,
.analysis-form textarea {
  width: 100%;
  margin: 0 0 14px;
  padding: 13px 14px;
  color: var(--cream-100);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font: inherit;
}

.analysis-form input:focus,
.analysis-form textarea:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: none;
}

.analysis-form textarea {
  resize: vertical;
}

.analysis-form .button-primary {
  color: var(--cream-100);
  background: transparent;
  border-color: rgba(251, 246, 234, 0.62);
  font-size: 0.82rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-note {
  margin: 16px 0 0;
  color: rgba(251, 246, 234, 0.68);
  font-size: 0.92rem;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
  border-color: var(--line-light);
}

.process-grid p {
  color: var(--muted);
}

.process-grid.compact {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 26px;
}

.process-grid.compact article {
  padding: 0 18px 18px 0;
  border: 0;
  border-top: 1px solid var(--line-light);
  border-radius: 0;
}

.process-grid.compact .editorial-number {
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.expertise-clusters {
  display: grid;
  gap: 22px;
  transform: translateX(clamp(24px, 4vw, 68px));
}

.expertise-clusters-single {
  align-self: center;
  gap: 18px;
}

.expertise .split {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: start;
}

.expertise-clusters article {
  padding: 0;
}

.expertise-clusters h3 {
  margin-bottom: 14px;
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
}

.expertise-clusters-single h3 {
  margin-bottom: 0;
}

.expertise-clusters p {
  margin: 0;
  color: var(--muted);
}

.expertise-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.expertise-pills span {
  padding: 8px 11px;
  background: var(--cream-100);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--green-950);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.audience-strip span:hover,
.expertise-pills span:hover,
.recognition-grid p:hover,
.process-grid article:hover,
.collaboration-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 98, 0, 0.42);
}

.audience-strip span:hover,
.expertise-pills span:hover {
  background: rgba(255, 98, 0, 0.08);
}

.recognition-grid p:hover,
.process-grid article:hover,
.collaboration-grid article:hover {
  background: rgba(255, 98, 0, 0.035);
}

.transformation-grid p:hover {
  transform: translateY(-3px);
  background: rgba(251, 246, 234, 0.035);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.64fr);
  gap: 54px;
  align-items: center;
  margin-bottom: 72px;
}

.trust {
  padding-top: 62px;
  padding-bottom: 0;
}

.trust-photo {
  margin: 34px 0 0;
  box-shadow: var(--shadow);
}

.trust-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 55%;
  transform: scale(1.06);
}

.trust-photo > img {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-photo figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: 22px;
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(0.82rem, 1.08vw, 1rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.trust-founders {
  font-style: italic;
}

.trust-amp {
  font-style: normal;
}

.trust-founders-role {
  font-style: normal;
}

.trust-photo figcaption img {
  width: auto;
  height: 2.08em;
  aspect-ratio: auto;
  object-fit: contain;
  translate: 0 0.08em;
  transform: none;
}

.trust-copy {
  margin-top: 14px;
}

.trust .section-lead {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.58;
  text-align: justify;
  text-wrap: pretty;
}

.review-note {
  max-width: 620px;
  color: rgba(251, 246, 234, 0.68);
  font-weight: 750;
}

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

.review-grid figure {
  margin: 0;
  color: var(--ink);
  background: var(--cream-100);
  border-color: var(--line-light);
}

.section-dark .review-grid figure {
  color: var(--cream-100);
  background: var(--green-card);
  border-color: var(--line-dark);
}

.section-dark .review-grid figcaption {
  color: rgba(251, 246, 234, 0.68);
}

.review-grid blockquote {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.35;
}

.review-grid figcaption {
  color: var(--muted);
  font-weight: 800;
}

.home-review-band {
  width: 100vw;
  margin: 34px 0 0 50%;
  transform: translateX(-50%);
  overflow: visible;
}

.home-review-band__head {
  display: grid;
  justify-items: start;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto 34px;
  text-align: left;
}

.home-review-band__head h2 {
  margin: 0;
  color: var(--orange);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-review-band__head p {
  margin: 14px 0 0;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.home-review-band__head p em {
  font-style: italic;
  font-weight: 400;
}

.home-review-band__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 12px;
  padding: 9px 15px;
  color: var(--green-950);
  background: transparent;
  border: 1px solid rgba(10, 42, 30, 0.68);
  border-radius: 0;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.home-review-band__link:hover,
.home-review-band__link:focus-visible {
  border-color: var(--green-950);
  outline: none;
}

.home-review-band__actions {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.pro-review-band {
  padding: 32px 0 44px;
  background: var(--cream-100);
}

.review-ticker {
  position: relative;
  overflow: hidden;
  padding: 12px 0 30px;
}

.review-ticker::before,
.review-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.review-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream-100), rgba(251, 246, 234, 0));
}

.review-ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream-100), rgba(251, 246, 234, 0));
}

.review-ticker__track {
  display: flex;
  width: max-content;
  animation: review-marquee 130s linear infinite;
}

.review-ticker:hover .review-ticker__track,
.review-ticker:focus-within .review-ticker__track {
  animation-play-state: paused;
}

.review-ticker__group {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-right: 14px;
}

.review-ticker-card {
  width: 330px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--green-950);
  text-decoration: none;
  background: var(--cream-150);
  border: 1px solid rgba(10, 42, 30, 0.12);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(10, 42, 30, 0.08);
  padding: 18px 22px 15px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.review-ticker-card:hover,
.review-ticker-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 98, 0, 0.42);
  box-shadow: 0 16px 36px rgba(10, 42, 30, 0.12);
  outline: none;
}

.review-ticker-card__stars {
  display: block;
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
}

.review-ticker-card blockquote {
  flex: 0 0 auto;
  margin: 12px 0;
  color: var(--green-950);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.36;
  text-align: center;
  overflow: visible;
}

.review-ticker-card__footer {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.review-ticker-card__name {
  color: var(--green-950);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  opacity: 0.84;
}

.review-ticker-card__readmore {
  color: var(--orange);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  border-bottom: none;
  white-space: nowrap;
}

.review-ticker-card__readmore:hover,
.review-ticker-card__readmore:focus-visible {
  color: var(--orange);
  text-decoration: underline;
  outline: none;
}

@keyframes review-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.experiences-hero {
  padding: 46px 0 38px;
}

.experiences-hero-inner {
  max-width: 780px;
}

.experiences-hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.experiences-hero .hero-lead {
  max-width: 620px;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.experiences-list-section {
  padding: 38px 0 48px;
}

.experiences-list-section .container {
  width: min(1540px, calc(100% - 48px));
}

.experiences-list-section .section-heading {
  margin-bottom: 24px;
}

.experiences-list-section h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.experiences-grid {
  display: block;
  column-count: 4;
  column-gap: 18px;
  column-fill: balance;
}

.experience-card {
  scroll-margin-top: 110px;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  padding: 20px 20px 18px;
  background: var(--cream-100);
  border: 1px solid rgba(10, 42, 30, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(10, 42, 30, 0.08);
  break-inside: avoid;
  break-inside: avoid-column;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.experience-card:target {
  border-color: rgba(255, 98, 0, 0.58);
  box-shadow: 0 18px 42px rgba(10, 42, 30, 0.12);
}

.experience-card:target::before {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--orange);
}

.experience-card__stars {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  line-height: 1;
}

.experience-card blockquote {
  margin: 0 0 14px;
  color: var(--green-950);
  font-size: 0.98rem;
  line-height: 1.54;
}

.experience-card__name {
  margin: 0;
  color: var(--green-950);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  opacity: 0.84;
}

@media (min-width: 1500px) {
  .experiences-grid {
    column-count: 5;
  }
}

@media (max-width: 1250px) {
  .experiences-grid {
    column-count: 3;
  }
}

@media (max-width: 900px) {
  .experiences-grid {
    column-count: 2;
  }
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border-top: 1px solid var(--line-light);
}

details:last-child {
  border-bottom: 1px solid var(--line-light);
}

summary {
  padding: 16px 0;
  cursor: pointer;
  font-weight: 850;
}

details p {
  max-width: 860px;
  margin-bottom: 18px;
  color: var(--muted);
}

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

.final-cta-inner {
  max-width: 850px;
}

.final-cta h2 {
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: rgba(251, 246, 234, 0.76);
  font-size: 1.15rem;
}

.site-footer {
  padding: 28px 0;
  color: rgba(251, 246, 234, 0.68);
  background: var(--logo-green);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner img {
  width: 260px;
}

.footer-inner p {
  margin: 0;
}

.footer-copy {
  display: grid;
  gap: 10px;
  justify-items: end;
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: rgba(251, 246, 234, 0.68);
  font-weight: 400;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cream-100);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  gap: 10px;
}

.floating-contact__button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--cream-100);
  background: var(--green-card);
  border: 1px solid rgba(251, 246, 234, 0.38);
  border-radius: 50%;
  box-shadow: 0 14px 38px rgba(6, 27, 19, 0.22);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.floating-contact__button--whatsapp {
  color: var(--cream-100);
  background: var(--green-card);
  border-color: rgba(251, 246, 234, 0.38);
}

.floating-contact__button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.floating-contact__button:hover,
.floating-contact__button:focus-visible {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.terms-hero {
  padding: 72px 0 58px;
}

.terms-hero-inner {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.terms-hero h1 {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 6vw, 6rem);
}

.terms-hero .hero-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-align-last: auto;
}

.terms-section {
  padding: 64px 0;
}

.terms-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.terms-card {
  min-width: 0;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(7, 31, 23, 0.05);
}

.terms-card--wide {
  grid-column: 1 / -1;
}

.terms-number {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.terms-card h2 {
  margin-bottom: 12px;
  color: var(--green-900);
  font-family: var(--sans);
  font-size: clamp(1.28rem, 1.7vw, 1.7rem);
  font-weight: 850;
  line-height: 1.18;
}

.terms-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.66;
}

.terms-card a {
  color: var(--green-900);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.terms-cta {
  padding: 48px 0;
}

.terms-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.terms-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

@media (max-width: 1080px) {
  .nav {
    min-height: 76px;
  }

  .brand img {
    width: 240px;
  }

  .nav-toggle-label {
    width: 46px;
    height: 42px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    cursor: pointer;
  }

  .nav-toggle-label span {
    width: 22px;
    height: 2px;
    background: var(--cream-100);
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    padding: 18px;
    background: var(--green-900);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-toggle:checked ~ .nav-links {
    display: grid;
    gap: 10px;
  }

  .nav-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
  }

  .hero-grid,
  .split,
  .track-grid,
  .process-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .container,
  .nav {
    width: min(100% - 28px, var(--container));
  }

  .section-dark,
  .section-light,
  .section-cream {
    padding: 54px 0;
  }

  .trust {
    padding-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 46px;
  }

  .stats-section {
    padding: 28px 0;
  }

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

  .stat-item {
    min-height: 112px;
    padding: 20px 18px;
  }

  .stat-item + .stat-item {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.3rem);
  }

  .hero-copy .hero-statement {
    max-width: 100%;
    font-size: clamp(2.65rem, 13vw, 4rem);
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section-logo-mark {
    width: 128px;
    margin-bottom: 14px;
  }

  .hero-grid,
  .split,
  .track-grid,
  .process-grid,
  .review-grid,
  .recognition-grid,
  .transformation-grid,
  .trust-layout,
  .terms-layout {
    grid-template-columns: 1fr;
  }

  .expertise .split {
    grid-template-columns: 1fr;
  }

  .expertise-clusters {
    transform: none;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-contact-links {
    justify-content: center;
  }

  .hero::before {
    display: none;
  }

  .button {
    width: 100%;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .text-link {
    display: inline-flex;
    justify-content: center;
    min-height: 44px;
    align-items: center;
  }

  .analysis-form {
    padding: 20px;
  }

  .hero-grid {
    width: min(100% - 28px, var(--container));
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }

  .hero-copy {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-lead {
    max-width: none;
    text-align: left;
    text-align-last: auto;
  }

  .hero-panel {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    margin-right: 0;
    padding: 0;
  }

  .hero-trust-photo img {
    height: clamp(300px, 76vw, 460px);
  }

  .recognition-grid p {
    padding: 42px 18px 20px;
    min-height: 118px;
  }

  .transformation {
    padding: 42px 0;
  }

  .transformation-grid p {
    min-height: 104px;
    padding: 24px 24px 24px 48px;
  }

  .transformation-grid p:nth-child(odd) {
    padding-left: 48px;
    border-right: 0;
  }

  .transformation-grid p:nth-child(even) {
    padding-right: 24px;
  }

  .transformation-grid p::before {
    left: 20px;
    top: 27px;
  }

  .transformation-grid p:nth-child(odd)::before {
    left: 20px;
  }

  .track-card {
    min-height: auto;
  }

  .track-card,
  .process-grid article,
  .review-grid figure,
  .collaboration-grid article,
  .experience-card {
    overflow-wrap: break-word;
  }

  .pricing-switch {
    width: 100%;
  }

  .pricing-switch p {
    white-space: normal;
  }

  .pricing-toggle {
    width: min(218px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-review-band {
    width: 100vw;
    margin-top: 24px;
    overflow: hidden;
  }

  .home-review-band__head {
    display: block;
  }

  .home-review-band__head h2 {
    font-size: 0.78rem;
    margin-bottom: 6px;
  }

  .home-review-band__head p {
    font-size: clamp(1.55rem, 8vw, 2.35rem);
  }

  .review-ticker {
    padding: 6px 0 20px;
  }

  .review-ticker::before,
  .review-ticker::after {
    width: 20px;
  }

  .review-ticker-card {
    width: min(82vw, 285px);
    height: auto;
    min-height: 218px;
    padding: 16px 17px 14px;
    border-radius: 14px;
  }

  .review-ticker-card blockquote {
    font-size: 14px;
    line-height: 1.35;
  }

  .experiences-hero {
    padding: 36px 0 30px;
  }

  .experiences-grid {
    column-count: 1;
  }

  .experience-card {
    scroll-margin-top: 96px;
    padding: 18px;
  }

  .track-card.featured {
    transform: none;
  }

  .collaboration-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .collaboration-grid article {
    min-height: auto;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .terms-hero {
    padding: 48px 0 40px;
  }

  .terms-section {
    padding: 42px 0;
  }

  .terms-card {
    padding: 22px 18px;
  }

  .terms-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-copy {
    justify-items: start;
    text-align: left;
  }

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

  .floating-contact {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .floating-contact__button {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: min(210px, 58vw);
  }

  .hero-copy .hero-statement {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .hero {
    padding-top: 40px;
  }

  .home-review-band__head h2 {
    font-size: 0.78rem;
  }

  .review-ticker__group {
    gap: 10px;
    padding-right: 10px;
  }

  .review-ticker-card {
    width: min(86vw, 268px);
    min-height: 210px;
    padding: 15px 15px 13px;
  }
}

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

  .review-ticker__track {
    animation: none;
  }

  .audience-strip span,
  .expertise-pills span,
  .recognition-grid p,
  .transformation-grid p,
  .process-grid article,
  .collaboration-grid article,
  .floating-contact__button {
    transition: none;
  }

  .audience-strip span:hover,
  .expertise-pills span:hover,
  .recognition-grid p:hover,
  .transformation-grid p:hover,
  .process-grid article:hover,
  .collaboration-grid article:hover,
  .floating-contact__button:hover {
    transform: none;
  }

}
