:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --ink: #132238;
  --ink-strong: #07162d;
  --muted: #607086;
  --line: #dce4ee;
  --line-strong: #c8d4e2;
  --accent: #072b5f;
  --accent-soft: #0c4f83;
  --teal: #12919a;
  --signal: #c98b31;
  --warm: #eef3f7;
  --shadow: 0 16px 38px rgba(10, 30, 55, 0.1);
  --radius: 7px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #08101c;
  --surface: #0f1a2a;
  --surface-soft: #162439;
  --ink: #e9f1f8;
  --ink-strong: #ffffff;
  --muted: #adbac9;
  --line: rgba(222, 232, 244, 0.14);
  --line-strong: rgba(222, 232, 244, 0.26);
  --accent: #8fc5ea;
  --accent-soft: #b9dced;
  --teal: #67c5c8;
  --signal: #e1ad58;
  --warm: #111d2e;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 40;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--ink-strong);
  color: var(--surface);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.15rem;
  padding: 0 clamp(1.25rem, 5vw, 5.2rem);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 5px 22px rgba(10, 30, 55, 0.06);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(10, 30, 55, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  color: var(--accent);
  font-size: 2.85rem;
  font-weight: 780;
  line-height: 0.78;
}

.brand-mark::after {
  content: "";
  width: 0.12em;
  height: 0.56em;
  margin-left: 0.09em;
  border-radius: 2px;
  background: var(--teal);
}

.brand-text {
  display: grid;
  gap: 0.08rem;
  color: var(--ink-strong);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-text strong {
  font-size: 0.82rem;
  letter-spacing: 0;
}

.brand-text span {
  color: var(--accent-soft);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--ink-strong);
  font-size: 0.86rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 0.8rem 0;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.45rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--teal);
  transition: transform 220ms var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav a.is-active {
  color: var(--accent-soft);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.button,
.header-cta,
.theme-toggle {
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 0.78rem 1.18rem;
  background: var(--surface);
  color: var(--ink-strong);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
  white-space: nowrap;
}

.button-primary,
.header-cta {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 14px 28px rgba(7, 43, 95, 0.18);
}

:root[data-theme="dark"] .button-primary,
:root[data-theme="dark"] .header-cta {
  background: #0b3b73;
  color: #ffffff;
  border-color: #2d6fa9;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
}

:root[data-theme="dark"] .button-primary:hover,
:root[data-theme="dark"] .button-primary:focus-visible,
:root[data-theme="dark"] .header-cta:hover,
:root[data-theme="dark"] .header-cta:focus-visible {
  background: #104986;
  border-color: var(--teal);
}

.button-primary::after,
.header-cta::after,
.case-card a::after {
  content: "→";
  font-weight: 800;
}

.button-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: var(--teal);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  white-space: nowrap;
  cursor: pointer;
}

.theme-toggle [data-theme-label] {
  display: inline;
}

.theme-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.theme-toggle-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: currentColor;
}

:root[data-theme="dark"] .theme-toggle-icon::after {
  inset: 0 0 0 7px;
  background: transparent;
  box-shadow: inset -6px 0 0 currentColor;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--surface);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink-strong);
  transition: transform 220ms var(--ease);
}

.nav-open .menu-button span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-button span:last-child {
  transform: rotate(-45deg);
}

.section-pad {
  padding: 4.9rem clamp(1.25rem, 6vw, 5.2rem);
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.hero-inner {
  width: min(1440px, 100%);
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(360px, 0.44fr) minmax(0, 0.56fr);
  align-items: stretch;
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 590px;
  padding: 4rem 0 4rem clamp(1.25rem, 6vw, 5.2rem);
  animation: contentIn 640ms var(--ease) both;
}

.hero-copy h1 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 3.05rem;
  line-height: 1.12;
  font-weight: 790;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy > p:not(.hero-intro) {
  max-width: 470px;
  margin: 1.45rem 0 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.05rem;
}

.hero-media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--surface-soft);
  isolation: isolate;
  animation: mediaIn 760ms 80ms var(--ease) both;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(0.9) brightness(1.02) contrast(0.98);
  transform: scale(1.01);
  animation: imageSettle 18s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(7, 22, 45, 0.04) 34%, rgba(7, 22, 45, 0.16));
  pointer-events: none;
}

