/* =========================================================
   DANCE IT® — HOMEPAGE
   Premium editorial / SaaS design
   Palette preserved:
   #B89595 — rose signature
   #E8DDD4 — beige signature
   ========================================================= */

:root {
  --rose: #B89595;
  --rose-dark: #9E7B7B;
  --rose-soft: #F7EEEE;
  --beige: #E8DDD4;
  --cream: #FCF9F7;
  --ink: #282322;
  --muted: #6D6561;
  --line: #E9E0DB;
  --white: #FFFFFF;
  --green-soft: #EDF6EF;
  --green: #477052;
  --shadow-sm: 0 12px 35px rgba(43, 37, 34, .06);
  --shadow-lg: 0 28px 80px rgba(43, 37, 34, .11);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 15%, rgba(184,149,149,.07), transparent 24rem),
    radial-gradient(circle at 90% 55%, rgba(232,221,212,.35), transparent 30rem),
    var(--cream);
  overflow-x: hidden;
}

body::selection {
  background: var(--rose);
  color: var(--white);
}

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

img {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.ambient {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .16;
  pointer-events: none;
  z-index: -1;
}

.ambient-one {
  top: 22%;
  left: -180px;
  background: var(--rose);
}

.ambient-two {
  top: 62%;
  right: -190px;
  background: var(--beige);
}

/* =========================================================
   REUSABLE
   ========================================================= */

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

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 25px;
  height: 1px;
  background: currentColor;
}

.section-kicker.light {
  color: rgba(255,255,255,.72);
}

.section-heading h2,
.faq-intro-block h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Archivo Narrow", sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.035em;
}

.section-heading h2 em,
.faq-intro-block h2 em {
  color: var(--rose);
  font-family: "Lilita One", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.section-heading p {
  max-width: 680px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 15px 35px rgba(184,149,149,.28);
}

.btn-primary:hover {
  background: var(--rose-dark);
  box-shadow: 0 20px 45px rgba(184,149,149,.36);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid rgba(40,35,33,.15);
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: var(--white);
  border-color: rgba(40,35,33,.25);
}

.btn-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(40,35,33,.14);
}

.btn-dark:hover {
  background: #3A3330;
}

.btn-light {
  color: var(--rose);
  background: var(--white);
  box-shadow: 0 15px 40px rgba(0,0,0,.14);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  color: var(--rose);
  transition: transform .2s ease;
}

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

/* =========================================================
   STICKY ACTIONS
   ========================================================= */

.sticky-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 2000;
}

.sticky-demo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 18px;
  color: var(--white);
  background: var(--rose);
  border: 1px solid var(--rose);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(184,149,149,.34);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.sticky-demo:hover {
  transform: translateY(-3px);
  background: var(--rose-dark);
  box-shadow: 0 18px 40px rgba(184,149,149,.42);
}

.sticky-demo svg {
  width: 18px;
  height: 18px;
}

.sticky-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  padding: 0;
  color: var(--rose);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, box-shadow .25s ease;
}

.sticky-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  position: sticky;
  top: 12px;
  width: min(1380px, calc(100% - 30px));
  min-height: 76px;
  margin: 12px auto -88px;
  padding: 10px 13px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(184,149,149,.94);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  box-shadow: 0 12px 45px rgba(75,56,56,.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  width: auto;
  height: 53px;
  display: block;
  transition: transform .25s ease;
}

.nav-logo:hover img {
  transform: scale(1.06) rotate(-1deg);
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-left: 28px;
}

.nav-bouton,
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 15px;
  color: var(--white);
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.nav-bouton::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 5px;
  height: 2px;
  border-radius: 10px;
  background: var(--white);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.nav-bouton:hover::after,
.nav-bouton:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 7px;
  padding-inline: 17px;
  color: var(--rose);
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 7px 20px rgba(0,0,0,.09);
  transition: transform .25s ease, box-shadow .25s ease;
}

.nav-cta span {
  transition: transform .2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 25px rgba(0,0,0,.13);
}

.nav-cta:hover span {
  transform: translateX(4px);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 220px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.keyboard-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  color: var(--ink);
  border-radius: 11px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}

.dropdown-menu a span {
  color: var(--rose);
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity .2s ease, transform .2s ease;
}

.dropdown-menu a:hover {
  color: var(--rose);
  background: var(--rose-soft);
}

.dropdown-menu a:hover span {
  opacity: 1;
  transform: translateX(0);
}

.chevron {
  width: 15px;
  height: 15px;
  transition: transform .25s ease;
}

