html {
  font-size: 85%;
}

body {
  font-size: 16px;
}

main {
  max-width: 1380px;
  width: calc(100% - 80px);
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════
   FRAME MÉTAL RÉALISTE — tous les téléphones du site
   ═══════════════════════════════════════════════════════════ */

.mobile-phone,
.rdv-phone,
.menu-phone,
.ci-phone,
.sol-demo-phone {
  background: linear-gradient(135deg,
    #9ea4ab 0%, #e2e6ea 8%, #b8bcc3 16%,
    #4a4f57 28%, #0d0e10 44%,
    #2a2d32 58%, #a8adb4 74%,
    #d8dde3 86%, #8c9099 100%
  ) !important;
  border-radius: 44px !important;
  box-shadow:
    0 40px 90px rgba(0,0,0,.7),
    0 16px 32px rgba(0,0,0,.35),
    inset 0 1.5px 0 rgba(255,255,255,.35),
    inset 0 -1px 0 rgba(0,0,0,.5) !important;
}

/* Dynamic Island pill */
.mobile-phone::before,
.rdv-phone::before,
.menu-phone::before,
.ci-phone::before,
.sol-demo-phone::before {
  top: 12px !important;
  width: 66px !important;
  height: 20px !important;
  border-radius: 20px !important;
  background: #000 !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), inset 0 -1px 0 rgba(255,255,255,.05) !important;
}

/* Status bar — positionné juste après le Dynamic Island */
.phone-sbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 46px;
  padding: 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

html[data-theme="light"] .phone-sbar {
  color: rgba(0,0,0,0.72);
}

/* ── Typographie globale ─────────────────────────────────── */
p, li {
  font-size: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  opacity: .85;
  flex: none;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.section-head h2 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.04;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.premium-image-sheen-host {
  position: relative;
}

.premium-image-sheen-overlay {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  border-radius: var(--premium-image-sheen-radius, 0px);
}

.premium-image-sheen-beam {
  position: absolute;
  inset: -18% -42%;
  background: linear-gradient(120deg, transparent 42%, rgba(255,255,255,0.2) 50%, transparent 58%);
  opacity: 0;
  transform: translateX(-120%) skewX(-18deg);
}

html[data-theme="light"] .premium-image-sheen-beam {
  background: linear-gradient(120deg, transparent 42%, rgba(255,255,255,0.78) 50%, transparent 58%);
}

@keyframes premiumImageSheen {
  0% {
    opacity: 0;
    transform: translateX(-120%) skewX(-18deg);
  }

  16% {
    opacity: 0.34;
  }

  40%,
  100% {
    opacity: 0;
    transform: translateX(140%) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .premium-image-sheen-overlay.is-animated .premium-image-sheen-beam {
    animation: premiumImageSheen 8.8s ease-in-out infinite var(--premium-image-sheen-delay, 0s);
  }
}

.nav {
  width: var(--container);
  margin: 0;
  padding: 14px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(8,8,8,0.7);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

html[data-theme="light"] .nav {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(8,8,8,0.7);
  box-shadow: 0 18px 45px rgba(0,0,0,0.3);
}

.nav-side {
  display: flex;
  align-items: center;
  min-width: 0;
}

.nav-side-left {
  justify-self: start;
}

.nav-side-right {
  justify-self: end;
  justify-content: flex-end;
  gap: 12px;
}

.nav-center {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-desktop-tools {
  display: flex;
  align-items: center;
}

.nav-mobile-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.nav-mobile-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.nav-mobile-toggle-line {
  display: block;
  width: 16px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    width 0.35s ease;
}

.nav-mobile-panel[hidden] {
  display: none !important;
}

.nav-mobile-panel {
  display: none;
}

body.nav-mobile-open {
  overflow: hidden;
}

html[data-theme="light"] .nav-mobile-toggle {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

html[data-theme="light"] .nav-mobile-toggle:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

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

.brand-signature {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.brand-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
}

html[data-theme="light"] .brand-lockup {
  color: #f5f5f5;
}

.brand-os {
  font-size: 1.38rem;
  letter-spacing: 0.06em;
  text-shadow: 0 0 18px rgba(255,255,255,0.08);
}

html[data-theme="light"] .brand-os {
  text-shadow: 0 0 18px rgba(255,255,255,0.28);
}

.brand-reveal {
  display: inline-flex;
  align-items: baseline;
  margin-left: 0;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  filter: blur(8px);
  transition:
    max-width 0.7s cubic-bezier(.19,.6,.18,1),
    margin-left 0.45s ease,
    opacity 0.35s ease,
    filter 0.45s ease;
  transition-delay: 0.22s, 0.18s, 0.18s, 0.18s;
  color: inherit;
}

.brand-word-gap {
  width: 0.34em;
  flex: 0 0 auto;
}

.brand-letter {
  display: inline-block;
  font-size: 1.38rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  filter: blur(6px);
  text-shadow: 0 0 18px rgba(255,255,255,0.12);
  transition:
    opacity 0.3s ease,
    transform 0.45s cubic-bezier(.19,.6,.18,1),
    filter 0.45s ease;
  transition-delay: calc((14 - var(--char-index)) * 28ms);
  color: inherit;
}

html[data-theme="light"] .brand-letter {
  text-shadow: 0 0 18px rgba(255,255,255,0.24);
}

.nav:hover .brand-reveal,
.nav:focus-within .brand-reveal {
  max-width: 20ch;
  margin-left: 0.28em;
  opacity: 1;
  filter: blur(0);
  transition-delay: 0s, 0s, 0s, 0s;
}

.nav:hover .brand-letter,
.nav:focus-within .brand-letter {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: calc(var(--char-index) * 32ms);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  flex-wrap: wrap;
  justify-content: center;
}

html[data-theme="light"] .nav-links {
  color: rgba(255,255,255,0.8);
}

html[data-theme="light"] .nav-link,
html[data-theme="light"] .nav-dropdown-toggle,
html[data-theme="light"] .nav-caret {
  color: rgba(255,255,255,0.8);
}

.nav-mobile-links,
.nav-mobile-submenu {
  display: grid;
}

.nav-mobile-links {
  gap: 10px;
}

.nav-mobile-link,
.nav-mobile-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 0.95rem;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.nav-mobile-link:hover,
.nav-mobile-summary:hover,
.nav-mobile-link.is-current {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.nav-mobile-group {
  display: grid;
  gap: 10px;
}

.nav-mobile-group[open] .nav-mobile-summary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.nav-mobile-group.has-current .nav-mobile-summary {
  color: var(--text);
}

.nav-mobile-summary {
  list-style: none;
  cursor: pointer;
}

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

.nav-mobile-summary::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -2px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.nav-mobile-group[open] .nav-mobile-summary::after {
  transform: rotate(225deg);
}

.nav-mobile-submenu {
  gap: 8px;
  padding-left: 10px;
}

.nav-mobile-section-label {
  display: block;
  margin-top: 4px;
  padding: 10px 8px 2px 8px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-mobile-sub-link {
  min-height: 44px;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-mobile-theme {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 12px;
}

.nav-mobile-theme-label {
  color: var(--soft);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.theme-switch-mobile {
  justify-self: start;
}

html[data-theme="light"] .nav-mobile-link,
html[data-theme="light"] .nav-mobile-summary {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.86);
}

html[data-theme="light"] .nav-mobile-link:hover,
html[data-theme="light"] .nav-mobile-summary:hover,
html[data-theme="light"] .nav-mobile-link.is-current,
html[data-theme="light"] .nav-mobile-group[open] .nav-mobile-summary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

html[data-theme="light"] .nav-mobile-sub-link,
html[data-theme="light"] .nav-mobile-section-label,
html[data-theme="light"] .nav-mobile-theme-label {
  color: rgba(255,255,255,0.62);
}

html[data-theme="light"] .nav-mobile-theme {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-link,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-link::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.85);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

html[data-theme="light"] .nav-link::after,
html[data-theme="light"] .nav-dropdown-toggle::after {
  background: rgba(255,255,255,0.85);
}

.nav-link:hover,
.nav-dropdown-toggle:hover {
  color: var(--text);
}

.nav-link:hover::after,
.nav-dropdown-toggle:hover::after {
  transform: scaleX(1);
}

.nav-link.is-current,
.nav-dropdown-toggle.is-current {
  color: var(--text);
}

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


.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100%;
  min-width: 250px;
  height: 22px;
  transform: translateX(-50%);
  pointer-events: none;
}

.nav-caret {
  width: 8px;
  height: 8px;
  margin-top: -2px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.72;
  transform: rotate(45deg);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  min-width: 250px;
  padding: 14px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(9,9,9,0.88);
  box-shadow: 0 22px 45px rgba(0,0,0,0.3);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  filter: blur(10px);
  transform: translate(-50%, 10px) scale(0.98);
  transition:
    opacity 0.32s ease,
    transform 0.42s cubic-bezier(.19,.6,.18,1),
    filter 0.32s ease;
}

.nav-dropdown-panel-wide {
  min-width: 560px;
  gap: 16px;
  padding: 18px;
}

.nav-dropdown-panel-columns-2 {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.nav-dropdown-panel-columns-3 {
  grid-template-columns: repeat(3, minmax(160px, 1fr));
}

.nav-subgroup {
  display: grid;
  align-content: start;
  gap: 6px;
}

.nav-group-label {
  display: block;
  padding: 10px 12px 6px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.82);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

html[data-theme="light"] .nav-dropdown-panel {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(8,8,8,0.92);
  box-shadow: 0 22px 45px rgba(0,0,0,0.3);
}

html[data-theme="light"] .nav-group-label,
html[data-theme="light"] .nav-mobile-section-label {
  border-top-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.62);
}


.nav-dropdown.is-open .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  filter: blur(0);
  transform: translate(-50%, 0) scale(1);
}

.nav-dropdown.is-open .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  opacity: 1;
  transform: rotate(225deg);
}

.nav-sub-link {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.nav-sub-link:hover,
.nav-sub-link.is-current {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  transform: translateX(2px);
}

html[data-theme="light"] .nav-sub-link {
  color: rgba(255,255,255,0.82);
}

html[data-theme="light"] .nav-sub-link:hover,
html[data-theme="light"] .nav-sub-link.is-current {
  background: rgba(255,255,255,0.08);
}

.theme-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 72px;
  height: 38px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition:
    border-color 0.55s ease,
    background 0.55s ease,
    transform 0.6s cubic-bezier(.16,1,.3,1),
    box-shadow 0.55s ease;
  overflow: hidden;
}

.theme-switch::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.12), rgba(255,255,255,0.02));
  opacity: 0.55;
  transition: opacity 0.6s ease, transform 0.75s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}

.theme-switch:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 24px rgba(0,0,0,0.18);
}

.theme-switch-track {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.theme-switch-thumb {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f3f0ea, #d9d4cb);
  box-shadow: 0 8px 18px rgba(0,0,0,0.28);
  transform: translateX(0);
  transition:
    transform 0.82s cubic-bezier(.16,1,.3,1),
    box-shadow 0.55s ease,
    background 0.55s ease,
    filter 0.55s ease;
  overflow: hidden;
}

.theme-switch-thumb::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, rgba(255,255,255,0.95), rgba(255,255,255,0.18) 48%, transparent 68%);
  opacity: 0.8;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.theme-animating .theme-switch {
  transform: translateY(-1px) scale(1.015);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 34px rgba(0,0,0,0.18);
}

html.theme-animating .theme-switch::before {
  opacity: 0.95;
  transform: scaleX(1.08);
}

html.theme-animating .theme-switch-thumb {
  box-shadow: 0 0 0 8px rgba(255,255,255,0.06), 0 10px 22px rgba(0,0,0,0.22);
  filter: brightness(1.05);
}

html.theme-animating .theme-switch-thumb::after {
  opacity: 1;
  transform: scale(1.08);
}

html[data-theme="light"] .theme-switch {
  border: 1px solid rgba(20,20,20,0.1);
  background: rgba(255,255,255,0.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

html[data-theme="light"] .theme-switch:hover {
  background: rgba(255,255,255,0.98);
  border-color: rgba(20,20,20,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 12px 24px rgba(0,0,0,0.08);
}

html[data-theme="light"] .theme-switch::before {
  background: linear-gradient(90deg, rgba(20,20,20,0.02), rgba(255,255,255,0.72), rgba(20,20,20,0.02));
}

html[data-theme="light"] .theme-switch-track {
  color: rgba(20,20,20,0.5);
}

html[data-theme="light"] .theme-switch-thumb {
  background: linear-gradient(180deg, #1d1d1d, #090909);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  transform: translateX(34px);
}

html[data-theme="light"] .theme-switch-thumb::after {
  background: radial-gradient(circle at 30% 28%, rgba(255,255,255,0.28), rgba(255,255,255,0.06) 48%, transparent 68%);
  opacity: 0.92;
}

.premium-stars-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  animation: premiumMoveStars 200s linear infinite;
  will-change: transform;
  transition: opacity 0.72s ease;
}

.premium-star {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 8px rgba(255,255,255,0.58);
  opacity: 0.22;
}

.premium-star.animate {
  animation: premiumTwinkleStar 3.2s ease-in-out infinite alternate;
}

.stars-paused .premium-stars-container,
.stars-paused .premium-star.animate {
  animation-play-state: paused;
}

.premium-stars-container + .site-shell {
  position: relative;
  z-index: 1;
}

html:not([data-theme="light"]) body {
  background: #000 !important;
}

html:not([data-theme="light"]) body::before {
  display: none !important;
}

html[data-theme="light"] .premium-stars-container {
  opacity: 0;
}

html[data-theme="light"] body {
  background: #fff !important;
}

html[data-theme="light"] body::before {
  display: none !important;
}

@keyframes premiumMoveStars {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-25%, -25%, 0);
  }
}

@keyframes premiumTwinkleStar {
  from {
    opacity: 0.18;
    transform: scale(0.82);
  }
  to {
    opacity: 0.96;
    transform: scale(1.18);
  }
}

.footer-note {
  width: var(--container);
  margin: 0 auto;
  padding: 30px 0 38px;
  color: var(--soft);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: 34px;
  align-items: start;
}

.panel-tag {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.footer-brand h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  max-width: none;
  line-height: 1.1;
}

.footer-brand p {
  margin: 18px 0 0;
  max-width: 54ch;
  line-height: 1.8;
  color: var(--muted);
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-theme="light"] .footer-pills span {
  background: rgba(255,255,255,0.62);
  color: rgba(20,20,20,0.76);
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px 24px;
}

.footer-col {
  flex: 1 1 150px;
  min-width: 0;
  min-height: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.footer-col-contact {
  flex: 1.25 1 280px;
  max-width: none;
}

.footer-col-contact a[href^="mailto:"] {
  white-space: nowrap;
}

.footer-label {
  display: block;
  margin-bottom: 14px;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  transition: color var(--transition), transform var(--transition);
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  opacity: 0.55;
}

.footer-links a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  box-shadow: 0 14px 28px rgba(0,0,0,0.16);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
}

html[data-theme="light"] .footer-social a {
  background: rgba(255,255,255,0.78);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 18px 34px rgba(0,0,0,0.22);
}

html[data-theme="light"] .footer-social a:hover {
  background: rgba(255,255,255,0.98);
  border-color: rgba(20,20,20,0.14);
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* ── Footer contact tools (social + theme toggle) ─── */
.footer-contact-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

/* ── Theme mode group (3 buttons: auto / light / dark) ─── */
.footer-theme {
  display: flex;
  align-items: center;
}

.theme-mode-group {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.theme-mode-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.18s ease;
  font-size: 1rem;
  line-height: 1;
}

.theme-mode-button:hover {
  background: rgba(255,255,255,0.1);
  transform: scale(1.08);
}

.theme-mode-button.is-active {
  background: rgba(255,255,255,0.14);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.theme-mode-emoji {
  display: block;
  font-style: normal;
  line-height: 1;
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 320px));
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--text);
}

html[data-theme="light"] .footer-trust {
  border-top: 1px solid rgba(20,20,20,0.08);
}

html[data-theme="light"] .trust-item {
  background: rgba(255,255,255,0.68);
  color: rgba(20,20,20,0.82);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 18px;
  font-size: 0.9rem;
  align-items: center;
}

.footer-meta,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

.footer-legal a,
.footer-legal span {
  color: var(--soft);
  transition: color var(--transition), opacity var(--transition);
}

.footer-legal a:hover {
  color: var(--text);
}

html[data-theme="light"] .footer-note,
html[data-theme="light"] .footer-bottom {
  border-top: 1px solid rgba(20,20,20,0.08);
}

html[data-theme="light"] .footer-brand h2,
html[data-theme="light"] .footer-social a,
html[data-theme="light"] .trust-item svg {
  color: #111111;
}

html[data-theme="light"] .footer-brand p,
html[data-theme="light"] .footer-links a,
html[data-theme="light"] .footer-links span,
html[data-theme="light"] .footer-meta,
html[data-theme="light"] .footer-legal a,
html[data-theme="light"] .footer-legal span {
  color: rgba(20,20,20,0.82);
}

html[data-theme="light"] .footer-label {
  color: rgba(20,20,20,0.62);
}

html[data-theme="light"] #premiumFooterSlot {
  width: 100%;
  max-width: none;
  margin: 34px 0 0;
  padding: 38px 0 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(180deg, #080808 0%, #040404 52%, #090909 100%);
}

html[data-theme="light"] #premiumFooterSlot .footer-note {
  --text: #f5f5f5;
  --muted: rgba(255,255,255,0.72);
  --soft: rgba(255,255,255,0.48);
  --line: rgba(255,255,255,0.11);
  color: var(--soft);
  border-top: 1px solid rgba(255,255,255,0.08);
}

html[data-theme="light"] #premiumFooterSlot .footer-bottom,
html[data-theme="light"] #premiumFooterSlot .footer-trust {
  border-top-color: rgba(255,255,255,0.08);
}