.hero-proof {
  width: min(1280px, calc(100% - 2.5rem));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.45rem;
  margin: 0 auto;
  padding: 1.75rem 0 2.15rem;
}

.hero-proof article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.92rem;
  align-items: center;
  min-width: 0;
}

.hero-proof strong {
  color: var(--ink-strong);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.28;
}

.proof-icon {
  position: relative;
  width: 24px;
  height: 24px;
  color: var(--accent-soft);
  transform: scale(1.18);
  transform-origin: center;
}

.proof-icon::before,
.proof-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.proof-icon-approach::before {
  inset: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.proof-icon-approach::after {
  width: 11px;
  height: 2px;
  right: 0;
  top: 7px;
  background: currentColor;
  transform: rotate(-35deg);
}

.proof-icon-secure::before {
  left: 5px;
  top: 3px;
  width: 14px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 4px 4px 7px 7px;
}

.proof-icon-secure::after {
  left: 10px;
  top: 8px;
  width: 5px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(38deg);
}

.proof-icon-fast::before {
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.proof-icon-fast::after {
  left: 11px;
  top: 7px;
  width: 2px;
  height: 8px;
  background: currentColor;
  box-shadow: 4px 5px 0 currentColor;
}

.proof-icon-human::before {
  left: 8px;
  top: 3px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.proof-icon-human::after {
  left: 3px;
  top: 15px;
  width: 18px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--signal);
}

.accompaniment {
  width: min(1440px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(390px, 0.4fr) minmax(0, 0.6fr);
  align-items: center;
  gap: clamp(3.4rem, 5vw, 5.7rem);
  margin-left: auto;
  margin-right: auto;
  background: var(--surface);
}

.accompaniment-copy h2,
.center-head h2,
.about-copy h2,
.final-cta h2,
.supervision h2 {
  margin: 0.7rem 0 0;
  color: var(--ink-strong);
  font-size: clamp(2.15rem, 3vw, 3.15rem);
  line-height: 1.08;
  font-weight: 780;
  letter-spacing: 0;
}

.accompaniment-copy p {
  max-width: 430px;
  margin: 1rem 0 1.25rem;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.62;
}

.proof-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 560px;
  margin: 1.35rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

.proof-metrics article {
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  min-width: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.78rem 0;
}

.proof-metrics strong {
  display: block;
  color: var(--ink-strong);
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1.24;
}

.proof-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 620;
  line-height: 1.42;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.2rem;
}

.feature-strip article {
  position: relative;
  min-width: 0;
  border-top: 2px solid var(--line);
  padding-top: 1rem;
}

.feature-icon {
  display: inline-flex;
  align-items: baseline;
  width: auto;
  height: auto;
  color: var(--accent-soft);
  font-size: clamp(2.15rem, 3.4vw, 3.1rem);
  font-weight: 820;
  line-height: 0.9;
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
  display: none;
}

.feature-strip article:nth-child(even) .feature-icon {
  color: var(--signal);
}

.feature-icon-target::before {
  inset: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px var(--surface);
}

.feature-icon-target::after {
  inset: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.feature-icon-growth::before {
  left: 8px;
  right: 8px;
  bottom: 10px;
  height: 24px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.feature-icon-growth::after {
  right: 7px;
  top: 8px;
  width: 23px;
  height: 23px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: skew(-10deg);
}

.feature-icon-gear::before {
  inset: 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 -8px 0 -6px currentColor, 0 8px 0 -6px currentColor, 8px 0 0 -6px currentColor, -8px 0 0 -6px currentColor;
}

.feature-icon-gear::after {
  inset: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.feature-icon-school::before {
  left: 6px;
  top: 13px;
  width: 36px;
  height: 18px;
  border: 2px solid currentColor;
  transform: skewY(-15deg) rotate(0deg);
}

.feature-icon-school::after {
  left: 14px;
  top: 29px;
  width: 20px;
  height: 9px;
  border: 2px solid currentColor;
  border-top: 0;
}

.feature-strip h3 {
  margin: 0.95rem 0 0.5rem;
  color: var(--ink-strong);
  font-size: 1.08rem;
  line-height: 1.25;
}

.feature-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.decision-brief {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.center-head p {
  max-width: 820px;
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.62;
}

.brief-grid,
.faq-grid {
  width: min(1200px, 100%);
  display: grid;
  gap: 1.25rem;
  margin: 0 auto;
}

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

.brief-grid article,
.faq-grid article {
  min-width: 0;
  border-top: 2px solid var(--line);
  padding-top: 1.05rem;
}

.brief-grid span {
  display: inline-flex;
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 840;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brief-grid h3,
.faq-grid h3 {
  margin: 0.55rem 0 0;
  color: var(--ink-strong);
  font-size: 1.1rem;
  line-height: 1.25;
}

.brief-grid p,
.faq-grid p {
  margin: 0.65rem 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cases {
  background: var(--surface);
}

.center-head {
  width: min(1240px, 100%);
  margin: 0 auto 2rem;
  text-align: left;
}

.center-head h2 {
  max-width: 860px;
}

.case-grid {
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
  margin: 0 auto;
}

.case-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(10, 30, 55, 0.04);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.case-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 32px rgba(10, 30, 55, 0.08);
}

.case-card img,
.case-visual {
  width: 100%;
  height: 100%;
  min-height: 145px;
  border-radius: 6px;
}

.case-card img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) brightness(1.02) contrast(0.98);
}

.case-card h3 {
  margin: 0.25rem 0 0.55rem;
  color: var(--ink-strong);
  font-size: 1rem;
  line-height: 1.18;
}

.case-card p {
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.52;
}

.case-card a {
  display: inline-flex;
  gap: 0.32rem;
  margin-top: 0.9rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 780;
}

.case-visual {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #07162d;
}

.case-visual-board {
  align-content: center;
  gap: 0.55rem;
  padding: 1rem;
  background: #12243a;
}

.case-visual-board i {
  display: block;
  width: 100%;
  height: 12px;
  border-radius: 99px;
  background: rgba(126, 179, 209, 0.28);
}

.case-visual-board svg {
  width: 100%;
  height: auto;
}

.case-visual-board polyline {
  fill: none;
  stroke: var(--teal);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-visual-team {
  grid-template-columns: repeat(3, 34px);
  gap: 0.4rem;
  background: linear-gradient(135deg, #dfeaf3, #ffffff);
}

:root[data-theme="dark"] .case-visual-team {
  background: linear-gradient(135deg, #13243a, #0d1726);
}

.case-visual-team span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(12, 79, 131, 0.38);
  background: var(--surface);
  box-shadow: 0 27px 0 -11px rgba(18, 145, 154, 0.28);
}

.method {
  background: var(--surface);
}

.method-line {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 2.6rem auto 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.method-line li {
  position: relative;
  padding: 1.35rem 1rem 0;
  text-align: center;
}

.method-line span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: -35px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 820;
}

.method-line h3 {
  margin: 1.05rem 0 0.6rem;
  color: var(--ink-strong);
  font-size: 0.9rem;
}

.method-line p {
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.58;
}

.priority-note {
  width: min(1120px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.7rem auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.15rem 1.5rem;
  background: var(--surface);
  color: var(--ink);
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(10, 30, 55, 0.03);
}

.priority-icon {
  position: relative;
  width: 46px;
  height: 32px;
  flex: 0 0 auto;
  color: var(--accent-soft);
}

.priority-icon::before,
.priority-icon::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}

.priority-icon::before {
  left: 14px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: -14px 8px 0 -4px var(--surface), 14px 8px 0 -4px var(--surface);
}

.priority-icon::after {
  left: 4px;
  bottom: 0;
  width: 36px;
  height: 16px;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}

.supervision {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  min-height: 600px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--surface);
}

.supervision::before {
  content: "";
  position: absolute;
  inset: 0 0 0 34%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.36) 33%, rgba(7, 22, 45, 0.08)),
    url("assets/optimized/aii-supervision-pme-realiste.jpg") center / cover no-repeat;
}

:root[data-theme="dark"] .supervision::before {
  background:
    linear-gradient(90deg, rgba(8, 16, 28, 0.96), rgba(8, 16, 28, 0.52) 34%, rgba(8, 16, 28, 0.14)),
    url("assets/optimized/aii-supervision-pme-realiste.jpg") center / cover no-repeat;
}

.supervision-copy {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding: 4.5rem 0 4.5rem clamp(1.25rem, 6vw, 5.2rem);
}

.supervision h2 {
  max-width: 360px;
  margin: 0.65rem 0 0;
  color: var(--ink-strong);
  font-size: clamp(2.15rem, 3vw, 3.15rem);
  line-height: 1.08;
  font-weight: 780;
}

.supervision-copy p {
  max-width: 380px;
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.64;
}

.supervision-copy ul {
  display: grid;
  gap: 0.62rem;
  margin: 1.35rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.supervision-copy li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.45;
}

.supervision-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 820;
}

.supervision-board {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(660px, calc(100% - 3rem));
  margin: 3rem clamp(1.25rem, 6vw, 5.2rem) 3rem 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(7, 22, 45, 0.9);
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(4, 16, 32, 0.24);
  backdrop-filter: blur(12px);
}

.supervision-photo {
  position: relative;
  min-height: 176px;
  background: #07162d;
}

.supervision-photo img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(0.92) contrast(1.03);
}

.supervision-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 22, 45, 0.08), rgba(7, 22, 45, 0.68));
}

