/* ========================================
   GMO Design Tokens
   ======================================== */

:root {
  --gmo-main: #2e7daa;
  --gmo-light: #a6e2f7;
  --gmo-soft: #063f6a;
  --gmo-darker: #0c1820;
  --gmo-dark: #132830;
  --gmo-text: #e0e0e0;
  --gmo-text-muted: #8a9ba8;
  --gmo-nav-height: 56px;
  --gmo-footer-height: 40px;
}

/* ========================================
   Reset & Base
   ======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family:
    "Inter",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 14px;
  color: var(--gmo-text);
  background-color: var(--gmo-darker);
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
}

a {
  color: var(--gmo-light);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

/* ========================================
   Nav Bar
   ======================================== */

.gmo-nav {
  flex-shrink: 0;
  z-index: 1000;
  height: var(--gmo-nav-height);
  overflow: visible;
  background: rgba(12, 24, 32, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46, 125, 170, 0.2);
}

.gmo-nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.gmo-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
  top: calc(var(--gmo-nav-height) / 2);
  margin-left: 56px;
  margin-right: 32px;
  z-index: 1;
}

.gmo-nav__logo img {
  height: 84px;
  width: 84px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.gmo-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.gmo-nav__links a {
  color: var(--gmo-text-muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: color 0.2s;
}

.gmo-nav__links a:hover {
  color: #fff;
}

.gmo-nav__spacer {
  flex: 1;
}

.gmo-hidden {
  display: none !important;
}

/* Hamburger — hidden on desktop */
.gmo-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.gmo-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gmo-text);
  border-radius: 1px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* Hamburger open state */
.gmo-nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gmo-nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.gmo-nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   Footer
   ======================================== */

.gmo-footer {
  flex-shrink: 0;
  z-index: 1000;
  height: var(--gmo-footer-height);
  background: var(--gmo-darker);
  border-top: 1px solid rgba(46, 125, 170, 0.15);
}

.gmo-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 11px;
  color: var(--gmo-text-muted);
}

.gmo-footer__tagline {
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.gmo-footer__legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gmo-footer__legal a {
  color: var(--gmo-text-muted);
}

.gmo-footer__legal a:hover {
  color: var(--gmo-light);
}

.gmo-footer__separator {
  color: rgba(138, 155, 168, 0.4);
}

/* ========================================
   Main Content (Flutter container)
   ======================================== */

#content {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--gmo-nav-height) / 2);
}

#flutter-app {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   Checkout Overlay (Stripe Elements)
   ======================================== */

.gmo-checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gmo-checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.gmo-checkout-panel {
  position: relative;
  width: 420px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: linear-gradient(
    160deg,
    rgba(19, 40, 48, 0.95),
    rgba(6, 63, 106, 0.85)
  );
  border: 1px solid rgba(46, 125, 170, 0.25);
  border-radius: 16px;
  padding: 32px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.gmo-checkout-header {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gmo-text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gmo-checkout-lock {
  font-size: 14px;
}

.gmo-checkout-offer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(46, 125, 170, 0.15);
}

.gmo-checkout-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--gmo-text);
}

.gmo-checkout-amount {
  font-size: 20px;
  font-weight: 600;
  color: var(--gmo-light);
}

#gmo-payment-element {
  margin-bottom: 20px;
}

.gmo-checkout-error {
  color: #ff6b6b;
  font-size: 13px;
  min-height: 20px;
  margin-bottom: 8px;
}

.gmo-checkout-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: var(--gmo-main);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition:
    background 0.2s,
    opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.gmo-checkout-btn:hover:not(:disabled) {
  background: #3591c2;
}

.gmo-checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.gmo-checkout-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gmo-spin 0.8s linear infinite;
}

@keyframes gmo-spin {
  to {
    transform: rotate(360deg);
  }
}

.gmo-checkout-cancel {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--gmo-text-muted);
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s;
}

.gmo-checkout-cancel:hover {
  color: var(--gmo-text);
}

/* ========================================
   Équipeurs Page
   ======================================== */

.equipeurs-page {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: url("/static/images/GMO_Dark_Blue-1773574864925_blur.jpg")
    center/cover no-repeat fixed;
}