html[data-theme="light"] #premiumFooterSlot .footer-brand h2,
html[data-theme="light"] #premiumFooterSlot .trust-item svg {
  color: var(--text);
}

html[data-theme="light"] #premiumFooterSlot .footer-brand p,
html[data-theme="light"] #premiumFooterSlot .footer-pills span,
html[data-theme="light"] #premiumFooterSlot .footer-links a,
html[data-theme="light"] #premiumFooterSlot .footer-links span,
html[data-theme="light"] #premiumFooterSlot .footer-meta,
html[data-theme="light"] #premiumFooterSlot .footer-legal a,
html[data-theme="light"] #premiumFooterSlot .footer-legal span,
html[data-theme="light"] #premiumFooterSlot .trust-item {
  color: var(--muted);
}

html[data-theme="light"] #premiumFooterSlot .footer-label {
  color: var(--soft);
}

html[data-theme="light"] #premiumFooterSlot .footer-pills span,
html[data-theme="light"] #premiumFooterSlot .trust-item,
html[data-theme="light"] #premiumFooterSlot .footer-social a {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.11);
}

html[data-theme="light"] #premiumFooterSlot .footer-social a {
  color: var(--text);
  box-shadow: 0 14px 28px rgba(0,0,0,0.16);
}

html[data-theme="light"] #premiumFooterSlot .footer-links a:hover,
html[data-theme="light"] #premiumFooterSlot .footer-legal a:hover {
  color: var(--text);
}