.dropdown:hover .chevron,
.dropdown.keyboard-open .chevron {
  transform: rotate(180deg);
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 820px;
  padding: 160px 24px 110px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(184,149,149,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,149,149,.22) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 67%);
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 850px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 13px;
  color: var(--rose-dark);
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(184,149,149,.18);
  border-radius: 999px;
  box-shadow: 0 8px 25px rgba(75,56,56,.06);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  backdrop-filter: blur(8px);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 5px rgba(184,149,149,.13);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero h1 {
  margin: 0;
  color: var(--rose);
  font-family: "Lilita One", sans-serif;
  font-size: clamp(64px, 9vw, 126px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--ink);
  font-family: "Archivo Narrow", sans-serif;
  font-size: .78em;
  font-weight: 500;
  letter-spacing: -.045em;
}

/* Variante compacte pour les pages secondaires (Tarifs, Blog, FAQ...) */
.hero-page {
  min-height: auto;
  padding: 170px 24px 80px;
}

.hero-page h1 {
  font-size: clamp(48px, 7vw, 84px);
}

.subh1 {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: "Archivo Narrow", sans-serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
}

.subh1 em {
  color: var(--rose);
  font-style: normal;
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
}

.hero-text {
  max-width: 610px;
  margin: 30px auto 0;
  color: #625955;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.btn-arrow {
  font-size: 17px;
}

.hero-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  color: #8A7A73;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero-note i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rose);
}

.hero-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 195px;
  padding: 13px 15px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 17px;
  box-shadow: 0 20px 55px rgba(74,55,55,.13);
  backdrop-filter: blur(16px);
}

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

.hero-card strong {
  color: var(--ink);
  font-size: 12px;
}

.hero-card small {
  margin-top: 3px;
  color: #8A817C;
  font-size: 10px;
}

.hero-card-left {
  left: max(5%, calc(50% - 630px));
  top: 44%;
}

.hero-card-right {
  right: max(5%, calc(50% - 630px));
  top: 33%;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--rose);
  background: var(--rose-soft);
  border-radius: 10px;
  font-weight: 800;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(184,149,149,.18);
  border-radius: 50%;
}

.orbit-one {
  width: 880px;
  height: 300px;
  transform: rotate(-18deg);
}

.orbit-two {
  width: 650px;
  height: 210px;
  transform: rotate(22deg);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 35px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(40,35,33,.46);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--rose), transparent);
}

/* =========================================================
   VALUE STRIP
   ========================================================= */

.value-strip {
  width: min(1120px, calc(100% - 48px));
  margin: -1px auto 0;
  padding: 28px 30px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.value-item {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  padding: 6px 25px;
}

.value-item + .value-item {
  border-left: 1px solid var(--line);
}

.value-number {
  color: var(--rose);
  font-family: "Lilita One", sans-serif;
  font-size: 20px;
  line-height: 1;
}

.value-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
}

.value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

/* =========================================================
   TESTIMONIAL
   ========================================================= */

.testimonial-section {
  padding: 145px 0 120px;
}

.testimonial {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 80px;
}

.testimonial-copy {
  position: relative;
  padding-left: 5px;
}

.quote-mark {
  height: 40px;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 85px;
  line-height: .7;
  opacity: .75;
}

.testimonial blockquote {
  max-width: 500px;
  margin: 18px 0 28px;
  color: var(--ink);
  font-family: "Lilita One", sans-serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.02em;
}