/* Centered glassmorphic container */
.equipeurs-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 48px;
  background: linear-gradient(
    160deg,
    rgba(19, 40, 48, 0.85),
    rgba(6, 63, 106, 0.65)
  );
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-left: 1px solid rgba(46, 125, 170, 0.15);
  border-right: 1px solid rgba(46, 125, 170, 0.15);
  min-height: 100%;
}

/* Hero */
.equipeurs-hero {
  position: relative;
  width: calc(100% + 48px);
  margin-left: -24px;
  overflow: hidden;
}

.equipeurs-hero__img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

.equipeurs-hero__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: rgba(6, 63, 106, 0.65);
}

.equipeurs-hero__text h1 {
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
}

/* Revenue band */
.equipeurs-revenue {
  width: calc(100% + 48px);
  margin-left: -24px;
  background: var(--gmo-main);
  padding: 32px 24px;
  text-align: left;
}

.equipeurs-revenue h2 {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.equipeurs-revenue h2 strong {
  font-size: 42px;
  font-weight: 700;
}

.equipeurs-revenue p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

/* Solutions section */
.equipeurs-solutions {
  padding: 40px 0;
}

.equipeurs-solutions__title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--gmo-light);
  margin-bottom: 40px;
}

.equipeurs-columns {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}

.equipeurs-columns__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 600;
  color: var(--gmo-light);
  padding-top: 60px;
  text-shadow: 0 0 12px rgba(166, 226, 247, 0.3);
}

/* Card */
.equipeurs-card {
  flex: 1;
  max-width: 380px;
}

.equipeurs-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(46, 125, 170, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
}

.equipeurs-card__chevron {
  display: none; /* shown on mobile only */
  width: 24px;
  height: 24px;
  color: var(--gmo-text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: auto;
}

.equipeurs-card--expanded .equipeurs-card__chevron {
  transform: rotate(180deg);
}

/* Circle with overflowing picto */
.equipeurs-circle {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gmo-soft);
  flex-shrink: 0;
  border: 2px solid rgba(46, 125, 170, 0.3);
  overflow: visible;
}

.equipeurs-circle__picto {
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  object-fit: contain;
  pointer-events: none;
}

/* Card label */
.equipeurs-card__label {
  display: flex;
  flex-direction: column;
}

.equipeurs-card__tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gmo-text-muted);
}

.equipeurs-card__percent {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* Card body */
.equipeurs-card__body {
  padding: 0 8px;
}

.equipeurs-card__desc {
  font-size: 14px;
  color: var(--gmo-text);
  line-height: 1.6;
  margin-top: 16px;
}

.equipeurs-card__desc--bold {
  font-weight: 600;
  font-style: italic;
}

.equipeurs-card__desc--highlight {
  background: rgba(46, 125, 170, 0.15);
  border: 1px solid rgba(46, 125, 170, 0.25);
  border-radius: 6px;
  padding: 8px 12px;
}

/* CTA button */
.equipeurs-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: var(--gmo-main);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s,
    opacity 0.2s;
}

.equipeurs-cta:hover {
  background: #3591c2;
}

.equipeurs-cta__sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.equipeurs-cta__main {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bottom CTAs */
.equipeurs-bottom-ctas {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.equipeurs-bottom-ctas .equipeurs-cta {
  max-width: 300px;
}

/* ── Modal overlay ─────────────────────── */

.equipeurs-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.equipeurs-modal[aria-hidden="true"] {
  display: none;
}

.equipeurs-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.equipeurs-modal__panel {
  position: relative;
  width: 420px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: linear-gradient(
    160deg,
    rgba(19, 40, 48, 0.95),
    rgba(6, 63, 106, 0.85)
  );
  border: 1px solid rgba(46, 125, 170, 0.25);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.equipeurs-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--gmo-text-muted);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.equipeurs-modal__close:hover {
  color: #fff;
}

.equipeurs-modal__panel h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gmo-text-muted);
  margin-bottom: 12px;
}

.equipeurs-modal__intro {
  font-size: 14px;
  color: var(--gmo-text);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* ── Form ──────────────────────────────── */

.equipeurs-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.equipeurs-form__field {
  margin-bottom: 16px;
}

.equipeurs-form__field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gmo-text-muted);
  margin-bottom: 6px;
}