html[data-theme="light"] #premiumFooterSlot .footer-social a:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 18px 34px rgba(0,0,0,0.22);
}

.contact-fab {
  position: fixed;
  right: 28px;
  left: auto;
  bottom: 22px;
  transform: none;
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.contact-fab.is-fab-visible {
  opacity: 1;
  pointer-events: auto;
}

.contact-fab-actions {
  display: grid;
  gap: 10px;
  width: min(92vw, 320px);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.26s ease,
    transform 0.34s cubic-bezier(.2,.8,.2,1);
}

.contact-fab.is-open .contact-fab-actions {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.contact-fab-toggle,
.contact-fab-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.22);
}

.contact-fab-toggle {
  gap: 12px;
  padding: 0 24px;
  background: rgba(10,10,10,0.9);
  color: #f5f5f5;
}

.contact-fab-link {
  width: 100%;
  padding: 0 20px;
  background: rgba(15,15,18,0.94);
  color: #f5f5f5;
}

.contact-fab-link:hover,
.contact-fab-toggle:hover {
  transform: translateY(-2px);
}

.contact-fab-toggle:hover,
.contact-fab-toggle:focus-visible,
.contact-fab.is-open .contact-fab-toggle {
  border-color: rgba(96, 134, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 20px 40px rgba(10, 14, 28, 0.24);
}

.contact-fab-toggle:hover .contact-fab-icon,
.contact-fab-toggle:focus-visible .contact-fab-icon,
.contact-fab.is-open .contact-fab-icon {
  background: rgba(255,255,255,0.08);
  box-shadow: none;
}

.contact-fab-label {
  font-weight: 700;
}

.contact-fab-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.28s ease;
}