.photo-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.18rem;
  max-width: calc(100% - 2rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  padding: 0.65rem 0.75rem;
  background: rgba(7, 22, 45, 0.72);
  backdrop-filter: blur(10px);
}

.photo-label span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 820;
  text-transform: uppercase;
}

.photo-label strong {
  color: #ffffff;
  font-size: 0.88rem;
  line-height: 1.2;
}

.board-panel {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  background: linear-gradient(140deg, rgba(7, 22, 45, 0.96), rgba(12, 42, 77, 0.93));
}

.board-disclaimer {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
}

.board-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.board-header span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.board-header strong {
  color: #ffffff;
  font-size: 0.92rem;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.board-grid article {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.06);
}

.board-grid span,
.board-grid small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.board-grid strong {
  color: #ffffff;
  font-size: 1.42rem;
  line-height: 1;
}

.board-insights {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(120px, 0.8fr) minmax(120px, 0.8fr);
  gap: 0.65rem;
}

.chart-card {
  display: grid;
  grid-template-rows: auto minmax(86px, 1fr);
  min-width: 0;
  min-height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  padding: 0.78rem;
  background: rgba(255, 255, 255, 0.055);
}

.chart-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.65rem;
  min-width: 0;
}

.chart-title span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.chart-title strong {
  color: #ffffff;
  font-size: 0.74rem;
  white-space: nowrap;
}