.equipeurs-form__req {
  color: var(--gmo-light);
}

.equipeurs-form__field input {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(46, 125, 170, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.equipeurs-form__field input:focus {
  outline: none;
  border-color: var(--gmo-main);
}

.equipeurs-form__error {
  display: block;
  font-size: 12px;
  color: #ff6b6b;
  min-height: 16px;
  margin-top: 4px;
}

/* Toggle (segmented control) */
.equipeurs-form__toggle-group {
  margin-bottom: 16px;
}

.equipeurs-form__toggle-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gmo-text-muted);
  margin-bottom: 8px;
}

.equipeurs-toggle {
  display: inline-flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(46, 125, 170, 0.3);
}

.equipeurs-toggle__btn {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  border: none;
  background: transparent;
  color: var(--gmo-text-muted);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.equipeurs-toggle__btn--active {
  background: var(--gmo-main);
  color: #fff;
}

.equipeurs-toggle__btn:not(.equipeurs-toggle__btn--active):hover {
  background: rgba(46, 125, 170, 0.15);
}

/* Submit */
.equipeurs-form__submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: var(--gmo-main);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition:
    background 0.2s,
    opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 8px;
}

.equipeurs-form__submit:hover:not(:disabled) {
  background: #3591c2;
}

.equipeurs-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.equipeurs-form__spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gmo-spin 0.8s linear infinite;
}

.equipeurs-form__global-error {
  display: block;
  font-size: 13px;
  color: #ff6b6b;
  text-align: center;
  min-height: 20px;
  margin-top: 8px;
}

/* Success state */
.equipeurs-modal__success-state {
  text-align: center;
  padding: 24px 0;
}

.equipeurs-modal__success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(46, 170, 80, 0.2);
  color: #4ade80;
  font-size: 28px;
  line-height: 48px;
}

.equipeurs-modal__success-state h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.equipeurs-modal__success-state p {
  color: var(--gmo-text);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.equipeurs-modal__ok {
  padding: 10px 32px;
  border: none;
  border-radius: 8px;
  background: var(--gmo-main);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}

.equipeurs-modal__ok:hover {
  background: #3591c2;
}

/* ========================================
   Legal Page
   ======================================== */

.legal-page {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--gmo-darker);
}

.legal-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 24px 48px;
}

.legal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(46, 125, 170, 0.2);
}

.legal-tab {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gmo-text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.legal-tab:hover {
  color: var(--gmo-text);
}

.legal-tab--active {
  color: var(--gmo-light);
  border-bottom-color: var(--gmo-main);
}

/* 3-column layout for CGUV tab */
.legal-columns {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.legal-col-brief {
  flex: 3;
  min-width: 0;
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
}

.legal-col-main {
  flex: 5;
  min-width: 0;
  max-width: 700px;
}

.legal-col-toc {
  flex: 2;
  min-width: 0;
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  background: rgba(46, 125, 170, 0.05);
  border-radius: 8px;
  padding: 16px;
}

.legal-col-heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gmo-light);
  margin-bottom: 16px;
}

/* Mobile-only tab: hidden on desktop */
.legal-tab--mobile-only {
  display: none;
}

