﻿@media (min-width: 861px) {
  .split-text h2 {
    font-size: 21px;
  }

  .split-text p {
    font-size: 18px;
  }
}

.split-image {
  width: var(--split-column-width);
  max-width: var(--split-column-width);
}

.split-image img {
  width: var(--split-column-width);
  height: var(--split-image-height);
  max-width: var(--split-column-width);
  border-radius: var(--image-radius);
  object-fit: cover;
  display: block;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.cta-button.black {
  width: 342px;
  min-width: 342px;
  height: 72px;
  min-height: 72px;
  padding: 12px 22px;
  border-radius: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}

.cta-button.gold {
  min-width: 412px;
  min-height: 57px;
  padding: 12px 26px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
}

.center-button {
  margin-bottom: 96px;
  text-align: center;
}

/* Bottom links */
.bottom-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, var(--bottom-link-width)));
  justify-content: center;
  gap: var(--bottom-link-gap);
  width: 100%;
}

.bottom-link-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: var(--bottom-link-width);
}

.separator-half {
  width: var(--bottom-link-width);
  order: 2;
  margin-top: 26.2px;
  margin-bottom: 26px;
}

.separator-half::before {
  left: 0;
}

.separator-half.right-tab::before {
  left: auto;
  right: 0;
}

.bottom-links-title {
  order: 1;
  margin: 0;
  text-align: center;
  font-size: 21px;
  font-weight: 400;
  text-transform: uppercase;
}

.bottom-link-col#engagements .bottom-links-title {
  transform: translateX(24px);
}

.bottom-link-col .separator-half.right-tab + .bottom-links-title {
  transform: translateX(-24px);
}

.bottom-links-text {
  order: 3;
  width: min(100%, var(--bottom-link-width));
  margin: 20px auto 34px;
  font-size: 18px;
  line-height: 1.3;
  color: var(--muted);
  text-align: center;
}

.bottom-link-col a {
  order: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-width: var(--bottom-link-cta-width);
  min-height: 58px;
  margin-top: 8px;
  padding: 12px 26px;
  border-radius: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}

/* Contact */
.contact-block {
  position: relative;
  background: linear-gradient(to top, #e1e1e1 0%, #ebebeb 32%, #f5f5f5 68%, #ffffff 100%);
}

.contact-block .container {
  position: relative;
  width: min(calc(100% - 48px), var(--page-width));
  margin: 0 auto;
  padding: 50px 0 38px;
  text-align: center;
}

.contact-block::before,
.contact-block::after {
  content: "";
  display: block;
  background: var(--gold);
}

.contact-block::before {
  position: absolute;
  top: -4.5px;
  left: 50%;
  width: min(100%, var(--contact-shell-width));
  height: 9px;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 100% 3px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center / 48px 9px no-repeat;
  transform: translateX(-50%);
}

.contact-block::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 10px;
  transform: translateX(-50%);
}

.contact-block h2 {
  margin: 0 0 34px;
  font-size: 21px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

.contact-block p {
  width: min(100%, var(--contact-text-width));
  margin: 0 auto 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

/* Footer */
.footer {
  position: relative;
  height: var(--footer-height);
  min-height: var(--footer-height);
  background: var(--black);
  overflow: hidden;
}

.footer-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--footer-height);
  min-height: var(--footer-height);
  margin: 0 auto;
}

.footer-lion {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--footer-lion-width);
  height: var(--footer-lion-height);
  object-fit: contain;
  object-position: left bottom;
  opacity: 0.72;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto;
  justify-items: stretch;
  align-content: center;
  width: 100%;
  padding: 5px 0 20px;
}