.mini-line-chart {
  align-self: end;
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
}

.mini-line-chart path {
  fill: rgba(57, 199, 207, 0.14);
}

.mini-line-chart polyline {
  fill: none;
  stroke: #39c7cf;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 0.42rem;
  height: 94px;
  margin-top: 0.55rem;
}

.bar-chart i {
  display: block;
  min-height: 18px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #72d7de, #12919a);
}

.bar-chart i:nth-child(1) { height: 62%; }
.bar-chart i:nth-child(2) { height: 78%; }
.bar-chart i:nth-child(3) { height: 54%; }
.bar-chart i:nth-child(4) { height: 86%; }
.bar-chart i:nth-child(5) { height: 70%; }

.donut-chart {
  position: relative;
  align-self: center;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 94px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#d89f44 0 15%, rgba(255, 255, 255, 0.15) 15% 100%);
  text-align: center;
}

.donut-chart::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  background: #0a1d35;
}

.donut-chart strong,
.donut-chart span {
  position: relative;
  z-index: 1;
  display: block;
}

.donut-chart strong {
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1;
}

.donut-chart span {
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
}

.machine-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.machine-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.62rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

.machine-list span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
}

.machine-list div:nth-child(2) span {
  background: #d89f44;
}

.machine-list strong {
  color: #ffffff;
  font-size: 0.78rem;
  white-space: nowrap;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4.8rem);
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
  text-align: left;
  background: var(--surface);
}

.contact-intro {
  max-width: 520px;
}

.final-cta p {
  max-width: 620px;
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: color-mix(in srgb, var(--surface-soft) 64%, var(--surface));
  box-shadow: 0 18px 34px rgba(10, 30, 55, 0.08);
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
  text-align: left;
}