.testimonial-author {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.testimonial-author strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.testimonial-video {
  position: relative;
}

.video-glow {
  position: absolute;
  inset: 10% -7% -10% 7%;
  z-index: -1;
  background: rgba(184,149,149,.25);
  filter: blur(55px);
  border-radius: 50%;
}

.video-frame {
  position: relative;
  overflow: hidden;
  background: var(--beige);
  border: 7px solid rgba(255,255,255,.72);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}

.video-label {
  position: absolute;
  left: 25px;
  bottom: 25px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(40,35,33,.75);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* =========================================================
   DISCOVER
   ========================================================= */

.discover-section {
  padding: 110px 0 135px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.product-device {
  position: relative;
  padding: 10px;
  background: linear-gradient(145deg, #DCC9C1, #F5EDEA);
  border: 1px solid rgba(184,149,149,.18);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.4deg);
}

.product-device::after {
  content: "";
  position: absolute;
  inset: 18px -16px -18px 16px;
  z-index: -1;
  border: 1px solid rgba(184,149,149,.18);
  border-radius: 34px;
  transform: rotate(2deg);
}

.device-topbar {
  height: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.device-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(40,35,33,.18);
}

.device-title {
  margin-left: auto;
  margin-right: auto;
  color: rgba(40,35,33,.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.device-screen {
  overflow: hidden;
  min-height: 500px;
  background: var(--white);
  border-radius: 24px;
}

.device-screen img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.feature-intro {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}

.feature-count {
  color: var(--rose);
  font-family: "Lilita One", sans-serif;
  font-size: 28px;
}

.feature-intro h3 {
  max-width: 500px;
  margin: 2px 0 0;
  color: var(--ink);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 39px;
  font-weight: 500;
  line-height: 1.03;
}

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

.feature-chip {
  position: relative;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(43,37,34,.035);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(184,149,149,.45);
  box-shadow: var(--shadow-sm);
}

.feature-chip-highlight {
  background: linear-gradient(145deg, #FBF5F4, #F5EAEA);
}

.feature-chip-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: var(--rose);
  background: var(--rose-soft);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
}

.feature-chip h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.feature-chip p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.plus-badge {
  position: absolute;
  top: 17px;
  right: 17px;
  padding: 4px 7px;
  color: var(--rose);
  background: var(--white);
  border: 1px solid rgba(184,149,149,.2);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .7px;
}

.feature-side .btn {
  margin-top: 25px;
}

/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
  padding: 120px 0 140px;
}

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

.process-card {
  position: relative;
  min-height: 320px;
  padding: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}

.process-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.process-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(184,149,149,.16);
  border-radius: 50%;
}

.process-index {
  color: var(--rose);
  font-family: "Lilita One", sans-serif;
  font-size: 18px;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 55px 0 22px;
  color: var(--rose);
  background: var(--rose-soft);
  border-radius: 16px;
  font-size: 20px;
  font-weight: 800;
}

.process-card h3 {
  max-width: 270px;
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.process-card p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.process-card-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.process-card-dark .process-index,
.process-card-dark .process-icon {
  color: var(--beige);
}

.process-card-dark .process-icon {
  background: rgba(232,221,212,.10);
}

.process-card-dark h3 {
  color: var(--white);
}

.process-card-dark p {
  color: rgba(255,255,255,.66);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-home-section {
  padding: 120px 0 130px;
}

.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.faq-intro-block {
  position: sticky;
  top: 120px;
}

.faq-intro-block p {
  max-width: 390px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq-list {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 24px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: background .2s ease;
}

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

.faq-item summary:hover {
  background: #FCF7F6;
}

.faq-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  color: var(--rose);
  background: var(--rose-soft);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: transform .25s ease, color .25s ease, background .25s ease;
}

.faq-item[open] .faq-icon {
  color: var(--white);
  background: var(--rose);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 24px;
}

.faq-answer p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

/* =========================================================
   PAGE FONCTIONNALITÉS
   ========================================================= */

.hero-fonctionnalites {
  position: relative;
  min-height: 420px;
  padding: 150px 24px 90px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-fonctionnalites-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
}

.hero-fonctionnalites-content h1 {
  margin: 22px 0 0;
  color: var(--rose);
  font-family: "Lilita One", sans-serif;
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.035em;
}

.hero-fonctionnalites-content h1 span {
  color: var(--ink);
  font-family: "Archivo Narrow", sans-serif;
  font-size: .8em;
  font-weight: 500;
  letter-spacing: -.035em;
}

.hero-fonctionnalites-content p {
  max-width: 560px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
}

.hero-fonctionnalites-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  z-index: -1;
  width: 620px;
  height: 380px;
  background: var(--rose);
  filter: blur(120px);
  opacity: .18;
  transform: translateX(-50%);
}

.fonctionnalites {
  width: min(var(--max), calc(100% - 48px));
  margin: 20px auto 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.fonctionnalite-card {
  padding: 30px 32px 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.fonctionnalite-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184,149,149,.35);
  box-shadow: var(--shadow-lg);
}

.fonctionnalite-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.fonctionnalite-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  color: var(--rose);
  background: var(--rose-soft);
  border-radius: 14px;
}

.fonctionnalite-icon svg {
  width: 22px;
  height: 22px;
}

.fonctionnalite-titre {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fonctionnalite-titre h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
}

.statut {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.statut::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.statut.disponible {
  color: var(--green);
  background: var(--green-soft);
}

.statut.bientot {
  color: var(--rose-dark);
  background: var(--rose-soft);
}

.fonctionnalite-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.fonctionnalite-card p:last-child {
  margin-bottom: 0;
}

.fonctionnalite-card ul {
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.fonctionnalite-card ul:last-child {
  margin-bottom: 0;
}

.fonctionnalite-card li::marker {
  color: var(--rose);
}

@media (max-width: 800px) {
  .fonctionnalites {
    grid-template-columns: 1fr;
  }

  .fonctionnalite-card {
    padding: 26px 24px 28px;
  }
}

/* =========================================================
   PAGE TARIFS
   ========================================================= */

.tarifs {
  width: min(var(--max), calc(100% - 48px));
  margin: 20px auto 90px;
  text-align: center;
}

.tarifs h3 {
  margin: 55px 0 24px;
  color: var(--ink);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

/* --- Switch mensuel / annuel --- */

.billing-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 30px 0 10px;
}

.billing-switch .label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.billing-switch input#billing {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.switch {
  position: relative;
  width: 50px;
  height: 27px;
  background: var(--rose-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s ease;
}

.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease;
}

#billing:checked + .switch {
  background: var(--rose);
}

#billing:checked + .switch::after {
  transform: translateX(23px);
}

#billing:focus-visible + .switch {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

/* --- Onglets nombre d'élèves --- */

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 46px;
}

.tab {
  padding: 11px 22px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
}

.tab:hover {
  color: var(--ink);
  border-color: rgba(184,149,149,.4);
}

.tab.active {
  color: var(--white);
  background: var(--rose);
  border-color: var(--rose);
  box-shadow: 0 10px 25px rgba(184,149,149,.32);
}

/* --- Cartes de tarifs --- */

.plans {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto 40px;
}

.plans.active {
  display: grid;
}

.card-tarifs {
  position: relative;
  padding: 36px 26px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}

.card-tarifs:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-tarifs:has(.badge-offre-indisponible) {
  opacity: .65;
}

.card-tarifs h4 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 21px;
  font-weight: 600;
  text-align: center;
}

