:root {
  --night: #060a18;
  --night-2: #0a1020;
  --night-3: #10182b;
  --white: #f6f4ee;
  --soft: #b9bfca;
  --coral: #ff806a;
  --coral-dark: #df6553;
  --mint: #bfe7dc;
  --line: rgba(245, 246, 242, 0.14);
  --line-strong: rgba(245, 246, 242, 0.24);
  --max: 1240px;
  --font: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--white);
  background: var(--night);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--night);
  background: var(--white);
}

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

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

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 10, 24, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  min-width: 270px;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.25rem;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.brand-copy > span {
  margin-top: 7px;
  color: var(--soft);
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.88rem;
  font-weight: 560;
}

.nav-link {
  position: relative;
  padding: 30px 0 27px;
  color: rgba(245, 246, 242, 0.72);
  transition: color 180ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  content: "";
  background: var(--coral);
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-link.is-section-current {
  color: var(--white);
}

.nav-link.is-section-current::after {
  transform: scaleX(1);
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 10px);
  left: -20px;
  width: 250px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-7px);
  background: rgba(6, 10, 24, 0.98);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.84rem;
  font-weight: 560;
}

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

.nav-submenu a:hover,
.nav-submenu a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 128, 106, 0.08);
}

.nav-cta,
.button-primary,
.mobile-cta button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--coral);
  border-radius: 3px;
  color: #11131b;
  background: var(--coral);
  cursor: pointer;
  font-weight: 740;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.button-primary:hover,
.mobile-cta button:hover {
  transform: translateY(-2px);
  border-color: #ff9b88;
  background: #ff9b88;
}

.button-secondary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--white);
  background: transparent;
  font-weight: 650;
  transition: border-color 180ms ease, background 180ms ease;
}

.button-secondary:hover {
  border-color: var(--coral);
  background: rgba(255, 128, 106, 0.06);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 1px;
  content: "";
  background: var(--white);
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 18px;
  color: var(--coral);
  font-size: clamp(0.78rem, 1vw, 1.02rem);
  line-height: 1.25;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
}

.method-page .eyebrow {
  font-size: clamp(0.86rem, 1.1vw, 1.12rem);
}

.method-page .eyebrow::before { flex: 0 0 26px; }

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

.hero::before {
  position: absolute;
  top: -40%;
  right: -18%;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(255, 128, 106, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 640px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}

@media (min-width: 821px) {
  .home-page .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .home-page .hero h1 {
    font-size: clamp(3.3rem, 5.7vw, 6.1rem);
  }
}

.hero h1,
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.4rem, 6.6vw, 6.85rem);
  font-weight: 430;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero h1 strong,
.page-hero h1 strong {
  color: var(--coral);
  font-weight: 640;
}

.hero-copy {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.7vw, 1.23rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-note {
  margin: 16px 0 0;
  color: rgba(185, 191, 202, 0.66);
  font-size: 0.84rem;
}

.hero-portrait {
  position: relative;
  aspect-ratio: 1.28;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 246, 242, 0.16);
  border-radius: 26px 6px 26px 6px;
  background: var(--night-2);
  box-shadow: 0 32px 82px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.hero-portrait::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 128, 106, 0.18);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-portrait::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(6, 10, 24, 0.04) 40%, rgba(6, 10, 24, 0.8) 100%),
    linear-gradient(90deg, rgba(6, 10, 24, 0.1), transparent 32%);
  pointer-events: none;
}

.hero-portrait img {
  position: absolute;
  top: -12%;
  left: -8%;
  display: block;
  width: 116%;
  height: 124%;
  object-fit: cover;
  object-position: 64% 48%;
  filter: saturate(.88) contrast(1.06) brightness(.96);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.hero-portrait figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 246, 242, 0.32);
  color: rgba(245, 246, 242, 0.94);
  font-size: 0.68rem;
  font-weight: 670;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-portrait figcaption strong {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  text-transform: none;
}

.hero-portrait figcaption span {
  max-width: 310px;
  text-align: right;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.proof-strip {
  --white: #0a1020;
  --soft: #26314b;
  --line: rgba(6, 10, 24, 0.18);
  border-bottom: 1px solid var(--line);
  background: #f3b2a3;
}

.proof-inner {
  display: grid;
  min-height: 218px;
  grid-template-columns: 220px 250px 1fr;
  align-items: center;
  gap: 34px;
}

.proof-photo {
  position: relative;
  align-self: stretch;
  margin: 22px 0;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(6, 10, 24, 0.18);
  border-radius: 28px 8px 28px 8px;
  background: #111a2d;
  box-shadow: 0 16px 34px rgba(6, 10, 24, 0.18);
}

.proof-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  border-radius: 21px 4px 21px 4px;
}