.footer-brand {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.footer-logo {
  width: var(--footer-logo-width);
  margin-bottom: 0;
  transform: translateY(5px);
}

.footer-meta {
  display: grid;
  grid-template-columns:
    minmax(0, calc(50% - 130px))
    260px
    42px
    470px
    minmax(0, 1fr);
  align-items: start;
  width: 100%;
}

.footer-guides {
  grid-column: 1;
  align-self: start;
  padding-right: 12px;
}
.footer-guides-title {
  font-family: var(--sans, 'Montserrat', sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold, #f6b72c);
  margin: 0 0 12px;
}
.footer-guides-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-guides-list a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11.5px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
  max-width: 280px;
}
.footer-guides-list a:hover { color: var(--gold, #f6b72c); }
.footer-guides-all a {
  margin-top: 6px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold, #f6b72c);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
  grid-column: 2;
  justify-self: center;
}

.footer-links a {
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-company {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  max-width: 470px;
  grid-column: 4;
}

.footer-company p {
  margin: 0;
  color: var(--footer-text);
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

.fallback-page {
  display: grid;
  place-items: center;
  min-height: 60vh;
  padding: 140px 20px 80px;
}

.fallback-content {
  text-align: center;
}

.framed-card {
  position: relative;
}

.framed-card::before,
.framed-card::after {
  content: "";
  position: absolute;
  width: var(--corner-size);
  height: var(--corner-size);
  pointer-events: none;
}

.frame-top-left::before {
  top: var(--corner-offset);
  left: var(--corner-offset);
  border-top: var(--corner-stroke) solid var(--gold);
  border-left: var(--corner-stroke) solid var(--gold);
  border-top-left-radius: var(--corner-radius);
}

  .mini-gallery > .mini-card:nth-child(2).frame-top-left::before {
    top: var(--corner-offset);
    left: 50%;
    width: var(--corner-center-line-width);
    height: 0;
    border-top: var(--corner-stroke) solid var(--gold);
  border-left: 0;
  border-top-left-radius: 0;
  transform: translateX(-50%);
}

.frame-top-right::before {
  top: var(--corner-offset);
  right: var(--corner-offset);
  border-top: var(--corner-stroke) solid var(--gold);
  border-right: var(--corner-stroke) solid var(--gold);
  border-top-right-radius: var(--corner-radius);
}

.frame-bottom-left::after {
  left: var(--corner-offset);
  bottom: var(--corner-offset);
  border-bottom: var(--corner-stroke) solid var(--gold);
  border-left: var(--corner-stroke) solid var(--gold);
  border-bottom-left-radius: var(--corner-radius);
}

.frame-bottom-right::after {
  right: var(--corner-offset);
  bottom: var(--corner-offset);
  border-bottom: var(--corner-stroke) solid var(--gold);
  border-right: var(--corner-stroke) solid var(--gold);
  border-bottom-right-radius: var(--corner-radius);
}

@media (max-width: 1100px) {
  :root {
    --separator-band-width: 460px;
    --separator-chip-width: 48px;
    --separator-chip-height: 9px;
  }

  .topbar-frame {
    width: min(calc(100% - 24px), var(--page-width));
    grid-template-columns: 180px minmax(0, 1fr) 48px;
    grid-template-areas: "brand nav socials";
    align-items: center;
    height: auto;
    padding: 22px 0;
    column-gap: 8px;
  }

  .brand {
    width: 170px;
    justify-self: start;
    margin-top: 0;
  }

  .brand img {
    width: 100%;
    height: auto;
  }

  .main-nav {
    width: auto;
    gap: 12px;
    margin-top: 0;
    justify-content: center;
  }

  .main-nav a {
    font-size: 8px;
  }

  .socials {
    width: 48px;
    margin-top: 0;
  }

  .mini-gallery,
  .bottom-links {
    gap: 28px;
  }

  .split-row,
  .row-two {
    gap: 36px;
    grid-template-columns: 1fr 1.15fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 100px;
    --tablet-split-column-width: 270px;
    --tablet-split-row-gap: 90px;
    --tablet-split-image-height: 205px;
    --tablet-bottom-link-width: 280px;
    --tablet-contact-width: 620px;
    --tablet-footer-content-width: 520px;
    --tablet-footer-logo-width: 180px;
    --tablet-footer-lion-width: 235px;
    --tablet-footer-lion-height: 360px;
  }

  .topbar-frame {
    display: grid;
    grid-template-columns: 176px minmax(0, 1fr) auto;
    grid-template-areas: "brand nav socials";
    align-items: center;
    align-content: center;
    width: calc(100% - 32px);
    height: var(--header-height);
    min-height: 0;
    padding: 0;
    row-gap: 0;
    column-gap: 12px;
  }

  .brand {
    width: 164px;
    justify-self: start;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(5, max-content);
    justify-content: center;
    gap: 4px 16px;
    width: 100%;
    max-width: 520px;
    margin: 0;
    align-self: center;
    transform: translateY(8px);
  }

  .main-nav a {
    font-size: 10px;
    line-height: 1.1;
  }

  .main-nav a:nth-child(1) { grid-column: 1; grid-row: 1; }
  .main-nav a:nth-child(2) { grid-column: 2; grid-row: 1; }
  .main-nav a:nth-child(3) { grid-column: 3; grid-row: 1; }
  .main-nav a:nth-child(4) { grid-column: 4; grid-row: 1; }
  .main-nav a:nth-child(5) { grid-column: 5; grid-row: 1; }
  .main-nav a:nth-child(6) { grid-column: 2; grid-row: 2; }
  .main-nav a:nth-child(7) { grid-column: 3; grid-row: 2; }
  .main-nav a:nth-child(8) { grid-column: 4; grid-row: 2; }

  .socials {
    width: auto;
    justify-self: end;
    gap: 8px;
    align-self: center;
  }

  .hero {
    margin-top: calc(var(--header-height) * -1);
    padding-top: var(--header-height);
  }

  .hero-image {
    min-height: 0;
  }

  .hero-image > img {
    height: 460px;
  }

  .internal-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
    padding: 48px 0 44px;
  }

  .internal-hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .internal-title {
    font-size: 34px;
  }

  .internal-lead {
    margin: 0 auto;
    font-size: 16px;
  }

  .internal-hero-media {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .internal-hero-media img {
    height: 300px;
  }

  .internal-section {
    padding: 64px 0;
  }

  .internal-section-title {
    margin-bottom: 32px;
    font-size: 22px;
  }

  .internal-card-grid,
  .internal-steps,
  .services-grid,
  .services-method-grid,
  .services-audiences-grid,
  .audience-grid,
  .audience-process-grid {
    grid-template-columns: 1fr;
  }

  .internal-card,
  .internal-step,
  .services-method-card,
  .services-audience-card,
  .audience-card,
  .audience-process-card,
  .legal-note,
  .page-content-block {
    padding: 28px 24px;
  }

  .service-card-wide {
    max-width: none;
  }

  .service-card-media img {
    height: 240px;
  }

  .particuliers-intro-inner {
    width: calc(100% - 32px);
    min-height: 0;
    margin: 0 auto;
    padding: 24px 0 28px;
  }

  .particuliers-intro-copy {
    width: min(100%, 620px);
    text-align: center;
  }

  .particuliers-intro-label {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .particuliers-intro-copy h1 {
    font-size: 24px;
  }

  .particuliers-intro-text {
    width: min(100%, 500px);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.52;
  }

  .particuliers-main {
    padding-top: 36px;
  }

  .particuliers-shell {
    width: calc(100% - 32px);
  }

  .particuliers-heading {
    margin-bottom: 34px;
    text-align: center;
  }

  .particuliers-pillars-stage {
    margin-bottom: 90px;
  }

  .particuliers-pillars-stage-header {
    width: min(100%, 520px);
    margin-bottom: 34px;
    text-align: center;
  }

  .particuliers-pillars-stage-separator {
    margin: 0 auto 18px;
  }

  .particuliers-pillars-ribbon {
    padding: 22px 28px 0;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 28px;
  }

  .particuliers-frieze {
    width: calc((100vw - 56px) * 2);
    max-width: none;
    gap: 28px;
    margin: 0;
    padding: 0;
  }

  .particuliers-frieze-row,
  .particuliers-frieze-axis {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 0;
  }

  .particuliers-frieze-row-top {
    align-items: start;
  }

  .particuliers-frieze-row-bottom {
    align-items: start;
    margin-top: 40px;
  }

  .particuliers-frieze-item {
    min-width: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .particuliers-frieze-body {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .particuliers-frieze-card {
    width: min(100%, 228px);
  }

  .particuliers-frieze-copy .particuliers-frieze-step {
    margin-bottom: 16px;
  }

  .particuliers-frieze-step {
    font-size: 10px;
  }

  .particuliers-frieze-step::after {
    width: 32px;
  }

  .particuliers-frieze-heading {
    padding-right: 88px;
    margin-bottom: 8px;
  }

  .particuliers-frieze-icon {
    width: 62px;
    height: 62px;
  }

  .particuliers-frieze-icon img {
    width: 48px;
    height: 48px;
  }

  .particuliers-frieze-copy h3 {
    font-size: 16px;
    white-space: nowrap;
  }

  .particuliers-frieze-copy p {
    font-size: 12px;
    line-height: 1.58;
  }

  .particuliers-frieze-axis {
    min-height: 72px;
  }

  .particuliers-frieze-jalon {
    min-height: 72px;
    scroll-snap-align: start;
  }

  .particuliers-frieze-jalon-top::before,
  .particuliers-frieze-jalon-bottom::before {
    height: 36px;
  }

  .particuliers-frieze-jalon::after {
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 5px rgba(246, 183, 44, 0.08);
  }

  .particuliers-feature {
    width: 100%;
    margin: 0 0 88px;
    padding: 68px 0 72px;
  }

  .particuliers-feature-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    padding: 0 16px;
  }

  .particuliers-pillar-featured + .particuliers-pillar-featured {
    padding-left: 28px;
  }

  .particuliers-feature-copy::before {
    top: -24px;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translateX(-50%);
  }

  .particuliers-feature-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .particuliers-feature-separator {
    width: min(100%, 420px);
    margin: 0 auto 18px;
  }

  .particuliers-feature-title {
    margin-bottom: 18px;
    max-width: none;
    font-size: 28px;
  }

  .particuliers-feature-text {
    font-size: 13px;
    line-height: 1.66;
  }

  .particuliers-feature-media {
    width: min(100%, 520px);
    max-width: 520px;
  }

  .particuliers-feature-media img {
    height: 360px;
  }

  .particuliers-decision {
    width: 100%;
    margin: 0 0 100px;
  }

  .particuliers-decision-shell {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    padding: 0 16px;
  }

  .particuliers-decision-media {
    width: min(100%, 520px);
    max-width: 520px;
  }

  .particuliers-decision-media img {
    height: 420px;
  }

  .particuliers-decision-copy {
    width: min(100%, 560px);
    gap: 30px;
    padding: 28px 22px 24px;
    margin-left: 0;
  }

  .particuliers-decision-block {
    text-align: center;
  }

  .particuliers-decision-block-emphasis {
    padding-top: 22px;
  }

  .particuliers-decision-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .particuliers-decision-separator {
    width: min(100%, 420px);
    margin: 0 auto 18px;
  }

  .particuliers-decision-title {
    margin-bottom: 18px;
    max-width: none;
    font-size: 28px;
  }

  .particuliers-decision-text {
    font-size: 13px;
    line-height: 1.64;
    max-width: none;
  }

  .particuliers-statement {
    margin-bottom: 104px;
  }

  .particuliers-statement-panel {
    width: min(100%, 680px);
    padding: 56px 34px 46px;
    text-align: center;
  }

  .particuliers-statement-lion {
    left: -30px;
    bottom: -10px;
    width: 320px;
  }

  .particuliers-statement-eyebrow {
    font-size: 11px;
  }

  .particuliers-statement-panel h2 {
    width: min(100%, 540px);
    margin: 0 auto 20px;
    font-size: 30px;
  }

  .particuliers-statement-text {
    width: min(100%, 520px);
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.62;
  }

  .quote-bar {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 92px;
    padding-top: 18px;
    padding-bottom: 10px;
    padding-inline: 8px;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.01em;
  }

  .intro-inner,
  .home-composition > .container,
  .contact-block .container,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .home-composition {
    padding: 54px 0 82px;
    margin-top: -66px;
  }

  .intro-inner {
    max-width: 620px;
    padding: 24px 0 30px;
    align-items: flex-start;
  }

  .intro p {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;
    max-width: 560px;
  }

  .separator-top {
    width: min(100%, var(--separator-band-width));
  }

  .mini-gallery {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 54px;
  }

  .mini-card {
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .frame-image4-corner::before {
    display: none;
  }

  .mini-gallery > .mini-card:nth-child(2).frame-top-left::before {
    display: none;
  }

  .frame-image4-corner::after {
    content: "";
    position: absolute;
    width: var(--corner-size);
    height: var(--corner-size);
    border-right: var(--corner-stroke) solid var(--gold);
    border-bottom: var(--corner-stroke) solid var(--gold);
    border-bottom-right-radius: var(--corner-radius);
    pointer-events: none;
    right: var(--corner-offset);
    bottom: var(--corner-offset);
  }

  .mini-card-title {
    font-size: 15px;
  }

  .split-showcase {
    gap: 60px;
  }

  .split-row,
  .row-two {
    grid-template-columns: var(--tablet-split-column-width) var(--tablet-split-row-gap) var(--tablet-split-column-width);
    gap: 0;
  }

  .split-text {
    width: var(--tablet-split-column-width);
    max-width: var(--tablet-split-column-width);
    margin: 0;
    text-align: left;
  }

  .split-image {
    width: var(--tablet-split-column-width);
    max-width: var(--tablet-split-column-width);
    margin: 0;
  }

  .split-image img {
    width: var(--tablet-split-column-width);
    height: var(--tablet-split-image-height);
    max-width: var(--tablet-split-column-width);
  }

  .cta-button.black,
  .cta-button.gold,
  .bottom-link-col a {
    min-width: 220px;
    width: auto;
    font-size: 16px;
  }

  .center-button .cta-button.gold {
    min-width: 320px;
  }

  .split-text .cta-button.black {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    font-weight: 500;
    min-height: 52px;
    height: 52px;
  }

  .bottom-links {
    grid-template-columns: repeat(2, minmax(0, var(--tablet-bottom-link-width)));
    justify-content: center;
    gap: 32px;
  }

  .bottom-link-col {
    width: var(--tablet-bottom-link-width);
  }

  .separator-half {
    width: var(--tablet-bottom-link-width);
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .bottom-links-title {
    font-size: 16px;
    transform: none !important;
  }

  .bottom-links-text {
    width: min(100%, var(--tablet-bottom-link-width));
    margin: 16px auto 20px;
    font-size: 14px;
    text-align: center;
  }

  .bottom-link-col a {
    min-width: 260px;
    width: 260px;
    min-height: 52px;
    font-size: 14px;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-block .container {
    width: min(calc(100% - 64px), var(--tablet-contact-width));
    padding: 56px 0 36px;
  }

  .contact-block::before {
    width: min(100%, var(--tablet-contact-width));
  }

  .contact-block h2 {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .contact-block p {
    width: min(100%, 280px);
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.3;
  }

  .contact-block .cta-button.gold {
    min-width: 260px;
    min-height: 48px;
    font-size: 14px;
  }

  .footer {
    min-height: 0;
    height: auto;
    padding: 18px 0 28px;
    overflow: hidden;
  }

  .footer-inner {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .footer-lion {
    left: 0;
    bottom: 0;
    width: var(--tablet-footer-lion-width);
    height: var(--tablet-footer-lion-height);
    opacity: 0.48;
  }

  .footer-content {
    width: calc(100% - 32px);
    min-height: 0;
    padding: 0;
    margin: 0 auto;
  }

  .footer-brand {
    margin-bottom: 14px;
  }

  .footer-logo {
    width: var(--tablet-footer-logo-width);
    transform: none;
  }

  .footer-meta {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100%, var(--tablet-footer-content-width));
    margin: 0 auto;
  }

  .footer-links,
  .footer-company,
  .footer-guides {
    grid-column: auto;
  }

  .footer-guides {
    padding-right: 0;
    text-align: center;
  }
  .footer-guides-list {
    align-items: center;
  }
  .footer-guides-list a { max-width: 100%; }

  .footer-links {
    gap: 6px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-company {
    gap: 3px;
    max-width: var(--tablet-footer-content-width);
  }

  .footer-company p {
    font-size: 10px;
    text-align: center;
  }
}

@media (max-width: 860px) {
  /* Prestations: tablet */
  .prestations-page {
    --prestations-tablet-separator-long: 460px;
    --prestations-tablet-separator-short: 180px;
    --prestations-tablet-chip-width: 48px;
    --prestations-tablet-chip-height: 9px;
    --prestations-tablet-pole-col: 250px;
    --prestations-tablet-pole-gap: 80px;
    --prestations-tablet-pole-image-height: 190px;
    --prestations-tablet-pole-title: 18px;
    --prestations-tablet-pole-subtitle: 12px;
    --prestations-tablet-pole-body: 13px;
    --prestations-tablet-pole-kicker: 10px;
  }

  .prestations-hero-image > img {
    height: 460px;
  }

  .prestations-intro-inner {
    width: min(calc(100% - 64px), 760px);
    min-height: 150px;
    padding: 28px 0 34px;
  }

  .prestations-intro-copy {
    width: min(100%, 620px);
  }

  .prestations-intro-copy h1 {
    font-size: 24px;
  }

  .prestations-intro-label {
    font-size: 12px;
  }

  .prestations-intro-text {
    width: min(100%, 560px);
    font-size: 13px;
  }

  .prestations-main {
    padding-top: 64px;
  }

  .prestations-shell {
    width: calc(100% - 32px);
  }

  .prestations-pole-row {
    --prestations-pole-column-width: var(--prestations-tablet-pole-col);
    --prestations-pole-gap: var(--prestations-tablet-pole-gap);
    --prestations-pole-text-width: var(--prestations-tablet-pole-col);
    --prestations-pole-kicker-size: var(--prestations-tablet-pole-kicker);
    --prestations-pole-kicker-title-gap: 9px;
    --prestations-pole-title-size: var(--prestations-tablet-pole-title);
    --prestations-pole-title-weight: 500;
    --prestations-pole-title-line-height: 1.2;
    --prestations-pole-title-transform: none;
    --prestations-pole-title-separator-gap: 14px;
    --prestations-pole-separator-width: 100%;
    --prestations-pole-separator-subtitle-gap: 18px;
    --prestations-pole-subtitle-size: var(--prestations-tablet-pole-subtitle);
    --prestations-pole-subtitle-weight: 500;
    --prestations-pole-subtitle-line-height: 1.35;
    --prestations-pole-subtitle-body-gap: 16px;
    --prestations-pole-body-size: var(--prestations-tablet-pole-body);
    --prestations-pole-body-line-height: 1.3;
  }

  .prestations-pole-engineering {
    padding-top: 72px;
  }

  .prestations-pole-separator::before {
    width: var(--prestations-tablet-chip-width);
    height: var(--prestations-tablet-chip-height);
  }

  .prestations-pole-media img {
    width: 100%;
    height: var(--prestations-tablet-pole-image-height);
  }


  .prestations-services {
    margin-top: 84px;
    margin-bottom: 90px;
  }

  .prestations-services-heading {
    margin-bottom: 42px;
  }

  .prestations-section-separator {
    width: min(100%, var(--prestations-tablet-separator-long));
  }

  .prestations-section-separator::before {
    width: var(--prestations-tablet-chip-width);
    height: var(--prestations-tablet-chip-height);
  }

  .prestations-services-rank-primary {
    grid-template-columns: repeat(3, 192px);
    gap: 30px;
    margin-bottom: 50px;
  }

  .prestations-services-rank-secondary {
    grid-template-columns: repeat(3, 188px);
    gap: 30px;
    margin-bottom: 58px;
  }

  .prestations-services-rank-technical {
    grid-template-columns: repeat(2, 240px);
    gap: 22px 26px;
  }

  .prestations-card-primary .prestations-card-media img {
    width: 192px;
    height: 140px;
  }

  .prestations-card-secondary .prestations-card-media img {
    width: 188px;
    height: 136px;
  }

  .prestations-card-primary h3 {
    font-size: 18px;
  }

  .prestations-card-primary p {
    font-size: 13px;
  }

  .prestations-card-secondary h3 {
    font-size: 16px;
  }

  .prestations-card-secondary p {
    font-size: 12px;
  }

  .prestations-tech-card {
    min-height: 132px;
    padding: 20px 18px;
  }

  .prestations-tech-heading {
    margin: 0 auto 42px;
  }

  .prestations-tech-title {
    font-size: 21px;
  }

  .prestations-section-separator {
    margin-bottom: 22px;
  }

  .prestations-tech-card h3 {
    font-size: 16px;
  }

  .prestations-tech-card p {
    font-size: 13px;
  }

  .prestations-timeline {
    width: min(100%, 560px);
    margin-bottom: 90px;
  }

  .prestations-timeline .separator-small,
  .prestations-difference .separator-small {
    width: var(--prestations-tablet-separator-short);
  }

  .prestations-timeline .separator-small::before,
  .prestations-difference .separator-small::before {
    width: var(--prestations-tablet-chip-width);
    height: var(--prestations-tablet-chip-height);
  }

  .prestations-timeline-intro {
    width: min(100%, 560px);
    margin-bottom: 34px;
    font-size: 14px;
  }

  .prestations-timeline-track {
    gap: 28px;
    padding-left: 40px;
  }

  .prestations-timeline-track::before {
    left: 8px;
    transform: none;
  }

  .prestations-timeline-step,
  .prestations-timeline-step-left,
  .prestations-timeline-step-right {
    width: 440px;
    align-self: flex-start;
  }

  .prestations-timeline-step::before,
  .prestations-timeline-step-left::before,
  .prestations-timeline-step-right::before {
    left: -37px;
    right: auto;
  }

  .prestations-timeline-index {
    font-size: 28px;
  }

  .prestations-timeline-step h3 {
    font-size: 16px;
  }

  .prestations-timeline-step p {
    font-size: 13px;
  }

  .prestations-difference {
    width: min(100%, 560px);
    margin-bottom: 84px;
  }

  .prestations-difference p {
    font-size: 14px;
  }

  .prestations-signature-cta {
    margin-bottom: 84px;
  }

  .prestations-signature-cta .cta-button.black {
    min-width: 260px;
    width: 260px;
    min-height: 52px;
    height: 52px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 72px;
    --separator-band-width: 420px;
    --separator-line-thickness: 2px;
    --separator-chip-height: 6px;
    --mobile-card-width: 240px;
    --mobile-split-image-height: 182px;
    --mobile-bottom-link-width: 240px;
    --mobile-bottom-link-cta-width: 228px;
    --mobile-contact-width: 320px;
    --mobile-contact-bar-width: 280px;
    --mobile-contact-text-width: 240px;
    --mobile-center-cta-width: 240px;
    --mobile-footer-content-width: 280px;
    --mobile-footer-logo-width: 142px;
    --mobile-footer-lion-width: 190px;
    --mobile-footer-lion-height: 285px;
  }

  .topbar {
    overflow: visible;
  }

  .topbar-frame {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "brand socials toggle";
    align-items: center;
    width: calc(100% - 24px);
    min-height: var(--header-height);
    padding: 2px 0;
    row-gap: 0;
    column-gap: 10px;
  }

  .brand {
    width: 132px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: end;
    margin: 0;
    line-height: 0;
    width: 38px;
    height: 38px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
    padding: 14px 16px;
    border-radius: 0;
    background: linear-gradient(to bottom, rgba(52, 60, 72, 0.46) 0%, rgba(28, 33, 42, 0.66) 100%);
    backdrop-filter: blur(2px);
    justify-items: stretch;
    gap: 0;
  }

  .main-nav a {
    display: block;
    grid-column: auto !important;
    grid-row: auto !important;
    width: auto;
    min-width: 0;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .topbar.menu-open .main-nav {
    display: grid;
  }

  .topbar.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .socials {
    display: flex;
    width: auto;
    align-self: center;
    justify-self: end;
    gap: 8px;
  }

  .socials img {
    width: 12px;
    height: 12px;
  }

  .container,
  .intro-inner,
  .home-composition > .container,
  .contact-block .container,
  .footer-inner {
    width: calc(100% - 24px);
  }

  .internal-page {
    padding-top: var(--header-height);
  }

  .internal-hero-inner,
  .internal-hero-simple .internal-hero-simple-inner {
    padding: 34px 0 30px;
  }

  .internal-eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .internal-title {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .internal-lead {
    font-size: 14px;
    line-height: 1.5;
  }

  .internal-hero-media {
    width: min(100%, 280px);
  }

  .internal-hero-media img {
    height: 220px;
  }

  .internal-section {
    padding: 44px 0;
  }

  .internal-section-title {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .internal-card,
  .internal-step,
  .services-method-card,
  .services-audience-card,
  .audience-card,
  .audience-process-card,
  .legal-note,
  .page-content-block {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .internal-card h3,
  .internal-step h3,
  .service-card h3,
  .services-method-card h3,
  .services-audience-card h3,
  .audience-card h3,
  .audience-process-card h3,
  .legal-note h2 {
    font-size: 18px;
  }

  .internal-card p,
  .internal-step p,
  .service-card p,
  .services-method-card p,
  .services-audience-card p,
  .audience-card p,
  .audience-process-card p,
  .legal-note p,
  .page-content-block {
    font-size: 14px;
    line-height: 1.55;
  }

  .internal-cta {
    margin-top: 32px;
  }

  .particuliers-intro-inner {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 20px 0 24px;
  }

  .particuliers-intro-copy {
    width: min(100%, 280px);
    text-align: center;
  }

  .particuliers-intro-label {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .particuliers-intro-copy h1 {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .particuliers-intro-text {
    width: min(100%, 250px);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
  }

  .particuliers-main {
    padding-top: 26px;
  }

  .particuliers-shell {
    width: calc(100% - 24px);
  }

  .particuliers-heading {
    margin-bottom: 26px;
    text-align: center;
  }

  .particuliers-pillars-stage {
    margin-bottom: 68px;
  }

  .particuliers-pillars-stage-header {
    width: min(100%, 260px);
    margin-bottom: 24px;
    text-align: center;
  }

  .particuliers-pillars-stage-separator {
    margin: 0 auto 14px;
  }

  .particuliers-pillars-ribbon {
    padding: 18px 20px 0;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
  }

  .particuliers-frieze {
    width: calc((100vw - 40px) * 3);
    max-width: none;
    gap: 22px;
    margin: 0;
    padding: 0;
  }

  .particuliers-frieze-row,
  .particuliers-frieze-axis {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 0;
  }

  .particuliers-frieze-row-top {
    align-items: start;
  }

  .particuliers-frieze-row-bottom {
    align-items: start;
    margin-top: 30px;
  }

  .particuliers-frieze-item {
    min-width: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .particuliers-frieze-body {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .particuliers-frieze-card {
    width: min(100%, 190px);
  }

  .particuliers-frieze-copy .particuliers-frieze-step {
    margin-bottom: 14px;
  }

  .particuliers-frieze-step {
    font-size: 9px;
  }

  .particuliers-frieze-step::after {
    width: 28px;
    margin-top: 4px;
  }

  .particuliers-frieze-heading {
    padding-right: 74px;
    margin-bottom: 8px;
  }

  .particuliers-frieze-icon {
    width: 54px;
    height: 54px;
  }

  .particuliers-frieze-icon img {
    width: 42px;
    height: 42px;
  }

  .particuliers-frieze-copy h3 {
    font-size: 14px;
    white-space: nowrap;
  }

  .particuliers-frieze-copy p {
    font-size: 11px;
    line-height: 1.56;
  }

  .particuliers-frieze-axis {
    min-height: 64px;
  }

  .particuliers-frieze-jalon {
    min-height: 64px;
    scroll-snap-align: start;
  }

  .particuliers-frieze-jalon-top::before,
  .particuliers-frieze-jalon-bottom::before {
    height: 32px;
  }

  .particuliers-frieze-jalon::after {
    width: 13px;
    height: 13px;
    box-shadow: 0 0 0 4px rgba(246, 183, 44, 0.08);
  }

  .particuliers-feature {
    gap: 22px;
    width: 100%;
    margin: 0 0 72px;
    padding: 56px 12px 60px;
  }

  .particuliers-feature::before {
    inset: 12px;
  }

  .particuliers-feature-copy {
    width: min(100%, 240px);
    padding: 0;
  }

  .particuliers-feature-copy::before {
    top: -16px;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translateX(-50%);
  }

  .particuliers-feature-eyebrow {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .particuliers-feature-separator {
    width: min(100%, 240px);
    margin-bottom: 16px;
  }

  .particuliers-feature-copy h2 {
    margin-bottom: 16px;
    max-width: none;
    font-size: 22px;
  }

  .particuliers-feature-text {
    font-size: 12px;
    line-height: 1.58;
  }

  .particuliers-feature-media {
    width: min(100%, 240px);
    max-width: 240px;
  }

  .particuliers-feature-media img {
    height: 240px;
  }

  .particuliers-decision {
    gap: 22px;
    width: 100%;
    margin: 0 0 78px;
    padding: 62px 12px 68px;
  }

  .particuliers-decision::before {
    top: 20px;
    left: 12px;
    width: 96px;
    height: 96px;
  }

  .particuliers-decision-media {
    width: min(100%, 240px);
    max-width: 240px;
  }

  .particuliers-decision-media img {
    height: 300px;
  }

  .particuliers-decision-copy {
    width: min(100%, 240px);
    gap: 22px;
  }

  .particuliers-decision-block-emphasis {
    padding-top: 18px;
  }

  .particuliers-decision-eyebrow {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .particuliers-decision-separator {
    width: min(100%, 240px);
    margin-bottom: 16px;
  }

  .particuliers-decision-block h3 {
    margin-bottom: 16px;
    max-width: none;
    font-size: 22px;
  }

  .particuliers-decision-text {
    font-size: 12px;
    line-height: 1.58;
    max-width: none;
  }

  .particuliers-statement {
    margin-bottom: 84px;
  }

  .particuliers-statement-panel {
    width: min(100%, 280px);
    padding: 46px 18px 38px;
    border-radius: 18px;
    text-align: center;
  }

  .particuliers-statement-lion {
    left: -20px;
    bottom: -4px;
    width: 220px;
    opacity: 0.1;
  }

  .particuliers-statement-eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .particuliers-statement-panel h2 {
    width: min(100%, 220px);
    margin-bottom: 14px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
  }

  .particuliers-statement-text {
    width: min(100%, 220px);
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.58;
  }

  .service-card-media img {
    height: 200px;
  }

  .home-composition {
    padding: 54px 0 68px;
    margin-top: -68px;
  }

  .separator-top {
    width: min(100%, var(--separator-band-width));
  }

  .mini-card {
    width: 240px;
    max-width: 100%;
  }

  .mini-card img,
  .mini-card-media,
  .mini-card-image {
    width: 240px;
    max-width: 100%;
  }

  .intro-inner {
    padding: 16px 0 22px;
    align-items: flex-start;
  }

  .hero {
    margin-top: calc(var(--header-height) * -1);
    padding-top: var(--header-height);
  }

  .hero-frame {
    width: 100%;
    margin: 0 auto;
  }

  .hero-image {
    width: 100%;
    min-height: 0;
    margin: 0;
  }

  .hero-image > img {
    width: 100%;
    height: 286px;
    max-width: none;
    object-fit: cover;
    transform: none;
    margin-left: 0;
  }

  .quote-bar {
    display: block;
    font-size: 9px;
    min-height: 72px;
    padding-top: 38px;
    padding-bottom: 4px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.01em;
  }

  .section-title,
  .bottom-links-title,
  .contact-block h2 {
    font-size: 14px;
  }

  .bottom-links-title {
    font-size: 16px;
    width: 280px;
    text-align: center;
    transform: none !important;
  }


  .frame-image4-corner::before {
    display: none;
  }

  .frame-image4-corner::after {
    content: "";
    position: absolute;
    width: var(--corner-size);
    height: var(--corner-size);
    border-right: var(--corner-stroke) solid var(--gold);
    border-bottom: var(--corner-stroke) solid var(--gold);
    border-bottom-right-radius: var(--corner-radius);
    pointer-events: none;
    right: var(--corner-offset);
    bottom: var(--corner-offset);
  }

  .split-showcase {
    gap: 48px;
  }

  .split-row,
  .row-two {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .row-one .split-image,
  .row-one .split-text,
  .row-two .split-image,
  .row-two .split-text {
    grid-column: auto;
  }

  .row-one .split-image,
  .row-two .split-image {
    order: 1;
  }

  .row-one .split-text,
  .row-two .split-text {
    order: 2;
  }

  .split-text {
    width: var(--mobile-card-width);
    max-width: var(--mobile-card-width);
    margin: 0 auto;
    text-align: left;
  }

  .split-image {
    width: var(--mobile-card-width);
    max-width: var(--mobile-card-width);
    margin: 0 auto;
  }

  .split-image img {
    width: var(--mobile-card-width);
    height: var(--mobile-split-image-height);
    max-width: var(--mobile-card-width);
  }

  .split-text h2 {
    font-size: 16px;
  }

  .split-text p,
  .bottom-links-text,
  .contact-block p {
    font-size: 12px;
  }

  .intro p {
    font-size: 9px;
    font-weight: 400;
    line-height: 1.55;
    word-spacing: 0.04em;
    letter-spacing: 0.01em;
    max-width: 255px;
  }

  .cta-button.black,
  .cta-button.gold,
  .bottom-link-col a {
    min-width: 100%;
    width: 100%;
    font-size: 15px;
  }

  .split-text .cta-button.black {
    min-width: 190px;
    width: 190px;
    height: 54px;
    min-height: 54px;
    font-size: 13px;
  }

  .center-button {
    margin-bottom: 56px;
  }

  .center-button .cta-button.gold {
    min-width: var(--mobile-center-cta-width);
    width: var(--mobile-center-cta-width);
    min-height: 48px;
    height: 48px;
    font-size: 14px;
  }

  .bottom-links {
    grid-template-columns: 1fr;
    gap: 36px;
    width: 100%;
  }

  .bottom-link-col {
    width: var(--mobile-bottom-link-width);
    margin: 0 auto;
  }

  .separator-half {
    width: var(--mobile-bottom-link-width);
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .bottom-links-title {
    width: var(--mobile-bottom-link-width);
    font-size: 14px;
    text-align: center;
    transform: none !important;
  }

  .bottom-links-text {
    width: var(--mobile-bottom-link-width);
    margin: 14px auto 18px;
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
  }

  .bottom-link-col a {
    min-width: var(--mobile-bottom-link-cta-width);
    width: var(--mobile-bottom-link-cta-width);
    min-height: 48px;
    height: 48px;
    font-size: 12px;
    white-space: nowrap;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-block .container {
    width: min(calc(100% - 24px), var(--mobile-contact-width));
    padding: 44px 0 28px;
  }

  .contact-block::before {
    width: min(100%, var(--mobile-contact-bar-width));
  }

  .contact-block h2 {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .contact-block p {
    width: min(100%, var(--mobile-contact-text-width));
    margin: 0 auto 18px;
    font-size: 12px;
    line-height: 1.35;
  }

  .contact-block .cta-button.gold {
    min-width: 220px;
    width: 220px;
    min-height: 46px;
    height: 46px;
    font-size: 13px;
  }

  .socials {
    width: auto;
  }

  .footer {
    padding: 12px 0 20px;
  }

  .footer-inner {
    width: 100%;
  }

  .footer-lion {
    width: var(--mobile-footer-lion-width);
    height: var(--mobile-footer-lion-height);
    opacity: 0.48;
  }

  .footer-content {
    width: calc(100% - 24px);
    padding: 0;
    margin: 0 auto;
    justify-items: center;
  }

  .footer-brand {
    margin-bottom: 10px;
  }

  .footer-logo {
    width: var(--mobile-footer-logo-width);
  }

  .footer-meta {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    width: min(100%, var(--mobile-footer-content-width));
  }

  .footer-links {
    grid-column: auto;
    gap: 4px;
  }

  .footer-links a {
    font-size: 10px;
    line-height: 1.2;
  }

  .footer-company {
    grid-column: auto;
    gap: 2px;
    max-width: var(--mobile-footer-content-width);
  }

  .footer-company p {
    font-size: 8.5px;
    line-height: 1.25;
  }

  /* Prestations: mobile */
  .prestations-page {
    --prestations-mobile-separator-long: 420px;
    --prestations-mobile-separator-short: 140px;
    --prestations-mobile-chip-width: 48px;
    --prestations-mobile-chip-height: 6px;
    --prestations-mobile-pole-col: 228px;
    --prestations-mobile-pole-image-height: 173px;
    --prestations-mobile-pole-title: 16px;
    --prestations-mobile-pole-subtitle: 12px;
    --prestations-mobile-pole-body: 11px;
    --prestations-mobile-pole-kicker: 9px;
  }

  .prestations-hero-image > img {
    height: 286px;
  }

  .prestations-intro-inner {
    width: min(calc(100% - 24px), 255px);
    min-height: 0;
    padding: 20px 0 28px;
  }

  .prestations-intro-copy h1 {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .prestations-intro-label {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .prestations-intro-text {
    width: 240px;
    font-size: 12px;
    line-height: 1.45;
  }

  .prestations-main {
    padding-top: 44px;
  }

  .prestations-shell {
    width: calc(100% - 24px);
  }

  .prestations-pole-engineering {
    padding-top: 52px;
  }

  .prestations-pole-row {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    align-items: center;
    --prestations-pole-column-width: var(--prestations-mobile-pole-col);
    --prestations-pole-text-width: var(--prestations-mobile-pole-col);
    --prestations-pole-kicker-size: var(--prestations-mobile-pole-kicker);
    --prestations-pole-kicker-title-gap: 8px;
    --prestations-pole-title-size: var(--prestations-mobile-pole-title);
    --prestations-pole-title-weight: 500;
    --prestations-pole-title-line-height: 1.2;
    --prestations-pole-title-transform: none;
    --prestations-pole-title-separator-gap: 12px;
    --prestations-pole-separator-width: 100%;
    --prestations-pole-separator-subtitle-gap: 16px;
    --prestations-pole-subtitle-size: var(--prestations-mobile-pole-subtitle);
    --prestations-pole-subtitle-weight: 500;
    --prestations-pole-subtitle-line-height: 1.35;
    --prestations-pole-subtitle-body-gap: 14px;
    --prestations-pole-body-size: var(--prestations-mobile-pole-body);
    --prestations-pole-body-line-height: 1.3;
  }

  .prestations-pole-media,
  .prestations-pole-copy {
    width: var(--prestations-mobile-pole-col);
    max-width: var(--prestations-mobile-pole-col);
    margin: 0 auto;
  }

  .prestations-pole-media {
    order: 1;
  }

  .prestations-pole-copy {
    order: 2;
    text-align: left;
  }

  .prestations-pole-separator::before {
    width: var(--prestations-mobile-chip-width);
    height: var(--prestations-mobile-chip-height);
  }

  .prestations-pole-media img {
    width: 100%;
    height: var(--prestations-mobile-pole-image-height);
  }

  .prestations-services {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .prestations-services-heading {
    margin-bottom: 34px;
  }

  .prestations-section-separator {
    width: min(100%, var(--prestations-mobile-separator-long));
  }

  .prestations-section-separator::before {
    width: var(--prestations-mobile-chip-width);
    height: var(--prestations-mobile-chip-height);
  }

  .prestations-services-rank-primary,
  .prestations-services-rank-secondary,
  .prestations-services-rank-technical {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .prestations-services-rank-primary {
    gap: 34px;
    margin-bottom: 42px;
  }

  .prestations-services-rank-secondary {
    gap: 30px;
    margin-bottom: 46px;
  }

  .prestations-services-rank-technical {
    gap: 18px;
  }

  .prestations-card-primary,
  .prestations-card-secondary,
  .prestations-tech-card {
    width: var(--mobile-card-width);
  }

  .prestations-card-primary .prestations-card-media img {
    width: var(--mobile-card-width);
    height: 176px;
  }

  .prestations-card-secondary .prestations-card-media img {
    width: var(--mobile-card-width);
    height: 170px;
  }

  .prestations-card-primary h3 {
    font-size: 16px;
  }

  .prestations-card-primary p,
  .prestations-difference p {
    font-size: 12px;
  }

  .prestations-card-secondary h3 {
    font-size: 16px;
  }

  .prestations-card-secondary p,
  .prestations-tech-card p,
  .prestations-timeline-intro,
  .prestations-timeline-step p {
    font-size: 12px;
  }

  .prestations-tech-card {
    min-height: 0;
    padding: 18px 16px;
  }

  .prestations-tech-heading {
    margin: 0 auto 34px;
  }

  .prestations-tech-title {
    font-size: 14px;
  }

  .prestations-services-title {
    font-size: 16px;
  }

  .prestations-section-separator {
    margin-bottom: 18px;
  }

  .prestations-tech-card h3 {
    font-size: 15px;
  }

  .prestations-timeline {
    width: 240px;
    margin-bottom: 64px;
  }

  .prestations-timeline .separator-small,
  .prestations-difference .separator-small {
    width: var(--prestations-mobile-separator-short);
  }

  .prestations-timeline .separator-small::before,
  .prestations-difference .separator-small::before {
    width: var(--prestations-mobile-chip-width);
    height: var(--prestations-mobile-chip-height);
  }

  .prestations-timeline-intro {
    width: 240px;
    margin-bottom: 28px;
    line-height: 1.45;
  }

  .prestations-timeline-track {
    gap: 22px;
    padding-left: 28px;
  }

  .prestations-timeline-track::before {
    left: 6px;
    transform: none;
  }

  .prestations-timeline-step,
  .prestations-timeline-step-left,
  .prestations-timeline-step-right {
    width: 200px;
    align-self: flex-start;
  }

  .prestations-timeline-step::before,
  .prestations-timeline-step-left::before,
  .prestations-timeline-step-right::before {
    left: -27px;
    right: auto;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 5px rgba(246, 183, 44, 0.12);
  }

  .prestations-timeline-index {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .prestations-timeline-step h3 {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .prestations-difference {
    width: 240px;
    margin-bottom: 56px;
  }

  .prestations-signature-cta {
    margin-bottom: 56px;
  }

  .prestations-signature-cta .cta-button.black {
    width: 190px;
    min-width: 190px;
    min-height: 48px;
    height: 48px;
    font-size: 13px;
  }
}