.card-tarifs .monthly-price,
.card-tarifs .yearly-price {
  margin: 0;
  color: var(--rose);
  font-family: "Lilita One", sans-serif;
  font-size: 30px;
  text-align: center;
}

.card-tarifs .badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  vertical-align: middle;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.card-tarifs > p:not(.monthly-price):not(.yearly-price) {
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 2.1;
}

.badge-offre-indisponible {
  position: absolute;
  top: -12px;
  left: 50%;
  padding: 5px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.texte {
  max-width: 640px;
  margin: 0 auto;
  padding: 18px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}

/* --- Tableau pack d'installation --- */

.tableau-pi {
  width: min(760px, 100%);
  margin: 24px auto 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  border-spacing: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.tableau-pi td {
  padding: 16px 22px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  text-align: left;
}

.tableau-pi tr:last-child td {
  border-bottom: none;
}

.table-heading {
  color: var(--ink);
  background: var(--rose-soft);
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .plans {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .tableau-pi td {
    padding: 14px 16px;
    font-size: 12px;
  }
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  position: relative;
  width: min(1200px, calc(100% - 48px));
  min-height: 500px;
  margin: 20px auto 120px;
  padding: 75px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 75% 25%, rgba(255,255,255,.16), transparent 15rem),
    linear-gradient(135deg, #B89595, #9D7979);
  border-radius: 38px;
  box-shadow: 0 35px 90px rgba(107,78,78,.24);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}

.final-cta::before {
  width: 520px;
  height: 520px;
  right: -180px;
  top: -250px;
}

.final-cta::after {
  width: 380px;
  height: 380px;
  left: -160px;
  bottom: -230px;
}

.cta-decoration {
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}

.cta-decoration-one {
  width: 700px;
  height: 250px;
  transform: rotate(24deg);
}

.cta-decoration-two {
  width: 500px;
  height: 180px;
  transform: rotate(-19deg);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  text-align: center;
}

.cta-content h2 {
  margin: 0;
  color: var(--white);
  font-family: "Archivo Narrow", sans-serif;
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.04em;
}

.cta-content h2 em {
  color: #F2E8E3;
  font-family: "Lilita One", sans-serif;
  font-style: normal;
}

.cta-content p {
  max-width: 600px;
  margin: 25px auto 32px;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: #2B2523;
  color: var(--white);
}

.footer-container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 75px 0 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
}

.footer-brand {
  padding-right: 30px;
}

.footer-logo {
  color: var(--white);
  font-family: "Lilita One", sans-serif;
  font-size: 37px;
  line-height: 1;
}

.footer-logo span {
  color: var(--rose);
  font-size: 18px;
  vertical-align: top;
}

.footer-brand > p {
  max-width: 300px;
  margin: 16px 0 20px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.7;
}

.footer-email {
  color: var(--white);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-email:hover {
  color: var(--beige);
}

.footer-socials {
  display: flex;
  gap: 9px;
  margin-top: 25px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  transition: transform .2s ease, background .2s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.15);
}

.footer-socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 21px;
  font-weight: 500;
}

.footer-column > a:not(.footer-demo-button) {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-column > a:not(.footer-demo-button):hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-demo-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding: 11px 16px;
  color: var(--rose);
  background: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.footer-demo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.footer-bottom {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 21px 0 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.38);
  font-size: 10px;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.floating {
  animation: floating 5s ease-in-out infinite;
}

.floating-delay {
  animation-delay: -2.1s;
}

@keyframes floating {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(184,149,149,.13); }
  50% { box-shadow: 0 0 0 9px rgba(184,149,149,.04); }
}

/* =========================================================
   RESPONSIVE — 1050
   ========================================================= */

@media (max-width: 1050px) {
  .navbar {
    width: calc(100% - 24px);
  }

  .nav-desktop {
    gap: 0;
  }

  .nav-bouton {
    padding-inline: 10px;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .hero-card {
    display: none;
  }

  .testimonial {
    gap: 50px;
  }

  .product-showcase {
    gap: 55px;
  }

  .faq-layout {
    gap: 55px;
  }

  .footer-container {
    gap: 45px;
  }
}

/* =========================================================
   RESPONSIVE — 850
   ========================================================= */

@media (max-width: 850px) {
  .navbar {
    top: 8px;
    margin-top: 8px;
    margin-bottom: -84px;
  }

  .nav-desktop {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-button span {
    width: 25px;
    height: 2px;
    border-radius: 5px;
    background: var(--white);
    transition: transform .25s ease, opacity .25s ease;
  }

  .mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    background: rgba(184,149,149,.98);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(75,56,56,.18);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu > a,
  .mobile-dropdown-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 0 14px;
    color: var(--white);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
  }

  .mobile-dropdown-content {
    display: none;
    padding: 3px 0 7px 13px;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .mobile-dropdown-content.open {
    display: flex;
    flex-direction: column;
  }

  .mobile-dropdown-content a {
    padding: 10px 13px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    text-decoration: none;
  }

  .mobile-dropdown-button svg {
    transition: transform .25s ease;
  }

  .mobile-dropdown-button.open svg {
    transform: rotate(180deg);
  }

  .mobile-demo-button {
    justify-content: center !important;
    margin-top: 9px;
    border: 0 !important;
    border-radius: 14px;
    color: var(--rose) !important;
    background: var(--white) !important;
  }

  .value-strip {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 23px;
  }

  .value-item {
    padding: 8px 5px;
  }

  .value-item + .value-item {
    border-left: 0;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

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

  .testimonial-copy {
    max-width: 700px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-device {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }

  .feature-side {
    max-width: 700px;
    margin: 0 auto;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 270px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro-block {
    position: static;
    max-width: 700px;
  }

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

/* =========================================================
   RESPONSIVE — 600
   ========================================================= */

@media (max-width: 600px) {
  .section,
  .value-strip,
  .final-cta {
    width: calc(100% - 30px);
  }

  .sticky-actions {
    right: 15px;
    bottom: 15px;
  }

  .sticky-demo {
    min-height: 46px;
    padding-inline: 15px;
    font-size: 12px;
  }

  .navbar {
    width: calc(100% - 18px);
    min-height: 68px;
    padding: 8px 9px 8px 15px;
    border-radius: 21px;
  }

  .nav-logo img {
    height: 47px;
  }

  .hero {
    min-height: 710px;
    padding: 125px 20px 90px;
  }

  .hero h1 {
    font-size: clamp(62px, 18vw, 90px);
  }

  .hero h1 span {
    font-size: .75em;
  }

  .hero-text {
    max-width: 420px;
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(330px, 100%);
    margin-inline: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-note {
    font-size: 8px;
  }

  .hero::before {
    width: 500px;
    height: 500px;
  }

  .hero::after {
    width: 350px;
    height: 350px;
  }

  .hero-scroll {
    bottom: 20px;
  }

  .testimonial-section,
  .discover-section,
  .process-section,
  .faq-home-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

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

  .section-heading h2,
  .faq-intro-block h2 {
    font-size: 50px;
  }

  .testimonial blockquote {
    font-size: 45px;
  }

  .video-frame {
    border-width: 5px;
    border-radius: 22px;
  }

  .feature-intro h3 {
    font-size: 32px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .device-screen,
  .device-screen img {
    min-height: 410px;
  }

  .product-device {
    border-radius: 25px;
  }

  .device-screen {
    border-radius: 18px;
  }

  .process-card {
    min-height: 250px;
    padding: 26px;
    border-radius: 23px;
  }

  .process-icon {
    margin-top: 38px;
  }

  .final-cta {
    min-height: 510px;
    margin-bottom: 80px;
    padding: 45px 24px;
    border-radius: 28px;
  }

  .cta-content h2 {
    font-size: 57px;
  }

  .cta-content p {
    font-size: 13px;
  }

  .footer-container {
    width: calc(100% - 30px);
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 55px 0 45px;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-bottom {
    width: calc(100% - 30px);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

:focus-visible {
  outline: 3px solid rgba(184,149,149,.45);
  outline-offset: 3px;
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   PAGE CONTACT
========================================================= */

.contact-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 100px;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  width: min(900px, 100%);
  text-align: center;
}

.contact-hero-content .hero-text {
  max-width: 680px;
  margin: 28px auto 0;
}

.contact-hero h1 {
  margin: 20px 0 0;
}

.contact-hero h1 span {
  display: inline-block;
}


/* =========================================================
   FORMULAIRE
========================================================= */

.contact-form-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.contact-form-intro {
  position: sticky;
  top: 120px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}

.contact-form-intro h2,
.team-heading h2 {
  margin: 18px 0 20px;
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
}

.contact-form-intro h2 span,
.team-heading h2 span {
  display: inline-block;
}

.contact-form-intro > p {
  max-width: 430px;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.72;
}

.contact-direct {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-direct-label {
  font-size: 13px;
  opacity: 0.55;
}

.contact-direct a {
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
  padding: 42px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(14px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}

.form-group label {
  font-size: 14px;
  font-weight: 750;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  padding: 15px 17px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-group input,
.form-group select {
  height: 52px;
}

.form-group textarea {
  min-height: 170px;
  resize: vertical;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  opacity: 0.42;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: currentColor;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 10px;
}

.form-privacy {
  max-width: 350px;
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  opacity: 0.5;
}

.contact-submit {
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  padding: 15px 23px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  background: #000;
  color: #fff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-submit span {
  margin-left: 8px;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   ÉQUIPE
========================================================= */

.team-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 120px;
}

.team-heading {
  text-align: center;
  margin-bottom: 55px;
}

.hero2 {
  position: relative;
  margin: 0;
  padding: 100px 20px 55px;
  text-align: center;

  font-family: "Lilita One", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;

  color: #171717;
}

.hero2::after {
  content: "";
  display: block;

  width: 55px;
  height: 5px;

  margin: 22px auto 0;

  border-radius: 999px;
  background: #171717;
}

.hero2 + h3 {
  max-width: 480px;
  margin: -30px auto 45px;
  padding: 0 24px;
  color: var(--muted);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

/* =========================================================
   ARTICLE DE BLOG
   ========================================================= */

.hero-article {
  padding-bottom: 60px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 24px;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.blog-meta-item svg {
  flex-shrink: 0;
  color: var(--rose);
}

.article-body {
  width: min(720px, calc(100% - 48px));
  margin: 20px auto 100px;
}

.article-body > p {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.85;
}

.article-body h2 {
  margin: 46px 0 18px;
  color: var(--ink);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.25;
}

.article-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 56px;
  padding: 40px 24px;
  text-align: center;
  background: var(--rose-soft);
  border-radius: 24px;
}

.article-cta p {
  margin: 0;
  color: var(--ink);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 19px;
  font-weight: 600;
}

/* =========================================================
   PAGE CENTRE D'AIDE
   ========================================================= */

/* --- Recherche dans le hero --- */

.aide-search-wrap {
  position: relative;
  max-width: 480px;
  margin: 32px auto 0;
}

.aide-search-wrap svg {
  position: absolute;
  top: 50%;
  left: 18px;
  color: var(--muted);
  transform: translateY(-50%);
  pointer-events: none;
}

.aide-search-wrap input {
  width: 100%;
  padding: 15px 18px 15px 48px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-family: Inter, sans-serif;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.aide-search-wrap input::placeholder {
  color: var(--muted);
}

.aide-search-wrap input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(184,149,149,.16);
}

/* --- Structure générale --- */

.aide-content {
  width: min(760px, calc(100% - 48px));
  margin: 10px auto 0;
}

.aide-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.aide-tabs.is-hidden {
  display: none;
}

.aide-panel {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 60px;
}

.aide-panel.active {
  display: flex;
}

.aide-panel.force-visible {
  display: flex !important;
}

.aide-panel-intro {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* --- Item d'accordéon --- */

.aide-item summary {
  font-family: Inter, sans-serif;
  font-size: 15px;
}

.aide-sub {
  margin: 22px 0 10px;
  color: var(--ink);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.aide-sub:first-child {
  margin-top: 0;
}

.aide-steps {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.9;
}

.aide-steps li::marker {
  color: var(--rose);
  font-weight: 700;
}

.aide-steps strong {
  color: var(--ink);
}

.faq-answer .aide-note {
  margin: 4px 0 16px;
}

.aide-note {
  padding: 14px 18px;
  color: var(--rose-dark);
  background: var(--rose-soft);
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
}

.aide-note-standalone {
  margin-top: 10px;
  font-weight: 500;
}

.aide-note a {
  color: var(--rose-dark);
  font-weight: 700;
}

.aide-search-empty {
  display: none;
  padding: 50px 20px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 700px) {
  .aide-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
}

.aide-faq-wrap {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 40px;
  text-align: center;
}

.aide-faq-list {
  margin-top: 20px;
  text-align: left;
}

.aide-final-cta {
  width: min(700px, calc(100% - 48px));
  margin: 0 auto 100px;
}

.aide-final-cta .aide-note-standalone {
  text-align: left;
}

/* =========================================================
   PAGE ESPACE ADHÉRENT
   ========================================================= */

.hero-lock {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--rose);
  background: var(--rose-soft);
  border-radius: 18px;
}

.connexion-section {
  width: min(460px, calc(100% - 48px));
  margin: 10px auto 110px;
}

.connexion-adherent {
  padding: 40px 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.champ-mot-de-passe {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.champ-mot-de-passe label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.champ-mot-de-passe input {
  padding: 13px 16px;
  color: var(--ink);
  background: var(--cream, #faf6f3);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.champ-mot-de-passe input::placeholder {
  color: var(--muted);
}

.champ-mot-de-passe input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(184,149,149,.16);
}

.erreur-mot-de-passe {
  display: none;
  margin: 10px 0 0;
  color: #b3413f;
  font-size: 13px;
  font-weight: 600;
}

.erreur-mot-de-passe.visible {
  display: block;
}

.bouton-connexion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 22px;
  padding: 14px 20px;
  color: var(--white);
  background: var(--rose);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.bouton-connexion:hover {
  background: var(--rose-dark);
  box-shadow: 0 10px 25px rgba(184,149,149,.32);
  transform: translateY(-2px);
}

.bouton-connexion span {
  transition: transform .2s ease;
}

.bouton-connexion:hover span {
  transform: translateX(4px);
}

.connexion-adherent small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

/* =========================================================
   PAGE NOTRE HISTOIRE
   ========================================================= */

.histoire-intro {
  width: min(720px, calc(100% - 48px));
  margin: 30px auto 0;
  text-align: center;
}

.histoire-intro p {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.85;
}

.histoire-intro-accent {
  position: relative;
  padding: 22px 26px;
  color: var(--rose-dark) !important;
  background: var(--rose-soft);
  border-radius: 18px;
  font-weight: 600;
}

/* --- Chiffres clés --- */

.histoire-stats {
  width: min(var(--max), calc(100% - 48px));
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 30px 16px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  color: var(--rose);
  font-family: "Lilita One", sans-serif;
  font-size: clamp(34px, 4vw, 46px);
}

.stat-suffix {
  color: var(--rose);
  font-family: "Lilita One", sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
}

.stat-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
}

/* --- Frise chronologique --- */

.histoire-timeline-section {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 90px;
}

.timeline {
  position: relative;
  margin-top: 20px;
  padding-left: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 5px;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose), var(--line) 90%);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 5px;
  left: -34px;
  width: 12px;
  height: 12px;
  background: var(--rose);
  border: 3px solid var(--cream, var(--white));
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(184,149,149,.16);
}

.timeline-marker-final {
  animation: pulse 2.2s ease-in-out infinite;
}

.timeline-date {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  color: var(--rose-dark);
  background: var(--rose-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.timeline-content h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
}

/* --- Clôture --- */

.histoire-outro {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto 100px;
  text-align: center;
}

.histoire-outro > p {
  margin: -30px 0 40px;
  color: var(--muted);
  font-size: 17px;
}

@media (max-width: 780px) {
  .histoire-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   PAGE BLOG
   ========================================================= */

.cards-blog {
  width: min(var(--max), calc(100% - 48px));
  margin: 20px auto 100px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}

.cards-blog > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-blog {
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card-blog:hover {
  transform: translateY(-6px);
  border-color: rgba(184,149,149,.35);
  box-shadow: var(--shadow-lg);
}

.card-blog img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--rose-soft);
}

.card-blog-h4 {
  margin: 28px 24px 12px;
  color: var(--ink);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.card-blog-role {
  margin: 0 24px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.card-blog > p {
  margin: 0 24px 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.card-blog-bouton {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 24px 24px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 700;
}

.card-blog-bouton span {
  transition: transform .2s ease;
}

.card-blog:hover .card-blog-bouton span {
  transform: translateX(4px);
}

/* =========================================================
   RÉSERVER UNE DÉMO — Cal.com
   ========================================================= */

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

@media (max-width: 700px) {
  .cal-embed {
    height: 640px;
  }
}


/* =========================================================
   CONTENEUR DES CARTES
========================================================= */

.cards-contact {
  width: min(1100px, calc(100% - 40px));

  margin: 0 auto;
  padding: 10px 0 120px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}


/* =========================================================
   CARTE
========================================================= */

.card-contact {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 42px 36px 36px;

  text-align: center;

  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 28px;

  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.03);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.card-contact:hover {
  transform: translateY(-7px);

  border-color: rgba(23, 23, 23, 0.13);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.09),
    0 5px 15px rgba(0, 0, 0, 0.04);
}


/* Petite décoration en haut de la carte */

.card-contact::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: 80px;
  height: 4px;

  transform: translateX(-50%);

  border-radius: 0 0 999px 999px;

  background: #171717;
}


/* =========================================================
   PHOTO
========================================================= */

.card-contact img {
  display: block;

  width: 150px;
  height: 150px;

  margin-bottom: 26px;

  object-fit: cover;

  border-radius: 50%;

  border: 6px solid #fff;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.10);

  transition: transform 0.35s ease;
}

.card-contact:hover img {
  transform: scale(1.04);
}


/* =========================================================
   NOM
========================================================= */

.card-contact-h4 {
  margin: 0 0 10px;

  font-family: "Lilita One", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;

  color: #171717;
}


/* =========================================================
   FONCTION
========================================================= */

.card-contact-role {
  margin: 0;

  min-height: 84px;

  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;

  color: #686868;
}


/* =========================================================
   BOUTON CONTACT
========================================================= */

.card-contact-bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 150px;

  margin-top: 28px;
  padding: 13px 24px;

  border-radius: 999px;

  background: #171717;
  color: #fff;

  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.card-contact-bouton:hover {
  transform: translateY(-2px);

  background: #2c2c2c;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

.card-contact-bouton:focus-visible {
  outline: 3px solid rgba(23, 23, 23, 0.25);
  outline-offset: 4px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

  .hero2 {
    padding: 75px 20px 45px;

    font-size: clamp(40px, 12vw, 56px);
  }

  .cards-contact {
    width: min(100% - 32px, 520px);

    grid-template-columns: 1fr;
    gap: 22px;

    padding-bottom: 80px;
  }

  .card-contact {
    padding: 36px 25px 30px;

    border-radius: 24px;
  }

  .card-contact img {
    width: 135px;
    height: 135px;

    margin-bottom: 22px;
  }

  .card-contact-h4 {
    font-size: 25px;
  }

  .card-contact-role {
    min-height: auto;

    font-size: 14px;
    line-height: 1.65;
  }

  .card-contact-bouton {
    width: 100%;
    max-width: 220px;

    margin-top: 24px;
  }
}


/* =========================================================
   TRÈS PETITS ÉCRANS
========================================================= */

@media (max-width: 400px) {

  .cards-contact {
    width: calc(100% - 24px);
  }

  .card-contact {
    padding: 32px 20px 26px;
  }

  .card-contact img {
    width: 120px;
    height: 120px;
  }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

  .contact-form-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 80px 0;
  }

  .contact-form-intro {
    position: static;
    text-align: center;
  }

  .contact-form-intro > p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-direct {
    align-items: center;
  }

}


@media (max-width: 700px) {

  .contact-hero {
    min-height: 470px;
    padding: 90px 20px 70px;
  }

  .contact-form-section {
    width: min(100% - 32px, 600px);
  }

  .contact-form {
    padding: 25px 20px;
    border-radius: 22px;
  }

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

  .form-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .form-privacy {
    max-width: none;
  }

  .contact-submit {
    width: 100%;
  }

  .team-section {
    width: min(100% - 32px, 600px);
  }

  .cards-contact {
    grid-template-columns: 1fr;
    gap: 45px;
  }

}