.contact-form .form-field-wide,
.contact-form > .button,
.contact-form > .form-note {
  grid-column: 1 / -1;
}

.contact-form .form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label span {
  color: var(--ink-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  padding: 0.86rem 0.9rem;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.35;
}

.contact-form select {
  min-height: 48px;
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--teal) 42%, transparent);
  outline-offset: 2px;
  border-color: var(--teal);
}

.contact-form.is-prefilled {
  animation: formFocus 700ms var(--ease);
}

.contact-form .button {
  justify-self: start;
  margin-top: 0.35rem;
}

.contact-form .form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-form .form-note.is-success {
  color: var(--teal);
}

.contact-form .form-note.is-error {
  color: #b42318;
}

.contact-form .form-required-note,
.contact-form .form-privacy {
  margin: 0;
}

.contact-form .form-required-note {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

.contact-form label small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
}

.contact-form .field-help {
  display: block;
  line-height: 1.45;
  margin-top: 0.5rem;
}

.contact-form .form-privacy {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.contact-form .form-privacy a,
.legal-page a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-header {
  border-bottom: 1px solid var(--line);
  padding: 1rem clamp(1rem, 4vw, 4rem);
}

.legal-header .brand {
  width: fit-content;
}

.legal-page {
  margin: 0 auto;
  max-width: 880px;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
}

.legal-page .section-kicker {
  margin-bottom: 1rem;
}

.legal-page h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  margin: 0 0 1rem;
}

.legal-page > p:first-of-type {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.legal-page section {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

.legal-page h2 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  margin: 0 0 1rem;
}

.legal-page h3 {
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-page p,
.legal-page li {
  line-height: 1.75;
}

.legal-page ul {
  padding-left: 1.25rem;
}

.legal-page .legal-callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.2rem;
}

.legal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  justify-content: space-between;
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  align-items: start;
  gap: 4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.about-copy {
  max-width: 520px;
}

.about-copy p {
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.68;
}

.about-content {
  display: grid;
  gap: 1.45rem;
  min-width: 0;
}

.about-statement {
  border-left: 3px solid var(--teal);
  padding-left: 1.15rem;
}

.about-statement h3 {
  margin: 0 0 0.65rem;
  color: var(--ink-strong);
  font-size: 1.25rem;
  line-height: 1.2;
}

.about-statement p {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.68;
}

.about-statement p + p {
  margin-top: 0.9rem;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 66%, transparent);
}

.about-principles article {
  display: grid;
  align-content: start;
  gap: 0.58rem;
  min-width: 0;
  min-height: 184px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.15rem;
}

.about-principles span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 820;
}

.about-principles h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 1rem;
  line-height: 1.22;
}

.about-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.leadership {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.leadership article {
  position: relative;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 1.15rem;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.95rem;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--surface-soft) 54%, transparent));
  box-shadow: 0 14px 32px rgba(10, 30, 55, 0.06);
  overflow: hidden;
}

.leadership article::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 0.95rem;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--signal);
  z-index: 1;
}

.leadership img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 6px;
  filter: grayscale(1) contrast(1.05);
}

.leadership div {
  display: grid;
  align-content: center;
  min-width: 0;
}

.leadership span {
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 840;
  text-transform: uppercase;
}

.leadership h3 {
  margin: 0.35rem 0 0;
  color: var(--ink-strong);
  font-size: 1rem;
  line-height: 1.22;
}

.leadership p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.illustration-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.faq {
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0 2.4rem;
}

.faq-item {
  border-top: 1px solid var(--line-strong);
}

.faq-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  gap: 1rem;
  align-items: center;
  min-height: 76px;
  padding: 1.05rem 0;
  color: var(--ink-strong);
  cursor: pointer;
  list-style: none;
}

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

.faq-question {
  font-size: 1.02rem;
  font-weight: 780;
  line-height: 1.34;
}

.faq-icon {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), transform 220ms var(--ease);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 13px;
  width: 12px;
  height: 2px;
  background: currentColor;
}

.faq-icon::after {
  transform: rotate(90deg);
  transition: transform 220ms var(--ease);
}

.faq-item[open] .faq-icon {
  border-color: var(--teal);
  background: color-mix(in srgb, var(--teal) 10%, transparent);
  transform: rotate(180deg);
}