.contact-fab.is-open .contact-fab-icon {
  transform: rotate(45deg);
}

html[data-theme="light"] .contact-fab-toggle {
  background: rgba(255,255,255,0.94);
  color: #161616;
  border-color: rgba(20,20,20,0.1);
  box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

html[data-theme="light"] .contact-fab-toggle:hover,
html[data-theme="light"] .contact-fab-toggle:focus-visible,
html[data-theme="light"] .contact-fab.is-open .contact-fab-toggle {
  border-color: rgba(20, 37, 171, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.78),
    0 18px 34px rgba(0,0,0,0.12);
}

html[data-theme="light"] .contact-fab-link {
  background: rgba(255,255,255,0.96);
  color: #161616;
  border-color: rgba(20,20,20,0.1);
}

html[data-theme="light"] .contact-fab-icon {
  background: rgba(20,20,20,0.06);
}

html[data-theme="light"] .contact-fab-toggle:hover .contact-fab-icon,
html[data-theme="light"] .contact-fab-toggle:focus-visible .contact-fab-icon,
html[data-theme="light"] .contact-fab.is-open .contact-fab-icon {
  background: rgba(20,20,20,0.06);
  box-shadow: none;
}

@media (max-width: 1080px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 16px;
    padding: 14px 18px;
    border-radius: 28px;
  }

  .nav.is-mobile-open {
    border-radius: 28px;
  }

  .nav-center,
  .nav-desktop-tools {
    display: none;
  }

  .nav-dropdown-panel-wide,
  .nav-dropdown-panel-columns-2,
  .nav-dropdown-panel-columns-3 {
    min-width: 250px;
    grid-template-columns: 1fr;
  }

  .nav-side-left,
  .nav-side-right {
    width: auto;
  }

  .nav-mobile-toggle {
    display: inline-flex;
  }

  .nav-mobile-panel {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 2px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: grid;
    gap: 0;
  }

  html[data-theme="light"] .nav-mobile-panel {
    border-top: 1px solid rgba(20,20,20,0.08);
  }

  .nav.is-mobile-open .nav-mobile-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav.is-mobile-open .nav-mobile-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .nav.is-mobile-open .nav-mobile-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

  .footer-columns {
    gap: 20px 22px;
  }

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

  .contact-fab {
    right: 16px;
    bottom: 18px;
  }
}