/* Brief card illustration */
.legal-brief-card__illustration {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.legal-brief-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Standalone brief tab (mobile) */
.legal-brief-standalone {
  max-width: 600px;
  margin: 0 auto;
}

.legal-brief-card--with-illustration .legal-brief-card__illustration {
  width: 80px;
  height: 80px;
}

/* TOC toggle — open by default on desktop */
.legal-toc-toggle__btn {
  list-style: none;
}

.legal-toc-toggle__btn::-webkit-details-marker {
  display: none;
}

/* Single doc layout (confidentialité) */
.legal-single {
  max-width: 800px;
  margin: 0 auto;
}

/* Brief cards (accordion) */
.legal-brief-card {
  background: var(--gmo-dark);
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(46, 125, 170, 0.1);
}

.legal-brief-card__title {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.legal-brief-card__title::-webkit-details-marker {
  display: none;
}

.legal-brief-card__title::after {
  content: "›";
  float: right;
  color: var(--gmo-text-muted);
  transition: transform 0.2s;
}

.legal-brief-card[open] > .legal-brief-card__title::after {
  transform: rotate(90deg);
}

.legal-brief-card__content {
  padding: 0 16px 12px;
  font-size: 13px;
  color: var(--gmo-text);
  line-height: 1.6;
}

.legal-brief-card__content p {
  margin: 0 0 8px;
}

/* Table of contents */
.legal-toc {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}

.legal-toc li {
  counter-increment: toc;
  margin-bottom: 6px;
}

.legal-toc li a {
  display: block;
  padding: 4px 0;
  font-size: 12px;
  color: var(--gmo-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-toc li a::before {
  content: counter(toc) ". ";
  font-weight: 600;
  color: var(--gmo-text-muted);
}

.legal-toc li a:hover {
  color: var(--gmo-light);
}

/* Document content */
.legal-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
}

.legal-empty {
  color: var(--gmo-text-muted);
  font-size: 14px;
}

.legal-article {
  margin-bottom: 32px;
}

.legal-article__title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.legal-article__content {
  font-size: 14px;
  color: var(--gmo-text);
  line-height: 1.7;
}

.legal-article__content h3 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 16px 0 8px;
}

.legal-article__content p {
  margin: 0 0 12px;
}

.legal-article__content ul {
  margin: 0 0 12px;
  padding-left: 24px;
}

.legal-article__content strong {
  color: #fff;
}

/* ========================================
   Mobile (< 768px)
   ======================================== */

@media (max-width: 767px) {
  .gmo-nav__hamburger {
    display: flex;
  }

  .gmo-nav__links {
    display: none;
    position: absolute;
    top: var(--gmo-nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(12, 24, 32, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(46, 125, 170, 0.2);
    padding: 8px 0;
  }

  .gmo-nav__links.open {
    display: flex;
  }

  .gmo-nav__links a {
    padding: 12px 24px;
    font-size: 13px;
  }

  .gmo-nav__links a:hover {
    background: rgba(46, 125, 170, 0.1);
  }

  .gmo-nav__spacer {
    display: none;
  }

  /* Équipeurs mobile */
  .equipeurs-container {
    padding: 0 16px 32px;
    border-left: none;
    border-right: none;
  }

  .equipeurs-hero {
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .equipeurs-hero__text {
    padding: 24px 16px 16px;
  }

  .equipeurs-revenue {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 24px 16px;
  }

  .equipeurs-revenue h2 strong {
    font-size: 32px;
  }

  .equipeurs-columns {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .equipeurs-columns__plus {
    display: flex;
    padding-top: 0;
    padding: 8px 0;
    font-size: 32px;
  }

  .equipeurs-card {
    max-width: none;
    width: 100%;
  }

  .equipeurs-card__header {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    border-radius: 8px;
    width: 100%;
  }

  .equipeurs-card__chevron {
    display: block;
  }

  .equipeurs-card__body {
    display: none;
    padding: 8px 0 16px;
  }

  .equipeurs-card__body--open {
    display: flex;
    flex-direction: column;
  }

  .equipeurs-card__body .equipeurs-cta {
    order: 10;
    margin-top: 16px;
  }

  .equipeurs-bottom-ctas {
    display: none;
  }

  /* Legal mobile: hide desktop-only elements, show mobile tab */
  .legal-desktop-only {
    display: none;
  }

  .legal-tab--mobile-only {
    display: inline-block;
  }

  .legal-columns {
    flex-direction: column;
  }

  .legal-col-toc {
    position: static;
    max-height: none;
  }

  /* TOC: collapsible button on mobile */
  .legal-toc-toggle__btn {
    cursor: pointer;
  }

  .legal-toc-toggle__btn::after {
    content: " ▸";
    font-size: 12px;
  }

  .legal-toc-toggle[open] > .legal-toc-toggle__btn::after {
    content: " ▾";
  }

  .legal-col-main {
    max-width: none;
  }

  /* Logo: reduce overflow on mobile */
  .gmo-nav__logo {
    margin-left: 0;
    top: calc(var(--gmo-nav-height) / 4);
  }

  .gmo-nav__logo img {
    height: 56px;
    width: 56px;
  }

  /* Footer stacks vertically on mobile */
  .gmo-footer__inner {
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    text-align: center;
  }

  .gmo-footer {
    height: auto;
    padding: 8px 0;
  }
}