.faq-item[open] .faq-icon::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 3.9rem 1.35rem 0;
}

.faq-answer p {
  max-width: 64ch;
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.65;
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 2vw, 1.6rem);
  bottom: clamp(1rem, 2vw, 1.6rem);
  z-index: 24;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid color-mix(in srgb, var(--line-strong) 82%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--ink-strong);
  box-shadow: 0 12px 28px rgba(7, 22, 45, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  backdrop-filter: blur(12px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), border-color 180ms var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: var(--teal);
}

.back-to-top span {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.site-footer {
  background: #062852;
  color: #ffffff;
}

:root[data-theme="dark"] .site-footer {
  background: #030b17;
}

.footer-main {
  width: min(1240px, calc(100% - 2.5rem));
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 0.8fr));
  gap: 3.2rem;
  margin: 0 auto;
  padding: 3.2rem 0 2.5rem;
}

.footer-brand .brand-mark,
.footer-brand .brand-text,
.footer-brand .brand-text strong,
.footer-brand .brand-text span {
  color: #ffffff;
}

.footer-main p {
  max-width: 260px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.48rem;
}

.site-footer strong {
  margin-bottom: 0.45rem;
  color: #ffffff;
  font-size: 0.92rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.footer-contact p {
  margin: 0;
}

.footer-contact > strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact .footer-address {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-contact .footer-registration {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  letter-spacing: 0.015em;
}

.footer-contact > a {
  margin-top: 0.22rem;
}

.footer-bottom {
  width: min(1240px, calc(100% - 2.5rem));
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.footer-bottom span:last-child {
  display: inline-flex;
  gap: 1.2rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  animation: revealIn 560ms var(--ease) both;
}

@keyframes revealIn {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes contentIn {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes mediaIn {
  0% { opacity: 0; transform: translateX(18px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes imageSettle {
  0% { transform: scale(1.01) translate3d(0, 0, 0); }
  100% { transform: scale(1.045) translate3d(-0.7%, 0.4%, 0); }
}

@keyframes formFocus {
  0%, 100% { box-shadow: 0 18px 34px rgba(10, 30, 55, 0.08); }
  45% { box-shadow: 0 20px 42px color-mix(in srgb, var(--teal) 24%, transparent); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1540px) {
  .site-header {
    gap: 1rem;
    padding: 0 clamp(1rem, 3vw, 3rem);
  }

  .main-nav {
    gap: 1.1rem;
    font-size: 0.82rem;
  }

  .header-actions {
    gap: 0.55rem;
  }

  .theme-toggle {
    width: 46px;
    padding-inline: 0;
  }

  .theme-toggle [data-theme-label] {
    display: none;
  }
}

@media (max-width: 1320px) {
  .site-header {
    min-height: 72px;
  }

  .main-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav-open .main-nav {
    position: fixed;
    top: 72px;
    left: 1rem;
    right: 1rem;
    justify-self: stretch;
    z-index: 35;
    display: grid;
    justify-items: start;
    gap: 0;
    max-height: calc(100svh - 88px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.6rem;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-open .main-nav a {
    width: 100%;
    padding: 0.9rem;
  }
}

@media (max-width: 1380px) {
  .supervision {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 4.6rem clamp(1.25rem, 6vw, 5.2rem);
  }

  .supervision::before {
    display: none;
  }

  .supervision-copy {
    max-width: 780px;
    padding: 0;
  }

  .supervision h2 {
    max-width: 780px;
  }

  .supervision-copy p {
    max-width: 680px;
  }

  .supervision-board {
    justify-self: stretch;
    width: min(100%, 940px);
    margin: 2rem 0 0;
  }

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

  .board-grid article:nth-child(4) {
    display: none;
  }

  .board-insights {
    gap: 0.8rem;
  }
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 72px;
  }

  .main-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav-open .main-nav {
    position: fixed;
    top: 72px;
    left: 1rem;
    right: 1rem;
    justify-self: stretch;
    z-index: 35;
    display: grid;
    justify-items: start;
    gap: 0;
    max-height: calc(100svh - 88px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.6rem;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-open .main-nav a {
    width: 100%;
    padding: 0.9rem;
  }

  .hero-inner,
  .accompaniment,
  .about,
  .supervision {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
    padding-right: clamp(1.25rem, 6vw, 5.2rem);
  }

  .hero-media {
    min-height: 500px;
    clip-path: none;
  }

  .feature-strip,
  .case-grid,
  .method-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .supervision {
    padding: 4.4rem clamp(1.25rem, 6vw, 5.2rem);
  }

  .supervision::before {
    display: none;
  }

  .supervision-copy {
    padding: 0;
  }

  .supervision-board {
    justify-self: stretch;
    width: 100%;
    margin: 2rem 0 0;
  }

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

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

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

  .final-cta {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    gap: 0.85rem;
    padding: 0 1rem;
  }

  .brand-text {
    display: none;
  }

  .brand-mark {
    font-size: 2.35rem;
  }

  .header-cta {
    display: none;
  }

  .hero-inner {
    min-height: 0;
  }

  .hero-copy {
    padding: 2rem 1rem 1.75rem;
  }

  .hero-copy h1 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .hero-copy > p:not(.hero-intro) {
    max-width: 34ch;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 22rem, calc(100vw - 3rem));
    max-width: min(22rem, calc(100vw - 3rem));
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-media {
    min-height: 350px;
  }

  .hero-proof,
  .brief-grid,
  .feature-strip,
  .proof-metrics,
  .case-grid,
  .faq-grid,
  .method-line,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .contact-form .form-field-wide,
  .contact-form > .button,
  .contact-form > .form-note {
    grid-column: auto;
  }

  .proof-metrics {
    gap: 0.9rem;
    max-width: 100%;
  }

  .hero-proof {
    gap: 1rem;
    padding: 1.3rem 0 1.7rem;
  }

  .accompaniment-copy h2,
  .center-head h2,
  .about-copy h2,
  .final-cta h2,
  .supervision h2 {
    font-size: 1.65rem;
  }

  .about {
    gap: 2rem;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-principles article {
    min-height: 0;
  }

  .leadership article {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .leadership img {
    height: 166px;
  }

  .case-card {
    grid-template-columns: 128px minmax(0, 1fr);
    min-height: 150px;
    align-items: stretch;
  }

  .case-card img,
  .case-visual {
    min-height: 126px;
  }

  .method-line {
    border-top: 0;
    gap: 1.1rem;
    margin-top: 1.8rem;
  }

  .method-line li {
    border-top: 1px solid var(--line);
    padding-top: 1.2rem;
    text-align: left;
  }

  .method-line span {
    margin-top: 0;
  }

  .priority-note {
    align-items: flex-start;
    text-align: left;
  }

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

  .board-header {
    display: grid;
    gap: 0.25rem;
  }

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

  .supervision-photo img {
    height: 220px;
  }

  .footer-bottom {
    display: grid;
  }

  .faq-grid {
    gap: 0;
  }

  .faq-item:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .faq-item summary {
    min-height: 68px;
  }

  .faq-answer {
    padding-right: 2.8rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    min-height: 66px;
    padding: 0 0.8rem;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .brand-mark {
    font-size: 2.12rem;
  }

  .theme-toggle,
  .menu-button {
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .theme-toggle [data-theme-label] {
    display: none;
  }

  .hero-copy h1 {
    font-size: 1.72rem;
    line-height: 1.15;
  }

  .hero-media {
    min-height: 310px;
  }

  .case-card {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .contact-form {
    padding: 1rem;
  }

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

  .leadership article {
    grid-template-columns: 1fr;
  }

  .leadership img {
    height: 260px;
  }

  .case-card img,
  .case-visual {
    height: 205px;
  }

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

  .board-insights {
    grid-template-columns: 1fr;
  }

  .photo-label {
    right: 1rem;
  }

  .machine-list div {
    display: grid;
    justify-items: start;
  }
}

@media (max-width: 380px) {
  .hero-copy {
    padding-top: 1.7rem;
  }

  .hero-copy h1 {
    font-size: 1.58rem;
  }

  .hero-copy > p:not(.hero-intro) {
    font-size: 0.94rem;
  }

  .hero-media {
    min-height: 285px;
  }

  .supervision-board {
    margin-inline: 1rem;
  }
}
