:root {
  --orange: #f97316;
  --orange-light: #ff9a55;
  --ink: #111827;
  --ink-soft: #4b5563;
  --night: #080a0d;
  --night-soft: #12161c;
  --paper: #f5f4ef;
  --white: #ffffff;
  --line: #d9dde3;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 28px 70px rgba(17, 24, 39, 0.12);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(1320px, calc(100% - 36px));
  min-height: 82px;
  margin-inline: auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  width: 224px;
  flex: 0 0 auto;
  align-items: center;
}

.brand-full {
  width: 100%;
}

.brand-compact {
  display: none;
  width: 48px;
  height: 58px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 27px;
}

.desktop-nav > a,
.desktop-nav > .nav-submenu > summary,
.client-link {
  position: relative;
  color: #d9dde3;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav > a::after,
.client-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.client-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-submenu {
  position: relative;
}

.nav-submenu > summary {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
}

.nav-submenu > summary::-webkit-details-marker {
  display: none;
}

.nav-submenu > summary::after {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-submenu[open] > summary::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-submenu.is-current > summary {
  color: var(--white);
}

.nav-submenu-panel {
  position: absolute;
  z-index: 120;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  min-width: 292px;
  padding: 9px;
  gap: 3px;
  background: #12161c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.48);
  transform: translateX(-50%);
}

.desktop-nav > .nav-submenu > .nav-submenu-panel::before {
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 12px;
  content: "";
}

.nav-submenu-panel a {
  padding: 12px 14px;
  color: #d9dde3;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.nav-submenu-panel a:hover,
.nav-submenu-panel a[aria-current="page"] {
  color: var(--white);
  background: rgba(249, 115, 22, 0.13);
}

.nav-submenu-child {
  position: relative;
}

.nav-submenu-child > summary {
  display: flex;
  padding: 12px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #d9dde3;
  border-radius: 9px;
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.nav-submenu-child > summary::-webkit-details-marker {
  display: none;
}

.nav-submenu-child > summary::after {
  width: 7px;
  height: 7px;
  content: "";
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.nav-submenu-child[open] > summary,
.nav-submenu-child.is-current > summary {
  color: var(--white);
  background: rgba(249, 115, 22, 0.09);
}

.nav-submenu-child-panel {
  position: absolute;
  z-index: 130;
  top: -9px;
  left: calc(100% + 4px);
  display: grid;
  min-width: 250px;
  padding: 9px;
  gap: 3px;
  background: #12161c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.48);
}

.desktop-nav .nav-submenu-child-panel::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -7px;
  width: 7px;
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #111318;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.22);
}

.button-primary:hover {
  background: #ff852e;
  box-shadow: 0 17px 36px rgba(249, 115, 22, 0.32);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu > summary {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 11px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
  align-content: space-around;
}

.mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.mobile-menu > summary span {
  display: block;
  height: 2px;
  background: var(--white);
}

.mobile-menu nav {
  position: absolute;
  top: 81px;
  right: 18px;
  left: 18px;
  display: grid;
  padding: 24px;
  gap: 18px;
  background: #101319;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.mobile-menu .nav-submenu {
  width: 100%;
}

.mobile-menu .nav-submenu > summary {
  width: 100%;
  justify-content: space-between;
  color: #d9dde3;
  font-size: 14px;
  font-weight: 700;
}

.mobile-menu .nav-submenu-panel {
  position: static;
  min-width: 0;
  margin-top: 12px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: none;
  transform: none;
}

.mobile-menu .nav-submenu-panel a {
  padding: 11px 12px;
  white-space: normal;
}

.mobile-menu .nav-submenu-child > summary {
  padding: 11px 12px;
  white-space: normal;
}

.mobile-menu .nav-submenu-child > summary::after {
  transform: rotate(135deg);
}

.mobile-menu .nav-submenu-child[open] > summary::after {
  transform: rotate(-45deg);
}

.mobile-menu .nav-submenu-child-panel {
  position: static;
  min-width: 0;
  margin: 4px 0 4px 12px;
  padding: 4px 0 4px 10px;
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(249, 115, 22, 0.35);
  border-radius: 0;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 88px 0 70px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.97) 0%, rgba(5, 7, 10, 0.88) 38%, rgba(5, 7, 10, 0.5) 66%, rgba(5, 7, 10, 0.24) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.14) 40%, rgba(5, 7, 10, 0.72) 100%),
    url("/assets/hero-groupe-optimal-form-1920.webp") center center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 76%, rgba(5, 7, 10, 0.32));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 650px;
  align-items: center;
}

.hero-copy {
  width: min(720px, 68%);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  display: flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 12px;
  color: #f7b98d;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 3px;
  background: var(--orange);
}

.trial-badge {
  margin-left: 8px;
  padding: 6px 10px;
  color: #16191d;
  background: var(--orange);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.hero .eyebrow {
  flex-wrap: wrap;
}

.eyebrow-dark {
  color: #a85014;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(58px, 6vw, 96px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 strong {
  display: block;
  color: var(--orange);
  font-weight: inherit;
}

.hero-lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: #c9ced6;
  font-size: 20px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  margin-top: 38px;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.text-link span,
.card-link span {
  color: var(--orange);
  transition: transform 180ms ease;
}

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

.hero-points {
  display: flex;
  margin: 38px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 18px 26px;
  color: #b9c0c9;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-points span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(249, 115, 22, 0.45);
  border-radius: 50%;
}

.hero-location {
  display: flex;
  width: fit-content;
  margin-top: 28px;
  padding: 15px 20px;
  align-items: center;
  gap: 12px;
  background: rgba(8, 10, 13, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  font-size: 13px;
}

.hero-location span:last-child {
  display: grid;
}

.hero-location strong {
  color: var(--white);
  font-size: 15px;
}

.location-dot {
  width: 11px;
  height: 11px;
  background: var(--orange);
  border: 3px solid rgba(249, 115, 22, 0.27);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.13);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 55px;
}

.section-heading h2,
.outdoor-copy h2,
.coach-copy h2,
.location-section h2,
.appointment-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 570px;
  padding: 54px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.service-card-light {
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card-dark {
  color: var(--white);
  background: var(--night);
  box-shadow: var(--shadow);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 34px;
  color: rgba(17, 24, 39, 0.12);
  font-size: 76px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.service-card-dark .service-number {
  color: rgba(255, 255, 255, 0.08);
}

.service-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 38px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 24px;
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.24);
  font-size: 24px;
  font-weight: 900;
}

.service-icon-group {
  font-size: 12px;
  letter-spacing: 0.06em;
}

.card-label {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card h3,
.concept-card h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.service-card > p:not(.card-label) {
  max-width: 520px;
  margin: 20px 0;
  color: var(--ink-soft);
}

.service-card-dark > p:not(.card-label) {
  color: #bcc2cb;
}

.service-card ul {
  display: grid;
  margin: 25px 0 35px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.service-card li::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.card-link {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  border-bottom: 2px solid var(--orange);
}

.service-links {
  display: grid;
  margin-top: auto;
  justify-items: start;
  gap: 15px;
}

.service-links .card-link {
  margin-top: 0;
}

.outdoor-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 0.91) 0%, rgba(7, 10, 14, 0.78) 49%, rgba(7, 10, 14, 0.47) 100%),
    linear-gradient(180deg, rgba(7, 10, 14, 0.1), rgba(7, 10, 14, 0.7)),
    url("/assets/urban-terrain-groupe-1280.webp") center / cover no-repeat;
}

.outdoor-section::before {
  position: absolute;
  top: -340px;
  right: -200px;
  width: 700px;
  height: 700px;
  content: "";
  border: 90px solid rgba(249, 115, 22, 0.06);
  border-radius: 50%;
}

.outdoor-grid {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
}

.outdoor-media {
  display: grid;
  gap: 28px;
}

.outdoor-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px 0 42px;
  color: #bfc5cd;
  font-size: 18px;
}

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

.benefit-grid > div {
  display: grid;
  padding: 21px;
  gap: 6px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
}

.benefit-grid strong {
  color: var(--white);
  font-size: 17px;
}

.benefit-grid span {
  color: #aeb5be;
  font-size: 14px;
}

.outdoor-quote {
  position: relative;
  margin-top: 58px;
  padding: 48px 40px 38px;
  background: var(--orange);
  border-radius: 30px 30px 30px 100px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
}

.outdoor-quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #13161a;
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.quote-mark {
  position: absolute;
  top: -15px;
  left: 26px;
  color: rgba(255, 255, 255, 0.35);
  font-family: Georgia, serif;
  font-size: 160px;
  line-height: 1;
}

.orange-line {
  display: block;
  width: 90px;
  height: 5px;
  margin-top: 32px;
  background: #15191e;
}

.concepts-section {
  background: #fbfaf7;
}

.section-heading-row {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: 1fr 0.55fr;
  gap: 60px;
}

.section-heading-row > p {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 17px;
}

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

.concept-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.concept-image {
  position: relative;
  height: 390px;
  overflow: hidden;
}

.concept-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35));
}

.concept-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.concept-card:hover .concept-image img {
  transform: scale(1.035);
}