@media (max-width: 720px) {
  .nav {
    top: 12px;
    padding: 12px 18px;
    gap: 12px 14px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand-os,
  .brand-letter {
    font-size: 1.18rem;
  }

  .nav-side-left {
    min-width: 0;
  }

  .nav-mobile-link,
  .nav-mobile-summary {
    min-height: 48px;
    font-size: 0.92rem;
  }

  .theme-switch-mobile {
    width: 78px;
  }

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

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

  .footer-col-contact {
    grid-column: auto;
  }

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

  .contact-fab {
    right: 12px;
    bottom: 16px;
  }
}
html[data-theme="light"] .section-shell:has(.web-faq-list),
html[data-theme="light"] .section-shell:has(.faq-list),
html[data-theme="light"] .section-shell:has(.faq-seo),
html[data-theme="light"] .section-shell:has(.faq-grid),
html[data-theme="light"] .rest-section:has(.rest-faq) {
  padding-bottom: 96px;
}


/* ═══ FAQ UNIFIÉ — .site-faq-* ═══════════════════════════════════════════ */
.site-faq {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.site-faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color .28s ease;
}

.site-faq-item.is-open {
  border-color: rgba(107,140,255,.38);
}

html[data-theme="light"] .site-faq-item {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

html[data-theme="light"] .site-faq-item.is-open {
  border-color: rgba(107,140,255,.38);
}

.site-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 19px 22px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  font-family: "Inter", sans-serif;
}

.site-faq-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: var(--soft);
  transition: transform .32s ease, background .32s ease, border-color .32s ease, color .32s ease;
}

.site-faq-item.is-open .site-faq-arrow {
  transform: rotate(180deg);
  background: rgba(107,140,255,.12);
  border-color: rgba(107,140,255,.38);
  color: #6b8cff;
}

html[data-theme="light"] .site-faq-item.is-open .site-faq-arrow {
  background: rgba(107,140,255,.1);
  color: #4a6fd4;
}

.site-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(.2,.8,.2,1);
}

.site-faq-item.is-open .site-faq-a {
  max-height: 900px;
}

.site-faq-a-inner {
  padding: 5px 26px 28px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.78;
  margin: 0;
}

/* ═══ FAQ SECTION HEAD — modifier pour centrer le header FAQ ══════════════ */
.section-head.section-head--faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 17px;
  max-width: none;
  margin-bottom: 64px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}
.section-head.section-head--faq h2 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.04;
  max-width: 20ch;
  margin-top: 8px;
}
.section-head.section-head--faq h2 em {
  font-style: italic;
  font-weight: 400;
}