.proof-label {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-label strong,
.proof-label span {
  display: block;
}

.proof-label strong {
  margin-bottom: 11px;
  color: var(--white);
  font-size: 1.36rem;
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-transform: none;
}

.proof-label small {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.proof-names {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.proof-names span {
  color: var(--white);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 680;
  letter-spacing: -0.035em;
}

.proof-names strong,
.proof-names small {
  display: block;
}

.proof-names small {
  max-width: 165px;
  margin-top: 6px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.3;
}

.section {
  padding: 112px 0;
  border-bottom: 1px solid var(--line);
}

.section-alt {
  background: var(--night-2);
}

/* Editorial chapter palette. Local tokens keep every border and body copy legible. */
.section-ivory,
.page-hero-ivory {
  --white: #0a1020;
  --soft: #475366;
  --line: rgba(6, 10, 24, 0.16);
  --line-strong: rgba(6, 10, 24, 0.32);
  --coral: #ab4437;
  color: var(--white);
  background: #f6f4ee;
}

.section-coral-pale {
  --white: #0a1020;
  --soft: #344156;
  --line: rgba(6, 10, 24, 0.19);
  --coral: #923b34;
  color: var(--white);
  background: #f3c8bb;
}

.section-coral,
.page-hero-coral {
  --white: #091224;
  --soft: #293249;
  --line: rgba(6, 10, 24, 0.22);
  --line-strong: rgba(6, 10, 24, 0.38);
  --coral: #8b312e;
  color: var(--white);
  background: #ed8a76;
}

.section-night-fade {
  position: relative;
  --fade-target: #f6f4ee;
  padding-bottom: 165px;
  border-bottom: 0;
  background: linear-gradient(180deg, #111a2d 0%, #060a18 100%);
}
.section-night-fade::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 65px;
  content: "";
  background: linear-gradient(180deg, rgba(6,10,24,0), var(--fade-target));
  pointer-events: none;
}
#offres.section-night-fade { --fade-target: #ed8a76; }

.page-hero-ivory h1 strong { color: #b45040; }
.page-hero-ivory .button-primary { color: #f6f4ee; background: #111a2d; border-color: #111a2d; }
.page-hero-ivory .button-primary:hover { background: #263550; border-color: #263550; }
.page-hero-coral h1 strong { color: #f8eee5; }
.page-hero-coral .eyebrow,
.section-coral .eyebrow { color: #682c32; }
.page-hero-coral .button-primary,
.section-coral .button-primary { color: #f6f4ee; background: #111a2d; border-color: #111a2d; }
.page-hero-coral .button-primary:hover,
.section-coral .button-primary:hover { background: #263550; border-color: #263550; }
.page-hero-coral .button-secondary,
.section-coral .button-secondary,
.section-ivory .button-secondary { color: var(--white); border-color: var(--line-strong); }
.page-hero-coral .button-secondary:hover,
.section-coral .button-secondary:hover,
.section-ivory .button-secondary:hover { background: rgba(6,10,24,.08); }
.section-ivory .section-action p { color: #324a4a; }

.editorial-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 92px;
  align-items: center;
}

.editorial-split p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 20px;
  color: var(--soft);
  font-size: 1.14rem;
}

.editorial-split strong:not(.service-price) {
  display: block;
  max-width: 650px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 1.06rem;
}

.home-outcome .content-title {
  max-width: 680px;
}

.outcome-principles {
  display: grid;
  gap: 11px;
  max-width: 650px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 1.06rem;
  font-weight: 720;
}

.outcome-principles span {
  display: block;
  padding: 4px 0 4px 14px;
  border-left: 3px solid #672a31;
}

.method-home .button-secondary:hover,
.method-home .button-secondary:focus-visible {
  border-color: var(--coral);
  background: rgba(6, 10, 24, 0.1);
  outline: none;
}

.home-accompaniment .button-secondary {
  margin-top: 16px;
}

.home-accompaniment .editorial-split strong.key-phrase {
  display: inline;
  max-width: none;
  padding: 0;
  border: 0;
  color: var(--white);
  font-size: inherit;
  font-weight: 720;
}

.offer-method-intro > strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.04rem;
  line-height: 1.35;
}

.offer-method-intro > p {
  margin: 0 0 18px;
}

.offer-method-intro .text-link {
  margin-top: 0;
}

.accompaniment-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.accompaniment-flow > div {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 34px;
  border-right: 1px solid var(--line);
}

.accompaniment-flow > div:first-child {
  padding-left: 0;
}

.accompaniment-flow > div:last-child {
  border-right: 0;
}

.accompaniment-flow strong,
.accompaniment-flow span {
  display: block;
}

.accompaniment-flow strong {
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.25;
}

.accompaniment-flow span {
  margin-top: 7px;
  color: var(--soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

.audit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audit-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 42px 48px 42px;
  border-right: 1px solid var(--line);
}

.audit-card:first-child {
  padding-left: 0;
}

.audit-card:last-child {
  border-right: 0;
}

.audit-card h2 {
  margin: 24px 0 16px;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  font-weight: 570;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.audit-card .service-promise strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.08rem;
}

.audit-example {
  margin: 24px 0 0;
  padding: 17px 19px;
  border-left: 3px solid var(--coral);
  color: rgba(245, 246, 242, 0.92);
  background: rgba(255, 128, 106, 0.075);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.5;
}

.audit-example span {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-family: var(--font);
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audit-deliverable {
  margin-top: 28px;
  padding: 19px 20px;
  border: 1px solid rgba(191, 231, 220, 0.74);
  background: rgba(191, 231, 220, 0.09);
  box-shadow: inset 3px 0 0 rgba(191, 231, 220, 0.92);
}

.audit-deliverable span,
.audit-deliverable strong,
.audit-deliverable small {
  display: block;
}

.audit-deliverable span {
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audit-deliverable strong {
  margin-top: 7px;
  color: var(--white);
  font-size: 1.05rem;
}

.audit-deliverable small {
  margin-top: 6px;
  color: var(--soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.audit-card .service-price {
  margin-top: 20px;
}

.price-asterisk {
  margin-left: 2px;
  font-size: 0.66em;
  vertical-align: super;
}

.comparison-price-pill .price-asterisk {
  align-self: flex-start;
  margin-top: 2px;
}

.price-note {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.audit-details {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audit-details summary {
  position: relative;
  padding: 15px 34px 15px 0;
  color: var(--white);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  list-style: none;
}

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

.audit-details summary::after {
  position: absolute;
  top: 13px;
  right: 2px;
  color: var(--coral);
  content: "⌄";
  font-size: 1.35rem;
  line-height: 1;
}

.audit-details[open] summary::after {
  content: "⌃";
}

.audit-details ol {
  margin: 0;
  padding: 0 0 16px;
  list-style: none;
}

.audit-details li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid rgba(245, 246, 242, 0.1);
}

.audit-details li strong {
  color: var(--coral);
  font-size: 0.78rem;
}

.audit-details li span {
  color: var(--soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.copilotage-section .editorial-split {
  align-items: start;
}

#accompagnement-operationnel {
  scroll-margin-top: 82px;
}

.copilotage-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(210px, 0.5fr) minmax(0, 0.9fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.option-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
  margin: 0 0 22px;
  color: #682c32;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.option-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 15px;
  border: 1.5px solid #111a2d;
  border-radius: 999px;
  color: #fff;
  background: #111a2d;
  letter-spacing: 0.15em;
}

.copilotage-portrait {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  margin: 0;
  border-radius: 30px 8px 30px 8px;
  background: #111a2d;
  box-shadow: 18px 18px 0 rgba(17, 26, 45, 0.11);
}

.copilotage-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
  filter: saturate(0.86) contrast(1.03);
}

.copilotage-copy .copilotage-promise {
  max-width: 610px;
  margin: 0;
  color: #111a2d;
  font-size: clamp(1.28rem, 1.8vw, 1.58rem);
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.copilotage-promise span {
  display: block;
}

.copilotage-copy .copilotage-explanation {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.copilotage-price {
  margin-top: 26px;
  padding: 20px 22px;
  border-left: 3px solid #111a2d;
  background: rgba(246, 244, 238, 0.22);
}

.copilotage-price span,
.copilotage-price strong {
  display: block;
}

.copilotage-price span {
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.copilotage-price strong {
  margin-top: 4px;
  padding: 0;
  border: 0;
  font-size: 1.45rem;
}

.copilotage-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.copilotage-included-label {
  margin: 58px 0 0;
  color: #682c32;
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.copilotage-facts > span {
  padding: 26px 24px 28px;
  border-right: 1px solid var(--line);
}

.copilotage-fact-icon {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 0 18px;
  object-fit: contain;
}

.copilotage-facts > span:first-child {
  padding-left: 0;
}

.copilotage-facts > span:last-child {
  border-right: 0;
}

.copilotage-facts strong,
.copilotage-facts small {
  display: block;
}

.copilotage-facts strong {
  font-size: 1rem;
  line-height: 1.35;
}

.copilotage-facts small {
  margin-top: 9px;
  color: var(--soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.transversal-quote {
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: #111a2d;
  font-size: 1.28rem;
  font-weight: 560;
  line-height: 1.45;
}

.transversal-quote cite {
  display: block;
  margin-top: 13px;
  color: #73302f;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.transversal-proof {
  display: block;
  margin-top: 20px;
  color: var(--soft);
  font-size: 0.86rem;
}

.method-client-proof {
  --white: #0a1020;
  --soft: #344156;
  --line: rgba(6, 10, 24, 0.17);
  color: var(--white);
  background: #f6f4ee;
}

.method-client-proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}

.method-client-portrait {
  position: relative;
  margin: 0;
}

.method-client-portrait::before {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: -24px;
  bottom: -24px;
  left: 24px;
  border: 1px solid rgba(180, 80, 64, 0.42);
  content: "";
  pointer-events: none;
}

.method-client-portrait img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 24%;
}

.method-client-proof-copy {
  max-width: 770px;
}

.proof-format {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 11px;
  border: 1px solid rgba(180, 80, 64, 0.35);
  color: #8f3b34;
  background: rgba(237, 138, 118, 0.11);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-client-proof-copy h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(2.5rem, 4.4vw, 4.55rem);
  font-weight: 430;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.method-client-proof-copy blockquote {
  max-width: 720px;
  margin: 34px 0 0;
  padding: 0 0 0 24px;
  border-left: 3px solid #ed8a76;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.8vw, 1.62rem);
  line-height: 1.5;
  letter-spacing: -0.018em;
}

.method-client-name {
  margin: 28px 0 0;
}

.method-client-name strong,
.method-client-name span {
  display: block;
}

.method-client-name strong {
  font-size: 1rem;
}

.method-client-name span {
  margin-top: 4px;
  color: var(--soft);
  font-size: 0.88rem;
}

.proof-validation {
  display: block;
  margin-top: 18px;
  color: #8f3b34;
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.04em;
}

.home-page .hero {
  background: linear-gradient(160deg, #060a18 46%, #111b2a 78%, #aa504c 160%);
}

.home-page .hero h1 {
  font-size: clamp(3.25rem, 5vw, 5.7rem);
}

.paint-icon {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.situation h3,
.rhythm-item h3 { margin-top: 27px; }

.impact-home-preview {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.impact-home-preview > span {
  display: flex;
  min-height: 138px;
  align-items: center;
  gap: 7px;
  padding: 20px 12px;
  border-right: 1px solid var(--line);
  font-weight: 660;
  line-height: 1.2;
}
.impact-home-preview > span:first-child { padding-left: 0; }
.impact-home-preview > span:last-child { border-right: 0; }
.impact-home-preview .paint-icon { width: 56px; height: 56px; flex: 0 0 56px; }
.impact-home-preview .impact-label {
  display: flex;
  gap: 0;
  align-items: baseline;
  min-width: 0;
}
.impact-home-preview .impact-initial {
  margin-right: 0;
  color: var(--coral);
  font-size: 1.22em;
  line-height: 1;
}

.impact-diagram-section { background: #10192b; }
.impact-figure { margin: 0; }
.impact-map {
  position: relative;
  width: min(100%, 1000px);
  aspect-ratio: 1000 / 720;
  margin: 0 auto;
  isolation: isolate;
}
.impact-links { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.impact-links path { fill: none; }
.impact-links polygon { fill: rgba(255,128,106,.8); }
.impact-links .impact-cycle path { stroke: rgba(255,128,106,.66); stroke-width: 1.5; marker-end: url(#impact-arrow); }
.impact-links .impact-cross-links path { stroke: rgba(255,128,106,.32); stroke-width: 1.15; stroke-dasharray: 7 9; marker-end: url(#impact-arrow); }
.impact-links circle { stroke: rgba(191,231,220,.16); stroke-width: 1; fill: none; }
.impact-node {
  position: absolute;
  z-index: 2;
  width: 180px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.impact-node .paint-icon { width: 78px; height: 78px; }
.impact-node strong { margin-top: 4px; color: #f6f4ee; font-size: 1.18rem; line-height: 1.18; }
.impact-initial { margin-right: .1em; color: #ff9a88; font-size: 1.32em; font-weight: 750; line-height: .9; }
.impact-node small { margin-top: 7px; color: #d3dbe1; font-size: .88rem; line-height: 1.3; }
.impact-i { left: 24%; top: 16.25%; }
.impact-m { left: 76%; top: 16.25%; }
.impact-p { left: 83%; top: 52.8%; }
.impact-a { left: 50%; top: 86.7%; }
.impact-c { left: 17%; top: 52.8%; }
.impact-core {
  position: absolute;
  z-index: 1;
  top: 49.4%; left: 50%;
  width: 220px; height: 220px;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  border: 1px solid #ffb6a6;
  border-radius: 50%;
  background: #ec8874;
  box-shadow: 0 0 0 12px rgba(236,136,116,.09);
  color: #0b1429;
  text-align: center;
}
.impact-core > span { color: #682c32; font-size: .72rem; font-weight: 760; letter-spacing: .18em; }
.impact-core strong { margin-top: 10px; font-size: 1.08rem; line-height: 1.08; font-weight: 720; }
.impact-core strong .impact-initial { color: #f6f4ee; font-size: 1.55em; }
.impact-core small { max-width: 165px; margin-top: 6px; font-size: .88rem; line-height: 1.3; }
.impact-figure figcaption { margin: 24px auto 0; max-width: 880px; color: #c1cad5; text-align: center; font-size: .96rem; line-height: 1.55; }

.dimension-list { border-top: 1px solid var(--line); }
.dimension-list article {
  display: grid;
  grid-template-columns: 74px minmax(180px,.6fr) 1fr;
  align-items: center;
  gap: 23px;
  min-height: 116px;
  border-bottom: 1px solid var(--line);
}
.dimension-list .paint-icon { width: 68px; height: 68px; }
.dimension-list h3 { margin: 0; font-size: 1.55rem; line-height: 1.12; letter-spacing: -.035em; }
.dimension-list .impact-initial {
  display: inline-block;
  margin-right: .07em;
  color: #bd5947;
  font-size: 1.45em;
}
.dimension-list p { margin: 0; color: var(--soft); }
.transversal-layout { display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: center; }
.transversal-band .content-title { font-size: clamp(2.6rem, 4.2vw, 4.25rem); }
.transversal-layout p:not(.eyebrow) { max-width: 560px; font-size: 1.18rem; }
.transversal-layout strong { display: block; margin-top: 25px; padding-top: 19px; border-top: 1px solid var(--line); letter-spacing: .02em; }
.section-ivory .manifesto-quote { color: #354d4b; }

.home-page .next-step {
  --white: #0a1020;
  --soft: #2b3547;
  --line: rgba(6,10,24,.21);
  --line-strong: rgba(6,10,24,.38);
  --coral: #88332e;
  color: var(--white);
  background: #f0a08e;
}
.home-page .next-step .button-primary { color: #f6f4ee; background: #111a2d; border-color: #111a2d; }
.home-page .next-step .next-routes a:hover { color: var(--white); }

.section-heading {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 78px;
  align-items: center;
  margin-bottom: 58px;
}

.section-heading h2,
.content-title,
.next-step h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
  font-weight: 430;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading > p,
.content-intro {
  max-width: 620px;
  margin: 0;
  color: var(--soft);
  font-size: 1.17rem;
  line-height: 1.58;
}

.situations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.situation {
  display: flex;
  flex-direction: column;
  min-height: 248px;
  padding: 32px 34px 36px;
  border-right: 1px solid var(--line);
}

.situation:first-child {
  padding-left: 0;
}

.situation:last-child {
  border-right: 0;
}

.situation-number,
.step-index,
.offer-label {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.situation h3 {
  max-width: 330px;
  margin: 26px 0 14px;
  font-size: 1.55rem;
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.situation p {
  max-width: 355px;
  margin: 0;
  color: var(--soft);
  line-height: 1.52;
}

.offers-preview,
.offers-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-preview,
.offer-full {
  position: relative;
  padding: 42px 44px 44px;
  border-right: 1px solid var(--line);
}

.offer-identity {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 18px;
}

.offer-identity .paint-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
}

.offers-full .offer-label {
  font-size: .96rem;
}

.offer-preview:first-child,
.offer-full:first-child {
  padding-left: 0;
}

.offer-preview:last-child,
.offer-full:last-child {
  border-right: 0;
}

.offer-preview h3,
.offer-full h2 {
  margin: 18px 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.offer-preview > p,
.offer-full > p {
  max-width: 520px;
  margin: 0;
  color: var(--soft);
}

.offer-full > .offer-detail {
  margin-top: 24px;
  font-size: 0.9rem;
}

.offer-full > .offer-promise {
  max-width: 610px;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 720;
  line-height: 1.42;
}

.offer-promise em,
.offer-path strong em {
  color: var(--coral);
  font-style: normal;
}

.offer-full > .offer-intro {
  margin-top: 14px;
  font-size: .98rem;
}

.offer-paths {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.offer-paths-head {
  display: grid;
  grid-template-columns: minmax(210px, 1.2fr) 34px minmax(150px, .8fr);
  gap: 12px;
  padding: 14px 0 10px;
  color: var(--coral);
  font-size: .67rem;
  font-weight: 760;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.offer-path {
  display: grid;
  grid-template-columns: minmax(210px, 1.2fr) 34px minmax(150px, .8fr);
  gap: 12px;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
}

.offer-path strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.35;
}

.offer-path p {
  margin: 0;
  color: rgba(245, 246, 242, .76);
  font-size: .94rem;
  line-height: 1.48;
}

.path-arrow {
  color: var(--coral);
  font-size: 1.4rem;
  text-align: center;
}

.offer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: baseline;
  margin-top: 28px;
}

.offer-price {
  color: var(--coral);
  font-size: 1.25rem;
  font-weight: 780;
}

.offer-bottom span {
  color: var(--soft);
  font-size: .82rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 128, 106, 0.48);
  color: var(--coral);
  font-size: 0.91rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.method-preview,
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.method-preview article,
.method-step {
  position: relative;
  min-height: 230px;
  padding: 30px 28px 32px;
  border-right: 1px solid var(--line);
}

.method-preview article:first-child,
.method-step:first-child {
  padding-left: 0;
}

.method-preview article:last-child,
.method-step:last-child {
  border-right: 0;
}

.method-preview article::before,
.method-step::before {
  position: absolute;
  top: -4px;
  left: 28px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--coral);
}

.method-preview article:first-child::before,
.method-step:first-child::before {
  left: 0;
}

.method-step::before {
  top: -7px;
  width: 14px;
  height: 14px;
}

.method-preview h3,
.method-step h2 {
  margin: 54px 0 12px;
  font-size: 1.45rem;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.method-preview p,
.method-step p {
  margin: 0;
  color: var(--soft);
}

.section-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
}

.section-action.section-action-end {
  justify-content: flex-end;
}

.section-action p {
  max-width: 650px;
  margin: 0;
  color: var(--mint);
  font-weight: 690;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 100px;
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 100%;
  transform: rotate(24deg);
  content: "";
  background: rgba(255, 128, 106, 0.24);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3.3rem, 6.2vw, 6.3rem);
}

.page-hero-coral h1 {
  font-size: clamp(3rem, 5.4vw, 5.5rem);
  line-height: 1.02;
}

.page-hero .hero-copy {
  max-width: 760px;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: rgba(245, 246, 242, 0.84);
}

.placeholder-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.placeholder-chip {
  padding: 7px 10px;
  border: 1px solid rgba(255, 128, 106, 0.36);
  border-radius: 2px;
  color: var(--coral);
  font-size: 0.67rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  display: flex;
  min-height: 510px;
  padding: 38px 34px 40px;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.service-card:first-child { padding-left: 0; }
.service-card:last-child { border-right: 0; }

.service-card-coral {
  padding-left: 38px;
  background: linear-gradient(155deg, rgba(255, 128, 106, 0.15), rgba(255, 128, 106, 0.025));
}

.service-card h2,
.service-card h3 {
  margin: 24px 0 12px;
  font-size: clamp(1.75rem, 2.7vw, 2.65rem);
  font-weight: 610;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.service-promise {
  margin: 0;
  color: var(--soft);
  font-size: 1.04rem;
}

.service-price {
  display: block;
  margin-top: 24px;
  color: var(--coral);
  font-size: 1.17rem;
  font-weight: 780;
}

.service-card .text-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 32px;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.45);
}

.comparison-mobile {
  display: none;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table tr > *:last-child { border-right: 0; }
.comparison-table tbody tr:last-child > * { border-bottom: 0; }

.comparison-table thead th {
  color: #f6f4ee;
  background: #111a2d;
  font-size: 1.12rem;
}

.comparison-table thead th:first-child {
  width: 24%;
  color: #f4a18f;
}

.comparison-offer-head {
  position: relative;
}

.comparison-offer-head::after {
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 3px;
  background: var(--offer-accent);
  content: "";
  opacity: 0.9;
}

.comparison-offer-focus,
.comparison-table tbody td:nth-child(2),
.comparison-mobile-card-focus {
  --chalk-rgb: 237, 138, 118;
  --offer-accent: #ed8a76;
}

.comparison-offer-global,
.comparison-table tbody td:nth-child(3),
.comparison-mobile-card-global {
  --chalk-rgb: 115, 139, 168;
  --offer-accent: #738ba8;
}

.comparison-table tbody th {
  color: #8f3b34;
  font-size: 0.8rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tbody td { color: var(--soft); }
.comparison-table tbody td:last-child { background: rgba(237, 138, 118, 0.085); }

.comparison-table tbody td strong,
.comparison-table tbody td small {
  display: block;
}

.comparison-promise td strong {
  max-width: 470px;
  color: #172238 !important;
  font-size: 1.06rem !important;
  line-height: 1.35;
}

.comparison-table tbody td strong {
  color: var(--white);
  font-size: 1rem;
}

.comparison-table tbody td small {
  margin-top: 6px;
  font-size: 0.84rem;
  line-height: 1.45;
}

.comparison-outcome > * {
  background: rgba(237, 138, 118, 0.16) !important;
}

.comparison-outcome th {
  color: #773129 !important;
}

.outcome-lines {
  display: grid;
  gap: 8px;
  color: #172238;
  font-size: 1.02rem;
  line-height: 1.42;
}

.outcome-lines span:first-child {
  color: #8f3b34;
  font-weight: 760;
}

.comparison-table tbody td .comparison-deliverable-title {
  color: #263248;
  font-weight: 650;
}

.chalk-underline {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: inherit;
  font-weight: 760;
  white-space: nowrap;
}

.chalk-underline::after {
  position: absolute;
  z-index: -1;
  right: -0.07em;
  bottom: 0.01em;
  left: -0.07em;
  height: 0.28em;
  border-radius: 52% 40% 48% 44%;
  background: linear-gradient(176deg, rgba(var(--chalk-rgb, 237, 138, 118), 0.12) 0 22%, rgba(var(--chalk-rgb, 237, 138, 118), 0.76) 28% 68%, rgba(var(--chalk-rgb, 237, 138, 118), 0.2) 74% 100%);
  content: "";
  transform: rotate(-1.1deg);
}

.comparison-status {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid rgba(180, 80, 64, 0.38);
  color: #8f3b34;
  background: rgba(237, 138, 118, 0.12);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.03em;
}

.comparison-status-muted {
  border-color: var(--line);
  color: var(--soft);
  background: transparent;
}

.comparison-status-link {
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.comparison-status-link::after {
  margin-left: 7px;
  content: "↓";
  font-size: 0.92em;
}

.comparison-status-link:hover,
.comparison-status-link:focus-visible {
  border-color: #8f3b34;
  color: #702c27;
  background: rgba(237, 138, 118, 0.23);
  outline: none;
  transform: translateY(1px);
}

.client-proof-home {
  --white: #0a1020;
  --soft: #344156;
  --line: rgba(6, 10, 24, 0.17);
  color: var(--white);
  background: #f6f4ee;
}

.client-proof-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 82px;
  align-items: center;
}

.client-logo {
  display: block;
  width: min(230px, 64%);
  height: auto;
  margin: 24px 0 24px;
  padding: 9px 11px;
  border: 1px solid rgba(6, 10, 24, 0.12);
  background: #fff;
}

.client-proof-intro h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(2.45rem, 4vw, 4rem);
  font-weight: 530;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.client-proof-intro > p:last-child {
  max-width: 580px;
  margin: 26px 0 0;
  color: var(--soft);
  font-size: 1rem;
}

.client-quote-card {
  margin: 0;
  padding: 38px 40px;
  border-top: 4px solid #ed8a76;
  background: #111a2d;
  color: #f6f4ee;
}

.client-person {
  display: flex;
  gap: 16px;
  align-items: center;
}

.client-photo {
  display: block;
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  border: 1px solid rgba(255, 128, 106, 0.55);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 24%;
}

.client-person strong,
.client-person span {
  display: block;
}

.client-person span {
  margin-top: 4px;
  color: #b9c1d1;
  font-size: 0.84rem;
}

.client-quote-card blockquote {
  margin: 32px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 1.7vw, 1.68rem);
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.quote-highlight {
  padding: 0;
  color: #ff9a88;
  background: transparent;
  font-weight: 700;
}

.client-quote-card figcaption {
  padding-top: 18px;
  border-top: 1px solid rgba(246, 244, 238, 0.18);
  color: #f2a38f;
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.comparison-price th,
.comparison-price td {
  color: #0a1020 !important;
  background: #f6f4ee !important;
}

.comparison-price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 17px;
  border-radius: 999px;
  color: #0a1020;
  background: #ed8a76;
  font-size: 1rem;
  font-weight: 680;
  white-space: nowrap;
}

.comparison-guidance {
  display: grid;
  grid-template-columns: 0.55fr 1.2fr auto;
  gap: 26px;
  align-items: center;
  margin-top: 28px;
  padding: 24px 26px;
  border-left: 3px solid var(--coral);
  background: rgba(237, 138, 118, 0.1);
}

.comparison-guidance > strong { font-size: 1.1rem; }
.comparison-guidance p { margin: 0; color: var(--soft); }

.comparison-mobile-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.comparison-mobile-card header {
  padding: 24px 22px 22px;
  border-bottom: 3px solid var(--offer-accent);
  color: #f6f4ee;
  background: #111a2d;
}

.comparison-mobile-card header > span {
  color: #f2a38f;
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-mobile-card header h3 {
  margin: 6px 0 0;
  font-size: 1.8rem;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.comparison-mobile-card header p {
  max-width: 31ch;
  margin: 9px 0 0;
  color: rgba(246, 244, 238, 0.78);
  font-size: 0.94rem;
  line-height: 1.4;
}

.comparison-mobile-card dl {
  margin: 0;
}

.comparison-mobile-card dl > div {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.comparison-mobile-card dt {
  color: #8f3b34;
  font-size: 0.73rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.comparison-mobile-card dd {
  margin: 7px 0 0;
  color: var(--soft);
  font-size: 0.96rem;
  line-height: 1.48;
}

.comparison-mobile-outcome {
  background: rgba(237, 138, 118, 0.16);
}

.comparison-mobile-outcome dd {
  display: grid;
  gap: 7px;
  color: #172238;
}

.comparison-mobile-outcome dd span:first-child {
  color: #8f3b34;
  font-weight: 760;
}

.comparison-mobile-card footer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.comparison-mobile-card footer strong {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  color: #0a1020;
  background: #ed8a76;
  font-size: 0.98rem;
  font-weight: 680;
}

.focus-client-proof {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
  margin-top: 64px;
  padding: 42px 44px;
  border-top: 4px solid #ed8a76;
  color: #f6f4ee;
  background: #111a2d;
}

.focus-client-proof .eyebrow {
  margin-bottom: 18px;
}

.focus-client-media {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin: 0 0 30px;
}

.focus-client-portrait {
  display: block;
  width: 156px;
  height: 156px;
  flex: 0 0 156px;
  border: 1px solid rgba(255, 128, 106, 0.52);
  border-radius: 26px 7px 26px 7px;
  object-fit: cover;
  object-position: 50% 24%;
  box-shadow: 12px 12px 0 rgba(237, 138, 118, 0.1);
}

.focus-client-logo {
  display: block;
  width: 152px;
  height: 100px;
  padding: 12px 14px;
  border-radius: 16px 4px 16px 4px;
  background: #fff;
  object-fit: contain;
}

.focus-client-proof .proof-format {
  color: #f2a38f;
  border-color: rgba(255, 128, 106, 0.42);
  background: rgba(255, 128, 106, 0.08);
}

.focus-client-proof-heading h3 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.35rem);
  font-weight: 450;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.focus-client-quote {
  margin: 0;
}

.focus-client-quote blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 1.75vw, 1.58rem);
  line-height: 1.5;
  letter-spacing: -0.018em;
}

.focus-client-quote figcaption {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 244, 238, 0.18);
}

.focus-client-quote figcaption strong,
.focus-client-quote figcaption span,
.focus-client-quote figcaption small {
  display: block;
}

.focus-client-quote figcaption strong {
  font-size: 0.96rem;
}

.focus-client-quote figcaption span {
  margin-top: 4px;
  color: #b9c1d1;
  font-size: 0.84rem;
}

.focus-client-quote figcaption small {
  margin-top: 16px;
  color: #f2a38f;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.04em;
}

.testimonial-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: start;
  padding: 46px 50px;
  border-top: 4px solid #ed8a76;
  color: #f6f4ee;
  background: #111a2d;
}

.testimonial-card-kipli {
  margin-top: 64px;
}

.kipli-proof-section .testimonial-card-kipli {
  margin-top: 0;
}

.testimonial-heading .eyebrow {
  margin-bottom: 28px;
}

.testimonial-media {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 34px;
}

.testimonial-portrait,
.testimonial-logo-frame {
  display: block;
  width: 156px;
  height: 156px;
  flex: 0 0 156px;
}

.testimonial-portrait {
  border: 1px solid rgba(255, 128, 106, 0.52);
  border-radius: 26px 7px 26px 7px;
  object-fit: cover;
  object-position: 50% 24%;
  box-shadow: 12px 12px 0 rgba(237, 138, 118, 0.1);
}

.testimonial-logo-frame {
  display: grid;
  padding: 16px;
  place-items: center;
  border-radius: 18px 5px 18px 5px;
  background: #fff;
}

.testimonial-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonial-logo-clickoutil {
  padding: 5px;
}

.testimonial-wordmark {
  align-content: center;
  color: #111a2d;
  text-align: center;
  background: linear-gradient(180deg, #7068aa 0%, #a899d0 48%, #e8ddeb 100%);
}

.testimonial-wordmark strong,
.testimonial-wordmark small {
  display: block;
}

.testimonial-wordmark strong {
  font-size: 1.9rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.testimonial-wordmark small {
  margin-top: 5px;
  color: #1f2b49;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.testimonial-heading h2,
.testimonial-heading h3 {
  max-width: 440px;
  margin: 0;
  color: #f6f4ee;
  font-size: clamp(2.2rem, 3.5vw, 3.65rem);
  font-weight: 450;
  line-height: 1.03;
  letter-spacing: -0.052em;
}

@media (min-width: 821px) {
  #clickoutil-title {
    width: calc(100% + 42px);
    font-size: clamp(1.98rem, 3.15vw, 3.285rem);
  }
}

.testimonial-title-quote {
  color: #f2a38f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: normal;
  vertical-align: 0.28em;
}

.testimonial-quote {
  margin: 0;
}

.testimonial-quote blockquote {
  margin: 4px 0 0;
  color: #f6f4ee;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 1.72vw, 1.62rem);
  line-height: 1.48;
  letter-spacing: -0.02em;
}

.testimonial-card-kipli .testimonial-quote blockquote {
  font-size: clamp(1.14rem, 1.5vw, 1.46rem);
  line-height: 1.52;
}

.testimonial-card-mue .testimonial-quote blockquote {
  font-size: clamp(1.12rem, 1.45vw, 1.42rem);
  line-height: 1.5;
}

.testimonial-quote blockquote p {
  margin: 0;
}

.testimonial-quote blockquote p + p {
  margin-top: 0.9em;
}

.testimonial-footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(246, 244, 238, 0.18);
}

.testimonial-person strong,
.testimonial-person span,
.testimonial-person small {
  display: block;
}

.testimonial-person {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  align-items: baseline;
}

.testimonial-person strong {
  font-size: 1rem;
}

.testimonial-person span {
  margin-top: 0;
  color: #b9c1d1;
  font-size: 0.86rem;
}

.client-proof-home .testimonial-person > span {
  font-size: 0.93rem;
}

.testimonial-person a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(242, 163, 143, 0.72);
  text-underline-offset: 0.2em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.testimonial-person a:hover,
.testimonial-person a:focus-visible {
  color: #f2a38f;
  text-decoration-color: currentColor;
}

.testimonial-person a:focus-visible {
  outline: 2px solid #f2a38f;
  outline-offset: 3px;
}

.testimonial-person > strong,
.testimonial-person > span {
  white-space: nowrap;
}

.testimonial-person small {
  flex-basis: 100%;
  margin-top: 6px;
  color: #f2a38f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.testimonial-footer .proof-format {
  margin: 0;
  flex: 0 0 auto;
  color: #f2a38f;
  border-color: rgba(255, 128, 106, 0.42);
  background: rgba(255, 128, 106, 0.08);
  white-space: nowrap;
}

.followup-intro,
.detail-split,
.decision-band,
.flexibility-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 86px;
  align-items: start;
}

.followup-intro p:not(.eyebrow),
.decision-band p,
.flexibility-points > p {
  color: var(--soft);
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 650;
}

.breadcrumb a:hover { color: var(--coral); }

.hero-price {
  display: inline-flex;
  gap: 16px;
  align-items: baseline;
  margin-top: 34px;
  padding: 15px 18px;
  border-left: 3px solid var(--coral);
  background: rgba(255, 128, 106, 0.08);
}

.hero-price span {
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-price strong { font-size: 1.2rem; }

.detail-list { border-top: 1px solid var(--line); }

.detail-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list article > span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.detail-list strong { font-size: 1.08rem; }
.detail-list p { margin: 5px 0 0; color: var(--soft); }

.decision-band {
  padding: 34px 36px;
  border: 1px solid var(--line);
  background: rgba(237, 138, 118, 0.08);
}

.decision-band h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.dimension-mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.dimension-mini-list > div {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dimension-mini-list > div:nth-child(even) { border-right: 0; }

.dimension-mini-list img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.dimension-mini-list span,
.dimension-mini-list strong,
.dimension-mini-list small { display: block; }
.dimension-mini-list small { margin-top: 3px; color: var(--soft); }

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-grid article {
  padding: 30px 26px 34px;
  border-right: 1px solid var(--line);
}

.support-grid article:first-child { padding-left: 0; }
.support-grid article:last-child { border-right: 0; }

.support-grid strong {
  display: block;
  margin-top: 24px;
  font-size: 1.13rem;
}

.support-grid p { margin: 9px 0 0; color: var(--soft); }

.agenda-flow {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.agenda-flow li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.agenda-flow li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #f6f4ee;
  background: #111a2d;
  font-weight: 760;
}

.agenda-flow p { margin: 4px 0 0; color: var(--soft); }

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

.included-panel {
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(191, 231, 220, 0.18);
}

.included-panel-muted { background: rgba(237, 138, 118, 0.09); }
.included-panel > strong { font-size: 1.25rem; }

.included-panel ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.included-panel li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-top: 1px solid var(--line);
}

.included-panel li::before {
  position: absolute;
  top: 15px;
  left: 2px;
  color: var(--coral);
  content: "•";
}

.flexibility-points > p:first-child { margin-top: 0; }

.price-panel {
  margin-top: 30px;
  padding: 24px;
  border-left: 3px solid #9d4036;
  background: rgba(246, 244, 238, 0.52);
}

.price-panel span,
.price-panel strong,
.price-panel small { display: block; }

.price-panel span {
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-panel strong { margin-top: 6px; font-size: 1.55rem; }
.price-panel small { margin-top: 6px; color: var(--soft); }

.rhythm-grid,
.scope-grid,
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rhythm-item,
.scope-item,
.principle-item {
  padding: 34px 34px 38px;
  border-right: 1px solid var(--line);
}

.rhythm-item:first-child,
.scope-item:first-child,
.principle-item:first-child {
  padding-left: 0;
}

.rhythm-item:last-child,
.scope-item:last-child,
.principle-item:last-child {
  border-right: 0;
}

.rhythm-item h3,
.scope-item h3,
.principle-item h3 {
  margin: 38px 0 12px;
  font-size: 1.45rem;
  font-weight: 610;
  letter-spacing: -0.035em;
}

.rhythm-item p,
.scope-item p,
.principle-item p {
  margin: 0;
  color: var(--soft);
}

.scope-focus {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 44px;
  margin: -6px 0 38px;
  padding: 20px 24px;
  border-left: 3px solid #d45f4c;
  background: rgba(233, 132, 113, .14);
}

.scope-focus strong {
  color: #9f4035;
  font-size: 1.05rem;
}

.scope-focus p {
  margin: 0;
  color: var(--soft);
}

.scope-item .paint-icon {
  width: 88px;
  height: 88px;
}

.scope-item h3 {
  margin-top: 20px;
}

.principle-item .paint-icon {
  width: 88px;
  height: 88px;
}

.principle-item .icon-white-ground { mix-blend-mode: multiply; }

.method-documentary-photo {
  margin: 0 0 clamp(68px, 7vw, 104px);
}

.method-documentary-frame {
  overflow: hidden;
  aspect-ratio: 2 / 1;
  border: 1px solid rgba(6, 10, 24, 0.16);
  border-radius: 30px 8px 30px 8px;
  background: #111a2d;
  box-shadow: 18px 18px 0 rgba(237, 138, 118, 0.14);
}

.method-documentary-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.03);
}

.method-documentary-photo figcaption {
  display: flex;
  gap: 18px;
  align-items: baseline;
  justify-content: flex-end;
  margin: 14px 4px 0;
  color: var(--soft);
  font-size: 0.78rem;
  line-height: 1.4;
}

.method-documentary-photo figcaption strong {
  color: var(--white);
  font-weight: 650;
}

.method-documentary-photo figcaption span {
  opacity: 0.72;
}

.principle-item h3 {
  margin-top: 20px;
}

.method-working-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  margin-bottom: 58px;
}

.method-working-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.55rem, 4.5vw, 4.5rem);
  font-weight: 450;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.method-working-copy > p:last-child {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--soft);
}

.method-stage-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  margin: 0;
  border-radius: 28px 7px 28px 7px;
  background: #111a2d;
  box-shadow: 16px 16px 0 rgba(237, 138, 118, 0.13);
}

.method-stage-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
  filter: saturate(0.9) contrast(1.03);
}

.method-stage-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(6, 10, 24, 0.72), transparent);
  content: "";
  pointer-events: none;
}

.method-stage-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 16px;
  left: 20px;
  color: rgba(246, 244, 238, 0.9);
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  align-items: start;
}

.case-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.8vw, 4.9rem);
  font-weight: 440;
  line-height: 1;
  letter-spacing: -0.055em;
}

.case-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--soft);
}

.case-rows {
  border-top: 1px solid var(--line);
}

.case-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.case-row > span {
  color: var(--coral);
  font-weight: 740;
}

.case-row h3 {
  margin: 0 0 5px;
  font-size: 1.17rem;
  font-weight: 650;
}

.case-row p {
  margin: 0;
  color: var(--soft);
  font-size: 0.92rem;
}

.report-request {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 90px;
  align-items: center;
}

.report-brand-line {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.report-brand-line img {
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}

.report-brand-line .eyebrow {
  margin: 0;
}

.report-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.7rem, 4.8vw, 4.9rem);
  font-weight: 440;
  line-height: 1;
  letter-spacing: -.055em;
}

.report-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--soft);
}

.report-copy small {
  display: block;
  margin-top: 18px;
  color: #8d3a31;
  font-weight: 690;
}

.report-form {
  padding: 34px;
  border: 1px solid rgba(10, 16, 32, .16);
  background: rgba(246, 244, 238, .56);
}

.report-form label {
  display: block;
  margin-bottom: 12px;
  color: #0a1020;
  font-weight: 720;
}

.report-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.report-form input {
  min-width: 0;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(10, 16, 32, .28);
  border-radius: 2px;
  color: #0a1020;
  background: #f6f4ee;
  font: inherit;
}

.report-form input:focus {
  border-color: #9f4035;
  outline: 2px solid rgba(159, 64, 53, .2);
  outline-offset: 2px;
}

.report-form .button-primary {
  color: #f6f4ee;
  background: #111a2d;
  border-color: #111a2d;
}

.report-form-note,
.report-form-status {
  margin: 12px 0 0;
  color: var(--soft);
  font-size: .82rem;
  line-height: 1.45;
}

.report-form-status {
  min-height: 1.2em;
  color: #8d3a31;
  font-weight: 690;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) repeat(2, minmax(0, 1fr));
  gap: 54px;
  align-items: start;
}

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

.faq-section {
  scroll-margin-top: 82px;
}

.faq-heading > p:last-child {
  max-width: 460px;
  margin: 24px 0 0;
  color: var(--soft);
}

.faq-accent { color: var(--coral); }

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

summary {
  position: relative;
  padding: 23px 50px 23px 0;
  cursor: pointer;
  font-size: 1.18rem;
  font-weight: 620;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 21px;
  right: 2px;
  color: var(--coral);
  content: "+";
  font-size: 1.45rem;
  font-weight: 400;
}

details[open] summary::after {
  content: "×";
}

details p {
  max-width: 700px;
  margin: 0;
  padding: 0 48px 24px 0;
  color: var(--soft);
}

.method-manifesto {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 80px;
  align-items: start;
}

.method-manifesto .content-title {
  font-size: clamp(2.5rem, 3.8vw, 3.85rem);
}

.manifesto-quote {
  margin: 0;
  color: var(--mint);
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
  font-weight: 520;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.quote-credit {
  margin: 16px 0 26px;
  color: #923b34;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.manifesto-proof {
  max-width: 650px;
  margin: 0;
  color: var(--soft);
  font-size: 1rem;
}

.method-step-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.method-steps .method-step h3 {
  margin: 28px 0 12px;
  font-size: 1.45rem;
  font-weight: 620;
  letter-spacing: -.035em;
}

.audit-fact {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 176, 157, .52);
  border-radius: 2px;
  color: #0b1429;
  background: #ef8a76;
  font-size: .78rem;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: .035em;
}

.method-followup {
  max-width: 810px;
  margin: 30px 0 0;
  padding-left: 24px;
  border-left: 2px solid var(--coral);
  color: var(--soft);
  font-size: .92rem;
  line-height: 1.55;
}

.method-followup span { color: var(--coral); font-weight: 800; }

.method-step {
  min-height: 330px;
}

.method-step p + p {
  margin-top: 14px;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 82px;
  align-items: start;
}

.deliverable-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.deliverable-list li {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.deliverable-icon {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.deliverable-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.deliverable-list p {
  margin: 0;
  color: var(--soft);
}

.deliverable-intro {
  margin-top: 24px;
}

.next-step {
  padding: 82px 0;
  background: var(--night-3);
}

.next-grid {
  display: grid;
  grid-template-columns: 1fr auto 0.72fr;
  gap: 56px;
  align-items: center;
}

.next-grid--routes-only {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.next-step .eyebrow {
  margin-bottom: 13px;
}

.next-step h2 {
  max-width: 610px;
  font-size: clamp(2.15rem, 3.7vw, 3.75rem);
}

.next-primary {
  min-width: 220px;
}

.next-routes {
  padding-left: 44px;
  border-left: 1px solid var(--line-strong);
}

.next-routes a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-weight: 610;
}

.next-routes a:hover {
  color: var(--white);
}

.next-routes span {
  color: var(--coral);
}

.site-footer {
  padding: 42px 0 26px;
  background: #040712;
}

.legal-hero {
  padding: clamp(86px, 10vw, 118px) 0 34px;
  color: #f6f4ee;
  background: #111a2d;
}

.legal-hero-grid {
  display: block;
}

.legal-hero h1 {
  margin: 12px 0 0;
  font-size: clamp(2.15rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.legal-hero-grid > p {
  max-width: 680px;
  margin: 0;
  color: rgba(246, 244, 238, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.legal-content {
  padding: 46px 0 70px;
}

.legal-layout {
  display: block;
  max-width: 900px;
}

.legal-status {
  position: static;
  padding: 0 0 22px;
  margin: 0 0 30px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  background: transparent;
}

.legal-status strong {
  color: #697382;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-status p {
  margin: 8px 0 0;
  color: var(--soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.legal-sections {
  display: grid;
  gap: 0;
}

.legal-sections > section {
  padding: 0 0 26px;
  margin: 0 0 26px;
  border-bottom: 1px solid var(--line);
}

.legal-sections > section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-sections h2 {
  margin: 0 0 13px;
  color: #111a2d;
  font-size: 1.06rem;
  letter-spacing: -0.015em;
}

.legal-sections p {
  max-width: 76ch;
  margin: 0 0 10px;
  color: var(--soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.legal-data {
  margin: 0;
}

.legal-data > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) minmax(0, 1.56fr);
  gap: 18px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.legal-data dt {
  color: #697382;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-data dd {
  margin: 0;
  color: var(--soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.legal-todo dd,
.legal-todo-inline {
  color: #8f3b34 !important;
}

.legal-todo dd::before,
.legal-todo-inline::before {
  content: "À confirmer · ";
  font-weight: 760;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  padding-bottom: 42px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-brand-mark {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  object-fit: contain;
}

.footer-brand-lockup strong {
  display: block;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.footer-brand p {
  max-width: 460px;
  margin: 0;
  color: var(--soft);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  align-content: start;
}

.footer-links a,
.footer-links span {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(185, 191, 202, 0.64);
  font-size: 0.74rem;
}

.draft-note {
  color: var(--coral);
}

.mobile-cta {
  display: none;
}

.booking-modal {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--white);
  background: var(--night-2);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
}

.booking-modal::backdrop {
  background: rgba(1, 3, 10, 0.86);
  backdrop-filter: blur(5px);
}

.modal-inner {
  position: relative;
  padding: 52px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  font-size: 1.35rem;
}

.booking-modal h2 {
  max-width: 490px;
  margin: 0;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 470;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.booking-modal > * p,
.modal-inner > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--soft);
}

.modal-placeholder {
  margin-top: 28px;
  padding: 20px;
  border-left: 3px solid var(--coral);
  background: rgba(255, 128, 106, 0.07);
  color: var(--soft);
}

.modal-placeholder strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
}

@media (max-width: 1050px) {
  .proof-inner { grid-template-columns: 180px 210px 1fr; gap: 24px; }
  .proof-names { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; padding: 24px 0; }
  .copilotage-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .copilotage-facts > span:nth-child(2) { border-right: 0; }
  .copilotage-facts > span:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(3) { min-height: 390px; grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-grid article:nth-child(2) { border-right: 0; }
  .support-grid article:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .comparison-guidance { grid-template-columns: 0.65fr 1.35fr; }
  .comparison-guidance .button-primary { grid-column: 1 / -1; justify-self: start; }
  .impact-home-preview { grid-template-columns: repeat(3, 1fr); }
  .impact-home-preview > span:nth-child(3) { border-right: 0; }
  .impact-home-preview > span:nth-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .copilotage-intro { grid-template-columns: minmax(0, 0.9fr) minmax(190px, 0.52fr); }
  .copilotage-copy { grid-column: 1 / -1; }
  .copilotage-portrait { min-height: 320px; }
  .dimension-list article { grid-template-columns: 70px minmax(150px,.7fr) 1fr; gap: 14px; }
  .faq-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 48px; }
  .faq-heading { grid-column: 1 / -1; }
  .nav-links {
    gap: 20px;
  }

  .hero-grid {
    gap: 34px;
  }

  .next-grid {
    grid-template-columns: 1fr auto;
  }

  .next-grid--routes-only {
    grid-template-columns: 1fr 0.8fr;
  }

  .next-grid--routes-only .next-routes {
    grid-column: auto;
  }

  .next-routes {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding: 0;
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .nav-dropdown { display: block; }
  .nav-dropdown > .nav-link { display: block; }
  .nav-submenu {
    position: static;
    width: auto;
    padding: 0 0 12px 16px;
    border: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    background: transparent;
    box-shadow: none;
  }
  .nav-submenu a {
    padding: 12px 0;
    color: var(--soft);
    font-size: 0.98rem;
  }
  .nav-submenu a[aria-current="page"] { color: var(--coral); background: transparent; }
  .service-grid { grid-template-columns: 1fr; }
  .editorial-split,
  .audit-grid { grid-template-columns: 1fr; }
  .accompaniment-flow { grid-template-columns: 1fr; }
  .accompaniment-flow > div,
  .accompaniment-flow > div:first-child {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .accompaniment-flow > div:last-child { border-bottom: 0; }
  .copilotage-intro { grid-template-columns: 1fr; }
  .copilotage-portrait {
    width: min(100%, 520px);
    min-height: auto;
    aspect-ratio: 4 / 3;
  }
  .copilotage-copy { grid-column: auto; }
  .editorial-split { gap: 30px; }
  .audit-card,
  .audit-card:first-child {
    min-height: auto;
    padding: 32px 0 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .audit-card:last-child { border-bottom: 0; }
  .service-card,
  .service-card:first-child,
  .service-card-coral {
    min-height: auto;
    padding: 30px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
  }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(3) { grid-column: auto; border-top: 0; border-bottom: 0; }
  .service-card .text-link { margin-top: 26px; padding-top: 0; }
  .comparison-wrap { display: none; }
  .comparison-mobile { display: grid; gap: 28px; }
  .legal-hero-grid,
  .legal-layout { grid-template-columns: 1fr; }
  .legal-hero-grid { align-items: start; }
  .legal-status {
    position: static;
    max-width: 620px;
  }
  .comparison-guidance,
  .followup-intro,
  .detail-split,
  .decision-band,
  .flexibility-grid,
  .focus-client-proof { grid-template-columns: 1fr; gap: 28px; }
  .testimonial-card { grid-template-columns: 1fr; gap: 38px; padding: 38px 36px; }
  .testimonial-card-kipli { margin-top: 48px; }
  .comparison-guidance .button-primary { grid-column: auto; justify-self: stretch; }
  .focus-client-proof { margin-top: 48px; padding: 34px 32px; }
  .support-grid { grid-template-columns: 1fr; }
  .support-grid article,
  .support-grid article:first-child {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .support-grid article:last-child { border-bottom: 0; }
  .included-grid { grid-template-columns: 1fr; }
  .method-working-intro { grid-template-columns: 1fr; gap: 34px; }
  .method-stage-photo { width: min(100%, 620px); }
  .method-documentary-frame { aspect-ratio: 16 / 9; }
  .impact-map { width: 100%; aspect-ratio: auto; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 24px; }
  .impact-links { display: none; }
  .impact-core { position: static; transform: none; width: 190px; height: 190px; grid-column: 1/-1; justify-self: center; margin: 28px 0 0; }
  .impact-node { position: static; transform: none; width: 100%; min-height: 165px; padding: 18px 0; border-top: 1px solid rgba(245,246,242,.18); }
  .impact-c { grid-column: 1 / -1; }
  .impact-figure figcaption { margin-top: 5px; }
  .dimension-list article { grid-template-columns: 64px 1fr; gap: 14px; padding: 17px 0; }
  .dimension-list .paint-icon { width: 60px; height: 60px; }
  .dimension-list p { grid-column: 2; }
  .transversal-layout { grid-template-columns: 1fr; gap: 24px; }
  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .nav {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    z-index: 79;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 74px);
    height: calc(100dvh - 74px);
    padding: 24px 24px 40px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--night);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    color: var(--white);
    font-size: 1.45rem;
  }

  .nav-link::after {
    right: auto;
    bottom: 12px;
    width: 40px;
  }

  .nav-cta {
    margin-top: 24px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 78px;
    padding-bottom: 72px;
  }

  .hero-portrait {
    margin-top: 8px;
    aspect-ratio: 1.32;
    border-radius: 20px 5px 20px 5px;
  }

  .hero-portrait img {
    top: -10%;
    height: 120%;
    object-position: 63% 47%;
  }

  .proof-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .proof-photo {
    width: min(100%, 520px);
    aspect-ratio: 1.5;
    margin: 0 0 10px;
    border-radius: 22px 6px 22px 6px;
  }

  .proof-names {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .section,
  .page-hero {
    padding: 82px 0;
  }

  .section-heading,
  .faq-layout,
  .method-manifesto,
  .deliverable-grid,
  .case-study,
  .report-request,
  .client-proof-grid,
  .method-client-proof-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .method-client-portrait {
    width: min(100%, 470px);
  }

  .client-quote-card {
    padding: 32px;
  }

  .scope-focus {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .situations,
  .rhythm-grid,
  .scope-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .situation,
  .situation:first-child,
  .rhythm-item,
  .rhythm-item:first-child,
  .scope-item,
  .scope-item:first-child,
  .principle-item,
  .principle-item:first-child {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .situation:last-child,
  .rhythm-item:last-child,
  .scope-item:last-child,
  .principle-item:last-child {
    border-bottom: 0;
  }

  .situation h3,
  .rhythm-item h3,
  .scope-item h3,
  .principle-item h3 {
    margin-top: 28px;
  }

  .principle-item h3 {
    margin-top: 16px;
  }

  .principle-item .paint-icon {
    width: 72px;
    height: 72px;
  }

  .scope-item .paint-icon {
    width: 76px;
    height: 76px;
  }

  .offers-preview,
  .offers-full {
    grid-template-columns: 1fr;
  }

  .offer-preview,
  .offer-preview:first-child,
  .offer-full,
  .offer-full:first-child {
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .offer-preview:last-child,
  .offer-full:last-child {
    border-bottom: 0;
  }

  .offer-path {
    grid-template-columns: minmax(190px, 1.28fr) 30px minmax(140px, .72fr);
  }

  .offer-paths-head {
    grid-template-columns: minmax(190px, 1.28fr) 30px minmax(140px, .72fr);
  }

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

  .method-steps { grid-template-columns: 1fr; }

  .method-preview article:nth-child(2) {
    border-right: 0;
  }

  .method-preview article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .method-step,
  .method-step:first-child {
    min-height: auto;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-step:last-child { border-bottom: 0; }

  .section-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .next-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .next-primary {
    width: 100%;
  }

  .next-routes {
    grid-column: auto;
  }

  .mobile-cta {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    transform: translateY(110%);
    padding: 10px 12px;
    border-top: 1px solid rgba(255, 128, 106, 0.35);
    background: rgba(4, 7, 18, 0.94);
    backdrop-filter: blur(12px);
    transition: transform 200ms ease;
  }

  .mobile-cta.visible {
    transform: translateY(0);
  }

  .mobile-cta button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

@media (max-width: 560px) {
  .legal-data > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .deliverable-list li {
    grid-template-columns: 66px 1fr;
    gap: 14px;
  }
  .deliverable-icon {
    width: 66px;
    height: 66px;
  }
  .copilotage-facts { grid-template-columns: 1fr; }
  .copilotage-fact-icon { width: 78px; height: 78px; margin-bottom: 14px; }
  .copilotage-facts > span,
  .copilotage-facts > span:first-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .copilotage-facts > span:last-child { border-bottom: 0; }
  .comparison-wrap::before {
    display: block;
    padding: 10px 14px;
    color: var(--soft);
    content: "Faites défiler le tableau horizontalement";
    font-size: 0.74rem;
  }
  .comparison-table th,
  .comparison-table td { padding: 17px 18px; }
  .client-quote-card { padding: 28px 24px; }
  .client-photo { width: 68px; height: 68px; flex-basis: 68px; }
  .testimonial-card { padding: 30px 24px; }
  .testimonial-media { gap: 14px; margin-bottom: 28px; }
  .testimonial-portrait,
  .testimonial-logo-frame { width: 132px; height: 132px; flex-basis: 132px; }
  .testimonial-logo-frame { padding: 13px; }
  .testimonial-heading h2,
  .testimonial-heading h3 { font-size: 2.3rem; }
  .testimonial-quote blockquote { font-size: 1.18rem; }
  .testimonial-footer { align-items: flex-start; flex-direction: column; }
  .testimonial-footer .proof-format { white-space: normal; }
  .method-documentary-photo { margin-bottom: 64px; }
  .method-documentary-frame {
    aspect-ratio: 4 / 3;
    border-radius: 22px 6px 22px 6px;
    box-shadow: 10px 10px 0 rgba(237, 138, 118, 0.14);
  }
  .method-documentary-frame img { object-position: 47% center; }
  .method-documentary-photo figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
  .comparison-mobile-card footer { align-items: flex-start; flex-direction: column; }
  .audit-details li { grid-template-columns: 1fr; gap: 3px; }
  .focus-client-proof { padding: 30px 24px; }
  .focus-client-media { gap: 16px; }
  .focus-client-portrait { width: 138px; height: 138px; flex-basis: 138px; }
  .focus-client-logo { width: 132px; height: 88px; padding: 10px 12px; }
  .focus-client-proof-heading h3 { font-size: 2.25rem; }
  .comparison-price-pill { min-height: 40px; padding: 8px 14px; font-size: 1rem; }
  .method-client-portrait::before {
    top: 14px;
    right: -10px;
    bottom: -14px;
    left: 10px;
  }
  .method-client-proof-copy blockquote {
    margin-top: 28px;
    padding-left: 18px;
  }
  .dimension-mini-list { grid-template-columns: 1fr; }
  .dimension-mini-list > div { border-right: 0; }
  .hero-price { align-items: flex-start; flex-direction: column; gap: 3px; }
  .decision-band { padding: 26px 22px; }
  .proof-names {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .proof-names small {
    font-size: 0.73rem;
  }

  .offer-identity .paint-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }
  .impact-home-preview { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .impact-home-preview > span { min-height: 106px; padding: 16px 5px; border-bottom: 1px solid var(--line); }
  .impact-home-preview > span:nth-child(3) { border-right: 1px solid var(--line); }
  .impact-home-preview > span:nth-child(even) { border-right: 0; }
  .impact-home-preview > span:nth-last-child(-n + 2) { border-bottom: 0; }
  .impact-home-preview .paint-icon { width: 48px; height: 48px; flex-basis: 48px; }
  .impact-map { grid-template-columns: 1fr; }
  .impact-core,
  .impact-c { grid-column: 1; }
  .impact-node { display: grid; grid-template-columns: 60px 1fr; grid-template-rows: auto auto; align-items: center; justify-content: start; text-align: left; gap: 2px 12px; min-height: 94px; }
  .impact-node .paint-icon { width: 58px; height: 58px; grid-column: 1; grid-row: 1 / span 2; }
  .impact-node strong,
  .impact-node small { grid-column: 2; width: 100%; margin: 0; }
  .dimension-list article { grid-template-columns: 58px 1fr; gap: 8px; }
  .dimension-list p { grid-column: 2; }
  .dimension-list h3 { font-size: 1.25rem; }
  .dimension-list p { font-size: .9rem; }
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-copy > span {
    display: none;
  }

  .footer-brand-mark {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3.15rem, 14.5vw, 4.75rem);
  }

  .page-hero-coral h1 { font-size: clamp(2.6rem, 11.5vw, 3.7rem); }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions > * {
    width: 100%;
  }

  .proof-names span {
    width: auto;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .content-title,
  .next-step h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.35rem);
  }

  .method-preview,
  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-preview article,
  .method-preview article:first-child,
  .method-step,
  .method-step:first-child {
    min-height: auto;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-preview article:last-child,
  .method-step:last-child {
    border-bottom: 0;
  }

  .method-preview article::before,
  .method-preview article:first-child::before,
  .method-step::before,
  .method-step:first-child::before {
    left: 0;
  }

  .method-preview h3,
  .method-step h2 {
    margin-top: 30px;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .offers-full .offer-label {
    font-size: .9rem;
  }

  .offer-path {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .offer-paths-head {
    display: none;
  }

  .path-arrow {
    width: 24px;
    transform: rotate(90deg);
    text-align: left;
  }

  .report-form {
    padding: 26px 20px;
  }

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

  .next-routes {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .modal-inner {
    padding: 54px 26px 30px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* À propos */
.about-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 128, 106, 0.11), transparent 34%),
    var(--night);
}

.about-hero::before {
  position: absolute;
  right: -220px;
  bottom: -330px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 128, 106, 0.16);
  border-radius: 50%;
  content: "";
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  gap: clamp(54px, 7vw, 106px);
  align-items: center;
  padding-top: 82px;
  padding-bottom: 86px;
}

.about-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.6rem, 6.7vw, 7rem);
  font-weight: 430;
  line-height: 0.94;
  letter-spacing: -0.066em;
}

.about-hero h1 strong {
  color: var(--coral);
  font-weight: 620;
}

.about-hero-copy .hero-copy {
  max-width: 760px;
}

.about-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-hero-facts > span {
  padding: 22px 22px 24px 0;
  border-right: 1px solid var(--line);
}

.about-hero-facts > span + span {
  padding-left: 22px;
}

.about-hero-facts > span:last-child {
  border-right: 0;
}

.about-hero-facts strong,
.about-hero-facts small {
  display: block;
}

.about-hero-facts strong {
  color: var(--white);
  font-size: 1.25rem;
}

.about-hero-facts small {
  margin-top: 5px;
  color: var(--soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.about-portrait {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.84;
  margin: 0;
  border: 1px solid rgba(245, 246, 242, 0.18);
  border-radius: 30px 8px 30px 8px;
  background: var(--night-2);
  box-shadow: 20px 20px 0 rgba(237, 138, 118, 0.14);
}

.about-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 10, 24, 0.88), transparent 44%);
  content: "";
  pointer-events: none;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.9) contrast(1.04);
}

.about-portrait figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(245, 246, 242, 0.32);
}

.about-portrait figcaption strong,
.about-portrait figcaption span {
  display: block;
}

.about-portrait figcaption strong {
  color: var(--white);
  font-size: 1.14rem;
}

.about-portrait figcaption span {
  max-width: 180px;
  color: rgba(245, 246, 242, 0.78);
  font-size: 0.68rem;
  font-weight: 680;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
}

.about-career-grid,
.about-transmission-grid,
.about-convictions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 8vw, 126px);
  align-items: start;
}

.about-convictions .content-intro {
  max-width: 660px;
  margin-top: 28px;
}

.about-career-groups {
  border-top: 1px solid var(--line);
}

.about-career-groups article {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.about-career-icon {
  display: block;
  width: 83px;
  height: 83px;
  object-fit: contain;
}

.about-career-icon--large {
  width: 89px;
  height: 89px;
}

.about-career-icon--leaders {
  transform: scale(1.06);
  transform-origin: center;
}

.about-career-icon--scales {
  transform: scale(1.04);
  transform-origin: center;
}

.about-career-groups h3,
.about-conviction-list h3 {
  margin: 0 0 7px;
  font-size: 1.24rem;
  line-height: 1.25;
}

.about-career-groups p,
.about-conviction-list p {
  margin: 0;
  color: var(--soft);
}

.about-google-experience-grid {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: clamp(56px, 6vw, 96px);
  align-items: start;
}

.about-google-photo {
  width: min(100%, 320px);
  margin: 58px 0 0;
}

.about-google-photo img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(245, 246, 242, 0.18);
  border-radius: 22px 6px 22px 6px;
  box-shadow: 14px 14px 0 rgba(237, 138, 118, 0.13);
}

.about-google-photo figcaption {
  margin-top: 27px;
  color: rgba(245, 246, 242, 0.55);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.about-google-experience-content .content-title {
  max-width: 760px;
  margin-bottom: 20px;
}

.about-google-experience-content {
  width: 100%;
  max-width: 1080px;
  justify-self: end;
}

.about-google-intro {
  max-width: 900px;
  margin: 0 0 30px;
  color: rgba(245, 246, 242, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.about-google-recognitions {
  border-top: 1px solid rgba(245, 246, 242, 0.16);
}

.about-google-recognitions article {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(245, 246, 242, 0.16);
}

.about-google-recognitions span {
  padding-top: 3px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 790;
  letter-spacing: 0.12em;
}

.about-google-recognitions h3 {
  margin: 0 0 7px;
  color: var(--white);
  font-size: 1.22rem;
  line-height: 1.3;
}

.about-google-recognitions p {
  margin: 0;
  color: rgba(245, 246, 242, 0.7);
  font-size: 0.95rem;
  line-height: 1.55;
}

.about-leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-leadership-grid article {
  min-height: 290px;
  padding: 34px 34px 40px;
  border-right: 1px solid var(--line);
}

.about-leadership-grid article:first-child {
  padding-left: 0;
}

.about-leadership-grid article:last-child {
  border-right: 0;
}

.about-leadership-grid article > span {
  color: #b45040;
  font-size: 0.83rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-leadership-grid h3 {
  margin: 44px 0 12px;
  font-size: 1.55rem;
  line-height: 1.12;
}

.about-leadership-grid p {
  margin: 0;
  color: var(--soft);
}

.about-transmission-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
}

.about-stage-photo {
  position: relative;
  overflow: hidden;
  width: 84%;
  aspect-ratio: 3 / 2;
  justify-self: end;
  margin: 0;
  border: 1px solid rgba(245, 246, 242, 0.17);
  border-radius: 30px 8px 30px 8px;
  box-shadow: 18px 18px 0 rgba(237, 138, 118, 0.13);
}

.about-stage-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.about-stage-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(6, 10, 24, 0.82), transparent);
  content: "";
}

.about-stage-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 16px;
  left: 20px;
  color: rgba(245, 246, 242, 0.9);
  font-size: 0.74rem;
  font-weight: 650;
}

.about-stage-photo figcaption span {
  margin-left: 8px;
  opacity: 0.7;
}

.about-transmission-grid > div > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--soft);
}

.about-conviction-list {
  border-top: 1px solid var(--line);
}

.about-conviction-list article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.about-conviction-icon {
  display: block;
  width: 86px;
  height: 86px;
  margin-top: 2px;
  object-fit: contain;
}

.about-booking {
  overflow: hidden;
}

.about-booking-header {
  max-width: 920px;
  margin-bottom: 34px;
}

.about-booking-header > p:last-child {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--soft);
}

.about-calendly-shell {
  width: min(calc(100% - 48px), 720px);
  margin-right: auto;
  margin-left: auto;
  padding: 10px;
  border: 1px solid rgba(245, 246, 242, 0.16);
  border-radius: 22px 6px 22px 6px;
  background: var(--ivory);
  box-shadow: 12px 12px 0 rgba(237, 138, 118, 0.11);
}

.about-calendly-shell .calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 740px;
}

.about-calendly-shell noscript a {
  display: block;
  padding: 32px;
  color: var(--night);
  font-weight: 720;
  text-align: center;
}

.about-end-nav {
  padding: 25px 0;
  border-top: 1px solid rgba(245, 246, 242, 0.14);
  background: #09101f;
}

.about-end-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-end-links a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  min-height: 56px;
  padding: 0 24px;
  border-right: 1px solid rgba(245, 246, 242, 0.14);
  color: rgba(245, 246, 242, 0.72);
  font-size: 0.93rem;
  font-weight: 610;
}

.about-end-links a:first-child {
  padding-left: 0;
}

.about-end-links a:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-end-links a:hover {
  color: var(--white);
}

.about-end-links strong {
  color: var(--coral);
  font-size: 1.08rem;
}

@media (max-width: 1050px) {
  .about-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr); gap: 44px; }
  .about-hero h1 { font-size: clamp(3.2rem, 6.3vw, 5.6rem); }
  .about-hero-facts { grid-template-columns: 1fr; }
  .about-hero-facts > span,
  .about-hero-facts > span + span { padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-hero-facts > span:last-child { border-bottom: 0; }
  .about-hero-facts strong,
  .about-hero-facts small { display: inline; }
  .about-hero-facts small { margin-left: 8px; }
  .about-career-groups { grid-template-columns: 1fr; }
  .about-career-groups article,
  .about-career-groups article:first-child,
  .about-career-groups article:last-child { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-career-groups article:last-child { border-bottom: 0; }
}

@media (max-width: 820px) {
  .hero-portrait figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }
  .hero-portrait figcaption span { max-width: none; text-align: left; }
  .proof-label strong { font-size: 1.5rem; }
  .about-hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 70px; padding-bottom: 76px; }
  .about-hero h1 { font-size: clamp(3.05rem, 14vw, 4.8rem); }
  .about-portrait { width: min(100%, 540px); aspect-ratio: 1.02; }
  .about-portrait img { object-position: 58% 39%; }
  .about-career-grid,
  .about-transmission-grid,
  .about-convictions-grid,
  .about-google-experience-grid { grid-template-columns: 1fr; gap: 42px; }
  .about-google-photo { width: min(100%, 280px); margin-top: 0; }
  .about-google-recognitions article { grid-template-columns: 58px minmax(0, 1fr); gap: 16px; }
  .about-stage-photo { width: 100%; justify-self: stretch; }
  .about-end-links { grid-template-columns: 1fr; }
  .about-end-links a,
  .about-end-links a:first-child,
  .about-end-links a:last-child { padding: 12px 0; border-right: 0; border-bottom: 1px solid rgba(245, 246, 242, 0.14); }
  .about-end-links a:last-child { border-bottom: 0; }
  .about-leadership-grid { grid-template-columns: 1fr; }
  .about-leadership-grid article,
  .about-leadership-grid article:first-child { min-height: auto; padding: 28px 0 32px; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-leadership-grid article:last-child { border-bottom: 0; }
  .about-leadership-grid h3 { margin-top: 24px; }
}

@media (max-width: 560px) {
  .about-hero h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .about-portrait { aspect-ratio: 0.9; box-shadow: 11px 11px 0 rgba(237, 138, 118, 0.14); }
  .about-portrait figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }
  .about-portrait figcaption span { max-width: none; text-align: left; }
  .about-stage-photo { aspect-ratio: 4 / 3; }
  .about-career-groups article { grid-template-columns: 72px 1fr; gap: 14px; }
  .about-career-icon { width: 67px; height: 67px; }
  .about-career-icon--large { width: 72px; height: 72px; }
  .about-google-recognitions article { grid-template-columns: 1fr; gap: 6px; }
  .about-google-recognitions span { padding-top: 0; }
  .about-calendly-shell { padding: 4px; border-radius: 14px 4px 14px 4px; }
  .about-calendly-shell .calendly-inline-widget { height: 780px; }
  .about-conviction-list article { grid-template-columns: 74px minmax(0, 1fr); gap: 14px; }
  .about-conviction-icon { width: 70px; height: 70px; }
}

/* Audience measurement and consent */
.footer-consent-button {
  width: 100%;
  padding: 0 0 9px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  background: transparent;
  font: inherit;
  font-size: 0.84rem;
  text-align: left;
  cursor: pointer;
}

.footer-consent-button:hover,
.footer-consent-button:focus-visible {
  color: var(--white);
}

.consent-banner {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(760px, calc(100% - 48px));
  margin-left: auto;
  padding: 22px 24px;
  transform: translateY(18px);
  border: 1px solid rgba(237, 138, 118, 0.42);
  border-radius: 18px 5px 18px 5px;
  background: rgba(6, 10, 24, 0.98);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.consent-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1rem;
}

.consent-copy p {
  max-width: 530px;
  margin: 0;
  color: rgba(245, 246, 242, 0.74);
  font-size: 0.88rem;
  line-height: 1.5;
}

.consent-copy a {
  display: inline-block;
  margin-top: 7px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 690;
}

.consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  gap: 9px;
}

.consent-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(237, 138, 118, 0.62);
  border-radius: 3px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 720;
  cursor: pointer;
}

.consent-button:hover,
.consent-button:focus-visible {
  border-color: var(--coral);
  background: rgba(237, 138, 118, 0.13);
}

.site-notice {
  position: fixed;
  z-index: 1300;
  top: 86px;
  right: 20px;
  width: min(390px, calc(100% - 40px));
  padding: 15px 18px;
  transform: translateY(-12px);
  border: 1px solid rgba(237, 138, 118, 0.42);
  border-radius: 10px 3px 10px 3px;
  color: var(--white);
  background: rgba(6, 10, 24, 0.97);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  font-size: 0.86rem;
  line-height: 1.45;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-notice.visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 720px) {
  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 16px;
    width: auto;
    padding: 20px;
  }

  .consent-actions {
    width: 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  .consent-banner,
  .site-notice {
    transition: none;
  }
}