.concept-tag {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 9px 14px;
  color: var(--white);
  background: rgba(8, 10, 13, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.concept-content {
  padding: 38px 40px 43px;
}

.concept-content > p:not(.card-label) {
  min-height: 80px;
  margin: 18px 0 26px;
  color: var(--ink-soft);
}

.coach-section {
  overflow: hidden;
  background: var(--paper);
}

.coach-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.78fr 1.1fr;
  gap: 110px;
}

.coach-photo {
  position: relative;
  min-height: 650px;
}

.coach-photo-backdrop {
  position: absolute;
  inset: 50px 0 0 45px;
  background: var(--orange);
  border-radius: 28px 28px 28px 120px;
}

.coach-photo img {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 0;
  max-height: 650px;
  filter: drop-shadow(0 28px 25px rgba(17, 24, 39, 0.22));
}

.coach-badge {
  position: absolute;
  z-index: 3;
  right: -25px;
  bottom: 40px;
  padding: 16px 20px;
  color: var(--white);
  background: var(--night);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.coach-intro {
  margin: 28px 0 36px;
  color: var(--ink-soft);
  font-size: 19px;
}

.coach-values {
  display: grid;
  margin-bottom: 35px;
  gap: 0;
  border-top: 1px solid #d5d8de;
}

.coach-values > div {
  display: grid;
  padding: 19px 0;
  align-items: center;
  grid-template-columns: 58px 1fr;
  border-bottom: 1px solid #d5d8de;
}

.coach-values > div > span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.coach-values p {
  display: grid;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.coach-values strong {
  color: var(--ink);
  font-size: 17px;
}

.coach-credentials {
  margin: 0 0 32px;
  padding: 25px 27px;
  background: #eeede7;
  border: 1px solid #d9dce0;
  border-radius: 18px;
}

.coach-credentials .card-label {
  margin: 0 0 17px;
}

.coach-credentials ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.coach-credentials li {
  position: relative;
  padding-left: 21px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.coach-credentials li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
  transform: translateY(-50%);
}

.coach-credentials strong {
  color: var(--ink);
}

.text-link-dark {
  color: var(--ink);
  border-color: rgba(17, 24, 39, 0.25);
}

.location-section {
  color: var(--white);
  background: #15191f;
}

.location-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 85px;
}

.location-section h2 {
  max-width: 600px;
}

.location-section h2 + p {
  max-width: 580px;
  margin: 25px 0 38px;
  color: #b8bec6;
  font-size: 18px;
}

.location-details {
  display: grid;
  gap: 14px;
}

.location-details > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.location-details > div > span {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(249, 115, 22, 0.38);
  border-radius: 50%;
  font-size: 20px;
}

.location-details p {
  display: grid;
  margin: 0;
  color: #aeb5be;
  font-size: 14px;
}

.location-details strong {
  color: var(--white);
  font-size: 16px;
}

.spot-video {
  position: relative;
  margin: 0;
}

.spot-video-frame {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #090b0e;
  border-radius: 32px 32px 100px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.33);
}

.spot-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-video-control {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  min-width: 108px;
  padding: 11px 16px;
  color: var(--white);
  background: rgba(5, 7, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.spot-video-control:hover,
.spot-video-control:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  outline: 0;
}

.spot-video figcaption {
  display: flex;
  margin-top: 17px;
  align-items: flex-start;
  gap: 12px;
  color: #aeb5be;
  font-size: 13px;
}

.spot-video figcaption .location-dot {
  margin-top: 5px;
  flex: 0 0 auto;
}

.spot-video figcaption span:last-child {
  display: grid;
}

.spot-video figcaption strong {
  color: var(--white);
  font-size: 15px;
}

.spot-video figcaption small {
  margin: 0;
  color: #aeb5be;
}

.appointment-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 25%, rgba(249, 115, 22, 0.15), transparent 24%),
    #101419;
}

.appointment-section .eyebrow {
  color: #a85014;
}

.appointment-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.appointment-copy {
  position: sticky;
  top: 130px;
}

.appointment-copy > p:not(.eyebrow) {
  margin: 26px 0 38px;
  color: #b8c0ca;
  font-size: 18px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.phone-link > span:first-child {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--night);
  background: var(--orange);
  border-radius: 50%;
  font-size: 22px;
}

.phone-link > span:last-child {
  display: grid;
}

.phone-link small {
  color: #aeb6c1;
}

.phone-link strong {
  color: var(--white);
  font-size: 22px;
}

.appointment-form {
  display: grid;
  padding: 45px;
  gap: 20px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.33);
}

.form-heading {
  display: flex;
  margin-bottom: 3px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-heading span {
  font-size: 25px;
  font-weight: 900;
}

.form-heading strong {
  padding: 8px 12px;
  color: #9a450e;
  background: #fff0e5;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.appointment-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #f7f7f5;
  border: 1px solid #d9dde3;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.appointment-form textarea {
  resize: vertical;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.appointment-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 550;
}

.appointment-form .consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.appointment-form .consent a {
  color: inherit;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

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

.button-submit {
  width: 100%;
  margin-top: 3px;
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  display: none;
  margin: 0;
  padding: 11px 14px;
  color: #14532d;
  background: #dcfce7;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #7f1d1d;
  background: #fee2e2;
}

.faq-section {
  background: #f4f3ed;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.faq-grid h2 {
  max-width: 570px;
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.faq-grid > div:first-child > p:last-child {
  max-width: 490px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.faq-list {
  display: grid;
  border-top: 1px solid #d5d8dc;
}

.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid #d5d8dc;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--orange);
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  margin: 15px 36px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.site-footer {
  color: #b8bec7;
  background: #050607;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-main {
  display: grid;
  padding: 68px 0 55px;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 70px;
}

.footer-main-simple {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.9fr) minmax(205px, auto);
  align-items: center;
  gap: 44px;
}

.footer-cta {
  max-width: 300px;
  padding: 27px 30px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
}

.footer-cta p {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-cta strong {
  display: block;
  margin-bottom: 17px;
  font-size: 19px;
  line-height: 1.15;
}

.footer-cta .button {
  min-height: 38px;
  padding: 0 15px;
  font-size: 12px;
}

.footer-main-with-reviews {
  display: block;
  padding: 46px 0 38px;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(205px, 0.8fr) minmax(0, 1.7fr) minmax(185px, 0.62fr);
  align-items: center;
  gap: clamp(26px, 3.2vw, 54px);
}

.footer-contact {
  display: grid;
  gap: 8px;
  font-size: 14px;
  white-space: nowrap;
}

.footer-contact > span,
.footer-social-block > span {
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-social-block {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.footer-side-stack {
  display: grid;
  align-content: center;
  gap: 28px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  display: inline-grid;
  width: 38px;
  height: 38px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  place-items: center;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.social-link:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.social-link-facebook span {
  font-family: Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  transform: translateY(1px);
}

.social-link-instagram span {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.social-link-instagram span::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 7px;
  height: 7px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 50%;
}

.social-link-instagram span::after {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 3px;
  height: 3px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.footer-reviews {
  min-width: 0;
}

.footer-reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.footer-reviews-heading p {
  margin: 0;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-reviews-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: 20px;
}

.footer-average-rating {
  color: #d7dce3;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-average-rating b,
.review-stars {
  color: var(--orange);
  letter-spacing: 1px;
}

.footer-review-carousel {
  display: grid;
  margin-top: 20px;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
}

.footer-review-arrow {
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--white);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.footer-review-arrow:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.footer-review-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.footer-review-viewport::-webkit-scrollbar {
  display: none;
}

.footer-review-track {
  display: flex;
  gap: 14px;
}

.footer-review-track blockquote {
  display: flex;
  flex: 0 0 calc(50% - 7px);
  min-height: 174px;
  margin: 0;
  padding: 20px 21px;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  scroll-snap-align: start;
}

.review-stars {
  font-size: 11px;
}

.footer-review-track blockquote p {
  margin: 13px 0;
  color: #f1f3f6;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.footer-review-track blockquote footer {
  color: #aeb6c1;
  font-size: 12px;
}

.footer-review-links {
  display: flex;
  margin-top: 14px;
}

.footer-review-links a {
  color: #d7dce3;
  font-size: 13px;
  font-weight: 700;
}

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

.footer-brand img {
  width: 265px;
}

.footer-brand p {
  max-width: 430px;
  margin: 18px 0 0;
}

.footer-main > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-main h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
}

.footer-main a:hover,
.footer-bottom a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  padding: 22px 0 28px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.reviews-section {
  background: #f3f1ed;
}

.reviews-heading {
  max-width: 680px;
}

.reviews-grid {
  display: grid;
  margin-top: 45px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-review-carousel {
  display: grid;
  margin-top: 45px;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 12px;
}

.home-review-arrow {
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(10, 11, 13, 0.18);
  border-radius: 50%;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.home-review-arrow:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.home-review-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.home-review-viewport::-webkit-scrollbar {
  display: none;
}

.home-review-track {
  display: flex;
  gap: 20px;
}

.home-review-track .review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
}

.testimonial-videos {
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0a0b0d;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(25, 25, 25, 0.12);
}

.testimonial-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.review-card {
  display: flex;
  min-height: 255px;
  padding: 31px 30px 28px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid rgba(10, 11, 13, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(25, 25, 25, 0.05);
}

.review-stars {
  color: var(--orange);
  letter-spacing: 2px;
  font-size: 15px;
}

.review-card blockquote {
  margin: 27px 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.48;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.review-card p span {
  color: var(--ink-soft);
  font-weight: 500;
}

.reviews-links {
  display: flex;
  margin-top: 26px;
  justify-content: center;
  gap: 30px;
}

.press-hero {
  padding: 158px 0 105px;
  color: var(--white);
  background: linear-gradient(115deg, #080a0d 0%, #171a20 64%, #4a2610 145%);
}

.press-hero h1 {
  max-width: 710px;
  margin: 19px 0;
  font-size: clamp(55px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.press-hero h1 strong {
  color: var(--orange);
}

.press-hero > .container > p:last-child {
  max-width: 650px;
  margin: 0;
  color: #c8ced6;
  font-size: 18px;
  line-height: 1.65;
}

.press-section {
  background: #f3f1ed;
}

.press-grid {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.press-card {
  position: relative;
  min-height: 305px;
  padding: 24px;
  overflow: hidden;
  color: var(--white);
  background: #11151a;
  border-radius: 18px;
  isolation: isolate;
}

.press-video-card {
  padding: 14px 14px 22px;
}

.press-video-card::before {
  display: none;
}

.press-video-wrap {
  position: relative;
  margin-bottom: 18px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border-radius: 10px;
}

.press-video-wrap iframe,
.press-video-wrap video {
  width: 100%;
  height: 100%;
  border: 0;
}

.press-video-wrap video {
  display: block;
  background: #000;
  object-fit: cover;
}

.press-youtube-link {
  display: flex;
  min-height: 154px;
  margin-bottom: 18px;
  padding: 18px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  background: linear-gradient(135deg, #1b1f26 0%, #07090c 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  gap: 12px;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.press-youtube-link:hover {
  color: var(--white);
  background: linear-gradient(135deg, #ed6c12 0%, #a94308 100%);
  transform: translateY(-2px);
}

.press-youtube-link > span {
  display: grid;
  width: 47px;
  height: 47px;
  padding-left: 3px;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-size: 15px;
  place-items: center;
}

.press-youtube-link small {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-video-card .press-channel,
.press-video-card > p,
.press-video-card > h3 {
  margin-left: 10px;
  margin-right: 10px;
}

.press-card::before {
  position: absolute;
  right: -56px;
  bottom: -75px;
  width: 190px;
  height: 190px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
  opacity: 0.95;
  z-index: -1;
}

.press-card:nth-child(2)::before,
.press-card:nth-child(4)::before {
  background: #383e48;
}

.press-channel {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-play {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 51px 0 45px;
  padding-left: 3px;
  background: var(--white);
  border-radius: 50%;
  color: var(--ink);
  font-size: 14px;
  place-items: center;
}

.press-card p {
  margin: 0 0 9px;
  color: #cad0d8;
  font-size: 13px;
}

.press-card h3 {
  max-width: 260px;
  margin: 0;
  font-size: 20px;
  line-height: 1.12;
}

.press-card .press-summary {
  margin-top: 17px;
  color: #aeb6c0;
  font-size: 14px;
  line-height: 1.58;
}

.press-note {
  display: flex;
  max-width: 780px;
  margin: 33px auto 0;
  padding: 0 0 0 18px;
  align-items: flex-start;
  border-left: 3px solid var(--orange);
  gap: 12px;
}

.press-note span {
  color: var(--orange);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.press-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.press-cta {
  color: var(--ink);
  background:
    linear-gradient(105deg, rgba(249, 115, 22, 0.09), transparent 45%),
    #ebeae3;
}

.press-cta .eyebrow {
  color: #a85014;
}

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

.press-cta h2 {
  max-width: 620px;
  margin: 13px 0 0;
}

.client-link.is-active::after {
  transform: scaleX(1);
}

.client-page {
  background: #0b0e12;
}

.client-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 110px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(8, 10, 13, 0.98), rgba(16, 20, 26, 0.96)),
    var(--night);
}

.client-hero::after {
  position: absolute;
  right: -120px;
  bottom: -310px;
  width: 610px;
  height: 610px;
  content: "";
  border: 90px solid rgba(249, 115, 22, 0.08);
  border-radius: 50%;
}

.client-hero-glow {
  position: absolute;
  top: -180px;
  left: 25%;
  width: 460px;
  height: 460px;
  background: rgba(249, 115, 22, 0.13);
  border-radius: 50%;
  filter: blur(110px);
}

.client-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
}

.client-hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.client-hero h1 strong {
  color: var(--orange);
  font-weight: inherit;
}

.client-hero-copy {
  padding-bottom: 8px;
}

.client-hero-copy p {
  max-width: 480px;
  margin: 0 0 22px;
  color: #c4cad2;
  font-size: 18px;
}

.client-hero-copy span {
  display: inline-flex;
  padding: 8px 12px;
  color: #b4bbc5;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.client-portal-section {
  padding: 76px 0 100px;
  background: var(--paper);
}

.portal-heading {
  display: flex;
  margin-bottom: 28px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.portal-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.portal-external-link {
  display: inline-flex;
  min-height: 46px;
  padding: 0 17px;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: var(--night);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.portal-external-link:hover {
  color: var(--night);
  background: var(--orange);
  transform: translateY(-2px);
}

.portal-frame {
  position: relative;
  height: min(940px, calc(100vh - 120px));
  min-height: 720px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d7dbe1;
  border-radius: 24px;
  box-shadow: 0 25px 65px rgba(17, 24, 39, 0.14);
}

.portal-frame::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  content: "Chargement de votre espace client…";
  place-items: center;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.portal-frame iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  border: 0;
}

.portal-help {
  display: grid;
  margin-top: 24px;
  padding: 22px 26px;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background: #ecebe6;
  border-radius: 16px;
}

.portal-help > div {
  display: grid;
  gap: 3px;
}

.portal-help strong {
  font-size: 14px;
}

.portal-help p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.portal-help a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

.offer-page {
  background: var(--paper);
}

.offer-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 76px 0 64px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 38%, rgba(249, 115, 22, 0.14), transparent 24%),
    linear-gradient(135deg, #07090c, #11161d 62%, #080a0d);
}

.offer-hero::after {
  position: absolute;
  right: -280px;
  bottom: -470px;
  width: 860px;
  height: 860px;
  content: "";
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 95px rgba(249, 115, 22, 0.025), 0 0 0 190px rgba(249, 115, 22, 0.015);
}

.offer-hero-glow {
  position: absolute;
  top: -190px;
  left: 22%;
  width: 470px;
  height: 470px;
  background: rgba(249, 115, 22, 0.11);
  border-radius: 50%;
  filter: blur(120px);
}

.offer-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 650px;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 65px;
}

.offer-back-link {
  display: inline-flex;
  margin-bottom: 38px;
  align-items: center;
  gap: 10px;
  color: #bfc5ce;
  font-size: 13px;
  font-weight: 800;
}

.offer-back-link span {
  color: var(--orange);
  font-size: 18px;
  transition: transform 180ms ease;
}

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

.offer-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(60px, 6.2vw, 94px);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.offer-hero h1 strong {
  display: block;
  color: var(--orange);
  font-weight: inherit;
}

.offer-hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: #c7cdd5;
  font-size: 19px;
  line-height: 1.7;
}

.offer-facts {
  display: grid;
  max-width: 720px;
  margin: 42px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.offer-facts li {
  display: grid;
  padding: 18px 15px;
  gap: 2px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-facts li:first-child {
  padding-left: 0;
}

.offer-facts li:last-child {
  border-right: 0;
}

.offer-facts strong {
  color: var(--white);
  font-size: 17px;
}

.offer-facts span {
  color: #99a2ae;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.offer-hero-media {
  position: relative;
  min-height: 650px;
  align-self: end;
}

.offer-hero-media::before {
  position: absolute;
  right: 3%;
  bottom: 0;
  left: 3%;
  height: 74%;
  content: "";
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50% 50% 28px 120px;
}

.offer-hero-media img {
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: -4px;
  width: min(100%, 550px);
  max-height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.45));
  transform: translateX(50%);
}

.offer-hero-ring {
  position: absolute;
  top: 17%;
  right: 5%;
  width: 390px;
  height: 390px;
  border: 64px solid rgba(249, 115, 22, 0.08);
  border-radius: 50%;
}

.offer-coach-label {
  position: absolute;
  z-index: 3;
  right: 3%;
  bottom: 22px;
  display: flex;
  padding: 14px 17px;
  align-items: center;
  gap: 12px;
  background: rgba(8, 10, 13, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  font-size: 12px;
}

.offer-coach-label span:last-child {
  display: grid;
}

.offer-coach-label strong {
  color: var(--white);
  font-size: 14px;
}

.offer-audience {
  background: #f5f4ef;
}

.offer-audience-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 95px;
}

.offer-audience h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.offer-audience-copy {
  padding-bottom: 5px;
}

.offer-audience-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.offer-audience-copy p + p {
  margin-top: 18px;
}

.private-format-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.private-format-card {
  min-height: 340px;
  padding: 34px 32px;
  background: var(--white);
  border: 1px solid #dfe2e6;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
}

.private-format-card-accent {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 10%, rgba(249, 115, 22, 0.2), transparent 27%),
    #10141a;
  border-color: #242a32;
}

.private-format-kicker {
  color: #9f470d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.private-format-card-accent .private-format-kicker {
  color: #ff9d5c;
}

.private-format-title {
  display: flex;
  margin: 32px 0 18px;
  align-items: center;
  gap: 19px;
}

.private-format-title strong {
  color: var(--orange);
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.private-format-title h3 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.private-format-card > p {
  max-width: 580px;
  margin: 0;
  color: var(--ink-soft);
}

.private-format-card-accent > p {
  color: #bdc4cd;
}

.private-format-card ul {
  display: grid;
  margin: 25px 0 0;
  padding: 23px 0 0;
  gap: 9px;
  list-style: none;
  border-top: 1px solid #e3e5e8;
}

.private-format-card-accent ul {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.private-format-card li {
  position: relative;
  padding-left: 21px;
  color: #414852;
  font-size: 14px;
}

.private-format-card-accent li {
  color: #d1d6dd;
}

.private-format-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
  transform: translateY(-50%);
}

.objective-grid {
  display: grid;
  margin-top: 56px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.objective-grid article {
  min-height: 265px;
  padding: 30px 27px;
  background: var(--white);
  border: 1px solid #e1e3e6;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
}

.objective-grid article > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #9f470d;
  background: #fff0e5;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
}

.objective-grid h3 {
  margin: 28px 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.objective-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.offer-method {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.12), transparent 25%),
    #0a0d11;
}

.offer-method .section-heading > p:last-child {
  color: #aeb5be;
}

.method-steps {
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.method-steps article {
  display: grid;
  min-height: 310px;
  padding: 34px 30px;
  align-content: start;
  gap: 55px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
}

.method-steps article > span {
  color: var(--orange);
  font-size: 46px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.method-steps h3 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 23px;
  line-height: 1.18;
}

.method-steps p {
  margin: 0;
  color: #aeb5be;
  font-size: 14px;
}

.pricing-section {
  background: #efeee8;
}

.pricing-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 530px;
  padding: 38px 32px 32px;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #dfe2e6;
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.08);
}

.price-card-featured {
  color: var(--white);
  background: #10141a;
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 28px 65px rgba(17, 24, 39, 0.2);
}

.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  color: #562406;
  background: var(--orange);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-label {
  margin: 0 0 8px;
  color: #9a450e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card-featured .price-label {
  color: #f8af7b;
}

.price-card h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.price {
  display: grid;
  margin: 34px 0 30px;
}

.price strong {
  font-size: 54px;
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price span {
  margin-top: 6px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
}

.price-card-featured .price span {
  color: #aeb5be;
}

.price-card ul {
  display: grid;
  margin: 0 0 32px;
  padding: 0;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  list-style: none;
}

.price-card-featured ul {
  color: #c4cad2;
}

.price-card li {
  position: relative;
  padding-left: 25px;
}

.price-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  content: "✓";
  color: var(--orange);
  font-weight: 900;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.button-outline-dark {
  color: var(--ink);
  background: transparent;
  border: 1px solid #cfd3d9;
}

.button-outline-dark:hover {
  background: #f3f4f6;
  border-color: #aab0b8;
}

.pricing-note {
  margin: 24px 0 0;
  color: #68717e;
  font-size: 12px;
  text-align: center;
}

.offer-final-cta {
  padding: 92px 0;
  color: var(--ink);
  background:
    linear-gradient(105deg, rgba(249, 115, 22, 0.09), transparent 45%),
    #ebeae3;
}

.offer-final-cta .eyebrow {
  color: #a85014;
}

.offer-final-cta-inner {
  display: grid;
  align-items: end;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
}

.offer-final-cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.offer-final-cta-inner > div:last-child {
  display: grid;
  gap: 25px;
}

.offer-final-cta-inner > div:last-child p {
  margin: 0;
  color: var(--ink-soft);
}

.offer-final-cta .button {
  justify-self: start;
}

.signature-method {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(249, 115, 22, 0.13), transparent 25%),
    #090c10;
}

.home-method-teaser {
  background: #ebeae3;
}

.home-method-teaser-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 90px;
}

.home-method-teaser h2 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.home-method-teaser-grid > div:first-child > p {
  max-width: 690px;
  margin: 24px 0 25px;
  color: var(--ink-soft);
}

.home-method-teaser-grid > div:first-child > .eyebrow {
  margin-top: 0;
}

.home-method-pillars {
  display: grid;
  gap: 13px;
}

.home-method-pillars > div {
  display: grid;
  min-height: 112px;
  padding: 22px 25px;
  align-items: center;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  background: var(--white);
  border: 1px solid #dcdfe3;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.055);
}

.home-method-pillars span {
  color: var(--orange);
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.home-method-pillars p {
  display: grid;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.home-method-pillars strong {
  color: var(--ink);
  font-size: 19px;
}

.signature-method-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
}

.signature-method-heading h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.signature-method-heading > p {
  margin: 0 0 7px;
  color: #b9c0ca;
  font-size: 17px;
}

.method-pillars {
  display: grid;
  margin-top: 65px;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.method-pillars article {
  min-height: 330px;
  padding: 34px 30px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
}

.method-pillars article > span {
  color: var(--orange);
  font-size: 45px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.method-pillars h3 {
  margin: 58px 0 14px;
  color: var(--white);
  font-size: 25px;
}

.method-pillars p {
  margin: 0;
  color: #aeb6c1;
  font-size: 14px;
}

.signature-method-footer {
  display: flex;
  margin-top: 36px;
  padding-top: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.signature-method-footer p {
  max-width: 710px;
  margin: 0;
  color: #c2c8d0;
}

.offer-process {
  background: #f5f4ef;
}

.offer-process .method-steps article {
  background: var(--white);
  border-color: #dfe2e6;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
}

.offer-process .method-steps h3 {
  color: var(--ink);
}

.offer-process .method-steps p {
  color: var(--ink-soft);
}

.offer-routing {
  background: #eae9e2;
}

.offer-route-card {
  position: relative;
  padding: 65px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(249, 115, 22, 0.18), transparent 28%),
    #10141a;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(17, 24, 39, 0.17);
}

.offer-route-card::after {
  position: absolute;
  right: -110px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  content: "";
  border: 60px solid rgba(249, 115, 22, 0.07);
  border-radius: 50%;
}

.offer-route-card .eyebrow,
.offer-route-card h2,
.offer-route-card p,
.offer-route-card .button {
  position: relative;
  z-index: 1;
}

.offer-route-card h2 {
  max-width: 810px;
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.offer-route-card > p {
  max-width: 680px;
  margin: 24px 0 30px;
  color: #b9c0ca;
}

.method-page,
.rates-page {
  background: var(--paper);
}

.method-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 95px 0 80px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(5, 7, 10, 0.98), rgba(13, 17, 22, 0.95)),
    #080a0d;
}

.method-hero::after {
  position: absolute;
  right: -280px;
  bottom: -420px;
  width: 820px;
  height: 820px;
  content: "";
  border: 95px solid rgba(249, 115, 22, 0.055);
  border-radius: 50%;
}

.method-hero-glow {
  position: absolute;
  top: -230px;
  left: 34%;
  width: 540px;
  height: 540px;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 50%;
  filter: blur(130px);
}

.method-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 620px;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 85px;
}

.method-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(62px, 7vw, 104px);
  font-weight: 950;
  letter-spacing: -0.067em;
  line-height: 0.94;
}

.method-hero h1 strong {
  display: block;
  color: var(--orange);
  font-weight: inherit;
}

.method-hero-grid > div:first-child > p:last-of-type {
  max-width: 690px;
  margin: 31px 0 0;
  color: #c2c9d2;
  font-size: 19px;
}

.method-hero-visual {
  display: grid;
  gap: 14px;
  transform: rotate(-2deg);
}

.method-hero-visual > div {
  display: grid;
  min-height: 145px;
  padding: 26px 30px;
  align-items: center;
  grid-template-columns: auto 1fr;
  column-gap: 22px;
  background: rgba(255, 255, 255, 0.052);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.method-hero-visual > div:nth-child(2) {
  margin-left: 35px;
}

.method-hero-visual span {
  grid-row: 1 / 3;
  color: var(--orange);
  font-size: 40px;
  font-weight: 950;
}

.method-hero-visual strong {
  color: var(--white);
  font-size: 24px;
}

.method-hero-visual small {
  color: #9fa8b4;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.method-intro {
  background: #f4f3ed;
}

.method-intro-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 95px;
}

.method-intro h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.method-intro-grid > div:last-child p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.method-intro-grid > div:last-child p + p {
  margin-top: 18px;
}

.method-intro-grid .method-scope-note {
  padding: 18px 20px;
  color: #353b44;
  background: #fff;
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  line-height: 1.55;
}

.method-detail-section {
  color: var(--white);
  background: #090c10;
}

.method-detail-list {
  display: grid;
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.method-detail-list article {
  display: grid;
  padding: 42px 0;
  align-items: start;
  grid-template-columns: 100px 0.72fr 1.28fr;
  gap: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.method-detail-number {
  color: var(--orange);
  font-size: 47px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.method-detail-list h3 {
  margin: 3px 0 0;
  color: var(--white);
  font-size: 29px;
  line-height: 1.1;
}

.method-detail-list article > p {
  max-width: 650px;
  margin: 0;
  color: #abb4bf;
}

.profts-focus {
  background: #efeee8;
}

.profts-focus-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.profts-focus h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.profts-focus-grid > div:first-child > p {
  margin: 25px 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.profts-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #cfd3d8;
}

.profts-steps li {
  display: grid;
  padding: 25px 0;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-bottom: 1px solid #cfd3d8;
}

.profts-steps li > span {
  color: #a34b10;
  font-size: 13px;
  font-weight: 900;
}

.profts-steps strong {
  font-size: 18px;
}

.profts-steps p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.method-result {
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 20%, rgba(249, 115, 22, 0.1), transparent 25%),
    #ebeae3;
}

.method-result .eyebrow {
  color: #a85014;
}

.method-result-inner blockquote {
  max-width: 900px;
  margin: 0;
  padding-left: 25px;
  color: var(--ink);
  border-left: 4px solid var(--orange);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.48;
}

.method-result .text-link {
  color: var(--ink);
  border-bottom-color: rgba(17, 24, 39, 0.28);
}

.method-result-inner > div {
  display: flex;
  margin-top: 42px;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.rates-hero {
  padding: 112px 0 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(249, 115, 22, 0.17), transparent 28%),
    #080a0d;
}

.rates-hero-inner {
  max-width: 1050px;
}

.rates-hero h1 {
  margin: 0;
  font-size: clamp(61px, 7vw, 100px);
  font-weight: 950;
  letter-spacing: -0.067em;
  line-height: 0.95;
}

.rates-hero h1 strong {
  display: block;
  color: var(--orange);
  font-weight: inherit;
}

.rates-hero-inner > p:last-of-type {
  max-width: 720px;
  margin: 32px 0 0;
  color: #c4cbd4;
  font-size: 19px;
}

.rates-hero-links {
  display: flex;
  margin-top: 38px;
  flex-wrap: wrap;
  gap: 14px;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.19);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}

.small-group-pricing {
  color: var(--white);
  background:
    radial-gradient(circle at 6% 20%, rgba(249, 115, 22, 0.12), transparent 25%),
    #090c10;
}

.small-group-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 85px;
}

.small-group-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.small-group-heading > p {
  margin: 0 0 6px;
  color: #b2bac5;
  font-size: 16px;
}

.small-group-price-grid {
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.small-group-price-grid article {
  position: relative;
  display: flex;
  min-height: 390px;
  padding: 34px 30px 30px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.047);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.small-group-price-grid .small-group-featured {
  background: rgba(249, 115, 22, 0.07);
  border-color: rgba(249, 115, 22, 0.48);
}

.group-count {
  color: #f5b386;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.group-price {
  display: grid;
  margin: 55px 0 12px;
}

.group-price strong {
  font-size: 59px;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
}

.group-price span {
  margin-top: 4px;
  color: #aeb6c1;
  font-size: 13px;
  font-weight: 700;
}

.small-group-price-grid article > p:last-of-type {
  margin: 0 0 30px;
  color: #aeb6c1;
  font-size: 14px;
}

.small-group-price-grid .button {
  width: 100%;
  margin-top: auto;
}

.small-group-note {
  margin: 23px 0 0;
  color: #919aa6;
  font-size: 12px;
  text-align: center;
}

.collective-pricing {
  background: #efeee8;
}

.collective-pricing-grid {
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.collective-price-card {
  padding: 34px 32px 30px;
  background: var(--white);
  border: 1px solid #dcdfe3;
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.065);
}

.collective-price-card-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 6%, rgba(249, 115, 22, 0.17), transparent 28%),
    #10141a;
  border-color: #272d36;
}

.collective-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}

.collective-card-heading .card-label {
  margin: 0 0 7px;
}

.collective-card-heading h3 {
  margin: 0;
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1;
}

.collective-mark {
  padding: 8px 10px;
  color: #9f470d;
  background: #fff0e5;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.collective-price-card-dark .collective-mark {
  color: #ffc69f;
  background: rgba(249, 115, 22, 0.12);
}

.collective-card-intro {
  max-width: 560px;
  min-height: 54px;
  margin: 23px 0 28px;
  color: var(--ink-soft);
  font-size: 14px;
}

.collective-price-card-dark .collective-card-intro {
  color: #b9c1cb;
}

.collective-price-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e0e3e6;
}

.collective-price-card-dark .collective-price-list {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.collective-price-card > .button {
  margin-top: 26px;
}

.collective-price-list li {
  display: flex;
  min-height: 75px;
  padding: 16px 0;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid #e0e3e6;
}

.collective-price-card-dark .collective-price-list li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.collective-price-list li > span {
  display: grid;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.collective-price-card-dark .collective-price-list li > span {
  color: var(--white);
}

.collective-price-list small {
  margin-top: 3px;
  color: #8b939d;
  font-size: 11px;
  font-weight: 650;
}

.collective-price-list strong {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.035em;
  text-align: right;
}

.collective-price-list del {
  margin-right: 5px;
  color: #8b939d;
  font-size: 14px;
  font-weight: 700;
}

.dual-membership-card {
  display: grid;
  margin-top: 20px;
  padding: 38px 40px;
  align-items: center;
  grid-template-columns: 1fr auto auto;
  gap: 45px;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(249, 115, 22, 0.12), transparent 48%),
    #090c10;
  border: 1px solid #272d36;
  border-radius: 24px;
}

.dual-membership-card h3 {
  margin: 0;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 950;
  letter-spacing: -0.052em;
  line-height: 1;
}

.dual-membership-card > div:first-child > p:last-child {
  max-width: 650px;
  margin: 15px 0 0;
  color: #aeb6c1;
  font-size: 14px;
}

.dual-membership-price {
  display: grid;
  min-width: 185px;
}

.dual-membership-price > span {
  color: #9ba4af;
  font-size: 12px;
  font-weight: 700;
}

.dual-membership-price del {
  margin-left: 4px;
}

.dual-membership-price strong {
  color: var(--orange);
  font-size: 58px;
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 1;
}

.dual-membership-price small {
  margin-top: 6px;
  color: #e2e5e9;
  font-size: 11px;
}

.dual-membership-card .button {
  white-space: nowrap;
}

.collective-pricing-footer {
  display: flex;
  margin-top: 25px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.collective-pricing-footer p {
  max-width: 690px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.collective-pricing-footer .button {
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero h1 {
    font-size: clamp(54px, 7vw, 76px);
  }

  .outdoor-grid,
  .coach-grid,
  .location-grid,
  .appointment-grid {
    gap: 55px;
  }

  .coach-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .client-hero-inner {
    gap: 50px;
  }
}

@media (max-width: 850px) {
  .section {
    padding: 82px 0;
  }

  .strong-concept-page .concept-session-section {
    padding-bottom: 62px;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
    background-position: 54% center;
  }

  .outdoor-grid,
  .coach-grid,
  .location-grid,
  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: min(680px, 84%);
  }

  .service-grid,
  .concept-grid {
    grid-template-columns: 1fr;
  }

  .home-review-track .review-card {
    flex-basis: calc(50% - 10px);
  }

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

  .outdoor-quote {
    max-width: none;
  }

  .coach-photo {
    min-height: 610px;
    max-width: 520px;
    margin-inline: auto;
  }

  .coach-badge {
    right: 0;
  }

  .spot-video-frame {
    min-height: 430px;
  }

  .testimonial-videos {
    gap: 18px;
  }

  .appointment-copy {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .client-hero {
    padding: 72px 0 82px;
  }

  .client-hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .portal-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-frame {
    height: 820px;
    min-height: 0;
  }
}

@media (max-width: 580px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .header-inner {
    width: calc(100% - 24px);
    min-height: 72px;
  }

  .brand {
    width: auto;
  }

  .brand-full {
    display: none;
  }

  .brand-compact {
    display: block;
  }

  .mobile-menu nav {
    top: 72px;
    right: 12px;
    left: 12px;
  }

  .hero {
    padding: 54px 0 50px;
    background:
      linear-gradient(90deg, rgba(5, 7, 10, 0.94), rgba(5, 7, 10, 0.66)),
      linear-gradient(180deg, rgba(5, 7, 10, 0.18) 28%, rgba(5, 7, 10, 0.84) 100%),
      url("/assets/hero-groupe-optimal-form-640.webp") 57% center / cover no-repeat;
  }

  .hero-grid {
    min-height: 640px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-buttons .text-link {
    align-self: flex-start;
  }

  .urban-concept-page .hero-buttons .concept-program-logo-urban {
    margin: 8px 0 0;
    align-self: flex-start;
  }

  .strong-concept-page .hero-buttons .concept-program-logo-strong {
    margin: 8px 0 0;
    align-self: flex-start;
  }

  .hero-points {
    display: grid;
    gap: 11px;
  }

  .hero-location {
    padding: 12px 15px;
  }

  .trial-badge {
    margin-top: 8px;
    margin-left: 0;
  }

  .section-heading h2,
  .outdoor-copy h2,
  .coach-copy h2,
  .location-section h2,
  .appointment-copy h2 {
    font-size: 41px;
  }

  .service-card {
    padding: 34px 27px;
    border-radius: 22px;
  }

  .service-number {
    font-size: 56px;
  }

  .service-card h3,
  .concept-card h3 {
    font-size: 34px;
  }

  .benefit-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .outdoor-quote {
    padding: 50px 30px 36px;
    border-radius: 24px 24px 24px 70px;
  }

  .outdoor-quote p {
    font-size: 24px;
  }

  .home-review-carousel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 7px;
  }

  .home-review-arrow {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .home-review-track .review-card {
    flex-basis: 90%;
  }

  .testimonial-videos {
    grid-template-columns: 1fr;
  }

  .concept-image {
    height: 310px;
  }

  .concept-content {
    padding: 30px 26px 34px;
  }

  .concept-content > p:not(.card-label) {
    min-height: auto;
  }

  .coach-photo {
    min-height: 510px;
  }

  .coach-photo img {
    right: 0;
    max-height: 530px;
  }

  .coach-photo-backdrop {
    inset: 30px 0 0 18px;
    border-radius: 22px 22px 22px 80px;
  }

  .coach-badge {
    bottom: 20px;
  }

  .location-grid {
    gap: 45px;
  }

  .spot-video-frame {
    min-height: 350px;
    border-radius: 24px 24px 70px;
  }

  .appointment-form {
    padding: 29px 22px;
    border-radius: 22px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-main {
    padding-top: 52px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .client-hero {
    padding: 58px 0 68px;
  }

  .client-hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .client-hero-copy p {
    font-size: 16px;
  }

  .client-portal-section {
    padding: 52px 0 72px;
  }

  .portal-external-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .portal-frame {
    height: 740px;
    border-radius: 16px;
  }

  .portal-help {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 1100px) {
  .offer-hero-grid {
    gap: 32px;
  }

  .offer-hero h1 {
    font-size: clamp(56px, 7vw, 78px);
  }

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

  .offer-facts li:nth-child(2) {
    border-right: 0;
  }

  .offer-facts li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .offer-facts li:nth-child(3) {
    padding-left: 0;
  }

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

  .offer-final-cta-inner {
    gap: 55px;
  }
}

@media (max-width: 850px) {
  .offer-hero {
    min-height: auto;
    padding: 62px 0 0;
  }

  .offer-hero-grid,
  .offer-audience-grid,
  .offer-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .private-format-grid {
    grid-template-columns: 1fr;
  }

  .offer-hero-grid {
    min-height: 0;
    gap: 38px;
  }

  .offer-back-link {
    margin-bottom: 30px;
  }

  .offer-hero-media {
    min-height: 570px;
    max-width: 570px;
    width: 100%;
    margin-inline: auto;
  }

  .offer-audience-grid {
    align-items: start;
    gap: 30px;
  }

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

  .method-steps article {
    min-height: 0;
    grid-template-columns: auto 1fr;
    align-items: start;
    align-content: start;
    gap: 28px;
  }

  .price-card {
    min-height: 0;
  }

  .offer-final-cta-inner {
    align-items: start;
    gap: 28px;
  }
}

@media (max-width: 580px) {
  .offer-hero {
    padding-top: 46px;
  }

  .offer-hero h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .offer-hero-lead {
    font-size: 17px;
  }

  .offer-facts {
    margin-top: 32px;
  }

  .offer-facts li {
    padding: 14px 10px;
  }

  .offer-hero-media {
    min-height: 470px;
  }

  .offer-hero-media img {
    max-height: 500px;
  }

  .offer-hero-ring {
    top: 20%;
    right: 7%;
    width: 300px;
    height: 300px;
    border-width: 48px;
  }

  .offer-coach-label {
    right: 0;
    bottom: 14px;
  }

  .offer-audience h2,
  .offer-final-cta h2 {
    font-size: 41px;
  }

  .objective-grid {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .private-format-grid {
    margin-top: 46px;
  }

  .private-format-card {
    min-height: 0;
    padding: 29px 25px;
  }

  .private-format-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .objective-grid article {
    min-height: 0;
  }

  .method-steps {
    margin-top: 42px;
  }

  .method-steps article {
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .method-steps article > span {
    font-size: 38px;
  }

  .price-card {
    padding: 34px 25px 27px;
  }

  .price strong {
    font-size: 48px;
  }

  .offer-final-cta {
    padding: 72px 0;
  }
}

@media (max-width: 1100px) {
  .signature-method-heading,
  .small-group-heading {
    gap: 45px;
  }

  .method-hero-grid {
    gap: 45px;
  }

  .method-hero h1,
  .rates-hero h1 {
    font-size: clamp(56px, 7vw, 80px);
  }

  .method-detail-list article {
    grid-template-columns: 75px 0.75fr 1.25fr;
    gap: 25px;
  }
}

@media (max-width: 850px) {
  .signature-method-heading,
  .home-method-teaser-grid,
  .method-intro-grid,
  .profts-focus-grid,
  .small-group-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .method-pillars,
  .small-group-price-grid {
    grid-template-columns: 1fr;
  }

  .method-pillars article {
    min-height: 0;
  }

  .method-pillars h3 {
    margin-top: 38px;
  }

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

  .offer-route-card {
    padding: 48px 42px;
  }

  .method-hero {
    min-height: auto;
    padding: 72px 0 82px;
  }

  .method-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .method-hero-visual {
    max-width: 650px;
    margin-top: 25px;
    transform: none;
  }

  .method-detail-list article {
    grid-template-columns: 70px 1fr;
  }

  .method-detail-list article > p {
    grid-column: 2;
  }

  .rates-hero {
    padding: 86px 0 88px;
  }

  .small-group-price-grid article {
    min-height: 0;
  }

  .group-price {
    margin-top: 42px;
  }

  .collective-pricing-grid,
  .dual-membership-card {
    grid-template-columns: 1fr;
  }

  .dual-membership-card {
    align-items: start;
    gap: 28px;
  }

  .dual-membership-card .button {
    justify-self: start;
  }
}

@media (max-width: 580px) {
  .signature-method-heading h2,
  .home-method-teaser h2,
  .method-intro h2,
  .profts-focus h2,
  .small-group-heading h2 {
    font-size: 41px;
  }

  .method-pillars article {
    padding: 29px 25px;
  }

  .signature-method-footer {
    margin-top: 28px;
  }

  .offer-route-card {
    padding: 38px 27px;
    border-radius: 23px;
  }

  .offer-route-card h2 {
    font-size: 40px;
  }

  .method-hero {
    padding-top: 58px;
  }

  .method-hero h1,
  .rates-hero h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .method-hero-grid > div:first-child > p:last-of-type,
  .rates-hero-inner > p:last-of-type {
    font-size: 17px;
  }

  .method-hero-visual > div {
    min-height: 120px;
    padding: 21px 20px;
  }

  .method-hero-visual > div:nth-child(2) {
    margin-left: 0;
  }

  .method-hero-visual span {
    font-size: 33px;
  }

  .method-hero-visual strong {
    font-size: 20px;
  }

  .method-detail-list article {
    padding: 32px 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .method-detail-list article > p {
    grid-column: 1;
  }

  .method-detail-number {
    font-size: 40px;
  }

  .method-result-inner blockquote {
    padding-left: 18px;
    font-size: 20px;
  }

  .method-result-inner > div,
  .rates-hero-links {
    align-items: stretch;
    flex-direction: column;
  }

  .method-result-inner .button,
  .rates-hero-links .button {
    width: 100%;
  }

  .small-group-price-grid article {
    padding: 30px 25px 26px;
  }

  .collective-price-card {
    padding: 29px 24px 25px;
  }

  .collective-card-heading {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 15px;
  }

  .collective-card-intro {
    min-height: 0;
  }

  .collective-price-list li {
    align-items: flex-start;
  }

  .collective-price-list strong {
    font-size: 19px;
  }

  .dual-membership-card {
    padding: 31px 25px;
  }

  .dual-membership-price strong {
    font-size: 53px;
  }

  .dual-membership-card .button {
    width: 100%;
    white-space: normal;
  }

  .collective-pricing-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .collective-pricing-footer .button {
    width: 100%;
  }

  .group-price strong {
    font-size: 53px;
  }
}

.concept-offer-hero {
  position: relative;
  min-height: 700px;
  padding: 78px 0 72px;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.urban-concept-page .concept-offer-hero {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.92) 0%, rgba(5, 7, 10, 0.72) 48%, rgba(5, 7, 10, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.72)),
    url("/assets/urban-hero-groupe-coucher-soleil-1920.webp") center 53% / cover no-repeat;
}

.strong-concept-page .concept-offer-hero {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.97) 0%, rgba(5, 7, 10, 0.83) 48%, rgba(5, 7, 10, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.68)),
    url("/assets/strong-body-factory.webp") center 45% / cover no-repeat;
}

.concept-offer-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
}

.concept-offer-hero .offer-back-link {
  margin-bottom: 40px;
}

.concept-offer-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(62px, 7.6vw, 108px);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.93;
}

.concept-offer-hero h1 strong {
  display: block;
  color: var(--orange);
  font-weight: inherit;
}

.concept-offer-lead {
  max-width: 720px;
  margin: 31px 0 0;
  color: #d0d5dc;
  font-size: 19px;
}

.concept-offer-facts {
  display: grid;
  max-width: 820px;
  margin: 48px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  background: rgba(10, 13, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.concept-offer-facts li {
  display: grid;
  min-height: 96px;
  padding: 22px 24px;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.concept-offer-facts li:last-child {
  border-right: 0;
}

.concept-offer-facts strong {
  color: var(--white);
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.concept-offer-facts span {
  margin-top: 3px;
  color: #aeb6c1;
  font-size: 12px;
}

.concept-overview {
  background: #f4f3ed;
}

.concept-overview-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 95px;
}

.concept-overview h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(43px, 5vw, 70px);
  font-weight: 950;
  letter-spacing: -0.058em;
  line-height: 1.01;
}

.concept-overview-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.concept-overview-copy p + p {
  margin-top: 18px;
}

.concept-benefit-grid {
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 15px;
}

.concept-benefit-grid article {
  min-height: 250px;
  padding: 29px 26px;
  background: var(--white);
  border: 1px solid #dfe2e6;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.055);
}

.concept-benefit-grid article > span {
  color: var(--orange);
  font-size: 35px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.concept-benefit-grid h3 {
  margin: 48px 0 10px;
  font-size: 22px;
}

.concept-benefit-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.concept-session-section {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(249, 115, 22, 0.13), transparent 26%),
    #090c10;
}

.strong-concept-page .concept-session-section {
  padding-bottom: 80px;
}

.concept-program-logo {
  display: block;
  object-fit: contain;
  object-position: left center;
  margin: 20px 0 18px;
}

.concept-program-logo-urban {
  width: min(330px, 72vw);
  max-height: 125px;
}

.urban-concept-page .hero-buttons .concept-program-logo-urban {
  width: 188px;
  max-height: 72px;
  margin: 0 0 0 -14px;
}

.concept-program-logo-strong {
  width: min(270px, 64vw);
  max-height: 100px;
}

.strong-concept-page .hero-buttons .concept-program-logo-strong {
  width: 164px;
  max-height: 76px;
  margin: 0 0 0 -14px;
}

.concept-session-section .section-heading > p:last-child {
  color: #aeb6c1;
}

.concept-media-block {
  margin-top: 76px;
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.concept-media-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 50px;
  align-items: end;
}

.concept-media-heading .eyebrow {
  margin-bottom: 0;
}

.concept-media-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 55px);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.concept-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-top: 34px;
  background: #050608;
  border-radius: 22px;
}

.concept-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.concept-photo-grid {
  display: grid;
  margin-top: 18px;
  gap: 18px;
}

.concept-photo-grid-urban {
  grid-template-columns: 1.15fr 0.85fr 1fr;
}

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

.concept-photo-grid img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  border-radius: 16px;
}

.concept-photo-grid-strong img {
  height: 350px;
  object-position: center 68%;
}

.concept-session-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.concept-session-grid article {
  min-height: 275px;
  padding: 31px 28px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
}

.concept-session-grid article > span {
  color: var(--orange);
  font-size: 40px;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.concept-session-grid h3 {
  margin: 53px 0 11px;
  font-size: 22px;
}

.concept-session-grid p {
  margin: 0;
  color: #aeb6c1;
  font-size: 14px;
}

.urban-concept-page .concept-session-grid .concept-session-step {
  min-height: 0;
  padding: 0 0 26px;
  overflow: hidden;
}

.concept-step-photo {
  display: block;
  width: 100%;
  height: auto;
}

.urban-concept-page .concept-session-grid .concept-session-step > span {
  display: block;
  margin: 20px 26px 0;
}

.urban-concept-page .concept-session-grid .concept-session-step h3 {
  margin: 12px 26px 10px;
}

.urban-concept-page .concept-session-grid .concept-session-step p {
  margin: 0 26px;
}

.movement-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.movement-card {
  position: relative;
  min-width: 0;
  min-height: 335px;
  overflow: hidden;
  background: #12161c;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  isolation: isolate;
}

.movement-card::after {
  position: absolute;
  z-index: 1;
  inset: 40% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.92));
  pointer-events: none;
}

.movement-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.movement-card:hover > img {
  transform: scale(1.035);
}

.movement-card-caption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 19px;
  left: 20px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.movement-card-caption > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.movement-card-caption h3 {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1.15;
}

.movement-card-placeholder {
  display: grid;
  place-items: stretch;
  background:
    radial-gradient(circle at 80% 15%, rgba(249, 115, 22, 0.24), transparent 28%),
    linear-gradient(145deg, #1b212a, #0c0f14);
}

.movement-placeholder-visual {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.06);
  font-size: 150px;
  font-weight: 950;
  line-height: 1;
}

.movement-card-placeholder > small {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  color: #d7dce3;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.movement-note {
  max-width: 780px;
  margin: 25px 0 0;
  color: #949daa;
  font-size: 13px;
}

.concept-offer-strip {
  padding: 90px 0;
  background: #ebeae3;
}

.concept-offer-strip-inner {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 70px;
}

.concept-offer-strip h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.concept-offer-strip-inner > div:first-child > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.concept-offer-strip-actions {
  display: grid;
  justify-items: start;
  gap: 18px;
}

#urban,
#strong,
#abonnement-double {
  scroll-margin-top: 110px;
}

@media (min-width: 1181px) {
  .desktop-nav .nav-submenu:not([open]) > .nav-submenu-panel,
  .desktop-nav .nav-submenu-child:not([open]) > .nav-submenu-child-panel {
    display: none;
  }

  .desktop-nav .nav-submenu:hover > .nav-submenu-panel,
  .desktop-nav .nav-submenu-child:hover > .nav-submenu-child-panel {
    display: grid !important;
  }

  .desktop-nav .nav-submenu:hover > summary {
    color: var(--white);
  }

  .desktop-nav .nav-submenu:hover > summary::after {
    transform: translateY(2px) rotate(225deg);
  }

  .desktop-nav .nav-submenu-child > summary:hover {
    color: var(--white);
    background: rgba(249, 115, 22, 0.13);
  }

  .desktop-nav .nav-submenu-child:hover > summary::after {
    transform: rotate(135deg);
  }
}

@media (max-width: 1000px) {
  .concept-overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .concept-media-heading,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .concept-offer-strip-inner {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 760px) {
  .concept-offer-hero {
    min-height: auto;
    padding: 58px 0 65px;
  }

  .urban-concept-page .concept-offer-hero {
    background:
      linear-gradient(90deg, rgba(5, 7, 10, 0.94) 0%, rgba(5, 7, 10, 0.76) 70%, rgba(5, 7, 10, 0.45) 100%),
      linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.76)),
      url("/assets/urban-seance-saut-720.webp") 58% center / cover no-repeat;
  }

  .strong-concept-page .concept-offer-hero {
    background:
      linear-gradient(90deg, rgba(5, 7, 10, 0.94) 0%, rgba(5, 7, 10, 0.76) 70%, rgba(5, 7, 10, 0.45) 100%),
      linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.76)),
      url("/assets/strong-pont-720.webp") 55% center / cover no-repeat;
  }

  .concept-offer-hero h1 {
    font-size: clamp(49px, 14vw, 68px);
  }

  .concept-offer-lead {
    font-size: 17px;
  }

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

  .concept-offer-facts li {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .concept-offer-facts li:last-child {
    border-bottom: 0;
  }

  .concept-benefit-grid,
  .concept-session-grid {
    grid-template-columns: 1fr;
  }

  .concept-benefit-grid article,
  .concept-session-grid article {
    min-height: 0;
  }

  .concept-benefit-grid h3,
  .concept-session-grid h3 {
    margin-top: 32px;
  }

}

@media (max-width: 480px) {
  .concept-overview h2,
  .concept-offer-strip h2 {
    font-size: 40px;
  }

  .concept-benefit-grid {
    margin-top: 48px;
  }

  .movement-gallery {
    grid-template-columns: 1fr;
  }

  .concept-offer-strip-actions,
  .concept-offer-strip-actions .button {
    width: 100%;
  }

  .concept-media-block {
    margin-top: 54px;
    padding-top: 52px;
  }

  .concept-photo-grid-urban,
  .concept-photo-grid-strong {
    grid-template-columns: 1fr;
  }

  .concept-photo-grid img {
    height: 260px;
  }

  .concept-photo-grid-strong img {
    height: 300px;
    object-position: center 68%;
  }

  .press-partners {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .press-partners a {
    width: 100%;
  }
}

@media (max-width: 850px) {
  .footer-layout {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 0.65fr);
    gap: 28px;
  }

  .footer-layout .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-reviews {
    grid-column: 1;
  }

  .reviews-grid,
.press-grid {
    grid-template-columns: 1fr 1fr;
  }

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

.press-partners {
  display: flex;
  margin-top: 52px;
  align-items: center;
  justify-content: center;
  gap: 46px;
}

.press-partners a {
  display: grid;
  width: min(220px, 40vw);
  height: 92px;
  padding: 14px 22px;
  place-items: center;
  background: var(--white);
  border: 1px solid #dfe2e6;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.press-partners a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.11);
}

.press-partners img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

@media (max-width: 580px) {
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .footer-layout .footer-brand,
  .footer-reviews {
    grid-column: auto;
  }

  .footer-review-track blockquote {
    flex-basis: 88%;
  }

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

  .reviews-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .reviews-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .press-hero {
    padding: 104px 0 72px;
  }

  .press-hero > .container > p:last-child {
    font-size: 16px;
  }

  .press-card {
    min-height: 245px;
  }

  .press-play {
    margin: 34px 0;
  }
}

.team-page {
  background: var(--paper);
}

.team-hero {
  overflow: hidden;
  padding: 118px 0 122px;
  color: #fff;
  background:
    radial-gradient(circle at 83% 18%, rgba(255, 111, 18, 0.2), transparent 27rem),
    linear-gradient(132deg, #050608 0%, #101820 100%);
}

.team-hero h1 {
  max-width: 940px;
  margin: 18px 0 24px;
  font-size: clamp(52px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.team-hero h1 strong {
  color: var(--orange);
}

.team-hero > .container > p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.55;
}

.team-intro {
  padding: 104px 0;
  background: #ebeae3;
}

.team-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 80px;
  align-items: end;
}

.team-intro h2,
.client-section-heading h2 {
  margin: 17px 0 0;
  color: #111a2a;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.team-intro-grid > p {
  max-width: 610px;
  margin: 0;
  color: #4f5965;
  font-size: 20px;
  line-height: 1.65;
}

.team-profiles {
  padding: 104px 0;
  color: #fff;
  background: #080b0f;
}

.team-profile-list {
  display: grid;
  gap: 34px;
}

.team-profile {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  background: #10151b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
}

.team-profile-quentin .team-profile-photo {
  order: 2;
}

.team-profile-photo {
  min-height: 500px;
}

.team-profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-profile-regis .team-profile-photo img {
  object-position: center top;
}

.team-profile-quentin .team-profile-photo img {
  object-position: center 36%;
}

.team-profile-content {
  padding: 58px clamp(32px, 5vw, 76px);
}

.team-profile-role {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-profile h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.team-profile-content > p:not(.team-profile-role) {
  max-width: 690px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.team-credentials {
  display: grid;
  gap: 13px;
  padding: 25px 0 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.team-credentials li {
  position: relative;
  padding-left: 19px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.45;
}

.team-credentials li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 2px;
  content: "";
  background: var(--orange);
}

.team-cta {
  padding: 92px 0;
  background: #ebeae3;
}

.team-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
}

.team-cta h2 {
  max-width: 690px;
  margin: 16px 0 0;
  color: #111a2a;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.client-schedule-section {
  padding: 104px 0;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 111, 18, 0.14), transparent 26rem),
    #080b0f;
}

.client-section-heading {
  max-width: 740px;
}

.client-schedule-section .client-section-heading h2 {
  color: #fff;
}

.client-section-heading > p:last-child {
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.55;
}

.client-schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.client-schedule-card {
  padding: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
}

.client-schedule-card-strong {
  background: rgba(255, 111, 18, 0.1);
}

.client-schedule-card h3 {
  margin: 11px 0 27px;
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.client-schedule-list,
.client-rules-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.client-schedule-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.77);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.client-schedule-list strong {
  color: #fff;
}

.client-planning-update {
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.client-info-section {
  padding: 104px 0;
  background: #ebeae3;
}

.client-info-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  margin-top: 47px;
}

.client-welcome-card,
.client-rules-card {
  padding: clamp(30px, 4vw, 52px);
  border-radius: 20px;
}

.client-welcome-card {
  color: #111a2a;
  background: var(--orange);
}

.client-welcome-card h3,
.client-rules-card h3 {
  margin: 13px 0 19px;
  font-size: clamp(30px, 3.2vw, 45px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.client-welcome-card > p:last-child {
  max-width: 440px;
  margin: 0;
  font-size: 17px;
  line-height: 1.58;
}

.client-rules-card {
  color: #111a2a;
  background: #fff;
}

.client-rules-list {
  display: grid;
  gap: 20px;
}

.client-rules-list li {
  position: relative;
  padding-left: 21px;
  color: #4c5663;
  line-height: 1.58;
}

.client-rules-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 2px;
  content: "";
  background: var(--orange);
}

.client-rules-list a {
  display: inline-block;
  margin-top: 5px;
  color: #111a2a;
  font-weight: 800;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

@media (max-width: 850px) {
  .team-intro-grid,
  .client-info-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .team-profile {
    grid-template-columns: 1fr;
  }

  .team-profile-quentin .team-profile-photo {
    order: 0;
  }

  .team-profile-photo {
    min-height: 385px;
  }

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

@media (max-width: 680px) {
  .team-hero,
  .team-intro,
  .team-profiles,
  .team-cta,
  .client-schedule-section,
  .client-info-section {
    padding: 72px 0;
  }

  .team-hero h1 {
    font-size: clamp(47px, 15vw, 65px);
  }

  .team-hero > .container > p:last-child,
  .team-intro-grid > p {
    font-size: 17px;
  }

  .team-profile-photo {
    min-height: 305px;
  }

  .team-profile-content {
    padding: 35px 25px 39px;
  }

  .client-schedule-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .client-schedule-card,
  .client-welcome-card,
  .client-rules-card {
    padding: 29px 24px;
  }

  .client-info-grid {
    margin-top: 34px;
  }
}

.legal-page {
  background: #ebeae3;
}

.legal-hero {
  padding: 108px 0 102px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 111, 18, 0.2), transparent 26rem),
    #080b0f;
}

.legal-hero h1 {
  margin: 17px 0 0;
  font-size: clamp(52px, 7vw, 90px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.legal-hero h1 strong {
  color: var(--orange);
}

.legal-content {
  padding: 104px 0;
  background: #ebeae3;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
  align-items: start;
}

.legal-layout > div:first-child {
  position: sticky;
  top: 110px;
}

.legal-layout > div:first-child h2 {
  margin: 16px 0 0;
  color: #111a2a;
  font-size: clamp(39px, 4.5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.legal-copy {
  display: grid;
  gap: 31px;
}

.legal-copy section {
  padding: 0 0 30px;
  border-bottom: 1px solid #cfd1cd;
}

.legal-copy section:last-child {
  border-bottom: 0;
}

.legal-copy h2 {
  margin: 0 0 12px;
  color: #111a2a;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.legal-copy p {
  max-width: 720px;
  margin: 0;
  color: #4d5865;
  line-height: 1.7;
}

.legal-copy a {
  color: #111a2a;
  font-weight: 800;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.footer-cookie-settings {
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: min(560px, calc(100% - 44px));
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 26px;
  color: #fff;
  background: rgba(9, 12, 16, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.cookie-banner-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner-copy .cookie-banner-title {
  margin-bottom: 7px;
  color: #fff;
  font-size: 16px;
  font-weight: 850;
}

.cookie-banner-copy a {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.cookie-banner-actions {
  display: grid;
  align-content: end;
  gap: 9px;
}

.cookie-banner-actions .button {
  min-width: 112px;
  min-height: 41px;
  padding: 10px 16px;
  font-size: 13px;
}

.embed-consent-notice {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 13px;
  padding: 25px;
  color: #fff;
  text-align: center;
  background: rgba(8, 11, 15, 0.94);
}

.embed-consent-notice p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.embed-consent-notice button {
  padding: 10px 14px;
  color: #111a2a;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  background: var(--orange);
  border: 0;
  border-radius: 999px;
}

@media (max-width: 850px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-layout > div:first-child {
    position: static;
  }
}

@media (max-width: 620px) {
  .legal-hero,
  .legal-content {
    padding: 72px 0;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .cookie-banner-actions {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner-actions .button {
    width: 100%;
  }
}

.seo-page {
  background: #ebeae3;
}

.seo-hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  padding: 122px 0 96px;
  color: #fff;
  background-color: #080b0f;
  background-position: center;
  background-size: cover;
}

.seo-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(6, 9, 13, 0.93) 0%, rgba(6, 9, 13, 0.72) 48%, rgba(6, 9, 13, 0.26) 100%);
}

.seo-hero-private {
  background-image: url("/assets/hero-groupe-optimal-form-1920.webp");
}

.seo-hero-collective {
  background-image: url("/assets/coaching-groupe-prado-1280.webp");
}

.seo-hero .container {
  position: relative;
  z-index: 1;
}

.seo-hero h1 {
  max-width: 900px;
  margin: 18px 0 25px;
  font-size: clamp(54px, 7.3vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.seo-hero h1 strong {
  color: var(--orange);
}

.seo-hero p:not(.eyebrow) {
  max-width: 630px;
  margin: 0 0 33px;
  color: rgba(255, 255, 255, 0.81);
  font-size: 19px;
  line-height: 1.58;
}

.seo-intro {
  padding: 104px 0;
  background: #ebeae3;
}

.seo-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 1.04fr);
  gap: 80px;
  align-items: end;
}

.seo-intro h2,
.seo-cta h2 {
  margin: 17px 0 0;
  color: #111a2a;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.97;
  letter-spacing: -0.07em;
}

.seo-intro-grid > p {
  max-width: 620px;
  margin: 0;
  color: #4d5865;
  font-size: 20px;
  line-height: 1.64;
}

.seo-coach-section {
  padding: 100px 0;
  color: #fff;
  background: #080b0f;
}

.seo-coach-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: center;
}

.seo-coach-grid > img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}

.seo-coach-grid h2,
.seo-program-card h2 {
  margin: 17px 0 21px;
  font-size: clamp(39px, 4.6vw, 65px);
  line-height: 0.97;
  letter-spacing: -0.066em;
}

.seo-coach-grid p:not(.eyebrow),
.seo-program-card p:not(.card-label) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.64;
}

.seo-coach-grid ul,
.seo-program-card ul {
  display: grid;
  gap: 11px;
  padding: 26px 0;
  margin: 28px 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.seo-coach-grid li,
.seo-program-card li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.82);
}

.seo-coach-grid li::before,
.seo-program-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 2px;
  content: "";
  background: var(--orange);
}

.seo-formats {
  padding: 100px 0;
  background: #ebeae3;
}

.seo-format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 47px;
}

.seo-format-grid article {
  padding: 42px;
  background: #fff;
  border: 1px solid #d8dad7;
  border-radius: 20px;
}

.seo-format-grid h3 {
  margin: 12px 0 16px;
  color: #111a2a;
  font-size: clamp(30px, 3.4vw, 45px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.seo-format-grid p:not(.card-label) {
  min-height: 80px;
  margin: 0 0 26px;
  color: #52606d;
  line-height: 1.6;
}

.seo-programs {
  padding: 100px 0;
  background: #080b0f;
}

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

.seo-program-card {
  overflow: hidden;
  color: #fff;
  background: #131a22;
  border-radius: 22px;
}

.seo-program-card-dark {
  background: #202326;
}

.seo-program-card > img {
  display: block;
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.seo-program-card > div {
  padding: 41px;
}

.seo-program-card h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.seo-program-card .button {
  margin-top: 4px;
}

.seo-detail-section,
.seo-process-section,
.seo-schedule-section {
  padding: 100px 0;
  background: #ebeae3;
}

.seo-detail-section .section-heading,
.seo-process-section .section-heading,
.seo-schedule-section .section-heading {
  max-width: 880px;
}

.seo-detail-grid,
.seo-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

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

.seo-detail-grid article,
.seo-process-grid article,
.seo-schedule-grid article {
  padding: 34px;
  background: #fff;
  border: 1px solid #d8dad7;
  border-radius: 20px;
}

.seo-detail-grid article > span,
.seo-process-grid article > span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.seo-detail-grid h3,
.seo-process-grid h3,
.seo-schedule-grid h3 {
  margin: 17px 0 14px;
  color: #111a2a;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.seo-detail-grid p,
.seo-process-grid p,
.seo-schedule-section .section-heading > p,
.seo-schedule-grid li {
  color: #52606d;
  line-height: 1.62;
}

.seo-schedule-section {
  background: #f5f3ee;
}

.seo-schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.seo-schedule-grid ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.seo-schedule-grid li {
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e1dd;
}

.seo-testimonial-section {
  padding: 100px 0;
  color: #fff;
  background: #080b0f;
}

.seo-testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
}

.seo-testimonial-grid blockquote {
  margin: 24px 0 18px;
  color: #fff;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.seo-testimonial-grid h2 {
  margin: 18px 0;
  font-size: clamp(38px, 4.4vw, 61px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.seo-testimonial-grid p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.seo-testimonial-grid .button {
  margin-top: 18px;
}

.seo-cta {
  padding: 92px 0;
  background: #ebeae3;
}

.seo-cta .container {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
}

.seo-cta h2 {
  max-width: 720px;
}

@media (max-width: 850px) {
  .seo-intro-grid,
  .seo-coach-grid,
  .seo-program-grid,
  .seo-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .seo-process-grid {
    grid-template-columns: 1fr;
  }

  .seo-coach-grid > img {
    min-height: 410px;
    max-height: 560px;
  }

  .seo-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .seo-hero,
  .seo-intro,
  .seo-coach-section,
  .seo-formats,
  .seo-programs,
  .seo-detail-section,
  .seo-process-section,
  .seo-schedule-section,
  .seo-testimonial-section,
  .seo-cta {
    padding: 72px 0;
  }

  .seo-hero {
    min-height: 590px;
  }

  .seo-hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .seo-detail-grid,
  .seo-schedule-grid {
    grid-template-columns: 1fr;
  }

  .seo-hero p:not(.eyebrow),
  .seo-intro-grid > p {
    font-size: 17px;
  }

  .seo-format-grid,
  .seo-program-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .seo-format-grid article,
  .seo-program-card > div {
    padding: 28px 24px;
  }

  .seo-format-grid p:not(.card-label) {
    min-height: 0;
  }

  .seo-program-card > img {
    height: 235px;
  }
}

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

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

/* Conseils : contenus locaux et pages de conversion */
.advice-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  align-items: end;
  color: #fff;
  background: #080a0d;
}

.advice-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, .94) 0%, rgba(5, 7, 10, .72) 48%, rgba(5, 7, 10, .22) 100%),
    var(--advice-image) center / cover no-repeat;
}

.advice-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 80px;
}

.advice-hero-content {
  max-width: 780px;
}

.advice-hero h1 {
  max-width: 760px;
  margin: 18px 0;
  font-size: clamp(3rem, 6.8vw, 6.5rem);
  line-height: .92;
  letter-spacing: -.055em;
}

.advice-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, .86);
}

.advice-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.advice-proof-row span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(8, 10, 13, .55);
  font-size: .86rem;
  font-weight: 800;
}

.advice-section {
  padding: clamp(70px, 9vw, 120px) 0;
  background: #f2efe7;
  color: #131821;
}

.advice-section-dark {
  background: #0a0d11;
  color: #fff;
}

.advice-section .section-heading {
  max-width: 840px;
}

.advice-section .section-heading h2 {
  max-width: 790px;
}

.advice-section-dark .section-heading p {
  color: rgba(255, 255, 255, .72);
}

.advice-benefit-grid,
.advice-card-grid,
.advice-trust-grid,
.advice-steps,
.advice-cta-grid {
  display: grid;
  gap: 22px;
  margin-top: 44px;
}

.advice-benefit-grid,
.advice-trust-grid,
.advice-cta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.advice-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: advice-step;
}

.advice-benefit,
.advice-trust-card,
.advice-step,
.advice-cta-card {
  padding: 30px;
  border: 1px solid rgba(19, 24, 33, .12);
  border-radius: 22px;
  background: #fff;
}

.advice-section-dark .advice-benefit,
.advice-section-dark .advice-trust-card,
.advice-section-dark .advice-step,
.advice-section-dark .advice-cta-card {
  border-color: rgba(255, 255, 255, .12);
  background: #12171d;
}

.advice-benefit span,
.advice-trust-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: #f37016;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.advice-benefit h3,
.advice-trust-card h3,
.advice-step h3,
.advice-cta-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.advice-benefit p,
.advice-trust-card p,
.advice-step p,
.advice-cta-card p {
  margin: 0;
  line-height: 1.65;
  color: #525966;
}

.advice-section-dark .advice-benefit p,
.advice-section-dark .advice-trust-card p,
.advice-section-dark .advice-step p,
.advice-section-dark .advice-cta-card p {
  color: rgba(255, 255, 255, .7);
}

.advice-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(19, 24, 33, .08);
}

.advice-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.advice-card-content {
  padding: 28px;
}

.advice-card h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}

.advice-card p {
  color: #565e6b;
  line-height: 1.65;
}

.advice-card a:not(.button),
.advice-text-link {
  display: inline-flex;
  margin-top: 8px;
  color: #b84700;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.advice-step {
  counter-increment: advice-step;
}

.advice-step::before {
  content: "0" counter(advice-step);
  display: block;
  margin-bottom: 28px;
  color: #f37016;
  font-size: 1.25rem;
  font-weight: 950;
}

.advice-article-body {
  background: #f2efe7;
  color: #131821;
}

.advice-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
  padding-top: clamp(70px, 9vw, 115px);
  padding-bottom: clamp(70px, 9vw, 115px);
}

.advice-copy {
  max-width: 790px;
}

.advice-copy > p,
.advice-copy li {
  color: #434b58;
  font-size: 1.08rem;
  line-height: 1.8;
}

.advice-copy h2 {
  margin: 55px 0 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.03;
  letter-spacing: -.04em;
}

.advice-copy h3 {
  margin: 32px 0 10px;
  font-size: 1.45rem;
}

.advice-copy ul {
  padding-left: 1.2rem;
}

.advice-field-note {
  margin: 38px 0;
  padding: 28px;
  border-left: 5px solid #f37016;
  border-radius: 0 18px 18px 0;
  background: #fff;
}

.advice-field-note strong {
  display: block;
  margin-bottom: 8px;
  color: #131821;
}

.advice-science {
  margin: 42px 0;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(19, 24, 33, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(19, 24, 33, .07);
}

.advice-science h2,
.advice-science h3 {
  margin-top: 0;
}

.advice-science p:last-child {
  margin-bottom: 0;
}

.advice-sources {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(19, 24, 33, .15);
}

.advice-sources h2 {
  margin-top: 0;
  font-size: 1.45rem;
  letter-spacing: -.02em;
}

.advice-sources ul {
  margin-bottom: 0;
}

.advice-sources a {
  color: #93400b;
  font-weight: 750;
  text-underline-offset: 3px;
}

.advice-inline-photo {
  width: 100%;
  margin: 40px 0 10px;
  border-radius: 24px;
}

.advice-aside {
  position: sticky;
  top: 110px;
  padding: 26px;
  border-radius: 22px;
  background: #0b0e12;
  color: #fff;
}

.advice-aside h2 {
  margin: 10px 0;
  font-size: 1.65rem;
}

.advice-aside p {
  color: rgba(255, 255, 255, .7);
  line-height: 1.55;
}

.advice-aside .button {
  width: 100%;
  margin-top: 10px;
}

.advice-related {
  padding: 75px 0;
  background: #fff;
}

.advice-related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 35px;
}

.advice-related-links a {
  padding: 22px;
  border: 1px solid #d9d7d0;
  border-radius: 18px;
  color: #131821;
  font-weight: 900;
}

.advice-related-links a:hover {
  border-color: #f37016;
  color: #b84700;
}

@media (max-width: 1050px) {
  .advice-benefit-grid,
  .advice-trust-grid,
  .advice-cta-grid,
  .advice-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advice-article-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .advice-aside {
    position: static;
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  .advice-hero {
    min-height: 650px;
  }

  .advice-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 10, .35), rgba(5, 7, 10, .92) 62%),
      var(--advice-image-mobile, var(--advice-image)) center / cover no-repeat;
  }

  .advice-hero .container {
    padding-top: 130px;
    padding-bottom: 52px;
  }

  .advice-hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.7rem);
  }

  .advice-card-grid,
  .advice-benefit-grid,
  .advice-trust-grid,
  .advice-cta-grid,
  .advice-steps,
  .advice-related-links {
    grid-template-columns: 1fr;
  }

  .advice-card img {
    height: 230px;
  }

  .advice-benefit,
  .advice-trust-card,
  .advice-step,
  .advice-cta-card {
    padding: 24px;
  }
}
